{
  "version": "20260518-161637",
  "generated_at": "2026-05-18T16:16:37Z",
  "_schema": "# EventFinder Data API — `https://ef.bulkowski.org/data/v1/`\n\nVersioned, machine-readable JSON view of EventFinder. The same content is\nalso published as a single tarball at `https://ef.bulkowski.org/data/v1/bundle.tar.gz` and as\nan embedded `_schema` block inside `https://ef.bulkowski.org/data/v1/bundle.json`.\n\n## How to consume\n\n**Start with the manifest.** `GET https://ef.bulkowski.org/data/v1/manifest.json` (a few\nKB) — it carries `endpoints` (data files), `discovery` (llms.txt,\nagent-card.json, this README), per-file sizes + sha256, the bundle's\ncontent-hash, and the version. One cheap fetch lets you navigate\neverything without knowing the URL structure in advance. The\n`X-Agent-Data` response header on every endpoint also points here.\n\n**For narrow user queries, prefer the search endpoint** at\n`GET https://ef.bulkowski.org/api/v1/events/search` — it filters by date range, event\ntype, region, neighborhood, venue, or free-text query and returns only\nmatching events. Default range is today + 7 days. Full parameter list,\nA2A skill descriptor, and example URLs are in\n`https://ef.bulkowski.org/.well-known/agent-card.json` `skills[id=\"search_events\"]` and\nin `https://ef.bulkowski.org/llms.txt` §Search.\n\nOtherwise, pick the smallest static file that answers your query:\n\n| You want | Hit |\n|---|---|\n| **Discovery + index of every endpoint** | `GET https://ef.bulkowski.org/data/v1/manifest.json` |\n| **Filtered query (date range, region, type, free text)** | `GET https://ef.bulkowski.org/api/v1/events/search?...` |\n| Tonight's events | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/today.json` |\n| Next week | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/next_7.json` |\n| One specific date | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/YYYY-MM-DD.json` (~5K tokens) |\n| List of available dates | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/index.json` |\n| Cities + timezones | `GET https://ef.bulkowski.org/data/v1/cities.json` |\n| Cheap freshness probe | `GET https://ef.bulkowski.org/data/v1/version.json` (~100 bytes) |\n| Whole city, all dates | `GET https://ef.bulkowski.org/data/v1/cities/{city}/bundle.json` |\n| All cities, one request — **batch / offline indexing only** | `GET https://ef.bulkowski.org/data/v1/bundle.json` (≈ 6–7 MB raw / ~1 MB gzipped; **overflows most LLM context windows** — see below) |\n\n**Context budget warning.** `bundle.json` ≈ 1.5–2M tokens for SF as of this\nbuild. That overflows Sonnet, Haiku, and most frontier model context\nwindows. For LLM agents handling narrow queries, prefer the per-date or\n`today.json` / `next_7.json` endpoints. The bundle is intended for batch\nconsumers (offline indexing, MCP servers, models with sufficient context).\n\n## Choosing an endpoint\n\nPick the smallest endpoint that answers the query. Sizes are approximate\nand grow over time.\n\n| Query shape | Endpoint | Approx size | Fits in LLM? |\n|---|---|---|---|\n| Single-day (\"events tonight\", \"what's on Saturday\") | `https://ef.bulkowski.org/data/v1/cities/{city}/events/today.json` (auto-resolves to today in the city's timezone) | ~5–50 KB | Yes, any model |\n| Single-day, specific date | `https://ef.bulkowski.org/data/v1/cities/{city}/events/YYYY-MM-DD.json` | ~5–50 KB | Yes, any model |\n| Next week | `https://ef.bulkowski.org/data/v1/cities/{city}/events/next_7.json` | ~50–200 KB | Yes, any model |\n| Full city, all dates | `https://ef.bulkowski.org/data/v1/cities/{city}/bundle.json` | ~500 KB – 2 MB | Yes, Sonnet 4 / 200K+ |\n| All cities | `https://ef.bulkowski.org/bundle.json` | ~7 MB / ~2M tokens | **No — batch indexing only.** Will OVERFLOW Sonnet, Haiku, and most frontier-model contexts. Do NOT load for narrow queries; it WILL truncate. |\n\nCity slugs are listed in `https://ef.bulkowski.org/data/v1/cities.json`.\n\n## Filtering events by neighborhood or region\n\nEvent records contain `venue_id` but **not** `neighborhood` or `region`\ndirectly. To filter events by sub-region within a metro, join to\n`venues.json`:\n\n1. `GET https://ef.bulkowski.org/data/v1/cities/{city}/venues.json` (once per session).\n2. Build a lookup keyed by `venue.id`:\n\n   ```python\n   venues_by_id = { v[\"id\"]: v for v in venues }\n   ```\n\n3. For each event in `events/{date}.json`, **strip the `\"venue_\"`\n   prefix** from `event.venue_id` to get the venue key, then look it up:\n\n   ```python\n   key = event[\"venue_id\"].removeprefix(\"venue_\")\n   venue = venues_by_id[key]            # may KeyError on stale data\n   neighborhood = venue[\"neighborhood\"]   # e.g. \"Oakland\", \"Mission\"\n   ```\n\n4. For **region-level** filtering (e.g. \"all East Bay events\"), there is\n   **no `region` field on venue records.** Instead, fetch\n   `https://ef.bulkowski.org/data/v1/cities/{city}/geo.json` — its `regions` map names\n   regions to lists of neighborhoods:\n\n   ```python\n   geo = ...  # from geo.json\n   nbhd_to_region = {\n       n: r for r, nbhds in geo[\"regions\"].items() for n in nbhds\n   }\n   region = nbhd_to_region.get(neighborhood)\n   ```\n\n   Note that a neighborhood can appear in multiple regions (the mapping\n   is many-to-many in the data; pick whichever matches your query).\n\n### Worked example — \"jazz events in Oakland on 2026-05-10\"\n\n1. `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/2026-05-10.json`\n2. Filter to events where `\"jazz\"` is in `event_types`.\n3. `GET https://ef.bulkowski.org/data/v1/cities/{city}/venues.json` and build\n   `venues_by_id`.\n4. `GET https://ef.bulkowski.org/data/v1/cities/{city}/geo.json`; \"Oakland\" appears as\n   both a region key and a neighborhood — pick the level you mean. For\n   the region: `oakland_nbhds = set(geo[\"regions\"][\"Oakland\"])`.\n5. Keep events whose\n   `venues_by_id[event[\"venue_id\"].removeprefix(\"venue_\")][\"neighborhood\"]`\n   is in `oakland_nbhds`.\n\n### Verified venue fields\n\nThe fields on each `venues.json` entry as of this build:\n\n- `id` — stable identifier (matches `event.venue_id` minus the `\"venue_\"` prefix)\n- `name` — display name; may include `\"|\"`-separated aliases\n- `address` — street address (best-effort)\n- `neighborhood` — single neighborhood name (e.g. `\"Mission\"`, `\"Berkeley\"`)\n- `url` — venue website\n- `event_type_hints` — list of typical event types at this venue\n- `default_start_time` — `\"HH:MM\"` if known\n\nThere is intentionally **no `region` field**; region is computed via\n`geo.json` as shown above.\n\n## Cache validation\n\nThree primitives, ordered cheapest → most thorough:\n\n1. **`GET https://ef.bulkowski.org/data/v1/version.json`** returns\n   `{version, generated_at, sha256}`. The `sha256` here matches the\n   master `bundle.json` sha256 and matches its HTTP `ETag`.\n2. **HTTP `ETag` + `If-None-Match`** on `bundle.json` and per-file responses\n   returns `304 Not Modified` if your cached copy is current.\n3. **`https://ef.bulkowski.org/data/v1/manifest.json`** lists every file with its individual\n   sha256 for selective revalidation.\n\n## Timezone semantics\n\nAll datetime fields (`event_date`, `event_start`, `event_time`) are **naive\nISO strings in the city's local timezone**. They carry no `Z` suffix and no\noffset. The city's timezone lives in `city_config.json`\n(e.g. `\"America/Los_Angeles\"` for `san_francisco_metro`); read it before\ninterpreting any timestamp. This is intentional — events happen at a\nwall-clock time in a physical city, and round-tripping through UTC\nintroduces DST and offset bugs.\n\nIf you want \"today's events\" without doing the timezone math yourself, use\n`https://ef.bulkowski.org/data/v1/cities/{city}/events/today.json`. The server resolves the\ncity's local date at request time and returns the right file.\n\n## Event field reference\n\n| Field | Type | Description |\n|---|---|---|\n| `event_id` | string | Stable unique identifier |\n| `venue_id` | string | Links to a venue in `venues.json` |\n| `title` | string | Event title |\n| `event_date` | string | `YYYY-MM-DD` in city-local timezone |\n| `event_start` | string | `YYYY-MM-DDTHH:MM:SS` in city-local timezone (no offset) |\n| `event_time` | string | Mirror of `event_start` (legacy field; prefer `event_start`) |\n| `venue_name` | string | Display name |\n| `venue_address` | string | Street address (best-effort) |\n| `event_types` | list[str] | Type IDs from `event_types.json` |\n| `description` | string | Free text (best-effort) |\n| `price_info` | string | Free text |\n| `url` | string | Original listing URL |\n| `tags` | list[str] | Free-form tags |\n| `certainty` | string | `confirmed` / `likely` / `uncertain` |\n| `sources` | list | Provenance — which scraped source reported this event |\n\n## Sample event record\n\nPicked deterministically (first event of the latest date file) so this\nstays current with the data:\n\n```json\n{\n  \"event_id\": \"evt_daa18dcc9448\",\n  \"venue_id\": \"venue_war_memorial_opera_house\",\n  \"title\": \"An Evening with David Sedaris\",\n  \"event_time\": \"Sat, Nov 14, 2026\",\n  \"venue_name\": \"War Memorial Opera House\",\n  \"event_start\": \"2026-11-14\",\n  \"event_date\": \"2026-11-14\",\n  \"venue_address\": \"301 Van Ness Ave, San Francisco, CA 94102\",\n  \"description\": \"Acclaimed humorist and author David Sedaris returns to the Orpheum Theatre for an evening of readings and observations. The event includes a selection of new and unpublished works followed by a Q&A session.\",\n  \"event_types\": [\n    \"literary\"\n  ],\n  \"price_info\": \"More info\",\n  \"url\": \"https://us.atgtickets.com/events/david-sedaris/war-memorial-opera-house/\",\n  \"tags\": [],\n  \"sources\": [\n    {\n      \"source_id\": \"s_sf_theaters\",\n      \"source_name\": \"SF Theaters\",\n      \"fetched_at\": \"2026-04-16T09:15:27.725138Z\",\n      \"strategy_used\": \"DIRECT\"\n    },\n    {\n      \"source_id\": \"s_atg_sf\",\n      \"source_name\": \"ATG SF\",\n      \"fetched_at\": \"2026-04-16T09:55:49.860603Z\",\n      \"strategy_used\": \"DIRECT\"\n    }\n  ],\n  \"match_key\": \"venue_war_memorial_opera_house|2026-11-14\",\n  \"run_id\": \"\",\n  \"run_label\": \"\",\n  \"showtime_index\": 0,\n  \"certainty\": \"confirmed\"\n}\n```\n\n## Discovery\n\nThe site advertises this API in several conventional ways:\n\n- `https://ef.bulkowski.org/.well-known/agent-card.json` — A2A protocol agent card\n- `https://ef.bulkowski.org/.well-known/ai-agent.json` — alias for back-compat\n- `https://ef.bulkowski.org/llms.txt` — LLM-targeted citation index\n- `https://ef.bulkowski.org/robots.txt` with `Sitemap:` and explicit `Allow: /data/`\n- `link rel=\"alternate\" type=\"application/json\" href=\"https://ef.bulkowski.org/data/v1/manifest.json\"` in HTML pages (plus alternates for `/bundle.json`, `/.well-known/agent-card.json`, `/llms.txt`)\n- `X-Agent-Data: https://ef.bulkowski.org/data/v1/manifest.json` response header on every response (small entry-point document, not the bundle)\n",
  "event_types": {
    "_comment": "Canonical event type ontology. LLMs should classify every event with at least one event type.",
    "event_types": [
      {
        "id": "live_music",
        "label": "Live Music",
        "live": true,
        "description": "Live music performances: concerts, gigs, blues, rock, jazz, indie, folk, electronic, a cappella, singer-songwriter, classical, orchestral, etc. Use in combination with music types (jazz, classical, indian_classical) when applicable. Do NOT use for DJ-only events — use dj_party instead."
      },
      {
        "id": "jazz",
        "label": "Jazz",
        "live": true,
        "description": "Jazz performances, jazz jams, jazz combos, big band, bebop, dixieland, straight ahead, fusion, and jazz-focused events."
      },
      {
        "id": "electronic",
        "label": "Electronic",
        "live": true,
        "description": "Live electronic music performances featuring an artist performing or presenting their own work (synths, drum machines, live coding, vocals over production). Do NOT use for DJ-only events where a DJ mixes other artists' tracks — use dj_party instead."
      },
      {
        "id": "classical",
        "label": "Classical",
        "live": true,
        "description": "Western classical music: orchestral, chamber music, recitals, choral, and opera concerts focused on the classical tradition."
      },
      {
        "id": "folk",
        "label": "Folk",
        "live": true,
        "description": "Folk live music: bluegrass, americana, old-time, traditional, celtic, singer-songwriter, indie folk, folk rock, balkan. Live performers only, not DJs playing folk tracks."
      },
      {
        "id": "rock",
        "label": "Rock",
        "live": true,
        "description": "Rock live music: alternative, metal, doom, punk, art rock, math rock, classic rock, progressive, ProgRock. Live bands/performers only, not DJs playing rock tracks."
      },
      {
        "id": "hiphop_rap",
        "label": "Hip-Hop / Rap",
        "live": true,
        "description": "Live hip-hop performances, rap, trap, boom bap, beat-centric vocal performances, and turntablism showcases. Live performers only, not DJs playing hip-hop tracks."
      },
      {
        "id": "rnb_soul_funk",
        "label": "R&B / Soul / Funk",
        "live": true,
        "description": "Live R&B, neo-soul, funk bands, gospel, afro-soul, and groove-based live vocal performances. Live performers only, not DJs playing R&B/soul/funk tracks."
      },
      {
        "id": "latin_world",
        "label": "Latin / Global Roots",
        "live": true,
        "description": "Live Latin bands, salsa, cumbia, mariachi, afrobeat, reggae, bossa nova, and global traditional ensembles. Live performers only, not DJs playing Latin/world tracks."
      },
      {
        "id": "experimental",
        "label": "Experimental",
        "live": true,
        "description": "Experimental live music: contemporary classical, new music, looping, buchla, noise, electroacoustic."
      },
      {
        "id": "indian_classical",
        "label": "Indian Classical",
        "live": true,
        "description": "Indian classical music and dance: Hindustani, Carnatic, raga performances, tabla, sitar, bharatanatyam, kathak, and related traditions."
      },
      {
        "id": "comedy",
        "label": "Comedy",
        "live": true,
        "description": "Stand-up comedy, improv, sketch, comedy showcases, and open mics focused on comedy."
      },
      {
        "id": "theater",
        "label": "Theater",
        "live": true,
        "description": "Stage plays, musicals, opera, solo theatrical performances, staged readings, and dramatic productions."
      },
      {
        "id": "dance",
        "label": "Dance",
        "live": true,
        "description": "Dance performances, ballet, contemporary dance, dance festivals, and choreographed shows."
      },
      {
        "id": "dj_party",
        "label": "DJ Party",
        "live": false,
        "description": "A social dance event where a DJ selects and mixes pre-recorded tracks (often themed by era, genre, or vibe). Includes DJ nights, DJ raves, themed dance parties, and club nights. A DJ playing pre-recorded tracks of a genre does NOT make it a live performance of that genre — do not add genre tags (rock, electronic, hiphop_rap, etc.) just because of the DJ's playlist. If the event also features a live artist or band, the appropriate genre tag and live_music may co-occur with dj_party."
      },
      {
        "id": "film",
        "label": "Film & Screening",
        "live": false,
        "description": "Movie screenings, film festivals, documentary viewings, and listening parties with visual components."
      },
      {
        "id": "art",
        "label": "Art & Exhibition",
        "live": false,
        "description": "Gallery openings, art exhibitions, installations, visual art shows, and art fairs."
      },
      {
        "id": "sports",
        "label": "Sports & Games",
        "live": false,
        "description": "Sporting events, tournaments, chess, trivia nights, and competitive games."
      },
      {
        "id": "workshop",
        "label": "Workshop & Class",
        "live": false,
        "description": "Hands-on workshops, classes, lectures, educational events, and skill-building sessions."
      },
      {
        "id": "festival",
        "label": "Festival & Multi-Act",
        "live": false,
        "description": "Multi-act festivals, fairs, block parties, parades, and large-scale events spanning multiple performances or activities."
      },
      {
        "id": "community",
        "label": "Community & Social",
        "live": false,
        "description": "Community gatherings, social events, meetups, religious/spiritual events, health and wellness events, fundraisers, and general social activities."
      },
      {
        "id": "literary",
        "label": "Literary & Spoken Word",
        "live": false,
        "description": "Readings, book events, poetry slams, storytelling shows, and spoken word performances."
      },
      {
        "id": "other",
        "label": "Other",
        "live": false,
        "description": "An event where no type applies. May not be used in combination with other tags. An error state to be avoided."
      }
    ]
  },
  "cities": {
    "san_francisco_metro": {
      "city_config": {
        "city_name": "San Francisco Metro",
        "timezone": "America/Los_Angeles",
        "default_language": "en",
        "short_alias": "sf",
        "search_aliases": [
          "SF",
          "San Francisco",
          "SF Metro",
          "Bay Area",
          "SF Bay Area",
          "SFO"
        ],
        "export_future_horizon_days": 180
      },
      "venues": [
        {
          "id": "toms_place",
          "name": "Tom's Place",
          "address": "3133 Deakin St, Berkeley",
          "neighborhood": "Berkeley",
          "url": "http://4-33.com/toms-place/index.html",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "audium",
          "name": "Audium",
          "address": "1616 Bush St, San Francisco, CA 94109",
          "neighborhood": "Japantown",
          "url": "https://www.audium.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "envelop_sf",
          "name": "Envelop SF",
          "address": "2439 3rd St, San Francisco, CA 94107",
          "neighborhood": "Dogpatch",
          "url": "https://envelop.us/",
          "event_type_hints": [
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "bird_and_beckett",
          "name": "Bird & Beckett",
          "address": "653 Chenery St, San Francisco, CA 94131",
          "neighborhood": "Glen Park",
          "url": "https://birdbeckett.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_royal_cuckoo",
          "name": "The Royal Cuckoo",
          "address": "3202 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.facebook.com/profile.php/?id=100063561341609",
          "event_type_hints": [
            "live_music",
            "rnb_soul_funk"
          ],
          "default_start_time": ""
        },
        {
          "id": "guild_theatre",
          "name": "Guild Theatre|Guild|The Guild",
          "address": "949 El Camino Real, Menlo Park, CA 94025",
          "neighborhood": "Menlo Park",
          "url": "https://www.guildtheatre.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "dalas_nest",
          "name": "Dala's Nest",
          "address": "Menlo Park, CA",
          "neighborhood": "Menlo Park",
          "url": "https://www.dalasnesthouseconcerts.com/",
          "event_type_hints": [
            "live_music",
            "folk"
          ],
          "default_start_time": ""
        },
        {
          "id": "wyldflowr_arts",
          "name": "Wyldflowr Arts",
          "address": "3478 School St, Oakland, CA 94602",
          "neighborhood": "Oakland",
          "url": "https://wyldflowrarts.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "medicine_for_nightmares",
          "name": "Medicine for Nightmares",
          "address": "3036 24th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://medicinefornightmares.com/",
          "event_type_hints": [
            "literary",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "shapeshifters",
          "name": "Shapeshifters|Shapeshifters Theater",
          "address": "1007 W Grand Ave, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://shapeshifterscinema.com/",
          "event_type_hints": [
            "film",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "sfjazz_miner",
          "name": "SFJAZZ Auditorium|Miner Auditorium|SFJAZZ",
          "address": "201 Franklin St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://www.sfjazz.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "sfjazz_lab",
          "name": "SFJAZZ Lab|Joe Henderson Lab|Henderson Lab",
          "address": "201 Franklin St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://www.sfjazz.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "sfjazz_at_home",
          "name": "SFJAZZ At Home|SFJAZZ Livestream|SFJAZZ Home",
          "address": "201 Franklin St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://www.sfjazz.org/",
          "event_type_hints": [
            "livestream",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_freight__salvage",
          "name": "The Freight & Salvage|Freight And Salvage|Freight",
          "address": "2020 Addison Street, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://thefreight.org/",
          "event_type_hints": [
            "live_music",
            "folk",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "gray_area",
          "name": "Gray Area",
          "address": "2665 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://grayarea.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_lab",
          "name": "The Lab",
          "address": "2948 16th St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://www.thelab.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "temescal_arts_center",
          "name": "Temescal Arts Center",
          "address": "511 48th St, Oakland, CA 94609",
          "neighborhood": "Temescal",
          "url": "https://www.temescalartscenter.org/",
          "event_type_hints": [
            "live_music",
            "experimental",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "musicians_union_hall",
          "name": "Musicians Union Hall",
          "address": "116 9th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://afm6.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "dresher_ensemble_studio",
          "name": "Dresher Ensemble Studio|West Oakland Sound Series",
          "address": "2201 Poplar St, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.dresherensemble.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "# building_34",
          "name": "Building 34",
          "address": "1095 Nimitz Ave, Vallejo, CA",
          "neighborhood": "Vallejo",
          "url": "https://artvallejo.org/locations/building-34-mare-island-south-of-1080-nimitz-mare-island/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "hertz_hall",
          "name": "Hertz Hall",
          "address": "UC Berkeley Campus, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "https://music.berkeley.edu/concerts-events/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "livermore_shiva_vishnu_temple",
          "name": "Livermore Temple",
          "address": "1232 Arrowhead Ave, Livermore, CA 94551",
          "neighborhood": "Livermore",
          "url": "https://www.livermoretemple.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "make_out_room",
          "name": "Make Out Room|The Make Out Room|Make-Out Room",
          "address": "3225 22nd St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "http://www.makeoutroom.com/",
          "event_type_hints": [
            "dj_party",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "madrone_art_bar",
          "name": "Madrone Art Bar",
          "address": "500 Divisadero Street, San Francisco, CA 94117",
          "neighborhood": "Divisadero",
          "url": "https://madroneartbar.com/",
          "event_type_hints": [
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "littlefield_concert_hall",
          "name": "Littlefield Hall",
          "address": "5000 MacArthur Blvd, Oakland, CA 94613",
          "neighborhood": "Oakland",
          "url": "https://performingarts.mills.edu/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "ccrma",
          "name": "CCRMA|CCRMA The Knoll",
          "address": "660 Lomita Dr, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "https://ccrma.stanford.edu/concerts",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "bing_concert_hall",
          "name": "Bing Hall",
          "address": "327 Lasuen St, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "https://events.stanford.edu/bing_concert_hall",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "frost_amphitheater",
          "name": "Frost Amphitheater",
          "address": "351 Lasuen St, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "https://live.stanford.edu/venues/frost-amphitheater",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "center_for_new_music",
          "name": "Center for New Music",
          "address": "55 Taylor St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://centerfornewmusic.com/",
          "event_type_hints": [
            "experimental",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "joe_goode_annex",
          "name": "Joe Goode Annex",
          "address": "401 Alabama Street, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://joegoode.org/",
          "event_type_hints": [
            "workshop",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "piedmont_piano_company",
          "name": "Piedmont Piano Co",
          "address": "1728 San Pablo Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://piedmontpiano.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_sound_room",
          "name": "The Sound Room",
          "address": "2147 Broadway, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://www.soundroom.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "the_back_room",
          "name": "Back Room|The Back Room",
          "address": "1984 Bonita Ave,Berkeley,CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://backroommusic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "california_jazz_conservatory",
          "name": "CA Jazz Conservatory|JazzSchool|Jazz School",
          "address": "2040 Addison St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://cjc.edu/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "great_american_music_hall",
          "name": "Great American|Great American Music Hall|GAMH",
          "address": "859 O'Farrell St, San Francisco, CA 94109",
          "neighborhood": "Tenderloin",
          "url": "https://gamh.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_chapel",
          "name": "The Chapel",
          "address": "777 Valencia St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.thechapelsf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_independent",
          "name": "The Independent",
          "address": "628 Divisadero St, San Francisco, CA 94117",
          "neighborhood": "Divisadero",
          "url": "https://theindependentsf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "berkeley_rep",
          "name": "Berkeley Rep",
          "address": "2025 Addison St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.berkeleyrep.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "act_theater",
          "name": "ACT Theater|A.C.T.|Strand Theater|American Conservatory Theater ",
          "address": "415 Geary St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "",
          "event_type_hints": [],
          "default_start_time": "theater"
        },
        {
          "id": "act_rembe",
          "name": "ACT REMBE|Toni Rembe Theater|Rembi American Conservatory Theater ",
          "address": "415 Geary St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "",
          "event_type_hints": [],
          "default_start_time": "theater"
        },
        {
          "id": "magic_theatre",
          "name": "Magic Theatre",
          "address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
          "neighborhood": "Fort Mason",
          "url": "https://magictheatre.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "noe_valley_ministry",
          "name": "Noe Valley Ministry",
          "address": "1021 Sanchez St, San Francisco, CA 94114",
          "neighborhood": "Noe Valley",
          "url": "https://www.noevalleymusicseries.com/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_uc_theatre",
          "name": "UC Theatre",
          "address": "2036 University Ave, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://theuctheatre.org/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "oakland_secret",
          "name": "Oakland Secret",
          "address": "577 5th St, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.oaklandsecret.com/",
          "event_type_hints": [
            "live_music",
            "dj_party",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_bistro",
          "name": "The Bistro",
          "address": "1001 B St, Hayward, CA 94541",
          "neighborhood": "Hayward",
          "url": "https://www.the-bistro.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_cats",
          "name": "The Cats",
          "address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
          "neighborhood": "Los Gatos",
          "url": "https://www.thecatslosgatos.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_pear_theatre",
          "name": "The Pear Theatre",
          "address": "1110 La Avenida St, Mountain View, CA 94043",
          "neighborhood": "Mountain View",
          "url": "https://www.thepear.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "smoking_pig_bbq_sj",
          "name": "Smoking Pig|Smoking Pig BBQ San Jose",
          "address": "3340 N 1st St, San Jose, CA 95134",
          "neighborhood": "San Jose",
          "url": "https://smokingpigbbq.net/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "mountain_winery",
          "name": "Mountain Winery",
          "address": "14831 Pierce Rd, Saratoga, CA 95070",
          "neighborhood": "Saratoga",
          "url": "https://www.mountainwinery.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "paramount_theatre",
          "name": "Paramount Theatre",
          "address": "2025 Broadway, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://www.paramountoakland.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_marsh_sf",
          "name": "The Marsh SF|The Marsh|Marsh San Francisco|The Marsh San Francisco Mainstage",
          "address": "1062 Valencia St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://themarsh.org/our-venues/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "yes"
        },
        {
          "id": "the_marsh_berk",
          "name": "The Marsh Berk|The Marsh Theater Berkeley|The Marsh Berkeley Cabaret",
          "address": "2120 Allston Way, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://themarsh.org/our-venues/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "yes"
        },
        {
          "id": "black_cat",
          "name": "Black Cat",
          "address": "400 Eddy St, San Francisco, CA 94109",
          "neighborhood": "Tenderloin",
          "url": "https://blackcatsf.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "yoshis",
          "name": "Yoshi's",
          "address": "510 Embarcadero West, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.yoshis.com/",
          "event_type_hints": [
            "live_music",
            "jazz",
            "rnb_soul_funk"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "mr_tipples",
          "name": "Mr. Tipples",
          "address": "39 Fell St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://mrtipplessf.com/",
          "event_type_hints": [
            "jazz",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "dawn_club",
          "name": "Dawn Club",
          "address": "572 Market St, San Francisco, CA 94104",
          "neighborhood": "Financial District",
          "url": "https://www.dawnclub.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "keys_jazz_bistro",
          "name": "Keys Jazz Bistro",
          "address": "2243 Powell St, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://keysjazzbistro.com/upcoming-shows",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "biscuits__blues",
          "name": "Biscuits & Blues|Biscuits and Blues",
          "address": "401 Mason St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://biscuitsandblues.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "meyhouse",
          "name": "Meyhouse Speakeasy",
          "address": "640 Emerson St, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.meyhousejazz.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "stookeys_blue_room",
          "name": "Stookey's Blue Room",
          "address": "1523 Sutter St, San Francisco, CA 94109",
          "neighborhood": "Nob Hill",
          "url": "https://stookeysclubmoderne.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "sf_conservatory",
          "name": "SF Conservatory of Music|SFCM|San Francisco Conservatory of Music",
          "address": "50 Oak St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://sfcm.edu/performance-calendar",
          "event_type_hints": [
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "old_first_concerts",
          "name": "Old First Concerts",
          "address": "1751 Sacramento St, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://www.oldfirstconcerts.org/",
          "event_type_hints": [
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "# mechanics_institute",
          "name": "Mechanics' Institute",
          "address": "57 Post St, San Francisco, CA 94104",
          "neighborhood": "Financial District",
          "url": "https://www.milibrary.org/events",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "berkeley_piano_club",
          "name": "Berkeley Piano|Berkeley Piano Club",
          "address": "2724 Haste St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://berkeleypianoclub.org/",
          "event_type_hints": [
            "classical",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hillside_club",
          "name": "Hillside Club",
          "address": "2286 Cedar St, Berkeley, CA 94709",
          "neighborhood": "Berkeley",
          "url": "https://hillsideclub.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "alhambra_public_house",
          "name": "Alhambra PH|Alhambra Public House",
          "address": "831 Main Street, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "http://alhambra-irish-house.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "freewheel_brewing",
          "name": "Freewheel Brewing",
          "address": "3736 Florence Street, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.freewheelbrewing.com/redwood-city-1",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "cru_wine_bar",
          "name": "CRU Wine Bar",
          "address": "900 Middlefield Rd, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://cru-wine-bar-shop.wheree.com/",
          "event_type_hints": [
            "jazz",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "odc_theater",
          "name": "ODC Theater",
          "address": "3153 17th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://odc.dance/",
          "event_type_hints": [
            "dance"
          ],
          "default_start_time": ""
        },
        {
          "id": "z_space",
          "name": "Z Space",
          "address": "450 Florida St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.zspace.org/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "bottom_of_the_hill",
          "name": "Bottom of the Hill",
          "address": "1233 17th St, San Francisco, CA 94107",
          "neighborhood": "Potrero Hill",
          "url": "http://www.bottomofthehill.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "rickshaw_stop",
          "name": "Rickshaw Stop",
          "address": "155 Fell St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://rickshawstop.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "ivy_room",
          "name": "Ivy Room",
          "address": "860 San Pablo Ave, Albany, CA 94706",
          "neighborhood": "Albany",
          "url": "https://www.ivyroom.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hotel_utah_saloon",
          "name": "Hotel Utah|Hotel Utah Saloon|The Hotel Utah Saloon",
          "address": "500 4th St, San Francisco, CA 94107",
          "neighborhood": "SOMA",
          "url": "https://hotelutah.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_starry_plough",
          "name": "The Starry Plough",
          "address": "3101 Shattuck Ave, Berkeley, CA 94705",
          "neighborhood": "Berkeley",
          "url": "https://thestarryplough.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "city_lights_theater",
          "name": "City Lights Theater",
          "address": "529 S. Second Street, San Jose, CA 95112",
          "neighborhood": "San Jose",
          "url": "https://cltc.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "san_jose_stage",
          "name": "San Jose Stage",
          "address": "490 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.thestage.org/",
          "event_type_hints": [
            "theater",
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "wisteria_ways",
          "name": "Wisteria Ways",
          "address": "383 61st St, Oakland, CA 94618",
          "neighborhood": "Oakland",
          "url": "http://www.wisteriaways.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "924_gilman",
          "name": "924 Gilman",
          "address": "924 Gilman St, Berkeley, CA 94710",
          "neighborhood": "Berkeley",
          "url": "https://www.924gilman.org/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "san_jose_civic",
          "name": "San Jose Civic",
          "address": "135 W San Carlos St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "center_for_the_performing_arts",
          "name": "Center for the Performing Arts",
          "address": "255 S Almaden Blvd, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "montgomery_theater",
          "name": "Montgomery Theater",
          "address": "271 S Market St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "historic_bal_theatre",
          "name": "Historic BAL Theatre",
          "address": "14808 E 14th St, San Leandro, CA 94578",
          "neighborhood": "San Leandro",
          "url": "https://www.baltheatre.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "# aurora_theatre",
          "name": "Aurora Theatre",
          "address": "2081 Addison St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.auroratheatre.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "poor_house_bistro",
          "name": "Poor House Bistro",
          "address": "91 S Autumn St, San Jose, CA 95110",
          "neighborhood": "San Jose",
          "url": "https://poorhousebistro.com/events/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "shoreline_amphitheatre",
          "name": "Shoreline Amphitheatre",
          "address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
          "neighborhood": "Mountain View",
          "url": "https://www.shorelineamphitheatre.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "regency_ballroom",
          "name": "Regency Ballroom",
          "address": "1300 Van Ness Ave, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://www.theregencyballroom.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "rnb_soul_funk"
          ],
          "default_start_time": ""
        },
        {
          "id": "davies_symphony_hall",
          "name": "Davies Symphony Hall|San Francisco Symphony",
          "address": "201 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://www.sfsymphony.org/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "war_memorial_opera_house",
          "name": "War Memorial Opera House|Opera House",
          "address": "301 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://www.sfopera.com/",
          "event_type_hints": [
            "classical",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "california_theatre",
          "name": "California Theatre",
          "address": "345 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "theater",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_lucky_horseshoe",
          "name": "The Lucky Horseshoe",
          "address": "453 Cortland Ave, San Francisco, CA 94110",
          "neighborhood": "Bernal Heights",
          "url": "https://www.theluckyhorseshoebar.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "little_hill_lounge",
          "name": "Little Hill Lounge",
          "address": "10753 San Pablo Ave, El Cerrito, CA 94530",
          "neighborhood": "El Cerrito",
          "url": "https://littlehillelcerrito.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "peacock_lounge",
          "name": "Peacock Lounge",
          "address": "552 Haight St, San Francisco, CA 94117",
          "neighborhood": "Haight",
          "url": "https://sfpeacock.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "cafe_borrone",
          "name": "Cafe Borrone",
          "address": "1010 El Camino Real, Menlo Park, CA 94025",
          "neighborhood": "Menlo Park",
          "url": "https://www.cafeborrone.com/events",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "vino_locale",
          "name": "Vino Locale",
          "address": "431 Kipling St, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.vinolocale.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "cornerstone",
          "name": "Cornerstone",
          "address": "2367 Shattuck Ave, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.tixr.com/groups/cornerstoneberkeley",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "club_fox",
          "name": "Club Fox",
          "address": "2209 Broadway, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://clubfoxrwc.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "fox_theater_rwc",
          "name": "Fox Theater Redwood City",
          "address": "2209 Broadway, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.foxrwc.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "fox_theatre_oak",
          "name": "Fox Theatre OAK|The Fox|Fox Theater",
          "address": "1807 Telegraph Avenue, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://thefoxoakland.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "new_conservatory_nctc",
          "name": "New Conservatory (NCTC)",
          "address": "25 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://nctcsf.org/",
          "event_type_hints": [
            "theater",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "brava_theater",
          "name": "Brava Theater",
          "address": "2781 24th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.brava.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "mojo_lounge",
          "name": "Mojo Lounge",
          "address": "3714 Peralta Blvd, Fremont, CA 94536",
          "neighborhood": "Fremont",
          "url": "https://www.instagram.com/themojolounge.fremont/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "thee_stork_club",
          "name": "Thee Stork Club",
          "address": "2330 Telegraph Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://theestorkclub.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "elis_mile_high",
          "name": "Eli's Mile High",
          "address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
          "neighborhood": "Oakland",
          "url": "https://www.elismilehighclub.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "stay_gold_deli",
          "name": "Stay Gold Deli",
          "address": "2635 San Pablo Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://www.instagram.com/staygoldoakland/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_ritz",
          "name": "The Ritz",
          "address": "400 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://theritzsanjose.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_warfield",
          "name": "The Warfield",
          "address": "982 Market St, San Francisco, CA 94102",
          "neighborhood": "Mid-Market",
          "url": "https://www.thewarfieldtheatre.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "greek_theatre",
          "name": "Greek Theatre|Greek|The Greek",
          "address": "2001 Gayley Rd, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "https://thegreekberkeley.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "bill_graham_civic",
          "name": "Bill Graham Civic|Civic Auditorium|Bill Graham Civic Auditorium",
          "address": "99 Grove St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://billgrahamcivic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "quarter_note",
          "name": "Quarter Note",
          "address": "1214 Apollo Way, Sunnyvale, CA 94085",
          "neighborhood": "Sunnyvale",
          "url": "https://quarternote.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "public_works",
          "name": "Public Works",
          "address": "161 Erie St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://publicsf.com/",
          "event_type_hints": [
            "live_music",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "1015_folsom",
          "name": "1015 Folsom",
          "address": "1015 Folsom St, San Francisco, CA",
          "neighborhood": "SOMA",
          "url": "https://1015.com/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_midway",
          "name": "The Midway",
          "address": "900 Marin St, San Francisco, CA 94124",
          "neighborhood": "Dogpatch",
          "url": "https://themidwaysf.com/",
          "event_type_hints": [
            "live_music",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "boom_boom_room",
          "name": "Boom Boom Room",
          "address": "1601 Fillmore St, San Francisco, CA 94115",
          "neighborhood": "Fillmore",
          "url": "https://boomboomroom.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": "21:00"
        },
        {
          "id": "chase_center",
          "name": "Chase Center|Warriors Stadium",
          "address": "1 Warriors Way, San Francisco, CA 94158",
          "neighborhood": "Mission Bay",
          "url": "https://chasecenter.com/",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "oracle_park",
          "name": "Oracle Park",
          "address": "24 Willie Mays Plaza, San Francisco, CA 94107",
          "neighborhood": "SOMA",
          "url": "https://www.mlb.com/giants",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "cheaper_than_therapy",
          "name": "Cheaper Than Therapy",
          "address": "533 Sutter St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://www.cttcomedy.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_setup",
          "name": "The Setup",
          "address": "222 Hyde St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://www.setupcomedy.com/",
          "event_type_hints": [
            "comedy",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "punch_line",
          "name": "Punch Line",
          "address": "444 Battery St, San Francisco, CA 94111",
          "neighborhood": "Financial District",
          "url": "https://www.punchlinecomedyclub.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "cobbs_comedy_club",
          "name": "Cobb's Comedy Club",
          "address": "915 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.cobbscomedy.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "rooster_t_feathers",
          "name": "Rooster T. Feathers",
          "address": "157 W El Camino Real, Sunnyvale, CA 94087",
          "neighborhood": "Sunnyvale",
          "url": "https://roostertfeathers.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "san_jose_improv",
          "name": "San Jose Improv",
          "address": "62 S 2nd St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjose.improv.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "tommy_ts",
          "name": "Tommy T's",
          "address": "5104 Hopyard Rd, Pleasanton, CA 94588",
          "neighborhood": "Pleasanton",
          "url": "https://www.tommyts.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "farallon_club",
          "name": "Farallon Club",
          "address": "21859 Mission Blvd, Hayward, CA 94541",
          "neighborhood": "Hayward",
          "url": "https://farallonpresenta.com/",
          "event_type_hints": [
            "latin_world"
          ],
          "default_start_time": ""
        },
        {
          "id": "dark_horse_lounge",
          "name": "Dark Horse Lounge",
          "address": "24018 Hesperian Blvd, Hayward, CA 94545",
          "neighborhood": "Hayward",
          "url": "https://www.darkhorselounge.net/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "caravan_lounge",
          "name": "Caravan Lounge",
          "address": "98 S Almaden Ave, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.facebook.com/CaravanLoungeSanJose/",
          "event_type_hints": [
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "masonic_hall",
          "name": "Masonic Hall|The Masonic",
          "address": "1111 California St, San Francisco, CA 94108",
          "neighborhood": "Nob Hill",
          "url": "https://sfmasonic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "august_hall",
          "name": "August Hall",
          "address": "420 Mason St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://www.augusthallsf.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "good_karma",
          "name": "Good Karma",
          "address": "37 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.facebook.com/GoodKarmaSJ",
          "event_type_hints": [
            "live_music",
            "jazz",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_box_shop",
          "name": "The Box Shop",
          "address": "951 Hudson Ave, San Francisco, CA 94124",
          "neighborhood": "Bayview",
          "url": "https://boxshopsf.org/",
          "event_type_hints": [
            "community",
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_fillmore",
          "name": "The Fillmore|Filmore",
          "address": "1805 Geary Blvd, San Francisco, CA 94115",
          "neighborhood": "Fillmore",
          "url": "https://www.thefillmore.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "the_elbo_room",
          "name": "The Elbo Room",
          "address": "311 Broadway, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.elboroomjacklondon.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "dna_lounge",
          "name": "DNA Lounge",
          "address": "375 Eleventh Street, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.dnalounge.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "bimbos_365",
          "name": "Bimbos 365",
          "address": "1025 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://bimbos365club.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "folk"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_saloon",
          "name": "The Saloon",
          "address": "1232 Grant Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://thesaloonsf.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "halcyon",
          "name": "Halcyon",
          "address": "314 11th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://halcyon-sf.com/main/",
          "event_type_hints": [
            "live_music",
            "electronic",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "audio",
          "name": "Audio|Audio SF",
          "address": "316 11th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://audiosf.com/",
          "event_type_hints": [
            "live_music",
            "electronic",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "ashkenaz",
          "name": "Ashkenaz",
          "address": "1317 San Pablo Ave, Berkeley, CA 94702",
          "neighborhood": "Berkeley",
          "url": "https://www.ashkenaz.com/full-calendar",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "cry_baby",
          "name": "Cry Baby",
          "address": "1928 Telegraph Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://crybaby.live/events/",
          "event_type_hints": [
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "cafe_du_nord",
          "name": "Cafe Du Nord",
          "address": "2174 Market St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://cafedunord.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "swedish_american",
          "name": "Swedish American Hall|Swedish",
          "address": "2174 Market St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://cafedunord.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "# thee_parkside",
          "name": "Thee Parkside",
          "address": "1600 17th St, San Francisco, CA 94107",
          "neighborhood": "Potrero Hill",
          "url": "https://www.theeparkside.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_knockout",
          "name": "The Knockout",
          "address": "3223 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://theknockoutsf.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "the_lost_church",
          "name": "The Lost Church",
          "address": "988 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://thelostchurch.org/",
          "event_type_hints": [
            "live_music",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "sap_center",
          "name": "SAP Center",
          "address": "525 W Santa Clara St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.sapcenter.com/events",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "levis_stadium",
          "name": "Levis Stadium",
          "address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
          "neighborhood": "Santa Clara",
          "url": "https://levisstadium.com/events/category/tickets/",
          "event_type_hints": [
            "sports",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_fireside",
          "name": "The Fireside",
          "address": "1453 Webster St, Alameda, CA 94501",
          "neighborhood": "Alameda",
          "url": "https://www.thefiresidelounge.com/live-music",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_mighty",
          "name": "The Great Northern|The Mighty|Great Northern|Mighty",
          "address": "119 Utah St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.thegreatnorthernsf.com/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "rhythmix",
          "name": "Rhythmix",
          "address": "2513 Blanding Ave, Alameda, CA 94501",
          "neighborhood": "Alameda",
          "url": "https://www.rhythmix.org/events/",
          "event_type_hints": [
            "workshop",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "white_horse",
          "name": "White Horse Inn",
          "address": "6551 Telegraph Ave, Oakland, CA 94609",
          "neighborhood": "Oakland",
          "url": "https://www.instagram.com/whitehorsebar/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "rite_spot_cafe",
          "name": "Rite Spot Cafe",
          "address": "2099 Folsom St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.ritespotcafe.net/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "winters",
          "name": "Winters",
          "address": "1522 Francisco Blvd, Pacifica, CA 94044",
          "neighborhood": "Pacifica",
          "url": "https://winterstavern.com/live-music-calendar/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "sailing_goat",
          "name": "Sailing Goat",
          "address": "1900 Stenmark Dr, Richmond, CA 94801",
          "neighborhood": "Richmond",
          "url": "https://www.sailinggoatrestaurant.com/events",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hotel_mac",
          "name": "Hotel Mac",
          "address": "10 Cottage Ave, Richmond, CA 94801",
          "neighborhood": "Richmond",
          "url": "https://www.festivalopera.org/at-the-mac",
          "event_type_hints": [
            "live_music",
            "classical",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "sfmoma",
          "name": "SFMoma|SF Museum of Modern Art|San Francisco Museum of Modern Art",
          "address": "151 Third St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.sfmoma.org/events/",
          "event_type_hints": [
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "omca",
          "name": "OMCA",
          "address": "1000 Oak St, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://museumca.org/events/",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "cal_academy_of_science",
          "name": "Cal Academy of Science",
          "address": "55 Music Concourse Dr, San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://www.calacademy.org/nightlife",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "pacific_film_archive",
          "name": "Pacific Film Archive",
          "address": "2155 Center St, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "https://bampfa.org/visit/calendar",
          "event_type_hints": [
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "roxy",
          "name": "Roxy|Roxy Theater|The Roxy",
          "address": "3117 16th St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://roxie.com/now-playing/",
          "event_type_hints": [
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "4_star_theater",
          "name": "4 Star Theater",
          "address": "2200 Clement St, San Francisco, CA 94121",
          "neighborhood": "Outer Richmond",
          "url": "https://www.4-star-movies.com/",
          "event_type_hints": [
            "film",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "castro_theater",
          "name": "Castro Theater|Castro",
          "address": "429 Castro St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://thecastro.com/listing/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "exploratorium",
          "name": "Exploratorium",
          "address": "Pier 15, San Francisco, CA 94111",
          "neighborhood": "Embarcadero",
          "url": "https://www.exploratorium.edu/visit/calendar",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "de_young",
          "name": "De Young",
          "address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://www.famsf.org/calendar",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "yerba_buena_center",
          "name": "Yerba Buena Center|Blue Shield of California Theater at YBCA|YBCA|Yerba Buena Gardens",
          "address": "701 Mission Street, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://ybca.org/calendar/",
          "event_type_hints": [
            "dance"
          ],
          "default_start_time": ""
        },
        {
          "id": "verdi_club",
          "name": "Verdi Club",
          "address": "2424 Mariposa St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.verdiclub.net/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "la_pena",
          "name": "La Pena",
          "address": "3105 Shattuck Ave, Berkeley, CA 94705",
          "neighborhood": "Berkeley",
          "url": "https://lapena.org/calendar/category/lapena-events/list/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "el_rio",
          "name": "El Rio",
          "address": "3158 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.elriosf.com/calendar",
          "event_type_hints": [
            "community",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "f8",
          "name": "F8|F8 1192 Folsom",
          "address": "1192 Folsom St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.feightsf.com/",
          "event_type_hints": [
            "electronic",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "oasis",
          "name": "Oasis",
          "address": "298 11th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.sfoasis.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "first_church_berkeley",
          "name": "First Cong Ch Berkeley|First Congregational Church Berkeley",
          "address": "2345 Channing Way, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.firstchurchberkeley.org/resonance/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "grace_cathedral_organ",
          "name": "Grace Cathedral Organ",
          "address": "1100 California St, San Francisco, CA 94108",
          "neighborhood": "Nob Hill",
          "url": "https://gracecathedral.org/series/organ-recital-series/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "st_josephs_arts_society",
          "name": "St Josephs Arts Society",
          "address": "1401 Howard St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://saintjosephsartssociety.com/saint-josephs-arts-society",
          "event_type_hints": [
            "community",
            "art",
            "literary"
          ],
          "default_start_time": ""
        },
        {
          "id": "great_star_theater",
          "name": "Great Star Theater",
          "address": "636 Jackson Street, San Francisco, CA 94133",
          "neighborhood": "Chinatown",
          "url": "https://www.greatstartheater.org/whats-playing",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "amoeba_music_sf",
          "name": "Amoeba Music SF|Amoeba San Francisco",
          "address": "1855 Haight St, San Francisco, CA 94117",
          "neighborhood": "Haight",
          "url": "https://www.amoeba.com/live-shows/upcoming",
          "event_type_hints": [
            "community",
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "local_edition",
          "name": "Local Edition",
          "address": "691 Market St, San Francisco, CA 94105",
          "neighborhood": "Financial District",
          "url": "https://www.localeditionsf.com/#events",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_monarch",
          "name": "The Monarch",
          "address": "101 6th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.monarchsf.com/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "brick_and_mortar",
          "name": "Brick and Mortar",
          "address": "1710 Mission St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://www.brickandmortarmusic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "bazaar_cafe",
          "name": "Bazaar Cafe",
          "address": "5927 California St, San Francisco, CA 94121",
          "neighborhood": "Outer Richmond",
          "url": "https://bazaarcafe.com/calendar/",
          "event_type_hints": [
            "live_music",
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "geoffreys_inner_circle",
          "name": "Geoffreys Inner Circle",
          "address": "410 14th St, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://geoffreyslive.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "underground_sf",
          "name": "Underground SF",
          "address": "424 Haight St, San Francisco, CA 94117",
          "neighborhood": "Lower Haight",
          "url": "https://undergroundsf.com/events/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "roccapulco",
          "name": "Roccapulco",
          "address": "3140 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "http://www.roccapulco.com/events-calendar.html",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hi_lo_club",
          "name": "Hi-Lo Club|Hi Lo Club|HiLo Club",
          "address": "1423 Polk St, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://www.instagram.com/sf_hiloclub/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "bix",
          "name": "Bix",
          "address": "56 Gold St, San Francisco, CA 94133",
          "neighborhood": "Downtown",
          "url": "https://bixrestaurant.com/music/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "ocean_ale_house",
          "name": "Ocean Ale House",
          "address": "1314 Ocean Ave, San Francisco, CA 94112",
          "neighborhood": "Ingleside",
          "url": "https://oceanalehouse.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "rwc_music_on_the_square",
          "name": "Music On The Square|Redwood City Music on the Square",
          "address": "2200 Broadway, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.redwoodcity.org/residents/redwood-city-events/music/music-on-the-square",
          "event_type_hints": [
            "live_music",
            "community",
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "sjz_break_room",
          "name": "SJZ Break Room",
          "address": "38 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosejazz.org/breakroom",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "valley_center",
          "name": "Valley Center for Performing Arts|Valley Center for the Performing Arts|ValleyCenter for Performing Arts",
          "address": "3500 Mountain Blvd, Oakland, CA 94602",
          "neighborhood": "Oakland",
          "url": "",
          "event_type_hints": [
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "mvcpa",
          "name": "MV Center for the Performing Arts|Mountain View Center for the Performing Arts",
          "address": "500 Castro St, Mountain View, CA 94041",
          "neighborhood": "Mountain View",
          "url": "https://www.mvcpa.com/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "cafe_zoe_pizza_guy",
          "name": "Cafe Zoe",
          "address": "1929 Menalto Ave, Menlo Park, CA 94025",
          "neighborhood": "Menlo Park",
          "url": "https://www.instagram.com/neighborhoodpizzaguy/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "herbst_theater",
          "name": "Herbst Theatre|Herbst|Veterans Building|War Memorial - Veterans Building",
          "address": "401 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "",
          "event_type_hints": [
            "classical",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "presidio_theater",
          "name": "Presidio Theatre",
          "address": "99 Moraga Ave, San Francisco, CA 94129",
          "neighborhood": "Presidio",
          "url": "https://www.presidiotheatre.org/shows",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "zellerbach",
          "name": "Zellerbach Hall|Cal Performances",
          "address": "101 Zellerbach Hall, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "piedmont_center",
          "name": "Piedmont CFTA|Piedmont Center for the Arts",
          "address": "801 Magnolia Ave, Piedmont, CA 94611",
          "neighborhood": "Piedmont",
          "url": "https://www.piedmontcenterforthearts.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "canada_theater",
          "name": "Cañada College Theater|Canada Theater",
          "address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
          "neighborhood": "Redwood City",
          "url": "https://redwoodsymphony.org/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "ggp_music_concourse",
          "name": "Golden Gate Bandshell|GGP Sprekles Music Concourse|Music Concourse|Sprekles",
          "address": "San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://sfrecpark.org/1570/Golden-Gate-Bandshell-Concerts",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "orpheum_theater",
          "name": "Orpheum Theatre",
          "address": "1192 Market St, San Francisco, CA 94102",
          "neighborhood": "Mid-Market",
          "url": "https://broadwaysf.com/Online/default.asp",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "curran_theater",
          "name": "Curran Theatre|Curran",
          "address": "445 Geary St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "golden_gate_theater",
          "name": "Golden Gate Theatre",
          "address": "1 Taylor St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://us.atgtickets.com/venues/golden-gate-theatre/whats-on/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "down_home_music",
          "name": "Down Home Music",
          "address": "10341 San Pablo Ave, El Cerrito, CA 94530",
          "neighborhood": "El Cerrito",
          "url": "https://www.downhomemusic.com/new-in-store-events-coming-up-down-home-music/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "kilowatt",
          "name": "Kilowatt",
          "address": "3160 16th St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://kilowattbar.com/events",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "jax_vinyards",
          "name": "JAX Vineyards",
          "address": "326 Brannan St, San Francisco, CA 94107",
          "neighborhood": "SOMA",
          "url": "https://jaxvineyards.com/events/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "bach_dds",
          "name": "Bach Dancing|Bach Dancing & Dynamite Society",
          "address": "311 Mirada Road, Half Moon Bay, CA 94019",
          "neighborhood": "Half Moon Bay",
          "url": "https://www.bachddsoc.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": "16:30"
        },
        {
          "id": "cubberley",
          "name": "Cubberly Theater",
          "address": "4000 Middlefield Rd, Palo Alto, CA 94303",
          "neighborhood": "Palo Alto",
          "url": "https://www.paloalto.gov/Departments/Community-Services/Facility-Rentals/Cubberley-Theatre",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "first_lutheran_pa",
          "name": "First Lutheran PA|First Lutheran Church Palo Alto",
          "address": "600 Homer Ave, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.flcpa.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "ashby_stage",
          "name": "Ashby Stage|Shotgun|Shotgun Players",
          "address": "1901 Ashby Ave, Berkeley, CA 94703",
          "neighborhood": "Berkeley",
          "url": "https://shotgunplayers.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "19:00|Sun=17:00"
        },
        {
          "id": "shotgun_studios",
          "name": "Shotgun Studios",
          "address": "1201 University Ave, Berkeley, CA 94702",
          "neighborhood": "Berkeley",
          "url": "https://shotgunplayers.org/purpose-history/the-shotgun-studios/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "david_brower_center",
          "name": "David Brower Center",
          "address": "2150 Allston Way, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.browercenter.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "belle_cora",
          "name": "Belle Cora",
          "address": "565 Green St, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://thebellecora.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "blush",
          "name": "Blush! Wine Bar|Blush Wine Bar|Blush",
          "address": "476 Castro St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://blushwinebar.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "scopo_divino",
          "name": "Scopo Divino",
          "address": "2800 California St, San Francisco, CA 94115",
          "neighborhood": "Pacific Heights",
          "url": "https://www.scopodivino.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hammer_theater",
          "name": "Hammer Theatre",
          "address": "101 Paseo De San Antonio , San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://hammertheatre.com/events-list/",
          "event_type_hints": [
            "live_music",
            "ballet",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "opera_atrium_theater",
          "name": "Opera Atrium|Taube Atrium|ADLER SCHWABACHER RECITAL",
          "address": "401 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "cat_club",
          "name": "Cat Club",
          "address": "1190 Folsom St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.sfcatclub.com/calendar",
          "event_type_hints": [
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "lucie_stern_pa",
          "name": "Lucie Stern CC|Lucie Stern Theatre|Lucie Stern",
          "address": "1305 Middlefield Road, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "lytton_plaza",
          "name": "Lytton Plaza|Lytton",
          "address": "200 University Ave, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.paloalto.gov/Departments/Community-Services/Parks-Open-Space-Golf-Division/Neighborhood-Parks/Lytton-Plaza",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "mitchell_park_center",
          "name": "Mitchell Park|Mitchell Park Center",
          "address": "3700 Middlefield Rd, Palo Alto, CA 94303",
          "neighborhood": "Palo Alto",
          "url": "",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "club_fugazi",
          "name": "Club Fugazi",
          "address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.clubfugazisf.com/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "counterpulse",
          "name": "CounterPulse",
          "address": "80 Turk St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://counterpulse.org/",
          "event_type_hints": [
            "dance",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "dance_mission",
          "name": "Dance Mission Theater",
          "address": "3316 24th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.dancemissiontheater.org/",
          "event_type_hints": [
            "dance",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "sf_playhouse",
          "name": "San Francisco Playhouse",
          "address": "450 Post St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://www.sfplayhouse.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "neck_of_the_woods",
          "name": "Neck of the Woods",
          "address": "406 Clement St, San Francisco, CA 94118",
          "neighborhood": "Inner Richmond",
          "url": "https://neckofthewoodssf.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_riptide",
          "name": "The Riptide",
          "address": "3639 Taraval St, San Francisco, CA 94116",
          "neighborhood": "Outer Sunset",
          "url": "https://riptidesf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "shelton_theater",
          "name": "Shelton Theater",
          "address": "533 Sutter St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://sheltontheater.org/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "cowell_theater",
          "name": "Cowell Theater",
          "address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
          "neighborhood": "Fort Mason",
          "url": "https://fortmason.org/our-venues/cowell-theater/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "bayfront_theater",
          "name": "BATS Bayfront Theater",
          "address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
          "neighborhood": "Fort Mason",
          "url": "https://www.improv.org/",
          "event_type_hints": [
            "theater",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "sydney_goldstein",
          "name": "Sydney Goldstein Theater",
          "address": "275 Hayes St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://sfciviccenter.org/places/the-sydney-goldstein-theater/",
          "event_type_hints": [
            "literary",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "palace_of_fine_arts",
          "name": "Palace of Fine Arts",
          "address": "3601 Lyon St, San Francisco, CA 94123",
          "neighborhood": "Marina",
          "url": "https://palaceoffinearts.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "cow_palace",
          "name": "Cow Palace",
          "address": "2600 Geneva Ave, Daly City, CA 94014",
          "neighborhood": "Daly City",
          "url": "https://www.cowpalace.com/",
          "event_type_hints": [
            "live_music",
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "mabuhay_gardens",
          "name": "The Mab|Mabuhay|Mabuhay Gardens",
          "address": "443 Broadway, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://themab.org/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_monkey_house",
          "name": "The Monkey House",
          "address": "1638 University Avenue, Berkeley, CA",
          "neighborhood": "Berkeley",
          "url": "https://www.themonkeyhouse.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "spruce_stree_concerts",
          "name": "Spruce Street Concerts",
          "address": "Berkeley, CA",
          "neighborhood": "Berkeley",
          "url": "https://www.bayimproviser.com/venue/220/spruce-street-concerts",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "hosfelt_gallery",
          "name": "Hosfelt Gallery",
          "address": "260 Utah Street, San Francisco, CA",
          "neighborhood": "Mission",
          "url": "https://hosfeltgallery.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "rootstock_arts",
          "name": "Rootstock Arts",
          "address": "5741 Telegraph Ave, Oakland, CA",
          "neighborhood": "Temescal",
          "url": "https://rootstockarts.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "maybeck_studio",
          "name": "Maybeck Studio",
          "address": "1537 Euclid Ave, Berkeley, CA",
          "neighborhood": "Berkeley",
          "url": "https://www.maybeckstudio.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "palo_alto_art_center",
          "name": "Palo Alto Art Center",
          "address": "1313 Newell Road, Palo Alto, CA 94303",
          "neighborhood": "Palo Alto",
          "url": "https://www.paloalto.gov/Departments/Community-Services/Arts-Sciences/Palo-Alto-Art-Center",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "artists_television_access",
          "name": "Television Access|Artists Television Access",
          "address": "922 Valencia Street, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.atasite.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "blue_heron_boathouse",
          "name": "Blue Heron Boathouse",
          "address": "50 Blue Heron Lake Drive, San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://blueheronboathouse.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "soundbox",
          "name": "SoundBox",
          "address": "201 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://www.sfsymphony.org/Discover-the-Music/SoundBox",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "irish_cultural_center",
          "name": "Irish Cultural Center|United Irish Cultural Center",
          "address": "2700 45th Ave, San Francisco, CA 94116",
          "neighborhood": "Outer Sunset",
          "url": "https://irishcentersf.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "canessa_gallery",
          "name": "Canessa Gallery|Canessa",
          "address": "708 Montgomery St, San Francisco, CA 94111",
          "neighborhood": "Union Square",
          "url": "http://www.canessa.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "meets_the_eye",
          "name": "Meets the Eye Studios",
          "address": "939 Terminal Way, San Carlos, CA 94070",
          "neighborhood": "San Carlos",
          "url": "https://meetstheeyestudios.com/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "sf_eagle",
          "name": "SF Eagle|The Eagle|Eagle SF|Eagle",
          "address": "398 12th St, San Francisco, CA 94103",
          "neighborhood": "SoMa",
          "url": "https://sf-eagle.com/",
          "event_type_hints": [
            "live_music",
            "punk",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "stern_grove",
          "name": "Stern Grove|Stern Grove Festival|Sigmund Stern Recreation Grove",
          "address": "2750 19th Ave, San Francisco, CA 94132",
          "neighborhood": "Sunset",
          "url": "https://www.sterngrove.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "dinkelspiel_auditorium",
          "name": "Dinkelspiel Auditorium",
          "address": "471 Lagunita Dr, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "",
          "event_type_hints": [
            "classical",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "stanford_memchu",
          "name": "Stanford Memorial Church",
          "address": "450 Jane Stanford Way, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "",
          "event_type_hints": [
            "classical",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "berkeley_city_club",
          "name": "Berkeley City Club",
          "address": "2315 Durant Ave, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "madarae",
          "name": "Madarae",
          "address": "46 Minna St, San Francisco, CA 94105",
          "neighborhood": "SOMA",
          "url": "https://www.madarae.com/",
          "event_type_hints": [
            "live_music",
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "glide_memorial",
          "name": "Glide Memorial Church|Glide Memorial|GLIDE|Glide Church",
          "address": "330 Ellis St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://www.glide.org/",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_blue_light",
          "name": "Blue Light",
          "address": "1979 Union St, San Francisco, CA 94123",
          "neighborhood": "Marina",
          "url": "https://bluelightsf.com/",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "plough_and_stars",
          "name": "The Plough and the Stars|Plough and the Stars|Plough & the Stars",
          "address": "116 Clement St, San Francisco, CA 94118",
          "neighborhood": "Inner Richmond",
          "url": "https://theploughandstars.com/",
          "event_type_hints": [
            "live_music",
            "folk"
          ],
          "default_start_time": ""
        },
        {
          "id": "new_farm",
          "name": "The New Farm",
          "address": "10 Cargo Way, San Francisco, CA 94124",
          "neighborhood": "Dogpatch",
          "url": "https://www.thenewfarmsf.org/",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": ""
        }
      ],
      "geo": {
        "regions": {
          "San Francisco": [
            "Bayview",
            "Bernal Heights",
            "Castro",
            "Chinatown",
            "Civic Center",
            "Divisadero",
            "Dogpatch",
            "Embarcadero",
            "Fillmore",
            "Financial District",
            "Fort Mason",
            "Glen Park",
            "Golden Gate Park",
            "Haight",
            "Hayes Valley",
            "Ingleside",
            "Japantown",
            "Lower Haight",
            "Mid-Market",
            "Mission",
            "Mission Bay",
            "Nob Hill",
            "Noe Valley",
            "North Beach",
            "Outer Richmond",
            "Pacific Heights",
            "Polk Gulch",
            "Potrero Hill",
            "Presidio",
            "SOMA",
            "Tenderloin",
            "Union Square"
          ],
          "East Bay": [
            "Alameda",
            "Albany",
            "Berkeley",
            "El Cerrito",
            "Fremont",
            "Hayward",
            "Livermore",
            "Oakland",
            "Piedmont",
            "Pleasanton",
            "Richmond",
            "San Leandro",
            "Temescal",
            "Vallejo"
          ],
          "Oakland": [
            "Oakland",
            "Piedmont",
            "Temescal"
          ],
          "South Bay": [
            "Los Gatos",
            "Mountain View",
            "San Jose",
            "Santa Clara",
            "Saratoga",
            "Sunnyvale"
          ],
          "Peninsula": [
            "Half Moon Bay",
            "Menlo Park",
            "Pacifica",
            "Palo Alto",
            "Redwood City",
            "Stanford"
          ]
        },
        "neighborhoods": {
          "Alameda": {
            "description": "Island city in the East Bay"
          },
          "Albany": {
            "description": "Small city between Berkeley and El Cerrito"
          },
          "Bayview": {
            "description": "Southeast SF neighborhood"
          },
          "Berkeley": {
            "description": "University city in the East Bay"
          },
          "Bernal Heights": {
            "description": "Hilltop SF neighborhood south of the Mission",
            "display": "Bernal"
          },
          "Castro": {
            "description": "Historic SF neighborhood near Market St"
          },
          "Chinatown": {
            "description": "Historic SF neighborhood north of Downtown"
          },
          "Civic Center": {
            "description": "SF government and arts district around City Hall"
          },
          "Divisadero": {
            "description": "SF corridor between NoPa and Western Addition"
          },
          "Dogpatch": {
            "description": "SF waterfront neighborhood south of Mission Bay"
          },
          "El Cerrito": {
            "description": "Small East Bay city north of Berkeley"
          },
          "Embarcadero": {
            "description": "SF waterfront along the bay"
          },
          "Fillmore": {
            "description": "SF neighborhood with historic jazz heritage"
          },
          "Financial District": {
            "description": "SF downtown business district",
            "display": "FiDi"
          },
          "Fort Mason": {
            "description": "SF waterfront arts center near the Marina"
          },
          "Fremont": {
            "description": "South East Bay city"
          },
          "Glen Park": {
            "description": "Quiet SF neighborhood south of Noe Valley"
          },
          "Golden Gate Park": {
            "description": "SF's large urban park spanning the Richmond and Sunset",
            "display": "GGP"
          },
          "Haight": {
            "description": "SF neighborhood known for 1960s counterculture"
          },
          "Half Moon Bay": {
            "description": "Coastal town on the Pacific side of the Peninsula",
            "display": "HMB"
          },
          "Hayes Valley": {
            "description": "Trendy SF neighborhood near Civic Center"
          },
          "Hayward": {
            "description": "East Bay city between Oakland and Fremont"
          },
          "Ingleside": {
            "description": "Residential SF neighborhood along Ocean Ave"
          },
          "Japantown": {
            "description": "SF cultural district around Japan Center",
            "display": "J-town"
          },
          "Livermore": {
            "description": "East Bay city in the Tri-Valley"
          },
          "Los Gatos": {
            "description": "South Bay town in the Santa Cruz foothills"
          },
          "Lower Haight": {
            "description": "SF neighborhood between Haight and Hayes Valley"
          },
          "Menlo Park": {
            "description": "Peninsula city near Stanford"
          },
          "Mid-Market": {
            "description": "SF stretch of Market St between Downtown and Castro"
          },
          "Mission": {
            "description": "Vibrant SF neighborhood along Mission St"
          },
          "Mission Bay": {
            "description": "SF waterfront neighborhood near Chase Center"
          },
          "Mountain View": {
            "description": "South Bay city, home to Shoreline Amphitheatre",
            "display": "Mtn View"
          },
          "Nob Hill": {
            "description": "Hilltop SF neighborhood known for hotels and cable cars"
          },
          "Noe Valley": {
            "description": "Family-friendly SF neighborhood south of the Castro"
          },
          "North Beach": {
            "description": "SF Italian neighborhood near Chinatown"
          },
          "Oakland": {
            "description": "Major East Bay city"
          },
          "Outer Richmond": {
            "description": "SF neighborhood between GGP and the ocean",
            "display": "Outer Rich"
          },
          "Pacifica": {
            "description": "Coastal city south of SF"
          },
          "Pacific Heights": {
            "description": "Upscale SF neighborhood with bay views",
            "display": "Pac Heights"
          },
          "Palo Alto": {
            "description": "Peninsula city near Stanford University"
          },
          "Piedmont": {
            "description": "Small city surrounded by Oakland"
          },
          "Pleasanton": {
            "description": "East Bay city in the Tri-Valley"
          },
          "Polk Gulch": {
            "description": "SF corridor along Polk St",
            "display": "Polk"
          },
          "Potrero Hill": {
            "description": "SF hilltop neighborhood south of SOMA",
            "display": "Potrero"
          },
          "Presidio": {
            "description": "Former military base turned national park in SF"
          },
          "Redwood City": {
            "description": "Peninsula city between San Mateo and Palo Alto",
            "display": "RWC"
          },
          "Richmond": {
            "description": "East Bay city on the bay shore"
          },
          "San Jose": {
            "description": "Largest South Bay city"
          },
          "San Leandro": {
            "description": "East Bay city between Oakland and Hayward"
          },
          "Santa Clara": {
            "description": "South Bay city, home to Levi's Stadium"
          },
          "Saratoga": {
            "description": "South Bay town in the foothills"
          },
          "SOMA": {
            "description": "SF neighborhood South of Market St"
          },
          "Stanford": {
            "description": "Stanford University campus area"
          },
          "Sunnyvale": {
            "description": "South Bay city between Mtn View and Santa Clara"
          },
          "Temescal": {
            "description": "Oakland neighborhood along Telegraph Ave"
          },
          "Tenderloin": {
            "description": "Central SF neighborhood near Union Square",
            "display": "TL"
          },
          "Union Square": {
            "description": "SF shopping and theater district",
            "display": "Union Sq"
          },
          "Vallejo": {
            "description": "North Bay city on the Carquinez Strait"
          }
        }
      },
      "events": {
        "2026-05-16": {
          "date": "2026-05-16",
          "updated_at": "2026-05-18T14:28:23.785360Z",
          "events": [
            {
              "event_id": "evt_a8799ef7fc49",
              "venue_id": "venue_the_sound_room",
              "title": "Honey, Smoke & Holy Water",
              "event_time": "Saturday, May 16, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-16T19:30:00",
              "event_date": "2026-05-16",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Join us for an unforgettable evening honoring the fierce, tender, rebellious, and soul-stirring women who gave the blues its heartbeat. From smoky ballads and midnight confessions to down-and-dirty grit and jazz-drenched elegance, Honey, Smoke & Holy Water celebrates the music and stories of legendary artists like Billie Holiday, Bessie Smith, Etta James, Nina Simone and more.\n\nFeaturing:\n\nAngela LaFlamme-Vocals\nMyles Boisen-Guitar\nKymry Esainko-Piano\nGreg Olwell-Bass\nGarry Williams-Drums\nScott Larson-Trombone\nMiles Spearman-Trumpet\n\n“A fantastic band… sexy and sleek.” —Huffington Post\n\nTickets at  Honey, Smoke & Holy Water: A Tribute to the Women Who Shaped the Blues",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/angela-laflamme",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dcaead8fe111",
              "venue_id": "venue_madrone_art_bar",
              "title": "FRINGE: THE INDIE ROCK DANCE PARTY",
              "event_time": "May 16 @ 9:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-16T21:00:00",
              "event_date": "2026-05-16",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Fringe spins Yeah Yeah Yeahs * The Killers * LCD Soundsystem * ROBYN * Cut Copy * Passion Pit * MGMT * The Strokes * Phoenix * Empire of the Sun * Wet Leg * Phoebe Bridgers * Foster the People * Chappell Roan * The White Stripes * CHVRCHES * Chromeo * Lorde * [&hellip;]",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/fringe-the-indie-rock-dance-party-9-2021-08-21-2026-02-21-2026-04-18-2026-05-16/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7eff882e54cf",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Molcajete Poets Open Mic",
              "event_time": "Saturday, May 16, 2026 1:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-16T13:00:00",
              "event_date": "2026-05-16",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "The Molcajete Poets are opening a new poetry space rooted in community, creativity, and care. Our vision is to cultivate poets through intentional workshops and open mic gatherings where every voice is valued.We invite poets of all backgrounds and identities to share space with us. Whether you’re just beginning or have been writing for years. This is a space to grow, to be heard, and to build together. Join us for our first open mic as we set the tone for a safe, welcoming, and intentional environment through our words. Come listen, come share, come be part of something we’re creating together.\n\nParticipating poets include;;\n\nYenia Jimenez is a Mother, Poet and Educator. She is born & rased in occupied Ohlone Ramayatush Land. She is a mother, community advocate, and a self published author with two collections of poetry and prose. “Visualize what you read” and “An Ode to Resilience” Yenia believes that BIPOC stories are highly underrepresented in literature and need to be elevated. She hopes to continue to inspire people and most importantly as an educator to continue to inspire youth through teaching poetry, song writing workshops with an emphasis on the history of Jazz, Blues and its connection to the African Diaspora.\n\nGaia.te, also known as \"Gaia the Empress,\" is a 27-year-old bisexual priestess and artist, born in Brooklyn and raised in Frisco. Her vibrance surges from NYC to San Francisco and beyond. Grounded by her Afro-Latina roots, she champions the earth's energies channeling them through a unique blend of poetry, hip-hop, techno, and Neo-Soul. Over the past decade, her community involvement through workshops, performances, and art exemplifies her unwavering commitment to bettering the world. As an MC who channels the universal spirit for all to see, she is unconditionally... Gaia.te\n\nTéo Arias is a non-binary Chicane poet born and raised in Watsonville, California. Their writing unfolds at the intersections of their identity—it lies in the way their gender queerness and decolonial ideology braid together with lived trauma.Téo believes that poetry is an act of resistance and applies that not only in their writing but also in their work with students in poetry workshops.\n\nEsperanza Cabrales (they/them) is a queer, trans nonbinary Xicanx spoken word artist currently based in unceded Muwekma Ohlone land. They're an organizer for the Berkeley Poetry Slam, workshop facilitator, certified Gemini summer baby, events organizer, polyglot, jewelry designer, and multi-media artist. Their poetry is deeply entwined with their queerness, sense of community, curiosity, and intersectionality.\n\nGabriel Cortez is a poet, educator, and organizer based in the Bay Area, California. His work has appeared in Poem-A-Day by The Academy of American Poets, The New York Times, The Rumpus, The Breakbeat Poets Anthology Volume 4, and elsewhere. A VONA, Poetry Incubator, and #BARS workshop alum, he has received awards from the Gerbode Foundation, the Rainin Foundation, the National Performance Network, the University of California, Palette Poetry, and Yerba Buena Center for the Arts. He is pursuing his MFA in Creative Writing at St. Mary’s College of California \n\nJ.Yuru Zhou / 周玉茹 (they, she) is a poet, writer, researcher, and artist rooting in San Francisco. She enjoys theorizing at the club, ambling in-and-out of the panopticon, and reveling in summery autumns in California. Her poems and essays have been exhibited in shows at Gray Area and Southern Exposure; looped at Asian Art Museum; performed at Litquake (Yerba Buena Gardens, Noisebridge), Berkeley Poetry Festival (Berkeley Ballet Theatre), the Pride Poets Hotline (ONE Gallery, Los Angeles Public Library); published by Inverse Magazine and the Los Angeles Times.\n\nRené Espejo is a queer, first-generation, Afro-Indo Caribbean visual artist, poet, performer, curator, and aspiring fantasy novelist… A longtime San Francisco resident, they are a self-taught Art-Witch whose various creative mediums inform one another. René work blends witchcraft, queer identity, and Caribbean culture to share hidden stories that exist within their inner world.\n\nBryan Chávez Castro is a Salvadoran poet now local to Northern California. He was 2026 Rooted and Written Fellow at The Writers Grotto and the Theresa Hak Kyung Cha Fellow at UC Berkeley where he studied comparative literature. His poems have appeared in Huizache, Acentos Review, and Tierra Narrative's \"Title Card #1.\"\n\nPápí Grande (He/Him/Prince) is an Oakland-raised spoken word artist, educator, and published author known for his dynamic stage presence and emotionally resonant storytelling. His work explores identity, community, and personal evolution, creating powerful connections with audiences and students alike.He is the author of Theme of Identity.\n\nDarius Simpson is a New Afrikan writer, educator, farmer, and skilled living room dancer from Akron, Ohio. Much like the means of production, he believes poetry must be used for the positive social, political, and economic development of the majority of society. He is the recipient of fellowships from Poetry Foundation, National Endowment for the Arts, and others. His book, Never Catch Me, is out now and available at buttonpoetry.com. Darius believes in the dissolution of empire and the total liberation of Africans and all oppressed people by any means available. Free The People! Free The Land!\n\nMarvin Flores",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/molcajete-poets-open-mic",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9171d6846f2e",
              "venue_id": "venue_shapeshifters",
              "title": "Crystal Powers",
              "event_time": "Saturday, May 16, 2026 7pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-05-16T19:00:00",
              "event_date": "2026-05-16",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "experimental",
                "live_music"
              ],
              "price_info": "Admission: $15-20, sliding scale",
              "url": "https://www.tickettailor.com/events/shapeshifterscinema/2197075",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-05-18T10:46:48.460857Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55f0abb95bc8",
              "venue_id": "venue_shapeshifters",
              "title": "Introduction to 16mm Filmmaking",
              "event_time": "Saturday, May 16, 2026 11am-3pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-05-16T11:00:00",
              "event_date": "2026-05-16",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "workshop",
                "film"
              ],
              "price_info": "",
              "url": "https://www.tickettailor.com/events/shapeshifterscinema/2198353",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-05-18T10:46:48.460857Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8e64f6111339",
              "venue_id": "venue_dawn_club",
              "title": "N.T.B. COLLECTIVE",
              "event_time": "Saturday, May 16, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-16T20:00:00",
              "event_date": "2026-05-16",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "The N. T. B. Collective is a Bay Area based jazz fusion group merging sounds and styles from all over the world.The N.T.B. trio, which will be featured for this event, is comprised of drums, bass, and piano. Each musician is highly accomplished; coming together to generate a unique musical energy. N.T.B. has been playing various venue residencies throughout the San Francisco Bay Area for over 3 years.\n\n\n  \n#block-b23e650f4cc419921dec {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-b23e650f4cc419921dec .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-b23e650f4cc419921dec {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-b23e650f4cc419921dec {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-b23e650f4cc419921dec {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-b23e650f4cc419921dec {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-b23e650f4cc419921dec .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/ntb-2-tg8l8-8z5ns-x5cc8-hr275-w85cj-ka8fh-jglw9-me2wk-hen78-j35pb-tb2p9-6h6tn-chf7a-l83g5-tx927-ay7zd",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97348352fc64",
              "venue_id": "venue_dawn_club",
              "title": "LATE NIGHT: JC GRADY TRIO",
              "event_time": "2026-05-16T23:59:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-16T23:59:00",
              "event_date": "2026-05-16",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "JC Grady is a Bay Area drummer with a broad orbit — bandleader, collaborator, composer, teacher. Her music finds the through-line between bebop's swing and the raw momentum of punk and dance, held together by an improviser's instinct and a deep respect for the rhythm beneath it all.\n\n\n  \n#block-c007fa2d4a845339cd18 {\n    \n    \n    \n  }\n\n  #block-c007fa2d4a845339cd18 .sqs-html-content {\n    \n    }\n\n  #block-c007fa2d4a845339cd18 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n\n\n\n  \n  \n\n  \n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-c007fa2d4a845339cd18 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-c007fa2d4a845339cd18 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/late-night-jc-grady-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2c97f6478cf1",
              "venue_id": "venue_odc_theater",
              "title": "May Showcase",
              "event_time": "5/16/2026 11:45AM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-16T11:45:00",
              "event_date": "2026-05-16",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003HOgv2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01a05bb2d277",
              "venue_id": "venue_odc_theater",
              "title": "May Showcase",
              "event_time": "5/16/2026 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-16T14:00:00",
              "event_date": "2026-05-16",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003HOgv2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d80fb35a3f4",
              "venue_id": "venue_odc_theater",
              "title": "May Showcase",
              "event_time": "5/16/2026 5:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-16T17:00:00",
              "event_date": "2026-05-16",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003HOgv2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8f74c179b24",
              "venue_id": "venue_mabuhay_gardens",
              "title": "SPUNK (LA)",
              "event_time": "5/16/2026 6:30 PM // LIVE ON BROADWAY",
              "venue_name": "The Mab",
              "event_start": "2026-05-16T18:30:00",
              "event_date": "2026-05-16",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Featuring P.O.S, False Flag, Bombshell, Madrona, and Djüna.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/mab/events/mabuhaygardens-spunk-la-p-o-s-false-flag-bombshell-madrona-dj-na-live-on-broadway-186143",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-05-18T12:01:50.625795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_428c5e23eb76",
              "venue_id": "venue_herbst_theater",
              "title": "SPRING SPECTACULAR ART EXHIBIT",
              "event_time": "May 16 2026 3:00PM",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-05-16T15:00:00",
              "event_date": "2026-05-16",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco High School of the Arts",
              "event_types": [
                "art"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/122721",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_herbst_theater|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7e127aaa7553",
              "venue_id": "venue_davies_symphony_hall",
              "title": "INSIDE MUSIC TALK",
              "event_time": "May 16 2026 6:30PM",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-16T18:30:00",
              "event_date": "2026-05-16",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco Symphony",
              "event_types": [
                "workshop"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/120183",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-18T13:00:17.576242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_13b5c59e8218",
              "venue_id": "venue_local_edition",
              "title": "Candela Viva",
              "event_time": "May 16, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-16T20:30:00",
              "event_date": "2026-05-16",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live Performance 8:30-12:30Come dance to live Cumbia and Salsa rhythms!",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2023/6/7/tba-haww5-ak3tw-9j4na-83pp2-t9rs2-3hs74-mbnbp-c7ne7-9sy8t-84yx2-hyhd3-9tc5s-b7pse-tsly9-tnsz8-6f6fr-7ezah-jma77-6fjph-tj3b7-fd454",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ada7b81b8961",
              "venue_id": "venue_cat_club",
              "title": "NEW WAVE CITY - Ladies of the 80's",
              "event_time": "Sat May 16, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-05-16T21:00:00",
              "event_date": "2026-05-16",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The First and Foremost 80s Dance Party\n——\n9pm-Afterhours",
              "event_types": [],
              "price_info": "The First and Foremost 80s Dance Party\n——\n9pm-Afterhours",
              "url": "https://www.sfcatclub.com/calendar/092124-fj9ap-nxmap-g6yx7-f2z4x-hsb6h-crxth-zsfhk-8c7dx-llgbx-l8ac2-eewge-878h7-97c42-5jyst-5cbt4-2msbm-bzb45-7kmgw-967h8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-05-18T14:28:23.170830Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-05-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-17": {
          "date": "2026-05-17",
          "updated_at": "2026-05-18T15:37:59.302822Z",
          "events": [
            {
              "event_id": "evt_f2db81892155",
              "venue_id": "venue_the_sound_room",
              "title": "Carmen Ratti Band ft. Jill Dineen",
              "event_time": "Sunday, May 17, 2026 1:00 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-17T13:00:00",
              "event_date": "2026-05-17",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Winners of the 2023 Golden Gate Blues Society International Blues Challenge, the Carmen Ratti Band featuring Jill Dineen, has quickly risen to the forefront of Northern California’s blues scene. With a reputation for electrifying live performances, the band blends raw,\nsoul-drenched vocals led by Jill Dineen, searing guitar work by Carmen Ratti, and an irresistible groove that captures audiences from the first note. Their high-energy sound fuses the spirit of traditional blues with a fresh, contemporary edge, earning them recognition on both local and regional stages.\n\nFormed in 2018, the band was born from guitarist Carmen Ra ’s vision to unite some of the Bay Area’s finest musicians and create original music that is both authenic and distinct. That vision came to life with the release of their debut album, The Road Back (2021), recorded at the legendary Greaseland Studios under the guidance of acclaimed producer Kid Andersen. Recently, the band recorded a yet-to-be released second album of originals at Greaseland alongside some of the Bay Area’s very best musicians. The Carmen Ratti Band featuring Jill Dineen has built a devoted following through countless club, festival, and private event performances across Northern California.\n\nTickets at Carmen Ratti Band ft Jill Dineen",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/carmen-ratti-band-ft-jill-dineen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5bf2bad91154",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "Neil Rolnick & Alex Oliva",
              "event_time": "MAY 17 2026  7:15pm",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-05-17T19:15:00",
              "event_date": "2026-05-17",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "$20 click here to purchase advance tickets online",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$20",
              "url": "https://www.sfsound.info#may-17-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_west_oakland_sound_series",
                  "source_name": "West Oakland Sound Series",
                  "fetched_at": "2026-05-18T10:17:38.498282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_83a27e12710e",
              "venue_id": "venue_madrone_art_bar",
              "title": "Bay to Breakers Dance Party",
              "event_time": "May 17 @ 12:00 pm - 6:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-17T12:00:00",
              "event_date": "2026-05-17",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Bay to Breakers Bash w/ DJ Illborn Your dance party along the route! 12-6pm / $10 Cover after 2pm RSVP via Partiful (Bar will be closed 6-8pm. Jazz starts at 9pm!)",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 Cover",
              "url": "https://madroneartbar.com/event/bay-to-breakers-dance-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f2a94e68d63",
              "venue_id": "venue_madrone_art_bar",
              "title": "SUNDAY B3 SESSIONS",
              "event_time": "May 17 @ 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-17T21:00:00",
              "event_date": "2026-05-17",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Sunday B3 Sessions Hosted by Adam Shulman and Mike Olmos Swinging soul jazz with a jam session to follow 9pm-Close No Cover",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/spikes-open-mic-sunday-b3-sessions-2025-11-23/2026-05-17/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ccc3f3df2912",
              "venue_id": "venue_bing_concert_hall",
              "title": "Stanford Symphonic Chorus: Schubert",
              "event_time": "Sun, May 17, 2026 1:30pm to 3pm PT",
              "venue_name": "Bing Hall",
              "event_start": "2026-05-17T13:30:00",
              "event_date": "2026-05-17",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "The Stanford Symphonic Chorus performs a program dedicated to the choral works of Franz Schubert at Bing Concert Hall. This concert features the large-scale vocal power of the ensemble accompanied by orchestral instrumentation.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$32–$37",
              "url": "https://events.stanford.edu/event/symphonic-chorus-spr2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-05-18T10:21:29.598434Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96384e9f5798",
              "venue_id": "venue_the_chapel",
              "title": "Sleaford Mods",
              "event_time": "Sun May 17 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-05-17T20:00:00",
              "event_date": "2026-05-17",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Supporting Talent: Dazy - Post Punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$36.00",
              "url": "https://wl.seetickets.us/event/sleaford-mods/674970?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-18T10:24:42.800944Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33721e3f6b42",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Kinam y Sabiduría Tolteca",
              "event_time": "Sunday, May 17, 2026 2:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-17T14:00:00",
              "event_date": "2026-05-17",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "KINAM es una práctica de entrenamiento psicofísico basada en la filosofía Tolteca/Anawaka (Mesoamerica antes de la colonización) y en sus antiguas posturas de equilibrio y de poder, creada a partir de diversas técnicas de movimiento funcional, meditación, y \"posturas de poder toltecas\". En esta clase buscamos recuperar las raíces culturales de América Prehispánica a través de la exploración de nuestra atención y consciencia y el balance de nuestros centros perceptuales: cuerpo físico, mente, emociones y energía vital.\n\nMateriales a traer: Un mat de yoga o un tapete, ropa cómoda\n\n*Apto para todas las edades \n\nKINAM is a psychophysical training practice based on Toltec/Anawak (Mesoamerica before colonization) philosophy and its ancient postures of balance and power, created from various techniques of functional movement, meditation, and “Toltec power postures.” In this class, we seek to recover the cultural roots of Pre-Hispanic America through the exploration of our awareness and consciousness while balancing our perceptual centers: physical body, mind, emotions, and vital energy.\n\nMaterials needed: Yoga mat and comfortable clothes\n*All ages are welcomed",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/kinam-y-sabidura-tolteca-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5448169a92c",
              "venue_id": "venue_gray_area",
              "title": "Cybersentics Book Club",
              "event_time": "05/17",
              "venue_name": "Gray Area",
              "event_start": "2026-05-17",
              "event_date": "2026-05-17",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Cybersentics Book Club\nMay 2026: Ars vs. Techne—A False Dichotomy?",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/cybersentics-book-club-may-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f8537cfa52a",
              "venue_id": "venue_odc_theater",
              "title": "May Showcase",
              "event_time": "5/17/2026 11:45AM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-17T11:45:00",
              "event_date": "2026-05-17",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003HOgv2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_745b30caef4b",
              "venue_id": "venue_odc_theater",
              "title": "May Showcase",
              "event_time": "5/17/2026 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-17T14:00:00",
              "event_date": "2026-05-17",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003HOgv2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5355956232d9",
              "venue_id": "venue_odc_theater",
              "title": "May Showcase",
              "event_time": "5/17/2026 5:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-17T17:00:00",
              "event_date": "2026-05-17",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003HOgv2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8fe6617ed43b",
              "venue_id": "venue_rickshaw_stop",
              "title": "Soundcheck Nite with CULTURE WARS",
              "event_time": "Sun May 17 8:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-17T20:00:00",
              "event_date": "2026-05-17",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "support tba",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20.00-$25.00",
              "url": "https://urldefense.com/v3/__https://wl.eventim.us/event/culture-wars/677714?afflky=POPSCENEPresents__;!!AEl5w8WD!qTcJkSW076panXlbQDqU9NG2cMaAkNzzKbq37adN9ywrOY017TvPIukzwdlfZotVWinSXp7_J5ZCN5ICohHGq9qfke0-kYQ$",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-18T11:27:44.257743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_05120ae43914",
              "venue_id": "venue_brava_theater",
              "title": "Here & Now",
              "event_time": "2026-05-17",
              "venue_name": "Brava Theater",
              "event_start": "2026-05-17",
              "event_date": "2026-05-17",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Here & Now celebrates 10 years of Petits Pas through a heartfelt mix of theater and dance — the school’s signature artistic language. ​ \n\nSet during a joyful anniversary dinner, the show brings together guests from the past whose encounters awaken memories of previous creations and open conversations about our modern world. ​",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/petitspashereandnow-dp3cg-78tcw-b83tf-z2tfa-rccp3arch-5knta-tggpc",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-18T11:42:14.495739Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-05-17",
              "run_id": "run_61f17dda0f67",
              "run_label": "Petits Pas Presents: Here & Now, May 16 – May 17",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_58bfc286f53c",
              "venue_id": "venue_geoffreys_inner_circle",
              "title": "Mickala Chelle",
              "event_time": "2026-05-17",
              "venue_name": "Geoffreys Inner Circle",
              "event_start": "2026-05-17",
              "event_date": "2026-05-17",
              "venue_address": "410 14th St, Oakland, CA 94612",
              "description": "Free Drink with each advanced purchased ticket!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/196962150337",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_geoffreys_inner_circle",
                  "source_name": "Geoffreys Inner Circle",
                  "fetched_at": "2026-05-18T11:48:10.924975Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_geoffreys_inner_circle|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_faa4f84eae79",
              "venue_id": "venue_mabuhay_gardens",
              "title": "PUNK KARAOKE",
              "event_time": "5/17/2026 6PM TO 11PM // 21+",
              "venue_name": "The Mab",
              "event_start": "2026-05-17T18:00:00",
              "event_date": "2026-05-17",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Grab the mic! Be the star. Featuring Mythopoetic Self Authorship Poetry by Via the Messenger. Chef Giovanni will be serving Sicilian food.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-05-18T12:01:50.625795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3dd57bdb375f",
              "venue_id": "venue_presidio_theater",
              "title": "Escher Quartet w. Brandon Patrick George",
              "event_time": "SUN, MAY 17, 2026 • 3:00 PM",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-17T15:00:00",
              "event_date": "2026-05-17",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "BEACH Theme & Variations for Flute & String Quartet, Op. 80\nVERDI String Quartet in E minor\nBARBER Adagio for Strings (from Quartet, Op. 11)\nMOZART Flute Quartet in D Major, K. 285\nGINASTERA Impresiones de la Puna\n\n \n\n– San Francisco Classical Voice\n\nEscher String Quartet has received acclaim for its profound musical insight and rare tonal beauty. A former BBC New Generation Artist and recipient of the Avery Fisher Career Grant, the quartet has performed at the BBC Proms at Cadogan Hall and is a regular guest at Wigmore Hall. In its home town of New York, the ensemble serves as season artists of the Chamber Music Society of Lincoln Center.\n\nHighlights of the 2024-2025 season find Escher String Quartet performing in many of the great venues and organizations in the United States, including Alice Tully Hall, Philadelphia Chamber Music Society, Isabella Stewart Gardner Museum, Shriver Hall Concert Series, Chamber Music Pittsburgh, University Musical Society at University of Michigan, Spivey Hall, and Chamber Music Houston, among others. In addition to their North American engagements, the quartet returns once again to Wigmore Hall for a BBC live broadcast recital as well as other engagements in Germany and continental Europe.\n\nEscher String Quartet has made a distinctive impression throughout Europe, with recent debuts including the Amsterdam Concertgebouw, Berlin Konzerthaus, London’s Kings Place, Slovenian Philharmonic Hall, Les Grands Interprètes Geneva, Tel Aviv Museum of Art, and Auditorium du Louvre. The group has appeared at festivals such as the Heidelberg Spring Festival, Budapest’s Franz Liszt Academy, Dublin’s Great Music in Irish Houses, the Risør Chamber Music Festival in Norway, the Hong Kong International Chamber Music Festival, and the Perth International Arts Festival in Australia. Alongside its growing European profile, the Escher quartet continues to flourish in its home country, performing at the Aspen Music Festival, Bravo! Vail, Santa Fe Chamber Music Festival, Bowdoin Music Festival, Toronto Summer Music, Cape Cod Chamber Music Festival, OKM Festival, Chamber Music San Francisco, Music@Menlo, and the Ravinia and Caramoor festivals.\n\nEscher String Quartet achieved critical success last season in their performances of the entire cycle of string quartets by Bela Bartok in single concert format, both at Chamber Music Society of Lincoln Center and the Santa Fe Chamber Music Festival. Their Bartok project was featured in The New Yorker in a substantial report by Alex Ross. Recently, the Escher quartet has had successful releases of multiple albums, including string quartets by Pierre Jalbert and the Escher’s studio recording of the complete Janacek quartets and Pavel Haas quartet no. 2 with multi award winning percussionist Colin Currie (BIS Label). Recordings of the complete Mendelssohn quartets and beloved romantic quartets of Dvorak, Borodin and Tchaikovsky were released on the BIS label in 2015-18 and received with the highest critical acclaim, with comments such as “…eloquent, full-blooded playing… The four players offer a beautiful blend of individuality and accord” (BBC Music Magazine).\n\nIn 2019, DANCE, an album of quintets with Grammy award winning guitarist Jason Vieaux, was  enthusiastically received. In 2021, the Escher’s recording of the complete quartets of Charles Ives and Samuel Barber was met with equal excitement, including “A fascinating snapshot of American quartets, with a recording that is brilliantly detailed, this is a first-rate release all around” (Strad Magazine). The quartet has also recorded the complete Zemlinsky String Quartets in two volumes, released on the Naxos label in 2013 and 2014.\n\nBeyond the concert hall, Escher String Quartet is proud to announce the creation of a new nonprofit entity, ESQYRE (Escher String Quartet Youth Residency Education). ESQYRE’s mission as a nonprofit classical music organization is to provide a comprehensive educational program through music performance and instruction for people of all ages. In addition to their nonprofit work, the quartet has also held faculty positions at Southern Methodist University in Dallas, TX and the University of Akron, OH. \n\nWithin months of its inception in 2005, the ensemble came to the attention of key musical figures worldwide. Championed by the Emerson Quartet, the Escher quartet was invited by both Pinchas Zukerman and Itzhak Perlman to be Quartet in Residence at each artist’s summer festival: the Young Artists Program at Canada’s National Arts Centre; and the Perlman Chamber Music Program on Shelter Island, NY. \n\nEscher String Quartet takes its name from the Dutch graphic artist M.C. Escher, inspired by Escher’s method of interplay between individual components working together to form a whole.\n\nARTIST’S WEBSITE\n\nBrandon Patrick George, hailed as a “knockout musician with a gorgeous sound” by The Philadelphia Inquirer, is a GRAMMY-winning flutist whose repertoire extends from the Baroque era to today. He is the flutist of Imani Winds and has appeared as a soloist with the Atlanta, Baltimore, and Albany symphonies, American Composers Orchestra, and the Orchestra of St. Luke’s, among others.\n\nBrandon has performed at the Elbphilharmonie, the Kennedy Center, the Dresden Music Festival, and the Prague Spring Festival. In addition to his work with Imani Winds, Brandon’s solo performances include appearances at Lincoln Center, the Metropolitan Museum of Art, 92nd Street Y, Tippet Rise, Bridgehampton Chamber Music Festival, and the Isabella Stewart Gardner Museum. In 2021, Brandon was part of the inaugural class of WQXR’s Artist Propulsion Lab, a program designed to advance the careers of early and mid-career artists and support the future of classical music. During his yearlong residency at WQXR, Brandon guest hosted Evening Music, interviewed Ford Foundation president Darren Walker about diversity and equity in the performing arts, and recorded with pianist Aaron Diehl and harpist June Han. \n\nA sought-after orchestral artist, he has performed as guest principal flute with the Los Angeles Philharmonic, appeared with the Pittsburgh Symphony Orchestra, and toured internationally with the Orpheus Chamber Orchestra.\n\nIn September 2023, Brandon’s latest album, Twofold, was released on In a Circle Records. BBC Music Magazine gave Twofold a four-star rating for both the performance and recording, calling the album “a superb collection.” Twofold follows the success of Brandon Patrick George’s debut solo album, released in 2020 on Haenssler Classics. Brandon was profiled in The New York Times around the album’s release in an article titled “A Flutist Steps into the Solo Spotlight,” which described the album as “a program that showcases the flute in all its wit, warmth and brilliance.”\n\nRaised by a single mother in Dayton, OH, Brandon is the proud product of public arts education. He draws on his personal experiences in his commitment to educating the next generation, performing countless outreach concerts for school children every year, and mentoring young conservatory musicians of color embarking on performance careers. This commitment also guides his latest commissioning initiative, BPG: The Community Concerto Project, with extensive school visits and performance opportunities for local students built into every commission. Brandon trained at the Oberlin Conservatory of Music with Michel Debost, in Paris with Sophie Cherrier, and received a Master of Music from the Manhattan School of Music, studying with Marya Martin. He continued his studies under the guidance of Lorna McGhee, now principal flutist of the Boston Symphony Orchestra.\n\nBrandon serves on the faculty of the Curtis Institute of Music, Mannes School of Music, and the Banff Centre for Arts and Creativity. In 2024, he was appointed as the Music Consultant at The Morgan Library & Museum, where he oversees the development and implementation of its music program.\n\nARTIST’S WEBSITE",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://chambermusicsf.org/#artist10",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_chamber_music_sf",
                  "source_name": "Chamber Music SF",
                  "fetched_at": "2026-05-18T12:03:37.440187Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0b5c19c03b7",
              "venue_id": "venue_davies_symphony_hall",
              "title": "INSIDE MUSIC TALK",
              "event_time": "May 17 2026 1:00PM",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-17T13:00:00",
              "event_date": "2026-05-17",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco Symphony",
              "event_types": [
                "workshop"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/120184",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-18T13:00:17.576242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ce1feddc284",
              "venue_id": "venue_herbst_theater",
              "title": "2026 DANCE RECITAL",
              "event_time": "May 17 2026 3:00PM",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-05-17T15:00:00",
              "event_date": "2026-05-17",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "Bollywood Dance Central",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/119724",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_herbst_theater|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f67223d2f4e",
              "venue_id": "venue_davies_symphony_hall",
              "title": "SF SYMPHONY YOUTH ORCHESTRA",
              "event_time": "May 17 2026 7:30PM",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-17T19:30:00",
              "event_date": "2026-05-17",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco Symphony",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/119593",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-18T13:00:17.576242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c7955d36f085",
              "venue_id": "venue_4_star_theater",
              "title": "The Decline of Western Civilization II",
              "event_time": "May 17, 2026 7:30 PM – 9:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-17T19:30:00",
              "event_date": "2026-05-17",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This documentary screening explores the excess and culture of the 1980s heavy metal scene in Los Angeles. It features interviews and performances from iconic bands and fans of the era.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/media-meltdown-movie-madhouse-decline-ii",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43bc3d25eff1",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-17",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-17",
              "event_date": "2026-05-17",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-17",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc9f41ee7e1c",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-17",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-17",
              "event_date": "2026-05-17",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-17",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1929734078fa",
              "venue_id": "venue_club_fox",
              "title": "The Collective & Tritanic",
              "event_time": "Sunday May 17th",
              "venue_name": "Club Fox",
              "event_start": "2026-05-17",
              "event_date": "2026-05-17",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Sunday May 17thTHE COLLECTIVEw/Special Guests TRITANICFt. Bob Peek, Jeff Carr & Fred BaldwinDoors 6PM / Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/the-collective-w-special-guests-tritanic-tickets-1987098715750?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-05-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-18": {
          "date": "2026-05-18",
          "updated_at": "2026-05-18T15:49:46.968864Z",
          "events": [
            {
              "event_id": "evt_eafbde96005c",
              "venue_id": "venue_the_independent",
              "title": "BRONCHO",
              "event_time": "5.18 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Oklahoma-based band BRONCHO delivers a set of fuzzy garage rock and infectious indie pop. Their performance is characterized by catchy hooks and a distinctively lo-fi, energetic aesthetic.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/broncho/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-13T11:38:33.880510Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_712903eda462",
              "venue_id": "venue_4_star_theater",
              "title": "Souled American",
              "event_time": "May 18, 2026 8:00 PM – 10:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The 4 Star Theater hosts an intimate performance featuring the long-running alternative country and rock band Souled American. This special engagement offers fans a chance to experience the group's unique sound in a historic setting.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-souled-american",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_25e4b76f28b5",
              "venue_id": "venue_castro_theater",
              "title": "LUCY DACUS",
              "event_time": "May 18, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "May 18 Lucy Dacus a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/lucy-dacus-260518",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-06T12:15:18.531328Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-13T11:38:33.880510Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19281511999a",
              "venue_id": "venue_great_american_music_hall",
              "title": "Caroline",
              "event_time": "May 18 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Following the release of their widely celebrated second album caroline 2, the eight-piece return to the US in 2026 for a series of special shows. Launched with the single ‘Tell Me I Never Knew That’ featuring Caroline Polachek, caroline 2 marks a bold evolution in caroline’s sound - showcasing a fea...",
              "event_types": [
                "live_music"
              ],
              "price_info": "$27/$32",
              "url": "http://www.foopee.com/by-band.0.html#Caroline",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-04-28T10:21:12.543855Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-13T11:21:58.467763Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64c91dc6b4c3",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Rita Moreno Awards 2026",
              "event_time": "2026-05-18T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-05-18T19:30:00",
              "event_date": "2026-05-18",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Co-hosted by Broadway San Jose and Children's Musical Theater San Jose, the Rita Moreno Awards is a competition that recognizes outstanding achievement in high school musical theater north of Santa Barbara.",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "$25",
              "url": "https://sanjosetheaters.org/event/rita-moreno-awards-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-04-30T22:40:06.465231Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-01T14:57:07.687328Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7957fa7205f5",
              "venue_id": "venue_the_marsh_sf",
              "title": "Monday Night Marsh",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "The Marsh Berkeley Cabaret Presents: Monday Night Jazz Jam! Monday Evenings at 7:30 pm at The Marsh Berkeley Cabaret Full Bar! Doors: 7:15 pm House Set: 7:30 pm - 8:00 pm Jam: 8:00 pm - 10:30 pm Ticket are pay what you can. No one will be turned away for lack of funds. Welcome one",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "$13-$25 sliding scale",
              "url": "https://themarsh.org/monday-night-marsh/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-01T08:06:35.320989Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-13T11:21:58.467763Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33a415f8b3b6",
              "venue_id": "venue_swedish_american",
              "title": "Big Brain Lectures: Apollo Moon Missions",
              "event_time": "2026-05-18T20:00:00",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Cafe Du Nord Presents Big Brain Lectures - SF: The Apollo Moon Missions: How We Solved the Impossible.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "Price not listed on event page",
              "url": "https://cafedunord.com/tm-event/the-apollo-moon-missions-how-we-solved-the-impossible/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_swedish_american|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_04efffeed4c3",
              "venue_id": "venue_the_bistro",
              "title": "Hayward Bistro Open Mic (Host: Jim Safer)",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Weekly open mic night. Sign-ups start at 6:30 PM. Hosted by Jim Safer.",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "Free / No Cover",
              "url": "https://bayareaopenmics.com/hayward-bistro-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_db7b38b4e9c4",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Pizza Monday",
              "event_time": "2026-05-18T16:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-18T16:00:00",
              "event_date": "2026-05-18",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "A rotating menu of four Neapolitan-style pizzas featuring cured meats, Italian cheeses, and local produce. Vegan options available.",
              "event_types": [],
              "price_info": "Varies",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1756fe94d818",
              "venue_id": "venue_the_saloon",
              "title": "Peter Lindman and Roger Rocha",
              "event_time": "2026-05-18T16:00:00",
              "venue_name": "The Saloon",
              "event_start": "2026-05-18T16:00:00",
              "event_date": "2026-05-18",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "4 Hours of Peace and Music featuring covers from the sixties and original songs on acoustic 12-string and electric guitar.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover",
              "url": "https://www.shazam.com/concert/peter-lindman-san-francisco-the-saloon-may-18-2026-400-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_70871a07235f",
              "venue_id": "venue_the_saloon",
              "title": "The Bachelors",
              "event_time": "2026-05-18T21:30:00",
              "venue_name": "The Saloon",
              "event_start": "2026-05-18T21:30:00",
              "event_date": "2026-05-18",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "The Bachelors' long-standing Monday night residency at The Saloon.",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover",
              "url": "https://thesaloonsf.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f2a6e5b0c3c4",
              "venue_id": "venue_la_pena",
              "title": "Low-Impact Flamenco Dance",
              "event_time": "2026-05-18T12:00:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-18T12:00:00",
              "event_date": "2026-05-18",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "Beginner-friendly flamenco dance classes with Sara Ayala, focusing on technique and expression in a low-impact format.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://lapena.org/event/low-impact-flamenco-dance-2026-05-18/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_74da36da9ea2",
              "venue_id": "venue_la_pena",
              "title": "Rumba y Percusión Afro-Cubana",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "Music classes that explore the complex musicality and traditions of Cuban Rumba and Afro-Cuban percussion.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://lapena.org/event/rumba-y-percusion-afro-cubana-con-einar-leliebre-2026-05-18/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0afd8839fc6f",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b5f73fd483be",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Salsa Crazy Mondays",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "Weekly salsa dance classes followed by social dancing and bachata in a vibrant atmosphere.",
              "event_types": [
                "workshop",
                "dance",
                "community"
              ],
              "price_info": "$11.30 - $43.20",
              "url": "https://www.ticketweb.com/event/salsa-crazy-mondays-neck-of-the-woods-tickets/13426328",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e166a3c3d9c5",
              "venue_id": "venue_biscuits__blues",
              "title": "GamperDrums Presents: ZinggFlower",
              "event_time": "2026-05-18T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-18T18:30:00",
              "event_date": "2026-05-18",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "A night of world-class musicianship featuring some of the Bay Area’s best.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260518gamperdrumspresentszinggflower",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ae7312fa313d",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-18T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-18T16:00:00",
              "event_date": "2026-05-18",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_58b6fbab8b87",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bobby McFerrin: Circlesongs",
              "event_time": "2026-05-18T12:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-05-18T12:00:00",
              "event_date": "2026-05-18",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "A cappella circlesinging event.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$40",
              "url": "https://secure.thefreight.org/overview/15627",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d394480fe6e6",
              "venue_id": "venue_the_freight__salvage",
              "title": "Freight Singers Community Chorus",
              "event_time": "2026-05-18T19:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-05-18T19:30:00",
              "event_date": "2026-05-18",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Vocal community chorus performance with special guest Tony Lindsay.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Sliding Scale: $0+",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_caee6144a367",
              "venue_id": "venue_blush",
              "title": "Tarot readings with Christopher L.",
              "event_time": "2026-05-18",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Mind-bending Tarot readings by our deck Shaman extraordinaire Christopher L.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f681e8a6d5bc",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Piano Night at The Royal Cuckoo Organ Lounge",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Piano nights at The Royal Cuckoo feature the venue's vintage Steinway Upright piano, offering a different vibe from the usual Hammond organ focus. These early-evening shows showcase talented local pianists in an intimate setting.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free (No cover charge; tips for musicians recommended)",
              "url": "https://northbeachlive.com/event/piano-night-at-the-royal-cuckoo-organ-lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f03c823c5609",
              "venue_id": "venue_make_out_room",
              "title": "Happy Endings: Literary Show & Competition",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Five writers perform new work on a shared theme in a battle for the adulation of an appointed committee.",
              "event_types": [
                "literary"
              ],
              "price_info": "PWYC, Suggested $10 - $15",
              "url": "http://www.makeoutroom.com/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8b9352236936",
              "venue_id": "venue_madrone_art_bar",
              "title": "Motown on Mondays",
              "event_time": "May 18 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "It’s only Monday if you treat it like one! DJ Gordo Cabeza and weekly guests play originals, exclusive remixes and close relatives of your favorite Motown songs. The most talked about night in town! Starting at 7pm. Doors 4pm – 2am / 21 & up w/ID $5 cover after 8pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://madroneartbar.com/event/motown-on-mondays-79-2025-12-01-2026-04-27/2026-05-18/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9584dd6be8f9",
              "venue_id": "venue_shotgun_studios",
              "title": "The World of a Play: Continuity (Seminar Series)",
              "event_time": "2026-05-18T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-05-18T10:30:00",
              "event_date": "2026-05-18",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "A six-week seminar series hosted by Artistic Director Patrick Dooley at Miriam's Place, offering an insider's perspective on the creation of Bess Wohl's 'Continuity' from script to production.",
              "event_types": [],
              "price_info": "$150 for the series",
              "url": "https://shotgunplayers.org/online/article/miriams-place",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a7c24032d51b",
              "venue_id": "venue_sfjazz_lab",
              "title": "SFJAM: FREE COMMUNITY JAM SESSION",
              "event_time": "May 18 2026 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "jazz",
                "community"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/education/sfjam/miles-electric-henry-hung/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fdfd75878604",
              "venue_id": "venue_yoshis",
              "title": "Head Royce Caravan Jazz Ensemble",
              "event_time": "MON 5.18 8:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20",
              "url": "https://yoshis.com/events/buy-tickets/head-royce-school-caravan-jazz-ensemble-3/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_966c8f24e515",
              "venue_id": "venue_dawn_club",
              "title": "GRAHAM MESSER",
              "event_time": "Monday, May 18, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "At just 21 years of age, Graham is a young gun making a name for himself in the world of Jazz today. A dyed-in-the-wool bebop pianist, he seeks to uphold the tradition of Bud Powell, Charlie Parker, Kenny Clarke, Hank Jones, and Barry Harris, among others, and treats their music equally as soul food and as ground as fertile for intellectual exploration as any of the great European masters of the last 400 years. Armed with a rigorous classical training, he has to quote one local great, \"made a substantive contribution towards raising the 'mean tempo' of the tunes played within this sector of the S.F. jazz scene\", though he feels just as at home on a contemplative ballad or a slow blues.You may find him performing under either one of his apt pseudonyms, Dud Powell or Barely Harris. (inside jazz joke!)\n\n\n  \n#block-12afd85cc0ea0a134c7b {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-12afd85cc0ea0a134c7b .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-12afd85cc0ea0a134c7b {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-12afd85cc0ea0a134c7b {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-12afd85cc0ea0a134c7b {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-12afd85cc0ea0a134c7b {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-12afd85cc0ea0a134c7b .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/graham-messer-1-7kdk8-n6jlc-ff5dz-8axal-adelr-dbhew-6h2fg-5mz99-necym-76ksy",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e8d6bf775459",
              "venue_id": "venue_sf_conservatory",
              "title": "Samantha Cho and Jay Liu Recital",
              "event_time": "2026-05-18T19:30:00",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-18T19:30:00",
              "event_date": "2026-05-18",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Faculty Recital, Piano, Strings",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-05-18T11:23:52.619579Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b5a3db394b4",
              "venue_id": "venue_hillside_club",
              "title": "Etude Club Concert",
              "event_time": "May 18, 2026, 1:00 PM – 2:30 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-05-18T13:00:00",
              "event_date": "2026-05-18",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "The Etude Club hosts a live musical performance featuring classical repertoire at the historic Hillside Club.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Learn more",
              "url": "https://www.hillsideclub.org/event-details/etude-club-concert-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4262f9aca96c",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC AT HOTEL UTAH",
              "event_time": "Mon May 18 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Monday night",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/Open-Mic-at-Hotel-Utah/689617?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f8eb55673af",
              "venue_id": "venue_winters",
              "title": "Steal Your Monday",
              "event_time": "2026-05-18T18:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-18T18:00:00",
              "event_date": "2026-05-18",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e055010432b5",
              "venue_id": "venue_castro_theater",
              "title": "Lucy Dacus",
              "event_time": "MAY 18, 2026 10PM",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-18T22:00:00",
              "event_date": "2026-05-18",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Experience acclaimed musician and \"one of the best songwriters of her generation,\" Lucy Dacus, live at The Castro Theatre for one of her two highly anticipated performances. As a Grammy-winning artist and member of boygenius, Dacus will showcase her thoughtful storytelling, delving into themes of...",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/lucy-dacus-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5aa59e62f87",
              "venue_id": "venue_thee_stork_club",
              "title": "Freakyoke 5/18",
              "event_time": "2026-05-18T20:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Karaoke night at Thee Stork Club.",
              "event_types": [],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/freakyoke-518/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-18T13:25:21.339846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0ed481ee2daf",
              "venue_id": "venue_dna_lounge",
              "title": "Death Guild",
              "event_time": "2026-05-18",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Gothic // Industrial // Synthpop. Every Monday.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63d0030c3b07",
              "venue_id": "venue_dna_lounge",
              "title": "Monday Night Hubba",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Star Sapphire's Big British Farewell! All Ages.",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b79a5feb567a",
              "venue_id": "venue_the_knockout",
              "title": "Krazy for Karaoke",
              "event_time": "5/18/2026 9:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-18T21:00:00",
              "event_date": "2026-05-18",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Step up to the mic and sing your heart out during this high-energy karaoke night at The Knockout.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/j69c8d3fb54f?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_390aca756cab",
              "venue_id": "venue_roxy",
              "title": "Decorado",
              "event_time": "Monday, May 18, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of the surreal animated short film that explores the artifice of life and relationships.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/decorado/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9fb8b2bc2c73",
              "venue_id": "venue_roxy",
              "title": "Blue Heron",
              "event_time": "Monday, May 18, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A cinematic presentation at the theater featuring this independent film production.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/blue-heron/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77632ce27853",
              "venue_id": "venue_roxy",
              "title": "I Am Cuba",
              "event_time": "Monday, May 18, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of the visually stunning 1964 masterpiece that explores the Cuban Revolution through innovative cinematography.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/i-am-cuba/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d7ece960adaa",
              "venue_id": "venue_roxy",
              "title": "Linda Perry: Let It Die Here",
              "event_time": "Monday, May 18, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A documentary screening that provides an intimate look at the life and creative process of the influential musician and songwriter.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/linda-perry-let-it-die-here/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d0d3b57731a",
              "venue_id": "venue_local_edition",
              "title": "Barbary Coast Jazz Band",
              "event_time": "May 18, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-18T20:00:00",
              "event_date": "2026-05-18",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Come enjoy lively jazz with this fantastic ensemble- Barbary Coast Jazz Band performs every other Monday!Bob Schulz - Lead/CornetDon Neely - ReedsClint Baker - TromboneBill Reinhart - TubaScott Anthony - BanjoMarty Eggers - Piano",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2ttzfhe3geh6ftj-xjknk-fef4f-bera7-t7bc5-4lma3-sbh4r-fwkyz-w5l9c-gn73d-7wmf9-cjj7e-ahsrj-2amd9-yxk8g-5mdpc",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b3caf2c3d64a",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-05-18T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-05-18T19:00:00",
              "event_date": "2026-05-18",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9adcc38d27f0",
              "venue_id": "venue_plough_and_stars",
              "title": "Inner Richmond Board Game Night",
              "event_time": "2026-05-18T18:30:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-18T18:30:00",
              "event_date": "2026-05-18",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "Hosted by Gather & Game SF",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_500fdfbb68af",
              "venue_id": "venue_elis_mile_high",
              "title": "BLUE MONDAYS - Ella Pennewell",
              "event_time": "Mon, May 18, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Ella Pennewell performs as part of the venue's recurring Blue Mondays series dedicated to live blues music.",
              "event_types": [
                "live_music"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/blue-mondays-ella-pennewell-2026-05-18-19-00",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ff49a4bac1c3",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-05-18T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-18T18:00:00",
              "event_date": "2026-05-18",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_69fe1a5dd2c6",
              "venue_id": "venue_the_fireside",
              "title": "Monday Mixology & Board Games",
              "event_time": "2026-05-18",
              "venue_name": "The Fireside",
              "event_start": "2026-05-18",
              "event_date": "2026-05-18",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Mixology behind the bar, industry discounts, mystery DJ, and board games (play ours or bring yours)",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-19": {
          "date": "2026-05-19",
          "updated_at": "2026-05-18T15:58:43.402304Z",
          "events": [
            {
              "event_id": "evt_1571c8d35b1f",
              "venue_id": "venue_the_independent",
              "title": "RED RUM CLUB",
              "event_time": "5.19 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Experience Liverpudlian indie-pop sensations Red Rum Club live at The Independent SF on Tuesday, May 19, 2026. This all-ages show promises an energetic performance, highlighting their distinctive brass-infused sound. Doors open at 7:30 pm, with the show commencing at 8:00 pm.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/red-rum-club/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-13T11:21:58.467763Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-13T11:38:33.880510Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89b581db0a2e",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Essenger / Echos / ADMO",
              "event_time": "Tuesday May 19 2026 7:30PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "A night of emotive electronic music featuring the synth-driven sounds of Essenger and the dark pop of Echos.",
              "event_types": [
                "live_music",
                "electronic",
                "rock"
              ],
              "price_info": "$15 pre / $18 | All ages",
              "url": "http://www.bottomofthehill.com/20260519.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b2411d99e6b",
              "venue_id": "venue_castro_theater",
              "title": "LUCY DACUS",
              "event_time": "May 19, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "May 19 Lucy Dacus a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/lucy-dacus-260519",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-06T12:15:18.531328Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-13T11:38:33.880510Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_78a7c5d094f7",
              "venue_id": "venue_924_gilman",
              "title": "Reversal of Man + Prevail + Coherence",
              "event_time": "2026-05-19T19:00:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "This heavy-hitting lineup features a night of hardcore and screamo performances from Reversal Of Man, Prevail, and Coherence.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for details",
              "url": "http://www.foopee.com/by-band.2.html#Reversal_Of_Man",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-11T00:33:59.470518Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ca7583b5b237",
              "venue_id": "venue_guild_theatre",
              "title": "Borns",
              "event_time": "May 19 2026 7pm/8pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live concert at The Guild Theatre. Door time listed as 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$48",
              "url": "http://www.foopee.com/by-band.0.html#Borns",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-04-11T07:04:39.679517Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a953a2b55577",
              "venue_id": "venue_act_rembe",
              "title": "Hamnet",
              "event_time": "2026-05-19T19:30:00",
              "venue_name": "ACT REMBE",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Opening night of the Royal Shakespeare Company's stage adaptation of Maggie O'Farrell's best-selling novel about the son of William Shakespeare.",
              "event_types": [
                "theater"
              ],
              "price_info": "From $59",
              "url": "https://www.act-sf.org/whats-on/2025-26-season/hamnet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_act_rembe",
                  "source_name": "ACT REMBE",
                  "fetched_at": "2026-04-11T11:20:52.515181Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_act_rembe|2026-05-19",
              "run_id": "run_209be028b4b1",
              "run_label": "Hamnet, Apr 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0d95d660f905",
              "venue_id": "venue_make_out_room",
              "title": "The Holly Martins",
              "event_time": "2026-05-19T19:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Jazz at the Make-Out Room (formerly the Monday Make-Out) continues! A wily evening of cutting-edge jazz, free improvisation, and creative music.7pm The Holly Martins(Lorin Benedict - voice, Kasey Knudsen - sax, Eric Vogler - guitar)8pm Graham Viegut Ensemble More...",
              "event_types": [
                "live_music",
                "jazz",
                "experimental"
              ],
              "price_info": "NO COVER, donations accepted",
              "url": "https://dothebay.com/events/2026/5/19/jazz-at-the-make-out-room",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-04-12T08:49:37.134692Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-04-13T20:49:30.913648Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-27T10:08:04.792191Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9694fbf1d3b8",
              "venue_id": "venue_the_ritz",
              "title": "Show Me The Body & Friends",
              "event_time": "2026-05-19T18:30:01-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-19T18:30:01",
              "event_date": "2026-05-19",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "R’N’RG Presents\nSHOW ME THE BODY\nPROVOKER\nINGROWN\nCLIQUE\nDRY SOCKET\n\n \n\nTUESDAY MAY 19, 2026\nDoors: 6:30PM // All Ages // $25 General Admission\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 General Admission",
              "url": "https://www.ticketweb.com/event/show-me-the-body-the-ritz-tickets/14810533",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-14T07:59:34.869020Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-16T09:13:42.764342Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c1b3b0e0dfa7",
              "venue_id": "venue_regency_ballroom",
              "title": "Goldenvoice Presents smokedope2016",
              "event_time": "2026-05-19T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Goldenvoice Presents 'The Comedown Tour' featuring smokedope2016 with support from Ghostfacekush and bartesianWater.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.1.html#Ghostfacekush",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-16T08:07:43.614557Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-16T09:13:42.764342Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66cfa6b9d488",
              "venue_id": "venue_the_fillmore",
              "title": "The Afghan Whigs",
              "event_time": "2026-05-19",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Alternative rock legends The Afghan Whigs celebrate their 40th anniversary with a career-spanning performance presented by Live 105.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Not specified",
              "url": "https://19hz.info/eventlisting_BayArea.php",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-22T10:41:32.406241Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-22T14:35:54.369608Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2e5844e243a3",
              "venue_id": "venue_ivy_room",
              "title": "Alisa Amador",
              "event_time": "Tuesday May 19 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Singer-songwriter Alisa Amador showcases her soulful voice and unique fusion of folk, jazz, and Latin influences in this live performance.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180320",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_735120c6053f",
              "venue_id": "venue_thee_stork_club",
              "title": "New Candys, Heaven's Club",
              "event_time": "2026-05-19T20:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "The Italian psych-rock band delivers a dark and atmospheric performance characterized by fuzzy guitars and moody, melodic soundscapes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$17.00 adv.",
              "url": "https://wl.eventim.us/event/new-candys-heavens-club/681881?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-04-26T10:55:56.039138Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a948aa33da46",
              "venue_id": "venue_cafe_du_nord",
              "title": "Gavin Magnus, Yvng Jin",
              "event_time": "May 19 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Friqtao, the Paris-born, UK-based pianist known for turning train station pianos into impromptu stages, has struck a chord with nearly 4 million TikTok followers, morphing pop, and hip-hop piano renditions into viral performances. With his signature beanie and headphones - now synonymous with his br...",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Gavin_Magnus",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-13T11:21:58.467763Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_410c750b6082",
              "venue_id": "venue_the_fillmore",
              "title": "Afghan Wigs, Mercury Rev",
              "event_time": "May 19 2026 6:30pm/7:30pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-19T18:30:00",
              "event_date": "2026-05-19",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "OPEN DANCE FLOOR / STANDING ROOM ONLY Doors 6:30pm / Show 7:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$66",
              "url": "http://www.foopee.com/by-band.0.html#Afghan_Wigs",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-13T11:21:58.467763Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f73cb2078eb",
              "venue_id": "venue_great_american_music_hall",
              "title": "Smerz, Kaitlin Simotics",
              "event_time": "May 19 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Big City Life North America Spring Summer 2026; live performance by Smerz with Kaitlin Simotics.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$25/$30/$35",
              "url": "http://www.foopee.com/by-band.3.html#Smerz",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-01T14:24:06.322738Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-07T17:12:50.228845Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b5b2156f7368",
              "venue_id": "venue_kilowatt",
              "title": "Vinyl Williams, Hott MT",
              "event_time": "May 19 6:30pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-19T18:30:00",
              "event_date": "2026-05-19",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Vinyl Williams and Hott MT perform live at the vineyard for this special musical engagement. The event features the unique sounds of both artists in a scenic outdoor setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.72",
              "url": "http://www.foopee.com/by-band.3.html#Vinyl_Williams",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-06T12:48:06.494082Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97aec88fb541",
              "venue_id": "venue_mountain_winery",
              "title": "Jason Bonham's Led Zeppelin Evening",
              "event_time": "May 19 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-05-19T17:30:00",
              "event_date": "2026-05-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Jason Bonham celebrates the musical legacy of his father, John Bonham, with an authentic tribute to Led Zeppelin. The show features classic rock anthems performed with incredible precision and passion.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jason_Bonham_s_Led_Zeppelin_Evening",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dbb30a4c05dc",
              "venue_id": "venue_stay_gold_deli",
              "title": "A Rock Legend Tribute",
              "event_time": "May 19, 2026 6pm",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-05-19T18:00:00",
              "event_date": "2026-05-19",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "This rock-focused event features a tribute to a legendary artist alongside performances by Durango Dogs and Super Apes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.0.html#A_Rock_Legend",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-09T11:53:46.508128Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-09T12:01:35.616367Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-09T12:14:11.134617Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_16d21195e62e",
              "venue_id": "venue_make_out_room",
              "title": "Techno Tuesday w/ DJ Glassjack",
              "event_time": "2026-05-19T21:30:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-19T21:30:00",
              "event_date": "2026-05-19",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "A curated DJ set blending house, tech house, and melodic techno with cinematic, emotionally-driven moments.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://dothebay.com/events/2026/5/19/techno-tuesday",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-11T22:17:16.803218Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a1cbe1fe0860",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-19",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-19",
              "event_date": "2026-05-19",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-19",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_90b52e9531d6",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "Open Bluegrass Jam",
              "event_time": "MAY 19, 2026 7PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Hotel Utah's weekly Open Bluegrass Jam! Tuesday nights from about 7pm onwards. It’s free, open to the public and all are welcome to play and / or listen. So come out and take part in the Bay Area’s bluegrass scene as we continue to rebuild after covid - We jam until we are done (but not past 10:3...",
              "event_types": [
                "live_music"
              ],
              "price_info": "21+, $0.00",
              "url": "https://sflive.art/event/open-bluegrass-jam_2026-05-19-19-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-15T13:01:28.261531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06dcfdbf0d93",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Preview)",
              "event_time": "2026-05-19T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance is a preview before the official opening night.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2ed54920abe8",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-05-19T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-05-19T18:30:00",
              "event_date": "2026-05-19",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac. A casual evening of music in a historic Point Richmond setting.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e417fc8ee20f",
              "venue_id": "venue_cal_academy_of_science",
              "title": "Member Talk: Working Dogs for Conservation",
              "event_time": "2026-05-19T15:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-05-19T15:00:00",
              "event_date": "2026-05-19",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "A special talk about the conservation K9s protecting wildlife one nose at a time.",
              "event_types": [],
              "price_info": "Free for members",
              "url": "https://www.calacademy.org/events/special-events/member-talk-working-dogs-for-conservation",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_940c30372675",
              "venue_id": "venue_alhambra_public_house",
              "title": "Line Dancing Lesson",
              "event_time": "2026-05-19T19:30:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Weekly line dancing lessons featuring food, drinks, and dancing.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/line-dancing-lesson-every-tuesday-730pm-tickets-101010101010",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b06d3a9c9abc",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-05-19T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-19T21:00:00",
              "event_date": "2026-05-19",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "A weekly Tuesday night swing dance event featuring live music, a full bar, and a drop-in basic swing lesson for beginners.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/the-woodchoppers-ball/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a448302d20d6",
              "venue_id": "venue_la_pena",
              "title": "Aguacate Music Kids",
              "event_time": "2026-05-19T10:15:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-19T10:15:00",
              "event_date": "2026-05-19",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "Bilingual music and movement class for families, fostering early childhood development through cultural music.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://lapena.org/event/aguacate-music-kids-family-music-class-bilingual-2026-05-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_af437a66d58a",
              "venue_id": "venue_la_pena",
              "title": "Bodywerk Dance",
              "event_time": "2026-05-19T18:30:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-19T18:30:00",
              "event_date": "2026-05-19",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "A screening of 'Passion for Justice' followed by a discussion, celebrating the life of activist Yuri Kochiyama as part of a political education series.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://lapena.org/event/bodywerk-dance-afrobeat-hip-hop-fusion-2026-05-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e75c7a643eb5",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-19T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e48eebe752e4",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Opposing Force & Friends",
              "event_time": "2026-05-19T19:30:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "A high-energy hardcore and metal showcase featuring Opposing Force and a stacked lineup of guest bands.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$14.60",
              "url": "https://www.ticketweb.com/event/opposing-force-spit-my-rage-neck-of-the-woods-tickets/13426329",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b1f4ae908e10",
              "venue_id": "venue_the_monkey_house",
              "title": "Music Community Open Mic",
              "event_time": "2026-05-19",
              "venue_name": "The Monkey House",
              "event_start": "2026-05-19",
              "event_date": "2026-05-19",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Open mic night. Two songs or ten minutes. House guitar available, and a house keyboard if requested by two or more people. Supportive musicians' scene.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Donation bucket $10-40",
              "url": "https://static.wixstatic.com/media/60be15_14713e8955b74034b78258ad07bafaec~mv2.png/v1/fill/w_600%2Ch_260%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/5-19%20OM.png",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-05-15T21:31:30.195149Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bfd2f5add161",
              "venue_id": "venue_caravan_lounge",
              "title": "Mondo Tuesday Karaoke",
              "event_time": "2026-05-19T21:00:00",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-19T21:00:00",
              "event_date": "2026-05-19",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Join the local crowd for Mondo Tuesday Karaoke at San Jose's favorite dive bar. Singing starts at 9 PM.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.facebook.com/CaravanLoungeSanJose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-16T00:28:14.570954Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f8715726ccbc",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-19T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-19T17:00:00",
              "event_date": "2026-05-19",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Weekly community happy hour with great drinks and community vibes from 5 PM to 8 PM.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f740bb8b080d",
              "venue_id": "venue_white_horse",
              "title": "Queer-aoke",
              "event_time": "2026-05-19T20:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "A weekly karaoke night where the queer community comes together to sing and cheer. Hosted by Noor.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-aoke-every-tue-thu-at-white-horse-bar-8pm-tickets-880562304147",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_845d43e3a1f9",
              "venue_id": "venue_st_josephs_arts_society",
              "title": "Mahjong Night",
              "event_time": "2026-05-19T18:00:00",
              "venue_name": "St Josephs Arts Society",
              "event_start": "2026-05-19T18:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1401 Howard St, San Francisco, CA 94103",
              "description": "A night of Mahjong at Saint Joseph's Arts Society. Open play and learning sessions available with beer, wine, and BBQ baos for purchase.",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "$20 - $35",
              "url": "https://thethirdplace.is/event/may-mahjong-night-with-mr-mahjong-and-mahjong-movement",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_st_josephs_arts_society",
                  "source_name": "St Josephs Arts Society",
                  "fetched_at": "2026-05-16T00:40:52.568337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_st_josephs_arts_society|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_70fab1d48348",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-19T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-19T16:00:00",
              "event_date": "2026-05-19",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_88a7c9a6539f",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Karaoke Nights",
              "event_time": "2026-05-19T20:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring karaoke event at Dark Horse Lounge. Listed as every Tuesday and Saturday starting at 8pm.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/karaoke-nights/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2e20e14f0a6b",
              "venue_id": "venue_rite_spot_cafe",
              "title": "Mediocre Music Jam",
              "event_time": "MAY 19, 2026 6PM",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-19T18:00:00",
              "event_date": "2026-05-19",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Mediocre Music Jam - Live Band Karaoke! is a monthly event where attendees can join a live, backing band to sing pop and rock tunes. Hosted at the Rite Spot Cafe, it typically takes place on the third Tuesday of each month.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-16T10:34:36.179904Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eafb7902a43e",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz on Tuesdays",
              "event_time": "2026-05-19T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A weekly jazz night residency curated by venue co-owner and musician Knowles. These sessions feature local jazz artists and are known for their high-quality sound and intimate atmosphere.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_outsound",
                  "source_name": "Outsound",
                  "fetched_at": "2026-05-17T11:27:05.546641Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3f46ece7a490",
              "venue_id": "venue_the_back_room",
              "title": "Veretski Pass & Gaskin-Boden Duo",
              "event_time": "Tue, May 19 2026, 7pm - 9pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/veretski-pass-and-the-gaskin-boden-duo?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_52b3b5962cb9",
              "venue_id": "venue_f8",
              "title": "INTERZONE SF",
              "event_time": "2026-05-19T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-05-19T21:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "A free darkwave dance party celebrating World Goth Week with eclectic dark music.",
              "event_types": [],
              "price_info": "FREE w/ RSVP",
              "url": "https://www.feightsf.com/upcoming/interzone-sf-free-darkwave-dance-party",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_54dc6d3a68a4",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekly Live Jazz & Americana",
              "event_time": "2026-05-19T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "A weekly series featuring live jazz and Americana performances. Enjoy specialty cocktails and local beers in a rustic-industrial setting.",
              "event_types": [
                "live_music",
                "jazz",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7bc4005888ba",
              "venue_id": "venue_orpheum_theater",
              "title": "HELL'S KITCHEN - THE MUSICAL",
              "event_time": "MAY 19, 2026 7PM",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Inspired by the life of Alicia Keys, this musical tells a vibrant coming-of-age story set against the backdrop of Manhattan's Hell's Kitchen neighborhood.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/hells-kitchen-the-musical-19-may-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-17T12:32:29.107232Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a33869e5ad8",
              "venue_id": "venue_blush",
              "title": "Live Music at Blush!",
              "event_time": "2026-05-19",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-19",
              "event_date": "2026-05-19",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Quality live music featuring Blues, Jazz, Gypsy Jazz, Americana and more.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_54121a430612",
              "venue_id": "venue_mojo_lounge",
              "title": "Karaoke Night with DJ RAMD",
              "event_time": "2026-05-19T21:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-19T21:00:00",
              "event_date": "2026-05-19",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Join DJ RAMD for a lively night of karaoke. Sing your favorite hits and enjoy the high-energy atmosphere at this local neighborhood favorite.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e518d683bd03",
              "venue_id": "venue_tommy_ts",
              "title": "TACO TUESDAY",
              "event_time": "2026-05-19",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-19",
              "event_date": "2026-05-19",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_880032c3badf",
              "venue_id": "venue_madrone_art_bar",
              "title": "LIVE MODEL TUESDAY SKETCH",
              "event_time": "May 19 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-19T18:30:00",
              "event_date": "2026-05-19",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "LIVE MODEL TUESDAY SKETCH hosted by Sketchboard Co. Kimberly (Hanfu) @ Madrone Art Bar $15 fee to draw the model Every Tuesday 6:30 to 8:30 PM with live music by Twango Bring your own materials No Photos Please Respect the Models",
              "event_types": [
                "live_music",
                "folk",
                "art",
                "workshop"
              ],
              "price_info": "$15 fee",
              "url": "https://madroneartbar.com/event/livemodelsketch-2026-05-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2c94b18dc187",
              "venue_id": "venue_madrone_art_bar",
              "title": "Karaoke",
              "event_time": "May 19 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-19T21:30:00",
              "event_date": "2026-05-19",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "KARAOKE With host Lauren Yellow Music starts at 9:30pm",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/glitter-tears-karaoke-18-2026-02-04-2026-02-04-2026-04-07-2026-04-21/2026-05-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6703c5eb354e",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Creative Writing Senior Thesis Reading",
              "event_time": "Tuesday, May 19, 2026 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Join the Seniors from the Creative Writing department at the Ruth Asawa School of the Arts as they read from their capstone writing projects, the Senior Thesis. Each writer will read a selection from their poetry chapbooks, novels, and short story collections they have been writing all year. These works are daring and urgent--and written by some of the strongest young writers in San Francisco.\n\n\nItzel Alarcon is a senior in the Creative Writing Department at Ruth Asawa School of the Arts. She is the most proud of her poetry, having been published in multiple 826 Valencia anthologies. She was a member of the 2025 Youth Poet Laureate Cohort. Some of her favorite themes to work with in poetry include nature, family, and forgiveness.\n\nMarley Manalo is a Senior at Ruth Asawa School of the Arts. She loves all things citrus, gold, and the sun. She is an aspiring fashion journalist who wants to work in NYC or Paris.\n\n\nKendall Snipper is a Senior in Creative Writing at the Ruth Asawa School of the Arts. She has been featured in Umlaüt, Synchronized Chaos, San Francisco Youth Anthology, and the 2024 & 2025 editions of American Highschool poets, among other literary spaces. She enjoys the craft of writing and bridging (or obscuring) the gap between the literal and the figurative. As a graduating senior, she is focused on giving others the opportunity to have their voices heard through various long-form projects.\n\n\nZeke Cooksey-Voytenko is a senior at Ruth Asawa School of the Arts. They are passionate about jewelry, media, and connections. His thesis is a culmination of highschool, his thoughts, and what he hopes life could be.\n\n \nFilip Zubatov is a senior in the Creative Writing Department at Ruth Asawa School of the Arts. He enjoys writing plays and fiction, mostly about people making questionable decisions. When he's not writing, he's on a golf course.\n\nAri Nystrom-Rice is an artist and writer in the Creative Writing Department at Ruth Asawa School of the Arts in San Francisco. They love performing and sharing their plays, poetry, and fiction in the Creative Writing shows. They find their writing while walking, swimming, listening to music, and staring out the passenger seat window. They hope that regardless of what they do in life, creative writing will be a constant daily source of passion.\n\nZadie McGrath is a student writer from San Francisco. An avid reader and writer of fantasy and science fiction, Zadie uses speculative elements to explore themes of connection and discovery. Their work has been published in literary magazines such as Apprentice Writer, Backwards Trajectory, and Temple in a City, and they are currently working on a fantasy novel. Since 2024, they have also been an editor and designer for Umläut, Ruth Asawa SOTA’s student-run arts magazine.\n\nChloe Schoenfeld is a teen author, poet, and aerialist. She was born and raised in San Francisco, where she currently attends Ruth Asawa School of the Arts for Creative Writing. Schoenfeld's writing is often whimsical and thoughtful, exploring dystopias and hope. She has been published in multiple literary journals such as elementia magazine and InsideVoice. She is also a co-runner of Umläut literary magazine. \n\nTasha Leung is a writer, designer, animator, and a neverending lover of fruits. They are currently a senior in the Creative Writing department at Ruth Asawa SOTA, where they co-edit Umläut magazine, whose 25-26 issue can be found at theumlaut.org!  Besides their thesis, they are working on collection dedicated to the sheep that help people fall asleep at night, and other underappreciated animals.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/creative-writing-department-senior-thesis-reading",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b2ec2621d00",
              "venue_id": "venue_mountain_winery",
              "title": "Jason Bonham's Led Zeppelin Evening",
              "event_time": "May 19, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1329821",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bf47042a7fe8",
              "venue_id": "venue_yoshis",
              "title": "Northgate High School Jazz",
              "event_time": "TUE 5.19 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$30",
              "url": "https://yoshis.com/events/buy-tickets/northgate-high-school-5/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d84dc99013b2",
              "venue_id": "venue_dawn_club",
              "title": "SMITH DOBSON QUARTET",
              "event_time": "Tuesday, May 19, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Drummer/Vibraphonist/Saxophonist Smith Dobson V has been performing in the Bay Area for nearly twenty years. Originally from Santa Cruz, Ca., Dobson is a member of an important Jazz family. His father, the late Smith Dobson IV, was a world renown Pianist and director of the Jazz series at the Garden City in San Jose for over twenty years, where he accompanied artists’ like Art Pepper, Stan Getz, Bobby Hutcherson, Harold Land, Chet Baker, Red Norvo, Tal Farlow, and Lee Konitz, to name a few.Also in the family, Grandfather Smith III is a Jazz Accordionist, Grandmother Norma, Mother Gail, and Sister Sasha are all Jazz Vocalists. The family often performed as a group at the Garden City, and other venues, as well as many local schools and workshops. As a child, Smith V had the opportunity to study with legendary Jazz Drummer Albert “Tootie” Heath, who said of his pupil, “He has the talent, determination and persistence as a musician, combined with the dedication necessary to succeed… improvisational skills totally advanced, excellent sensitivity, both solo and as an accompanist… my most talented student!”Smith has had the honor of working with some of the great Jazz artists, locally and internationally, such as Bobby Hutcherson, Red Rodney, John Handy, Sheila Jordan, Red Holloway, Pete and Conte Condoli, Phillip Harper, Hal Stein, Noel Jewekes, Ben Goldberg, Graham Connahs’ Sour Note Seven, Darren Johnstone, Will Bernard, and Kenny Brooks.\n\n\n  \n#block-4ec48775202ee471e7b9 {\n    \n    \n    \n\n\n\n  }\n\n  #block-4ec48775202ee471e7b9 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-4ec48775202ee471e7b9 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-4ec48775202ee471e7b9 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-4ec48775202ee471e7b9 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-4ec48775202ee471e7b9 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-4ec48775202ee471e7b9 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/smith-dobson-quartet-1-3fh4k-8ld8n-tr9pa-snsnd-jg8w7-44zfe-et9aw-msy26-cn6nw-hjsp2-xfapm-lzk6r-mpptl-p9kk3-xmppt-f2cs5-x2a9g",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f47ae41525e0",
              "venue_id": "venue_chase_center",
              "title": "Indiana Fever vs. Golden State Valkyries",
              "event_time": "MAY 19, 2026 1PM",
              "venue_name": "Chase Center",
              "event_start": "2026-05-19T13:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Ticket listings for Indiana Fever at Golden State Valkyries at Chase Center in San Francisco, California on 05/19/2026",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/indiana-fever-at-golden-state-valkyries/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f76dd5b63ff8",
              "venue_id": "venue_cafe_du_nord",
              "title": "Friqtao with Raffaele Magliuolo",
              "event_time": "MAY 19, 2026 6PM",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-05-19T18:00:00",
              "event_date": "2026-05-19",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Friqtao, the Paris-born, UK-based pianist known for turning train station pianos into impromptu stages, has struck a chord with nearly 4 million TikTok followers, morphing pop, and hip-hop piano renditions into viral performances. With his signature beanie and headphones - now synonymous with his br...",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/friqtao-with-raffaele-magliuolo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6fe2f3b0a8b6",
              "venue_id": "venue_ashkenaz",
              "title": "Dead Night x Bluegrass Barn Jam",
              "event_time": "05/19/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Day 1: Garcia Grisman & Grass Jam",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/182711",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b30b4caf641",
              "venue_id": "venue_the_knockout",
              "title": "Open Mic Rock n’ Roll Night",
              "event_time": "5/19/2026 7:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Local musicians are invited to take the stage and showcase their rock and roll talents during this inclusive open mic event.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/K657439db2d8?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a9914b869d0c",
              "venue_id": "venue_roxy",
              "title": "Silent Friend",
              "event_time": "Tuesday, May 19, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-19",
              "event_date": "2026-05-19",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "An independent film screening hosted at the theater exploring contemporary dramatic themes.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/silent-friend/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a16df9b274a5",
              "venue_id": "venue_roxy",
              "title": "The Stranger (L’Étranger)",
              "event_time": "Tuesday, May 19, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-19",
              "event_date": "2026-05-19",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of the cinematic adaptation of Albert Camus' classic existentialist novel.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/the-stranger/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b7fc97a3a095",
              "venue_id": "venue_roxy",
              "title": "Staff Pick: Pee-wee’s Big Adventure (35mm)",
              "event_time": "Tuesday, May 19, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-19",
              "event_date": "2026-05-19",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A special 35mm presentation of the whimsical cult classic comedy directed by Tim Burton, hand-selected by the theater staff.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/pee-wees-big-adventure/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d90efd04c975",
              "venue_id": "venue_local_edition",
              "title": "The Local Edition Jazz Orchestra",
              "event_time": "May 19, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-19T20:00:00",
              "event_date": "2026-05-19",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live every Tuesday exclusively at Local Edition! The Local Edition Jazz Orchestra is a diverse group of long-time friends that have played alongside one another for years. The ensemble ranges from having as little as 8 to as many as 18 participants performing with occasional guest singers such as Billy Valentine, Bud E. Luv (aka Bobby Vickers), and Tom Scott.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kwazn5t9r7ak59x-h3dwl-7hzkw-awb8n-7my9y-xbp55-lecjc-ayh5z-nn75p-82brr-yenxa-3apc9-ltjtp-t4pb2-y5l9x-t7ypf-geypx",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e481792dfae7",
              "venue_id": "venue_plough_and_stars",
              "title": "Old Time Jam",
              "event_time": "2026-05-19T19:00:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-19T19:00:00",
              "event_date": "2026-05-19",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "Odd Tuesdays jam session",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8bc5c00c4ce4",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-05-19T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-19T18:00:00",
              "event_date": "2026-05-19",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d95f47c6cb52",
              "venue_id": "venue_the_fireside",
              "title": "Live Trivia",
              "event_time": "2026-05-19T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-05-19T19:30:00",
              "event_date": "2026-05-19",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Live trivia at Lounge; on Zoom every second Tuesday",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-20": {
          "date": "2026-05-20",
          "updated_at": "2026-05-18T16:13:34.576369Z",
          "events": [
            {
              "event_id": "evt_3afac0012b82",
              "venue_id": "venue_the_fillmore",
              "title": "hemlocke springs",
              "event_time": "Wed May 20, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Rising pop artist hemlocke springs brings her unique sound and whimsical aesthetic to the stage as part of her latest North American tour.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/hemlocke-springs-the-apple-tree-under-san-francisco-california-05-20-2026/event/1C00644A966083E9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-06T07:30:02.358221Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-28T13:17:34.089154Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d9a33290477",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Midweek Melodies | May 20",
              "event_time": "May 20, 2026  4:00 pm – 7:00 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-20T16:00:00",
              "event_date": "2026-05-20",
              "venue_address": "San Francisco, CA 94118",
              "description": "A diverse lineup featuring JimBo Trout, Jeff Desira, and Latchkey for the Midweek Melodies series.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/midweek-melodies-may-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-04-06T08:57:52.978551Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-04-06T10:38:38.188242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-20",
              "run_id": "run_184d134354dd",
              "run_label": "Midweek Melodies, Apr 8 – Nov 15",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_00b6b049cd40",
              "venue_id": "venue_black_cat",
              "title": "The Soul Sessions",
              "event_time": "2026-05-20T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-05-20T21:30:00",
              "event_date": "2026-05-20",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "JazzLine INSTITUTE presents The Soul Sessions an electrifying live music series bringing the Bay Area's finest to the stage at Black Cat every Wednesday night.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$30-$50",
              "url": "http://www.foopee.com/by-band.1.html#Joe_Warner",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-04-07T08:06:19.104423Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9d83946a5ede",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Bob Log III",
              "event_time": "Wednesday May 20 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Bottom of the Hill, S.F. Bob Log III, Rock N Roll Adventure Kids, Top Secret Robot Alliance, Shama Lama 21+ $18/$20 8pm/8:30pm",
              "event_types": [
                "live_music",
                "rock",
                "electronic"
              ],
              "price_info": "$18/$20",
              "url": "http://www.bottomofthehill.com/20260520.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f0393a60251",
              "venue_id": "venue_bimbos_365",
              "title": "Melody's Echo Chamber, Strange Lot",
              "event_time": "May 20 - Show: 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "French musician Melody Prochet brings her ethereal dream-pop and neo-psychedelic sounds to the 4 Star Theater for an enchanting evening.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/melodys-echo-chamber/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-04-07T09:45:45.537698Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-14T11:47:43.651584Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d922feb14222",
              "venue_id": "venue_guild_theatre",
              "title": "kChevy Metal",
              "event_time": "May 20 2026 7pm/8pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live concert at The Guild Theatre. Listed on the venue site as 'Chevy Metal with The Alive.' Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$40",
              "url": "http://www.foopee.com/by-band.3.html#kChevy_Metal",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-04-11T07:04:39.679517Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cde077f0b979",
              "venue_id": "venue_august_hall",
              "title": "Dry Cleaning",
              "event_time": "May 20 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "British post-punk band Dry Cleaning performs at August Hall, showcasing their distinctive blend of art-rock and spoken-word vocals. The band will perform tracks from their acclaimed discography in a captivating live setting.",
              "event_types": [
                "other"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.1.html#Dry_Cleaning",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T11:11:30.532030Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-11T11:46:26.732789Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_719eb05b7adb",
              "venue_id": "venue_act_rembe",
              "title": "Hamnet",
              "event_time": "2026-05-20T19:30:00",
              "venue_name": "ACT REMBE",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Opening night of the Royal Shakespeare Company's stage adaptation of Maggie O'Farrell's best-selling novel about the son of William Shakespeare.",
              "event_types": [
                "theater"
              ],
              "price_info": "From $59",
              "url": "https://www.act-sf.org/whats-on/2025-26-season/hamnet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_act_rembe",
                  "source_name": "ACT REMBE",
                  "fetched_at": "2026-04-11T11:20:52.515181Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_act_rembe|2026-05-20",
              "run_id": "run_209be028b4b1",
              "run_label": "Hamnet, Apr 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_64c579a8a6e2",
              "venue_id": "venue_black_cat",
              "title": "Joe Warner Jazz Trio",
              "event_time": "May 20 7pm",
              "venue_name": "Black Cat",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $15.50 - $25.50 \n\n\n7:00 show: Doors @ 6:00\n\nMidweek just got a whole lot deeper. \n\nJaZzLine INSTITUTE presents The Soul Sessions: an electrifying live music series bringing the Bay Area’s finest to the stage at Black Cat every Wednesday night, March through May. Experience world-class musicianship up close in an intimate setting where jazz, soul, gospel, funk, and R&B collide.\n\nSeats are limited. The vibe is undeniable. Make your reservations now while supplies last. The $10 cash tickets are available at the door based on availability.\n\nMeet this Quartet:\n\nJoe Warner is setting the Bay Area jazz scene on fire. A rising star with a captivating touch and electrifying stage presence, Warner serves as pianist and musical director for the legendary Miss Faye Carol while leading his own acclaimed Joe Warner Trio.\n\nHe’s shared stages and studios with jazz icons including Houston Person, Jeff “Tain” Watts, Buster Williams, and Gary Bartz, and has crossed genre lines alongside cultural heavyweights like Mistah F.A.B., The California Honeydrops, and Robert Randolph.\n\nWith deep groove, fearless versatility, and a modern sensibility rooted in tradition, Warner delivers fresh takes on jazz standards, blues, ballads, and adventurous swingin’ — proving he truly has the keys to the future.\n\nDistinguished drummer and founder of the Da Groove Collective Jazz Quartet, Dante “Taz” Roberson brings over two decades of live performance and touring experience to every stage he touches.\n\nKnown for his powerful grooves and creative command of rhythm, Taz has performed with Eric Benet, Cameo, Joe, Kem, Alicia Keys, Najee, Tank, Tony! Toni! Toné!, and Howard Wiley. His dynamic style has captivated audiences at iconic venues like London’s Jazz Café and major festivals including San Jose and the Hollywood Bowl Jazz Festivals.\n\nRooted in the rich musical culture of the Bay Area, his sound blends funk, jazz, and classic R&B into a collective vibe that feels both nostalgic and strikingly contemporary.\n\nA world-class bassist and background vocalist, Michael “Tiny” Lindsey has performed with some of the biggest names in music: John Legend, Alicia Keys, John Mayer, Boyz II Men, Common, Jay-Z, and more. His television appearances include The Tonight Show, Jimmy Kimmel Live, Rosie O’Donnell, Martha Stewart, and Last Call with Carson Daly.\n\nBorn into a musical family, Lindsey was performing professionally in New York by age fifteen. His versatility across pop, R&B, rock, jazz, blues, funk, and gospel has taken him on global tours throughout the U.S., Europe, Japan, South America, and Africa.\n\nBeyond touring, he’s a respected writer, arranger, and producer, contributing to albums by Sunshine Anderson, Ryan Shaw, and Shawn Raiford. When Tiny locks in, the groove becomes undeniable.\n\nDescribed as “a rose sprung from a rock,” Oakland native Angelo Luster is a saxophonist whose rich, soulful tone carries listeners on a spiritual journey. His sound is born from the union of contemporary gospel and West Coast jazz — powerful, prayerful, and deeply expressive.\n\nA scholarship student of UC Berkeley’s Young Musicians Program at age twelve, Luster trained extensively in jazz and classical music before going on to perform at festivals throughout the U.S. and Europe. He has shared stages with Boyz II Men, Rosemary Clooney, Mercer Ellington, Maynard Ferguson, Diane Schurr, Billy Taylor, Joe Williams, and more.\n\nAn award-winning artist and Best Male Jazz Artist recipient, Luster’s recordings — including Face 2 Face and his latest EP Sunday Mornin’ — reflect his mission to inspire through music that feeds both soul and spirit.\n\nThe Soul Sessions at Black Cat\nWhere groove meets spirit.\nWhere legends and rising stars share one stage.\nWhere Wednesday nights feel like church for music lovers.\n\nSupported by a Culture Forward grant from The Svane Family Foundation\n\nBand Lineup:\nJoe Warner, piano\nDante 'Taz' Roberson, drums\nMichael 'Tiny' Lindsey, bass\nAngelo Luster, saxophone",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.1.html#Joe_Warner",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-20T12:44:45.071428Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-04-22T11:07:28.196572Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3857de715e2b",
              "venue_id": "venue_cafe_du_nord",
              "title": "Katelyn Tarver, Rosie",
              "event_time": "May 20 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Katelyn Tarver has never shied away from the truth — even when it hurts. On her third full-length album, Tell Me How You Really Feel (Nettwerk), the Los Angeles-based singer, songwriter, and actress chronicles the raw process of self-reinvention after the end of her decade-long marriage, turning hea...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not listed on event page",
              "url": "http://www.foopee.com/by-band.1.html#Katelyn_Tarver",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b5ff31e83761",
              "venue_id": "venue_great_american_music_hall",
              "title": "Elias Ronnenfelt",
              "event_time": "May 20 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Great American Music Hall, S.F. Elias Ronnenfelt, Evanora Unlimited, John FM a/a $25/$30/$35 7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25/$30/$35",
              "url": "http://www.foopee.com/by-band.1.html#Elias_Ronnenfelt",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-03T10:13:39.623956Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d94378bb77e",
              "venue_id": "venue_ivy_room",
              "title": "Pupils of Punk",
              "event_time": "May 20 2026 9:40pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-20T21:40:00",
              "event_date": "2026-05-20",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Ivy Room, Albany Pupils Of Punk (9:40pm), Lust For Blood, Minor Sun, Elegant Trash, Z Trane Electric BAnd, Irrevria, mc Patty 21+ $15 ($25 vip) 6pm/6:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 ($25 vip)",
              "url": "http://www.foopee.com/by-band.2.html#Pupils_Of_Punk",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_35ca9bfac359",
              "venue_id": "venue_kilowatt",
              "title": "Cinema Stereo, Fever Dog",
              "event_time": "May 20 7pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Cinema Stereo and Fever Dog headline this live music event at JAX Vineyards. Attendees can enjoy a night of rock-influenced performances.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "http://www.foopee.com/by-band.0.html#Cinema_Stereo",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-06T12:48:06.494082Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42f7c6d4f5bc",
              "venue_id": "venue_rickshaw_stop",
              "title": "Gatecreeper & Friends",
              "event_time": "2026-05-20T19:00:00",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Experience a night of heavy metal and hardcore featuring the death metal sounds of Gatecreeper alongside supporting acts at JAX Vineyards.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "http://www.foopee.com/by-club.3.html#Rickshaw_Stop__S_F_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-26T11:58:55.749900Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-30T15:22:32.287368Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f75cf1b9364",
              "venue_id": "venue_the_uc_theatre",
              "title": "**MOVED TO CONERSTONE** Børns",
              "event_time": "May 20 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "UC Theater, Berkeley Borns a/a $60+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS $60 + FEES",
              "url": "https://www.theuctheatre.org/shows/borns-20-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-28T10:37:42.386724Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f39c5006e15",
              "venue_id": "venue_yerba_buena_center",
              "title": "Willie Alexander III",
              "event_time": "2026-05-20T18:00:00",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Step into an evening where sound and story intertwine. The exhibition Diedrick Brackens: gather tender night becomes a living, breathing instrument as composer, singer, and songwriter Willie Alexander III performs live among the works. His music—layered, intimate, and resonant—echoes through the...",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Free",
              "url": "https://ybca.org/event/willie-alexander-iii/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-01T01:50:06.526071Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-01T14:16:58.385085Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-13T11:21:58.467763Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1fd54a7a1faf",
              "venue_id": "venue_presidio_theater",
              "title": "Music of Remembrance",
              "event_time": "May 20, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "This performance by Music of Remembrance features musical works dedicated to honoring the legacy and stories of those affected by the Holocaust.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/music-of-remembrance-the-dialogue-of-memories",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-03T11:24:14.078178Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-05-03T12:10:35.546726Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4a5dd447aa67",
              "venue_id": "venue_stay_gold_deli",
              "title": "Laps Of Memory",
              "event_time": "May 20, 2026 6pm",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "A multi-band showcase featuring Laps Of Memory, Colls, Cord, Mau, One Last Player, A Life Spent, and Viola Swamp. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.2.html#Laps_Of_Memory",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-05T11:39:38.379726Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-09T12:14:11.134617Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bcbd62ec3470",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Peter Erskine Trio",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Two-time GRAMMY winner and drumming icon Peter Erskine performs music from his recording 'Peregrine' with longtime collaborators Alan Pasqua on piano and Scott Colley on bass.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$30.00",
              "url": "https://piedmontpiano.com/concerts/2026/5/20/peter-erskine-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-05-06T18:09:28.971011Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_edd68daf7072",
              "venue_id": "venue_bing_concert_hall",
              "title": "Renée Elise Goldsberry",
              "event_time": "05/20/2026 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/25-26season/bing-concert-hall/renee-elise-goldsberry/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a9065a1ed8b",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-20",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-20",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_83908fb1df44",
              "venue_id": "venue_the_lost_church",
              "title": "Positive Results Comedy Tour",
              "event_time": "2026-05-20",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedy tour performance at The Lost Church San Francisco.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m6i32AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d4742d4eaa90",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Preview)",
              "event_time": "2026-05-20T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance is a preview before the official opening night.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c249d25e330e",
              "venue_id": "venue_the_bistro",
              "title": "Avenue Army, Neverlyn, Cheers To Nothing",
              "event_time": "2026-05-20T19:30:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Live music performance featuring Avenue Army, Neverlyn, and Cheers To Nothing.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free / No Cover",
              "url": "https://allevents.in/hayward/avenue-army-neverlyn-cheers-to-nothing-@-the-bistro-in-hayward-ca/80002664554433",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cce1bfb027cb",
              "venue_id": "venue_mr_tipples",
              "title": "Anthony Stanco Quintet",
              "event_time": "2026-05-20T20:45:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-20T20:45:00",
              "event_date": "2026-05-20",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Trumpet virtuoso Anthony Stanco embodies the soulful essence of Detroit's musical legacy with a distinctive blend of talent and charisma. Featuring Jason Hainsworth and Michael Potter.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/anthony-stanco-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4ece665c2746",
              "venue_id": "venue_vino_locale",
              "title": "Midweek Jazz Duo",
              "event_time": "2026-05-20T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-20T18:30:00",
              "event_date": "2026-05-20",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "Join Vino Locale for a relaxing Wednesday evening featuring local jazz duos in the outdoor garden patio. Perfect for a mid-week date night.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_aee45e6d983e",
              "venue_id": "venue_joe_goode_annex",
              "title": "Influencer Dance with Maria Scaroni",
              "event_time": "2026-05-20T10:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-05-20T10:00:00",
              "event_date": "2026-05-20",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A hybrid between Authentic Movement practice and dance-play that dispels influencer culture in favor of in-real-life mutual witnessing.",
              "event_types": [
                "dance",
                "workshop"
              ],
              "price_info": "Free (suggested donation $20)",
              "url": "https://joegoode.org/event/maria-scaroni-influencer-dance/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ca6795641dbc",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "The Shoe Jazz Jam",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Straight ahead jazz standards led by a house band. Open to singers and all levels of players.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/dirty-works-jazz-jam-the-shoe-tickets-107655434520",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5fc1a74a7aa8",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Wednesday queer country dancing event featuring instructors teaching partner dancing and classic era line dances.",
              "event_types": [],
              "price_info": "",
              "url": "https://www.verdiclub.net/event/scuff-queer-line-dancing-two-stepping/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a9e7eddc31ce",
              "venue_id": "venue_la_pena",
              "title": "Old Guard Gathering",
              "event_time": "2026-05-20T12:00:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-20T12:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "A monthly gathering for the La Peña Old Guard to discuss various topics in a community setting. Open to all.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://lapena.org/event/old-guard-third-wednesday-gathering-2026-05-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fa0c1fb7e95f",
              "venue_id": "venue_la_pena",
              "title": "Las Mermeladas Music Jam",
              "event_time": "2026-05-20T18:30:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-20T18:30:00",
              "event_date": "2026-05-20",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "A community music jam led by José Roberto Hernández where musicians of all ages and skill levels can create music together.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://lapena.org/event/las-mermeladas-family-friendly-music-jam-sessions-at-la-pena-2026-05-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_802f1cc394ba",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-20T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_88cd639846e6",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "MAY 20, 2026 7:30PM",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Powered by mind-blowing circus acts, live original music, and more, Dear San Francisco at the historic Club Fugazi—former home of Beach Blanket Babylon—is delighting audiences ages 5 to 105. Come with a date, family, friends, co-workers, and enjoy a curated menu of cicchetti (small bites) and bev...",
              "event_types": [],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-15T21:11:22.983431Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-20",
              "run_id": "run_f566cc1f9d69",
              "run_label": "Dear San Francisco, May 15 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5bc16cc2bc40",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Open Mic Wednesdays",
              "event_time": "2026-05-20T19:30:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "The venue's long-running weekly open mic night, welcoming local musicians, poets, and performers of all kinds.",
              "event_types": [
                "live_music",
                "literary",
                "community"
              ],
              "price_info": "Free with RSVP",
              "url": "https://www.ticketweb.com/event/neck-of-the-woods-sf-open-neck-of-the-woods-tickets/13426330",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e6b9ec8bca57",
              "venue_id": "venue_the_monkey_house",
              "title": "The Metamorphosis of Barry Schlegman",
              "event_time": "2026-05-20",
              "venue_name": "The Monkey House",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "A listening party for Monkey-in-Chief Ira Marlowe's new musical adaptation of Kafka's The Metamorphosis, reset within a Jewish family in 1958. This is a radio play created to trigger laughter, chills and tears. No cover; donations welcome; refreshments served.",
              "event_types": [
                "film",
                "literary"
              ],
              "price_info": "No cover; donations welcome",
              "url": "https://static.wixstatic.com/media/60be15_39926359a51a4a7b9559aa0bc59b13fb~mv2.png/v1/fill/w_600%2Ch_255%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/5-20%20BARRY%20.png",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-05-15T21:31:30.195149Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1e146b5da443",
              "venue_id": "venue_biscuits__blues",
              "title": "Mike Zito",
              "event_time": "2026-05-20T19:00:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Mike Zito brings fiery blues-rock guitar, soulful vocals, and heartfelt storytelling from the St. Louis native and global blues powerhouse.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260520mikezito",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_447051a163cf",
              "venue_id": "venue_caravan_lounge",
              "title": "Ato Walker Comedy Showcase",
              "event_time": "2026-05-20T22:00:00",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-20T22:00:00",
              "event_date": "2026-05-20",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "San Jose's longest running comedy open mic, hosted by Ato Walker. Featuring 5-minute standup sets from local talent.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://localgroove.live/events/the-caravan-lounge-comedy-show-at-caravan-lounge-may-20-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-16T00:28:14.570954Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1556e0efd0bb",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-20T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-20T17:00:00",
              "event_date": "2026-05-20",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Mid-week happy hour gathering for the LGBTQ+ community.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_345cc0ca794b",
              "venue_id": "venue_white_horse",
              "title": "Rebel Kings Drag Show",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "A bi-weekly drag king experience and gender-bending exploration through performance art, occurring every 1st and 3rd Wednesday.",
              "event_types": [],
              "price_info": "Check website for cover",
              "url": "http://www.rebelkingsoakland.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fc92028ecfb1",
              "venue_id": "venue_st_josephs_arts_society",
              "title": "Salon des Refusés",
              "event_time": "2026-05-20T18:30:00",
              "venue_name": "St Josephs Arts Society",
              "event_start": "2026-05-20T18:30:00",
              "event_date": "2026-05-20",
              "venue_address": "1401 Howard St, San Francisco, CA 94103",
              "description": "La Pocha Nostra invites you to an evening where the traditional life drawing class becomes a live performance laboratory with rotating tableaux across the historic nave.",
              "event_types": [
                "art",
                "theater",
                "workshop"
              ],
              "price_info": "Check website for pricing",
              "url": "https://thethirdplace.is/event/salon-des-refuses-a-participatory-figure-drawing-ritual",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_st_josephs_arts_society",
                  "source_name": "St Josephs Arts Society",
                  "fetched_at": "2026-05-16T00:40:52.568337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_st_josephs_arts_society|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ed84b2e92f70",
              "venue_id": "venue_f8",
              "title": "Nina Sol, Patrick Wilson & Colibri",
              "event_time": "05/20/2026 9pm-3am",
              "venue_name": "F8",
              "event_start": "2026-05-20T21:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Wednesday night house music featuring Nina Sol and Patrick Wilson. Support by Maj, Charles Hawthorne, and Ol!v!a.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "free w/rsvp b4 11pm / $10 | 21+",
              "url": "https://www.eventbrite.com/e/strut-sf-f8-present-nina-sol-patrick-wilson-tickets-1988701759497",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a81f47761de7",
              "venue_id": "venue_rooster_t_feathers",
              "title": "New Talent Comedy Competition: Semi-Finals",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Semi-final round of Roosters' annual new talent comedy competition.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d8e8adbf33ad",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-20T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-20T16:00:00",
              "event_date": "2026-05-20",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bdbb61ae8970",
              "venue_id": "venue_center_for_new_music",
              "title": "Composer Meetup – May ’26",
              "event_time": "May 20",
              "venue_name": "Center for New Music",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "May 20: Composer Meetup – May ’26",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/composer-meetup-may-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-05-16T10:27:19.919834Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_088f11d60abb",
              "venue_id": "venue_noe_valley_ministry",
              "title": "Dirty Cello",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "Noe Valley Ministry",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1021 Sanchez St, San Francisco, CA 94114",
              "description": "A special release concert with Dirty Cello. Led by vivacious cross-over cellist Rebecca Roudman, the group brings a high energy and unique spin on blues and bluegrass, careening from blues to bluegrass to rock.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$18 door / $15 advance",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_noe_valley_ministry",
                  "source_name": "Noe Valley Ministry",
                  "fetched_at": "2026-05-16T10:31:53.626819Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_noe_valley_ministry|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cbecc2e79fca",
              "venue_id": "venue_scopo_divino",
              "title": "Le Jazz Hot",
              "event_time": "2026-05-20T18:00:00",
              "venue_name": "Scopo Divino",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "The trio of the Hot Club of San Francisco, featuring Paul 'Pazzo' Mehling on guitar, celebrates the music of Django Reinhardt.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover",
              "url": "https://www.scopodivino.com/events/le-jazz-hot",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scopo_divino",
                  "source_name": "Scopo Divino",
                  "fetched_at": "2026-05-16T11:10:22.174562Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_scopo_divino|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6977184e1315",
              "venue_id": "venue_the_back_room",
              "title": "Guitar Trifecta",
              "event_time": "Wed, May 20 2026, 7:30pm - 9:30pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/guitar-trifecta?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_70ebb0324f34",
              "venue_id": "venue_exploratorium",
              "title": "Learn How to Use a Scanning Electron Microscope",
              "event_time": "2026-05-20T11:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-05-20T11:00:00",
              "event_date": "2026-05-20",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Staff Biologists and Facilitators will help you zoom in on various samples, such as plants and bugs.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5abd13c0706e",
              "venue_id": "venue_blush",
              "title": "Live Music at Blush!",
              "event_time": "2026-05-20",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Quality live music featuring Blues, Jazz, Gypsy Jazz, Americana and more.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5cc880d238d4",
              "venue_id": "venue_mojo_lounge",
              "title": "Wednesday Jam Night",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "A collaborative live music session held every Wednesday. This jam night attracts local musicians and fans for an evening of blues, rock, and improvisational performances.",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0d8428716479",
              "venue_id": "venue_public_works",
              "title": "Kitty Kat Ball",
              "event_time": "2026-05-20T17:45:00",
              "venue_name": "Public Works",
              "event_start": "2026-05-20T17:45:00",
              "event_date": "2026-05-20",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A vibrant performance featuring Nini Coco, Darlene Mitchell, Myki Meeks, and Juicy Love Dion.",
              "event_types": [],
              "price_info": "From $59",
              "url": "https://publicsf.com/events/kitty-kat-ball-w-nini-coco-darlene-mitchell-myki-meeks-and-juicy-love-dion/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ec4b8006c622",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-20T19:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-20T19:45:00",
              "event_date": "2026-05-20",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25; marked sold out on ticket page",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_962d8d11c5cd",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "A night of live jazz, blues, and soul featuring Chris Siebert on the mighty in-house Hammond organ. The performance often includes an all-star lineup of local jazz players sitting in for a dynamic musical experience.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_15f4cb3a39f9",
              "venue_id": "venue_the_sound_room",
              "title": "Luis Peralta, Marcus Shelby & James Gallagher",
              "event_time": "Wednesday, May 20, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Rising star Luis Peralta is a pianist from Oakland, California now living in Brooklyn, New York. He began playing piano at seven, embarking quickly on a serious study of European Classical and Jazz music. In 2019, Luis was awarded a full scholarship to study piano at the New School. He has studied with and performed with Bay Area figures such as Howard Wiley and Marcus Shelby. In New York City, he has played with Wallace Roney Jr., Rodney Green, Russell Hall, Darrell Green, and Mike Troy.\n\nPlaying with Luis is Marcus Shelby on bass and James Gallagher on drums.\n\nMarcus Anthony Shelby is a composer, bassist, bandleader, and educator. His work focuses on the history, present, and future of African American lives social movements and music education. In 1990, Marcus Shelby received the Charles Mingus Scholarship to attend Cal Arts and study composition with James Newton and bass with Charlie Haden. Currently, Shelby is the Artistic Director of Healdsburg Jazz, an artist in residence with the Yerba Buena Gardens Festival, and a past resident artist with the San Francisco Jazz Festival and the Healdsburg Jazz Festival.\n\nJames Gallagher is an American jazz drummer and educator from Northern California, currently living in Manhattan. He regularly performs at venues such as Smalls, Mezzrow, Fat Cat, the 75 club, The Django, the Roxy, Lambs Club, and others. He has worked professionally with Mike Ledonne, David Hazeltine, Jeb Patton, David Wong, Grant Stewart, Harry Allen, Paul Sikivie, and many others.\n\nTickets at Luis Peralta Group",
              "event_types": [
                "live_music",
                "jazz",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/luis-peralta-group",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7514769de056",
              "venue_id": "venue_make_out_room",
              "title": "BFF.FM presents KARAOKE @ The Make Out Room",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Karaoke night hosted by BFF.fm.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "Free",
              "url": "https://dothebay.com/events/2026/5/20/bff-fm-presents-karaoke-the-make-out-room-hosted-by-bff-fm-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8b087d2f1b2c",
              "venue_id": "venue_madrone_art_bar",
              "title": "SPIKE SPINS OSCAR’S JAZZ RECORDS",
              "event_time": "May 20 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-20T18:30:00",
              "event_date": "2026-05-20",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Madrone’s own owner hits the decks for a deep dive into the soul of Fillmore jazz 🎶 6:30–8:30 PM Expect a rich blend of legendary cuts and hidden gems as he spins selections from the iconic Oscar Myers collection — from heavy hitters to rare, lesser-known bangers.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/spike-spins-oscars-jazz-records/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_997f22338f58",
              "venue_id": "venue_madrone_art_bar",
              "title": "Children of Lucy",
              "event_time": "May 20 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-20T21:30:00",
              "event_date": "2026-05-20",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Live Music 9:30pm -12:30am No Cover Children of Lucy is a San Francisco-based global dance band that blends rhythmic and harmonic traditions into original, high-energy grooves that move the body and stir the soul.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/children-of-lucy-3/2026-05-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e12e1d553837",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Brown Bag Jazz: Jayn Pettingill",
              "event_time": "MAY 20, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Join Jayn Pettingill for a free, informal daytime session exploring the life and legendary compositions of Duke Ellington.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://concerts.jazzschool.org/free-brown-bag-jazz-hangs-jayn-pettingill-on-duke-ellington-and-radio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cc3fbadedb0e",
              "venue_id": "venue_rite_spot_cafe",
              "title": "12 String Duet / Karina Denike",
              "event_time": "May 20, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Early: 12 String Duet\nLate: Karina Denike & Michael McIntosh",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_40dba6813527",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Rooted as Resistance",
              "event_time": "Wednesday, May 20, 2026 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Join us for the 2026 Rooted and Written Faculty and staff reading, exploring what we root in as resistance. Featuring new work from Grace Loh Prasad, Tara Dorabji, Sabina Khan-Ibarra, Rowena Leong Singer, MK Chavez, Swetha Amit and Danny Theimann; moderated by Dominic Lim.\n\nProduced by The Writers Grotto, Rooted and Written is a free, multi-genre writing workshop for Bay Area writers of color.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/irh0omloek5e2dbyptkc6c2nsdgp5q",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f143fb1523a",
              "venue_id": "venue_gray_area",
              "title": "Creative Code Showcase",
              "event_time": "05/20",
              "venue_name": "Gray Area",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Gray Area Creative Code Showcase Spring 2026",
              "event_types": [
                "art",
                "experimental"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/gray-area-creative-code-showcase-spring-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_abf8b0fd6d60",
              "venue_id": "venue_yoshis",
              "title": "Kurt Rosenwinkel",
              "event_time": "WED 5.20 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "HIGHLY ACCLAIMED AND INFLUENTIAL JAZZ GUITARIST, COMPOSER, AND BANDLEADER",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$39 - $79",
              "url": "https://yoshis.com/events/buy-tickets/kurt-rosenwinkel-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_827f486a6d36",
              "venue_id": "venue_dawn_club",
              "title": "CHARGED PARTICLES",
              "event_time": "Wednesday, May 20, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Bay Area-based Charged Particles (www.chargedparticles.com) features pianist Greg Sankovich, bassist Aaron Germain, and drummer Jon Krosnick, and is celebrating their 32nd year of playing funky Latin jazz.  They have toured Indonesia, the U.K., Canada, Germany, Switzerland, and Italy, and have performed at famed jazz clubs including Ronnie Scott’s, Birdland, Blues Alley, the Dakota, Yoshi’s, the Deer Head Inn, the Falcon, Nighttown, as well as the Musical Instrument Museum, the Scarborough Jazz Festival, the Columbus Jazz Festival, the Stanford Jazz Festival, the San Luis Obispo Jazz Festival, the Eureka Springs Jazz Festival, and in hundreds of other venues. The trio is just back from their fourth tour of the UK, this time with superstar trumpeter Randy Brecker and Bay Area saxophonist Tod Dickow, playing the acoustic jazz compositions of the late, great saxophonist Michael Brecker. They played music featured on their most recent CD on Summit Records: Live at the Baked Potato!  That CD was named one of the best CDs of 2021 by Jazzwise Magazine, JazzTimes Magazine, the Jazz Journalists Association, the 16th Annual Jazz Critics Poll, and more.  Of the trio, reviewers have said: “Something special” … “inventive, invigorating, mesmerizing, beautiful, virtuosic, and lyrical.”(Downbeat Magazine) “An electrifying, push-the-limits performance style… A tight and enormously talented trio.”(Jazz Times Magazine) “Charged Particles is definitely dazzling.”(Jazz and Blues Report) “Fresh, energized jazz that showcases the trio’s individual technical mastery as well as a cooperative, refined approach to the art form.”(Jazz News Magazine) “Tight interplay was the watchword as the threesome applied its own twists with spark and personal flair.”(Los Angeles Times)\n\n\n  \n#block-75d9cb5b5f4698aaa477 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-75d9cb5b5f4698aaa477 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-75d9cb5b5f4698aaa477 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-75d9cb5b5f4698aaa477 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-75d9cb5b5f4698aaa477 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-75d9cb5b5f4698aaa477 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-75d9cb5b5f4698aaa477 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/charged-particles-1-7fmwa-gebg6-axkg8-3wegw-knpe9-nzhtt-z3cas",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8fdde0592300",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Patrick Wolff’s “Swinging Organ” Quartet",
              "event_time": "2026-05-20T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Patrick Wolff’s newest band is a swinging organ quartet that draws from the style of the late 50s/early 60s collaborations of Shirley Scott/ “Lockjaw” Davis and Lou Donaldson/ Big John Patton. Featuring two of the Bay’s experts in this idiom, pianist/organist Adam Shulman and guitarist Jack Tone Riordan, and the talented up and coming drummer Miles Turk, this band grooves hard through repertoire from decades of the jazz tradition and multiple continents.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/patrick-wolffs-swinging-organ-quartet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6306e10133c9",
              "venue_id": "venue_sf_conservatory",
              "title": "SF Opera Orchestra Community Concert",
              "event_time": "2026-05-20T19:00:00",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Opera, Orchestra, Partnership Event",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-05-18T11:23:52.619579Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f44042d541b",
              "venue_id": "venue_sf_conservatory",
              "title": "Oliver Moore Piano Recital",
              "event_time": "2026-05-20T19:30:00",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Student Recital, Piano",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-05-18T11:23:52.619579Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57dec5d70a8c",
              "venue_id": "venue_hillside_club",
              "title": "Documentary Film: Two Short Films by Luca Capponi",
              "event_time": "May 20, 2026, 7:00 PM – 9:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "This screening features two short documentary works by filmmaker Luca Capponi, showcasing his unique cinematic perspective.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.eventbrite.com/e/1987460377490?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f58cc30c148a",
              "venue_id": "venue_ivy_room",
              "title": "Bang the Bay!",
              "event_time": "Wednesday May 20 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "bang the bay presents - Z TRANE ELECTRIC BAND + IRREVRIA + MC PATTY",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180737",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5179ed7c3f66",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "The Louie Louies & Friends",
              "event_time": "Wed May 20 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A Night Rock n Punk!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/the-louie-louies-da-pupz-sketch-sanders-davey-zahalla/691167?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6daa01ab6fe1",
              "venue_id": "venue_poor_house_bistro",
              "title": "William Johnston Trio Jazz Jam",
              "event_time": "Wed, May 20, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "Join us for an amazing Jazz Jam with William Johnston Trio Hosting. Alongside this is East Brothers Brewery highlighting their amazing brews for $2! Come hang with us.",
              "event_types": [
                "live_music",
                "jazz",
                "community"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5412",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_86d381f7b409",
              "venue_id": "venue_brava_theater",
              "title": "Indómitas Live Podcast",
              "event_time": "May 20, 2026",
              "venue_name": "Brava Theater",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Indómitas is a live monthly podcast series hosted by Chelis López of KPOO and Radio Bilingüe, featuring untamable voices of fierce women artists and activists.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/indomitas-may20-ydj3z-9hl72-mhzsr-pdjbn-dtet6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-18T11:42:14.495739Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_195dee52a721",
              "venue_id": "venue_winters",
              "title": "OLD TIME JAM",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4f3933e2205c",
              "venue_id": "venue_cafe_zoe_pizza_guy",
              "title": "Cafe Zoë Open Mic",
              "event_time": "2026-05-20T18:00:00",
              "venue_name": "Cafe Zoe",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1929 Menalto Ave, Menlo Park, CA 94025",
              "description": "Monthly open mic on the back patio at Neighborhood Pizza Guy & Cafe Zoe. Walk-in sign-up starts at 5:30 PM; performances run 6–8 PM. Hosted by Pete Sommer. Two songs or 10 minutes per performer; all ages.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Not listed",
              "url": "https://www.bayareaopenmics.com/OM-CAFEZOE.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_zoe_pizza_guy",
                  "source_name": "Cafe Zoe",
                  "fetched_at": "2026-05-18T11:49:07.145864Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_zoe_pizza_guy|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_62e8d7b19e59",
              "venue_id": "venue_oracle_park",
              "title": "Cirque du Soleil: ECHO",
              "event_time": "MAY 20, 2026 12AM",
              "venue_name": "Oracle Park",
              "event_start": "2026-05-20T00:00:00",
              "event_date": "2026-05-20",
              "venue_address": "24 Willie Mays Plaza, San Francisco, CA 94107",
              "description": "Experience the magic of Cirque du Soleil ECHO, where poetry, stagecraft, daring acrobatics, and cutting-edge technology come together to explore the delicate balance between people, animals, and the world we all share. This 20th Big Top show offers bold new visuals, a unique aesthetic, and vibran...",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/echo_2026-05-20-00-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oracle_park|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ade00275259",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dance Outdoors with Rhythm & Motion",
              "event_time": "MAY 20, 2026 12PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-20T12:00:00",
              "event_date": "2026-05-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Wednesdays at Noon. Free RSVP encouraged, drop-ins are welcome. More dates to be announced. Check back often for updates. Named San Francisco’s favorite dance workout by the magazines San Francisco […]",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/dance-outdoors-with-rhythm-motion-2_2026-05-20-12-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_17b770ba95f4",
              "venue_id": "venue_chase_center",
              "title": "New York Liberty vs. Golden State Valkyries",
              "event_time": "MAY 20, 2026 1PM",
              "venue_name": "Chase Center",
              "event_start": "2026-05-20T13:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Ticket listings for New York Liberty at Golden State Valkyries at Chase Center in San Francisco, California on 05/20/2026",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/new-york-liberty-at-golden-state-valkyries/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ccd5e32050ab",
              "venue_id": "venue_yerba_buena_center",
              "title": "Watercolor Affirmation Art Workshop",
              "event_time": "MAY 20, 2026 2PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-20T14:00:00",
              "event_date": "2026-05-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Create art inspired by programs at YBCA in this series of drop-in art workshops for participants of all ages. Each workshop will explore different practices and art-making methods. Materials will be provided, and participants will be able to take their artwork home as a souvenir. Design be...",
              "event_types": [
                "workshop",
                "art"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/free-art-workshop-watercolor-affirmation-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d72e17a493f",
              "venue_id": "venue_the_fillmore",
              "title": "hemlocke springs: The Apple Tree Under the Sea Tour",
              "event_time": "MAY 20, 2026 6PM",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "OPEN DANCE FLOOR / STANDING ROOM ONLY Doors 7:00pm / Show 8:00pm Special Guest: The Girl!",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/hemlocke-springs-the-apple-tree-under-the-sea-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab82b151ada3",
              "venue_id": "venue_boom_boom_room",
              "title": "Infamous Boom Boom Comedy Showcase",
              "event_time": "MAY 20, 2026 8PM",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "SF’s longest-running monthly comedy showcase every 3rd Wednesday. Rising comics, surprise guests, unforgettable laughs in a legendary room. Join us for the always anticipated monthly and highly regarded Value Culture BOOM BOOM Comedy Showcase at the famous Boom Boom Room on Fillmore Street since 202...",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/infamous-boom-boom-comedy-showcase-3rd-wednesdays/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b2374d8fa01f",
              "venue_id": "venue_herbst_theater",
              "title": "SPRING CONCERT",
              "event_time": "May 20 2026 7:00PM",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-05-20T19:00:00",
              "event_date": "2026-05-20",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco Girls Chorus",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/119752",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_herbst_theater|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ad382c458d5",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-20T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-20",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7450425508b4",
              "venue_id": "venue_boom_boom_room",
              "title": "Comedy Showcase",
              "event_time": "Wed, May 20 | Doors: 6:30 pm // Show: 8 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-20T18:30:00",
              "event_date": "2026-05-20",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Enjoy a night of live stand-up comedy featuring a variety of performers with no admission fee at the Boom Boom Room.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/boom-boom-s-comedy-showcase-no-cover-charge/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab3c605281aa",
              "venue_id": "venue_ashkenaz",
              "title": "Dead Night x Bluegrass Barn Jam",
              "event_time": "05/20/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Day 2: Next-Gen Dead Jam",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/182712",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19bfef252dd8",
              "venue_id": "venue_the_knockout",
              "title": "The Greater Group of Human Consciousness",
              "event_time": "5/20/2026 8:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Experience an immersive evening of psychedelic sounds and rhythmic movement designed to elevate the dance floor.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/P5a5bbf56eff?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19fcd016e809",
              "venue_id": "venue_roxy",
              "title": "Roxie Mixtape #9: Side A",
              "event_time": "Wednesday, May 20, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "The second part of the theater's recurring series highlighting innovative short-form visual works and independent creators.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/roxie-mixtape-9-side-a/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4638ff59b559",
              "venue_id": "venue_4_star_theater",
              "title": "The Lair of the White Worm",
              "event_time": "May 20, 2026 7:30 PM – 9:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Experience Ken Russell's cult horror classic in its original analog glory with this special VHS screening. The event is presented by The Basement for fans of retro cinema formats.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/basement-presents-lair-of-white-worm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fb9e7301c624",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-20",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-20",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e75051e1f2bd",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-20",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-20",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8334cee8176",
              "venue_id": "venue_el_rio",
              "title": "Queer AF Bingo",
              "event_time": "2026-05-20T18:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "El Rio proudly presents Queer AF Bingo! Join us for bingo, drag, drinks, and prizes hosted by the gorgeous Lola Lewd, featuring a special wet & wild drink special by Thomas Henry.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://bay.lgbt/event/queer-af-bingo-every-third-wednesday-free-el-rio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6b488104d0f4",
              "venue_id": "venue_el_rio",
              "title": "Chiara DiGrazia & Los Jefes",
              "event_time": "2026-05-20T20:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "An unforgettable night of live music featuring folk-pop singer-songwriter Chiara DiGrazia and the explosive Timba and Salsa sounds of Los Jefes.",
              "event_types": [],
              "price_info": "$10 COVER",
              "url": "https://thegayagenda.fyi/event/chiara-digrazia-and-los-jefes-live-at-el-rio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_05145da8cac7",
              "venue_id": "venue_local_edition",
              "title": "The Editorials",
              "event_time": "May 20, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Various young Bay Area musicians come together for live Jazz at Local Edition!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/pg9nsljl7g5z5tm-b2ct6-tf7a2-82t4s",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92a696365569",
              "venue_id": "venue_orpheum_theater",
              "title": "HELL'S KITCHEN - THE MUSICAL",
              "event_time": "May 20, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This musical features the music of Alicia Keys and tells a coming-of-age story set in the heart of New York City.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023314",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bcec12a9623d",
              "venue_id": "venue_cat_club",
              "title": "PLAY-X-LAND",
              "event_time": "Wed May 20, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-05-20T21:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Come out and play every\nWednesday Night!",
              "event_types": [],
              "price_info": "Come out and play every\nWednesday Night!",
              "url": "https://www.sfcatclub.com/calendar/gbklnjjbmp82ds9-p56t3-axemk-mxnab-sansl-3g77b-snctn-6r83z-a9yad-hfay2-say9w-ddd7b-9lb53-43kgz-4yjhw-al4kp-dwa9a-6bbr3-p3k2e",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-05-18T14:28:23.170830Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4e3115e027cb",
              "venue_id": "venue_plough_and_stars",
              "title": "Set Dancing",
              "event_time": "2026-05-20T21:00:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-20T21:00:00",
              "event_date": "2026-05-20",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "Featuring Will Wheeler & Mahati",
              "event_types": [
                "live_music",
                "folk",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ff1f2606082",
              "venue_id": "venue_club_fox",
              "title": "Terrie Odabi",
              "event_time": "Wednesday May 20th",
              "venue_name": "Club Fox",
              "event_start": "2026-05-20",
              "event_date": "2026-05-20",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Wednesday May 20thClub Fox Blues WednesdaysTERRIE ODABIDoors 6:30PM / Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/club-fox-blues-jam-terrie-odabi-tickets-1984162850498?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_037be7e0dc0f",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-05-20T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-20T18:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e553005b91af",
              "venue_id": "venue_the_fireside",
              "title": "Singer/Songwriter Open Mic",
              "event_time": "2026-05-20T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Singer/Songwriter open mic",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fadfed3a8958",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Kurt Vile Listening Party",
              "event_time": "May 20, 2026 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-05-20T17:00:00",
              "event_date": "2026-05-20",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Join us at Amoeba Berkeley on Wednesday, May 20th for a pre-release listening party in honor of Kurt Vile's new album, Philadelphia's Been Good To Me, at 5pm.\n\t\n\tHear the album over a week before release date, get a free poster (while supplies last), and enter to win our raffle for a signed lithograph!\n\t\n\tPhiladelphia's Been Good To Me releases on 5/29 via Verve on CD, Vinyl, and Record Store-Exclusive Blue Vinyl.\n\t\n\t- This event is free/all-ages.\n\t- Posters are available only while supplies last and are one per person.\n\t- The prize will be raffled off to one lucky winner after we play the album.\n\t- Raffle tickets are free and there is no purchase necessary. One ticket per person and you must be present to win.\n\t- This is a fan event only. Kurt Vile will not be in attendance.",
              "event_types": [
                "community",
                "film"
              ],
              "price_info": "free",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3131/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-05-18T15:53:38.118113Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e9ad70925db",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-20T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-20T19:45:00",
              "event_date": "2026-05-20",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/wed-may-20-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_99c6c6fadca8",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "DAVE LANDAU",
              "event_time": "Wed May 20, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-20T19:30:00",
              "event_date": "2026-05-20",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Veteran comedian and radio personality Dave Landau performs a set filled with sharp wit and dark observational humor.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/dave-landau-san-francisco-california-05-20-2026/event/1C0064432114C05F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dbcf1ab9b8fb",
              "venue_id": "venue_san_jose_improv",
              "title": "SUPEReeeGO: Foo’s Got Talent Live",
              "event_time": "May 20 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-05-20T20:00:00",
              "event_date": "2026-05-20",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/event/supereeego%2ffoo%e2%80%99s+got+talent+live+featuring+eric+ochoa/14118764/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-05-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-21": {
          "date": "2026-05-21",
          "updated_at": "2026-05-18T16:13:34.596272Z",
          "events": [
            {
              "event_id": "evt_e6674336c31c",
              "venue_id": "venue_the_fillmore",
              "title": "Kevin Morby, Liam Kazar",
              "event_time": "Thu May 21, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The acclaimed singer-songwriter performs his poetic indie folk and rock songs known for their deep storytelling and evocative arrangements.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/kevin-morby-san-francisco-california-05-21-2026/event/1C00644391DE8386",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-06T07:30:02.358221Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-13T02:31:44.810465Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-15T16:50:53.908757Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b1c2c82a848",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Strange Ones",
              "event_time": "Thursday May 21 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; garage lo-fi punk; skate punk and pop punk; punk, grunge, and garage rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260521.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a3f48b03034",
              "venue_id": "venue_act_rembe",
              "title": "Hamnet",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "ACT REMBE",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Opening night of the Royal Shakespeare Company's stage adaptation of Maggie O'Farrell's best-selling novel about the son of William Shakespeare.",
              "event_types": [
                "theater"
              ],
              "price_info": "From $59",
              "url": "https://www.act-sf.org/whats-on/2025-26-season/hamnet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_act_rembe",
                  "source_name": "ACT REMBE",
                  "fetched_at": "2026-04-11T11:20:52.515181Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_act_rembe|2026-05-21",
              "run_id": "run_209be028b4b1",
              "run_label": "Hamnet, Apr 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_08113cd1b9f0",
              "venue_id": "venue_the_ritz",
              "title": "THE ZEROS + JOHNNY",
              "event_time": "2026-05-21T19:00:50-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-21T19:00:50",
              "event_date": "2026-05-21",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "THE ZEROS\nJOHNNY\nTHE BACKSTABBERS\n\n \n\nTHURSDAY MAY 21, 2026\nDoors: 7PM // All Ages // $20 Advance –  $25 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 Advance –  $25 Day-of-Show",
              "url": "https://www.ticketweb.com/event/the-zeros-johnny-the-ritz-tickets/14772673",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eb45f9d648ab",
              "venue_id": "venue_the_marsh_sf",
              "title": "Music Mission SF Spring Concert",
              "event_time": "2026-05-21T17:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-21T17:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "A monthly series presented by Jazz at the Ballroom featuring talented local student musicians performing swing and jazz standards.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://themarsh.org/music-mission-sf-spring-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_jazz_at_the_ballroom",
                  "source_name": "Jazz at the Ballroom",
                  "fetched_at": "2026-04-20T12:35:40.482302Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-04-20T12:56:08.105706Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2205a088e0d2",
              "venue_id": "venue_ivy_room",
              "title": "Chad Price & Scott Reynolds",
              "event_time": "Thursday May 21 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Seasoned musicians Chad Price and Scott Reynolds join forces for a collaborative performance featuring their respective songwriting talents.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/178613",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0b5ee643e0d",
              "venue_id": "venue_center_for_new_music",
              "title": "Messages – solo electronic performance",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "Center for New Music",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "Composer/performer Neil Rolnick plays pieces from his upcoming album \"Messages\" which will be released on the Neuma label later this year. The highly personal pieces include a recounting of his loss of hearing in his left ear, and a tribute to his late wife, built from her recovered phone messages. When his wife passed, Neil promised to bring her memory with him wherever he went. With performances of \"Messages\" she has now been with him in travels across the US and in China and Maylasia. But this music is more uplifting than sad, with Rolnick's message being that persistence and a positive approach to life's inevitable challenges sees us through tough times. More...",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$15 General Admission, $10 Members & Students",
              "url": "https://centerfornewmusic.com/event/messages-solo-electronic-performance/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-04-25T22:54:20.713150Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-28T10:11:17.481216Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b9b02f29f962",
              "venue_id": "venue_the_chapel",
              "title": "An Evening with Lol Tolhurst",
              "event_time": "Thu May 21 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Chapel, S.F. Lol Tolhurst (music & conversation), R.Image a/a $34.38 ($45.77 seated) 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$26.00-$35.00",
              "url": "https://wl.seetickets.us/event/an-evening-of-music-and-conversation-with-lol-tolhurst/688209?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-25T23:00:07.126857Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_378166705306",
              "venue_id": "venue_cafe_du_nord",
              "title": "Izzy Escobar",
              "event_time": "May 21 7pm/8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Multi-instrumentalist and singer-songwriter Izzy Escobar performs a set of her contemporary pop and soul-influenced music.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$28.30",
              "url": "http://www.foopee.com/by-band.1.html#Izzy_Escobar",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_74e8f2e3f859",
              "venue_id": "venue_rickshaw_stop",
              "title": "Avalon Emerson & The Charm",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Popscene & Rickshaw Stop Co-Presents: AVALON EMERSON & THE CHARM Thursday, 5/21 8pm doors, all ages welcome $20.00 advance, $25.00 day of show Avalon Emerson 2026 Bio Now one of dance music’s most respected DJs, Avalon Emerson first made a name for herself in the storied warehouse scene of her birth...",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$20/$25",
              "url": "http://www.foopee.com/by-club.3.html#Rickshaw_Stop__S_F_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-26T11:58:55.749900Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-02T10:10:06.720932Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cbc74e934567",
              "venue_id": "venue_swedish_american",
              "title": "Hannah Cohen, Khatumu",
              "event_time": "Thu May 21 7pm/8pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Singer-songwriter Hannah Cohen performs her lush, melancholic indie-pop songs characterized by her evocative and haunting vocals.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Price not listed on event page",
              "url": "http://www.foopee.com/by-club.3.html#Swedish_American_Hall__S_F_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-01T06:10:59.302561Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55796f1cc7af",
              "venue_id": "venue_sf_eagle",
              "title": "37 Houses (album release)",
              "event_time": "May 21, 2026 9pm",
              "venue_name": "SF Eagle",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "398 12th St, San Francisco, CA 94103",
              "description": "The musical project 37 Houses hosts a special live event at the theater to celebrate the release of their latest album.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.0.html#37_Houses",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-06T12:15:18.531328Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_eagle|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_025314723f6c",
              "venue_id": "venue_the_knockout",
              "title": "After Dark Industrial Dance Party",
              "event_time": "5/21/2026 9:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Dive into the shadows with a late-night dance event focused on industrial, EBM, and dark electronic beats. This party caters to fans of heavier, atmospheric club music.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5.67",
              "url": "https://link.dice.fm/D074f05a7c47?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-07T14:35:05.236140Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-07T17:12:50.228845Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_52158abc11f5",
              "venue_id": "venue_underground_sf",
              "title": "Luna Assassin & Friends",
              "event_time": "2026-05-21T22:00:00",
              "venue_name": "Underground SF",
              "event_start": "2026-05-21T22:00:00",
              "event_date": "2026-05-21",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "Underground SF's regularly scheduled 3rd Thursday Drum & Bass and Jungle night. Featuring a lineup of local selectors including Luna Assassin, Wompsta, Rivs, Kinetik, and Shadow Spirit.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Check website for details",
              "url": "https://www.shazam.com/concert/16911333-ufo-at-underground-sf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-05-07T16:51:39.196568Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-09T12:30:53.673583Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_underground_sf|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57fb82789fd8",
              "venue_id": "venue_black_cat",
              "title": "Veritus Miller and the Truth Troupe",
              "event_time": "05/21/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nVeritus Miller is an emerging pianist, composer, and bandleader from Los Angeles, California. His music encapsulates the key elements of traditional jazz standards, fused with the fresh sounds of the West Coast contemporary jazz idiom. He’s cut from the same cloth as artists like Terrace Martin, Brandon Coleman, Ryan Porter, Thundercat, and is a frequent collaborator with his older cousin Kamasi Washington. \n\nAt just 21 years old, he's performed on NPR's Tiny Desk, graduated from the Berklee College of Music, and brought his group to jazz festivals across California. He’s a charismatic old soul who captivates audiences with ear-candy melodies and heart-forward compositions like his debut single “Days With You Are Beautiful.” It’s a piece described as “a frenetic yet tightly paced epic” (Hodges, KCRW). \n\nMiller's music is a melting pot of black music, which is a direct result of his upbringing in a creative family. His pedagogy includes legendary choreographer Lula Washington, writer, journalist, and entrepreneur Erwin Washington, his mother Tamica Washington-Miller, another great choreographer, dancer, and actress, and his father, the great drummer, educator, and composer Marcus L. Miller. Other artists he’s worked with include Ryan Porter, Jaz Karis, Lil John Roberts, Ami Taf Ra, and he's even supported Stevie Wonder with the UCLA Herb Alpert band (2024). \n\nVeritus Miller is considered one of the leading voices of LA’s new jazz movement; on a mission to spread truth, love, positivity, and authenticity through his music.\n\nBand Lineup:\nVeritus Miller, piano\nMicah Heard, drums \nIsaac Green, bass \nRonnie Heard, tenor saxophone\nChris Powe, alto saxophone\nFt. Special Guests:\nVeotis Latchison, vocals\nDaniel Harris III, trumpet\nChili Corder, guitar",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/10904/?date=2026-05-21",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-08T10:55:30.263873Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-09T11:53:46.508128Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bca6ea5dad3f",
              "venue_id": "venue_yerba_buena_center",
              "title": "Larry & Joe",
              "event_time": "2026-05-21T12:30:00",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-21T12:30:00",
              "event_date": "2026-05-21",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The pandemic spawned many unlikely musical connections, but the story of Larry & Joe continues to resonate long after lockdown lifted. Larry Bellorín hails from Monagas, Venezuela and is a legend of música llanera, the celebratory harp-driven national music and dance of the South American nation....",
              "event_types": [
                "live_music",
                "folk",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://ybgfestival.org/event/larry-joe/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-11T12:35:57.893274Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-14T11:28:43.457945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6cae95fe45d7",
              "venue_id": "venue_el_rio",
              "title": "Orkestar Seyir",
              "event_time": "May 21, 2026 8pm",
              "venue_name": "El Rio",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "Duygu & Friends joins Orkestar Seyir for a dance party featuring belly dancers Nicole Maria and Maleah Rose, plus special guest Joey Friedman on alto saxophone. Seyir plays Balkan-rock fusion inspired by Tallava.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$20",
              "url": "http://www.foopee.com/by-band.2.html#Orkestar_Seyir",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-11T13:37:07.306198Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-11T13:41:08.553496Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-17T12:11:30.934005Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7df0ee772615",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Ragamenco",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "A musical conversation where Indian classical nuance meets the fire of flamenco and jazz, shaped in real time through improvisation and global influences.",
              "event_types": [
                "live_music",
                "jazz",
                "indian_classical",
                "latin_world"
              ],
              "price_info": "Check website for tickets",
              "url": "https://wyldflowrarts.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3ca57bf18231",
              "venue_id": "venue_castro_theater",
              "title": "PROJECT HAIL MARY",
              "event_time": "May 21, 2026 7:30pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "in 70 MM",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/project-hail-mary-260521",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-13T11:57:53.414017Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-14T11:47:43.651584Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4865c7d1127a",
              "venue_id": "venue_black_cat",
              "title": "Veritus Miller And The Truth Troupe",
              "event_time": "May 21 7pm and 9:15pm",
              "venue_name": "Black Cat",
              "event_start": "2026-05-21T21:15:00",
              "event_date": "2026-05-21",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "$30 7pm and 9:15pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$30",
              "url": "http://www.foopee.com/by-band.3.html#Veritus_Miller_And_The_Truth_Troupe",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8704a2b0aa6a",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-21",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-21",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a81ad1c29d0d",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Thu May 21 2026",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $25.00",
              "url": "https://www.eventbrite.com/cc/comedy-oakland-at-elbo-room-4794459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_eb9d488515de",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Preview)",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance is a preview before the official opening night.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f5dad4049de4",
              "venue_id": "venue_the_bistro",
              "title": "Phil Johnson and Roadside Attraction",
              "event_time": "2026-05-21T19:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Comedy and music tour performance.",
              "event_types": [
                "live_music",
                "comedy"
              ],
              "price_info": "Free / No Cover",
              "url": "https://www.bandsintown.com/e/103254321-phil-johnson-and-roadside-attraction-at-the-bistro",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_68bc058df6ea",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Thursday Night Live Music",
              "event_time": "2026-05-21T18:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Mid-week live music performances that transform dinner into a social event. Featuring local musicians playing blues and classic rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_13a2773d1d81",
              "venue_id": "venue_vino_locale",
              "title": "Acoustic Music Series",
              "event_time": "2026-05-21T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-21T18:30:00",
              "event_date": "2026-05-21",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "Live acoustic music performance featuring local singer-songwriters and instrumentalists in the back garden.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a141011fc096",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-05-21T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-05-21T18:30:00",
              "event_date": "2026-05-21",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac. Experience classic jazz and soul in an intimate lounge atmosphere.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dc01476fc91f",
              "venue_id": "venue_cal_academy_of_science",
              "title": "Member Preview: Vivid: Immerse Your Senses",
              "event_time": "2026-05-21T09:30:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-05-21T09:30:00",
              "event_date": "2026-05-21",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "An exclusive preview for members to experience the new Vivid exhibit, featuring HD video projections and soundscapes.",
              "event_types": [],
              "price_info": "Free for members",
              "url": "https://www.calacademy.org/events/special-events/member-preview-vivid-immerse-your-senses",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_42d4fb02d506",
              "venue_id": "venue_cal_academy_of_science",
              "title": "NightLife: Senses",
              "event_time": "2026-05-21T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Experience the opening of the VIVID exhibit during this after-hours escape of sight, sound, and sensation. 21+ only.",
              "event_types": [],
              "price_info": "$25 - $35",
              "url": "https://www.calacademy.org/nightlife/senses",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3fc06c0fd76e",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-05-21T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4f8560975396",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7c0749f67f98",
              "venue_id": "venue_alhambra_public_house",
              "title": "Trivia Night",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Weekly Trivia Night! Test your knowledge and compete for prizes.",
              "event_types": [],
              "price_info": "Free",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_14a77f785521",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Thursty Thursday with Liam McCloskey & Friends",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Live music performance featuring Liam McCloskey and special guests on the third Thursday of the month.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ece22f9c3cb2",
              "venue_id": "venue_the_saloon",
              "title": "Saxy Susan",
              "event_time": "2026-05-21",
              "venue_name": "The Saloon",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Live music performance featuring Saxy Susan.",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover",
              "url": "https://localgroove.live/events/saxy-susan-at-the-saloon-may-21-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf45f1c8f5a5",
              "venue_id": "venue_cry_baby",
              "title": "Ten Dolla Holla",
              "event_time": "2026-05-21T19:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Live Bay Area hip-hop night presented by Crybaby and OG Dayv with Big Cali and special guests.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$10 tickets at the door.",
              "url": "https://crybaby.live/tm-event/ten-dolla-holla-crybaby-x-og-dayv-live-rap-party-w-big-cali-og-dayv-special-guests-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7c6c9032aa99",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Thursday night Argentine Tango milonga. Includes a class from 7:00 PM to 8:00 PM followed by social dancing.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/milonga-malevaje/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6c982580ce1b",
              "venue_id": "venue_first_church_berkeley",
              "title": "Midday Organ Meditation",
              "event_time": "2026-05-21T12:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-05-21T12:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Weekly midday meditation featuring organist William Ludtke. Includes 30 minutes of silent meditation followed by 30 minutes of organ music.",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.firstchurchberkeley.org/resonance/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_de642a270de8",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Choral Evensong",
              "event_time": "2026-05-21T17:30:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-05-21T17:30:00",
              "event_date": "2026-05-21",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A traditional mid-week service focused on singing psalms, canticles, and prayers, featuring the Grace Cathedral Choir of Men and Boys.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://gracecathedral.org/events/choral-evensong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2d8018a2d667",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-21T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_325ca4692c4d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "MAY 21, 2026 7:30PM",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up! Take a 90-minute joy ride through our City by the Bay’s busts and booms in a breathtaking aerial extravaganza perfect for your next night out. Powered by mind-blowing ci...",
              "event_types": [],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-15T21:11:22.983431Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-21",
              "run_id": "run_f566cc1f9d69",
              "run_label": "Dear San Francisco, May 15 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c46339557d37",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Clement St Comedy",
              "event_time": "2026-05-21T20:30:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-21T20:30:00",
              "event_date": "2026-05-21",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "A weekly comedy series featuring a rotating lineup of talented local and touring comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free with RSVP",
              "url": "https://www.ticketweb.com/event/clement-st-comedy-neck-of-the-woods-tickets/13426331",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d9e00d95b6e0",
              "venue_id": "venue_caravan_lounge",
              "title": "Shrine Presents: World Goth Day",
              "event_time": "05/21/2026 9pm-1am",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "A special celebration of World Goth Day featuring themed music and DJ sets.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://localgroove.live/events/shrine-presents-world-goth-day-at-caravan-lounge-may-21-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-16T00:28:14.570954Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aec9d264c0d6",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-21T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-21T17:00:00",
              "event_date": "2026-05-21",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Thursday evening happy hour with community and drinks.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_eefbd9a71664",
              "venue_id": "venue_white_horse",
              "title": "Queer-aoke",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Thursday night karaoke session for the queer community and allies.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-aoke-every-tue-thu-at-white-horse-bar-8pm-tickets-880562304147",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1cb8afbef342",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Thursday Bible Study",
              "event_time": "2026-05-21T10:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-05-21T10:00:00",
              "event_date": "2026-05-21",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Weekly Zoom Bible study looking at the readings for the following Sunday’s worship.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://flcpa.org/bible-study/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-16T01:02:23.851080Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5726a7e62f20",
              "venue_id": "venue_f8",
              "title": "Tripzy Leary & Friends",
              "event_time": "05/21/2026 9pm-2am",
              "venue_name": "F8",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Causmic Creative brings Tripzy Leary to F8 for a night of electronic music.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12.51 | 21+",
              "url": "https://www.eventbrite.com/e/cc-presents-tripzy-leary-flesh-interface-amalgam-johnnysmall-tickets-1988364530837",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_708b0a8fc9bb",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Irene Tu",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Irene Tu, featuring Gary Michael Anderson and Walker Glenn.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/122887",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-21",
              "run_id": "run_a0fc9026894c",
              "run_label": "Irene Tu, May 21 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_65e6fae40f6d",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-21T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-21T16:00:00",
              "event_date": "2026-05-21",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_653009157580",
              "venue_id": "venue_bird_and_beckett",
              "title": "Walker Talks",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Walker Brents III investigations into topics literary, mythological and otherwise. Subjects range from William Blake to Bob Dylan, Shakespeare to the Shahnameh.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_099dc39f69e6",
              "venue_id": "venue_scopo_divino",
              "title": "Latin Jazz with Viajo de la Musica",
              "event_time": "2026-05-21T18:00:00",
              "venue_name": "Scopo Divino",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "A Latin Jazz celebration led by a saxophonist with talented East Bay musicians, mixing creativity, skill, and a dash of Bossa Nova.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "No cover",
              "url": "https://www.scopodivino.com/events/viajo-de-la-musica",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scopo_divino",
                  "source_name": "Scopo Divino",
                  "fetched_at": "2026-05-16T11:10:22.174562Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_scopo_divino|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b8cdf23a9e7f",
              "venue_id": "venue_peacock_lounge",
              "title": "Third Thursday Jazz Night",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "A recurring jazz music performance featuring local and touring jazz musicians in an intimate setting.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e77f8b8837ae",
              "venue_id": "venue_sfmoma",
              "title": "Larry Sultan: Water Over Thunder",
              "event_time": "2026-05-21T18:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Film screening and discussion",
              "event_types": [
                "film",
                "literary"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_779650db2930",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: Staying Alive",
              "event_time": "2026-05-21T18:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "What happens when algorithms govern our streets, jobs, and creative work? Join experiments and debates about staying safe—and human—in a digital world. Plus, learn hands-only CPR with the SFFD.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a5a56ab3584f",
              "venue_id": "venue_blush",
              "title": "Live Music at Blush!",
              "event_time": "2026-05-21",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Quality live music featuring Blues, Jazz, Gypsy Jazz, Americana and more.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_67fedec72a40",
              "venue_id": "venue_the_midway",
              "title": "Collect 200",
              "event_time": "2026-05-21",
              "venue_name": "The Midway",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "THE SF MINT ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/collect-200/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87b143c1bfea",
              "venue_id": "venue_kilowatt",
              "title": "Polkadot, Natasha Sandworms & Friends",
              "event_time": "2026-05-21T19:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2642dba3ca0d",
              "venue_id": "venue_kilowatt",
              "title": "Her DJ Club",
              "event_time": "2026-05-21T22:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-21T22:00:00",
              "event_date": "2026-05-21",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bae4c9a73bf8",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-21T19:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-21T19:45:00",
              "event_date": "2026-05-21",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25; marked sold out on ticket page",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_20fecd84112b",
              "venue_id": "venue_rootstock_arts",
              "title": "Ragamenco",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "This performance explores the vibrant intersection of Indian classical Raga and Spanish Flamenco traditions. Audiences can expect a rhythmic and melodic fusion that bridges two rich cultural histories.",
              "event_types": [
                "live_music",
                "latin_world",
                "indian_classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1e1c261cff9",
              "venue_id": "venue_tommy_ts",
              "title": "THE BIG DEAL",
              "event_time": "2026-05-21",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_480b014e37b4",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-21",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2e4c98ad2566",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-21T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-21T14:00:00",
              "event_date": "2026-05-21",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-21",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8bc05dd86b96",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-21T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Live Hammond organ music at the Royal Cuckoo with Chris Siebert and guest musicians. Expect a mix of jazz and R&B classics in a cozy, retro atmosphere.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7b4612b3f406",
              "venue_id": "venue_the_sound_room",
              "title": "Rebecca Kleinmann and Friends",
              "event_time": "Thursday, May 21, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Choro, or chorinho (\"little cry\"), isa vibrant instrumental music genre that originated in 19th-century Rio de Janeiro, Brazil. It is characterized by fast tempos, virtuosity, intricate syncopation, and improvisation, often blending European salon dances (polka, waltz) with Afro-Brazilian rhythms. Considered Brazil's first popular urban music, it typically features flutes, guitars, and cavaquinho.\n\nRebecca Kleinmann, internationally acclaimed flutist and singer returns to the Bay Area to lead a night of Brazilian music with master musicians Zack Pitt-Smith, winds; Carlos Oliveira, guitar; Ami Molinelli Hart, percussion; and Brian Moran, cavaquinho and guitar.\n\nBased in California until 2022, Rebecca Kleinmann has led her Quintet in various formations since 2001, touring internationally with this and other projects to Brazil, Australia, Europe, Africa and within the US. Pianist Benny Green made special note of her unique pursuit of artistic growth, explaining that “Rebecca is masterful and selfless in her ability and inclination of melding her sound with her environment.” In the words of Latin Grammy Nominated pianist and composer, Jovino Santos Neto, Rebecca plays flute with the passion of a flamenco dancer. Upon completing a June 2023 recording session in NYC, Grammy winning pianist, Taylor Eigsti said Rebecca \"brought the music to life.\"\n\nShe began synthesizing her diverse musical interests as a flutist and vocalist at Indiana University, where she began her studies as a Classical Flute Performance major and historically graduated as the first Jazz Flute major in the history of the school’s Jazz Studies program, thanks to the support of her beloved mentor, the late David Baker. In addition, she has studied vocal performance with Fabiana Cozza and Jennifer Barnes. Her varied experiences as a vocalist include performances with the Taylor Memorial Gospel Choir and teaching vocal performance to thousands of elementary school children as an Orff-certified music educator in public schools. Both in teaching and in performances with the RKQ, Rebecca often utilizes her fluencies in Portuguese and Spanish.\n\nIn early 2022 Rebecca moved from Oakland to Durham, North Carolina and immediately began planting seeds to continue her musical career on the East Coast. She has become a professor at UNC Chapel Hill, directing the university's \"Charanga Carolina\" ensemble, recorded and performed with Grammy winning pianist Taylor Eigsti, and received a Chamber Music America grant to fund her next album. Come enjoy this amazing ensemble full of shining stars in the intimate setting of the Sound Room.\n\nTickets at Rebecca Kleinmann and Friends : an Evening of Brazilian Choro",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/rebecca-kleinmann-and-friends-an-evening-of-brazilian-choro",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_95cd4ff12d7d",
              "venue_id": "venue_madrone_art_bar",
              "title": "MACY BLACKMAN",
              "event_time": "May 21 @ 6:00 pm - 8:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "6-8pm Macy Blackman on the Piano No Cover New Orleans R&B Hearing Macy Blackman is like stepping into New Orleans in 1955.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/macy-blackman-5/2026-05-21/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0dfc1c1fd745",
              "venue_id": "venue_madrone_art_bar",
              "title": "WeWorkHere",
              "event_time": "May 21 @ 9:00 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Local500 Presents: WeWorkHere You’ve seen them behind the bar but tonight, they are mixing more than just cocktails. Madrone’s very own bar staff Dave, Noah, Rene and other locals are DJing a combination of HOUSE, TECHNO, and CLUB music. No Cover 9:00pm.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/weworkhere-17-2026-04-16-2026-05-21/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c96dc8151472",
              "venue_id": "venue_rite_spot_cafe",
              "title": "Billy Ribak / Deep Space",
              "event_time": "May 21, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Early: Billy Ribak & Guest\nLate: Deep Space",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1af78ba3e855",
              "venue_id": "venue_shotgun_studios",
              "title": "The World of a Play: Continuity (Special Session)",
              "event_time": "2026-05-21T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-05-21T10:30:00",
              "event_date": "2026-05-21",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "A special session of the seminar series focusing on the production of 'Continuity', providing behind-the-curtain insights with industry professionals.",
              "event_types": [],
              "price_info": "See website for pricing",
              "url": "https://shotgunplayers.org/online/article/miriams-place",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0b765442a040",
              "venue_id": "venue_sfjazz_lab",
              "title": "RUDRESH MAHANTHAPPA HERO TRIO",
              "event_time": "May 21 2026 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/rudresh-mahanthappa-hero-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce8736c02181",
              "venue_id": "venue_sfjazz_miner",
              "title": "MAKAYA MCCRAVEN",
              "event_time": "May 21 2026 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "'In These Times' Revisited & Reworked w/ strings & special guests",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Member Discount",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/makaya-mccraven/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_101731205e2e",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Speaking Axolotl: Dora Prieto",
              "event_time": "Thursday, May 21, 2026 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "TONIGHT come hear decolonized verses, spanglish poesia, Latine spokenword, Pocho poemas and neighborhood chisme at Speaking Axolotl, the Bay Area’s long running monthly Latine Reading series. 10 slot open mic goes up a las 6:50PM. Open mic poets have 5 minutes to read.\n\n!This month we welcome our very special feature Dora Prieto!\n\nMexican-Canadian poet and translator Dora Prieto writes from Ohlone land (Oakland, CA), where she is a 2025–27 Wallace Stegner Fellow in\nPoetry at Stanford. Her co-translation of JAWS [tiburón] will be released by Cardboard House Press on May 21! Her debut poetry collection Blood Tejido is forthcoming with House of Anansi (April 2027), and she is a member of El Mashup Collective, where she collaborates on interdisciplinary artistic experiments. She is an auntie, a dreamer, a thinker, and a cold ocean swimmer—despite a close encounter with a shark as a kid. ♡☆ @primadora_\n\nNOTE; Speaking Axolotl is a BIPOC readoing series which means black and brown poets only on the mic. White folks are more than welcome to listen and atend but their presence is not required.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/speaking-axolotl-presnts-elvira-prieto",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4e8a8dec1d40",
              "venue_id": "venue_yoshis",
              "title": "Miko Marks Residency",
              "event_time": "THU 5.21 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BLENDING GOSPEL, COUNTRY SOUL, BLUES, AND ROCK N ROLL",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "rock"
              ],
              "price_info": "$25 - $49",
              "url": "https://yoshis.com/events/buy-tickets/miko-marks-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8eda6db6d5f2",
              "venue_id": "venue_dawn_club",
              "title": "CARLOS XAVIER",
              "event_time": "Thursday, May 21, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "A San Francisco born vocalist, with parents from Nicaragua, this singer/songwriter draws influence from the music of his upbringing; R&B, Hip-hop, Salsa, Baladas and combines them with the affluent Latin rhythms. Since the release of his debut salsa album \"Vive Todo Ahora\", Carlos' songs have been placed in the top Salsa/Tropical Spotify playlists. It generated buzz all over the world making him a preferred voice in the salsa genre. His roots in the Latin power vocal style produce warm, beautiful tones as he exhales his melodies. The singer songwriter engages his audience with his pure, passionate vocals and Carlos is able to rise up and shine. His sound is very identifiable to the Latin American community as it draws from Latin Balada roots and meshes them with R&B and Pop, creating original sounding salsa songs. His melodies are expressed through his passionate lyrics and his desire to reach people’s souls. El cantante y compositor Nicaragüense Carlos Xavier nos ha mostrado su más reciente disco “Vive Todo Ahora” que fue todo un éxito. Hoy se encuentra en su segunda producción con el All-Star team de, Efrain \"Junito\" Davila, Guianko Gomez y Juan Mayito Aracil. En esta segunda producción, Carlos y su equipo se juntan con el gran percusionista Marc Quiñones para darles el sabor que va identificar su sonido. Carlos Xavier vuelve de nuevo con sus canciones originales románticas, pero esta vez con mucha más experiencia. Carlos es muy versátil pero dice que la salsa es donde se siente en casa. Se siente muy orgulloso de poder seguir  esta tradición y disfruta sacar temas para el mundo salsero.\n\n\n  \n#block-d54b7c73bb03f0b73483 {\n    \n    \n    \n\n\n\n  }\n\n  #block-d54b7c73bb03f0b73483 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-d54b7c73bb03f0b73483 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-d54b7c73bb03f0b73483 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-d54b7c73bb03f0b73483 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-d54b7c73bb03f0b73483 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-d54b7c73bb03f0b73483 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk",
                "hiphop_rap",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/carlos-xavier-smjxb-aa74x-2w9cm-hkbal-8r8rs-jc5x4-6tztk-k2cc5-t2h6n-lfl8z-a3pfl-rj3fr-wrf5c",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96e5828b82c0",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Attakid",
              "event_time": "2026-05-21T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "A staple of the Bay Area scene since 2013, Atta Kid is an all-star crew that reaches into the swampy lilt of New Orleans and the razor-sharp precision of the East Bay at the same time. Led by Daniel Casares (sax and vocals)and Max Cowan (B-3, keyboards and vocals), Atta Kid will take you on a round-trip from Oakland to the bayou in every set. This February, Atta Kid showcases the breadth of their repertoire. Listen for a reimagined Lee Morgan tune or a Stevie Wonder ballad turned upbeat funk. Come for their original compositions, where they showcase a sound that has become truly their own and catch selections from their recent appearances at Keys Jazz Bistro where they paid tribute to Stuff and Maceo Parker. With deep roots in Bay Area music and an imagination of infinite locale, Atta Kid is a band not to miss.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/attakid-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88609d9a6537",
              "venue_id": "venue_odc_theater",
              "title": "String Quartet No. ATE",
              "event_time": "5/21/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002x4Uf2AI",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef3bf40fe6c4",
              "venue_id": "venue_poor_house_bistro",
              "title": "Jefe Meduri Famiglia Band",
              "event_time": "Thu, May 21, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "Join us as Jefe Meduri PHB Famiglia Band plays while we enjoy some amazing Italian entrees.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5414",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f50cc17a467b",
              "venue_id": "venue_brick_and_mortar",
              "title": "DEEPER SLEEPER",
              "event_time": "Thu 5.21 Show: 8:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "BRICK & MORTAR MUSIC HALL + POPSCENE PRESENTS",
              "event_types": [
                "live_music"
              ],
              "price_info": "$27.58",
              "url": "https://www.brickandmortarmusic.com/tm-event/deeper-sleeper/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c2dfb524ef5",
              "venue_id": "venue_piedmont_center",
              "title": "By Means of Tools: Metalsmithing & Machines",
              "event_time": "2026-05-21T18:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Lecture by David Cole, GIA Alumni Collective, Gemological Institute of America",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://eventbrite.com/e/1988352672368",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b5609ae59d0",
              "venue_id": "venue_act_theater",
              "title": "YC CABARET SPRING 2026",
              "event_time": "MAY 21–31, 2026",
              "venue_name": "ACT Theater",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Young performers take the stage for a lively evening of musical numbers and theatrical acts in this seasonal conservatory showcase.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/conservatory-shows/yc-cabaret-spring-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f6bc737ef080",
              "venue_id": "venue_herbst_theater",
              "title": "RESIDENCY FILM FESTIVAL & AWARDS CEREMONY",
              "event_time": "May 21 2026 10:00AM",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-05-21T10:00:00",
              "event_date": "2026-05-21",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "SF Opera Guild",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/119753",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_herbst_theater|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aacba11ba1a9",
              "venue_id": "venue_little_hill_lounge",
              "title": "Kevin Moan & The Howling",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Live punk and rock performance by Kevin Moan & The Howling as part of their 2026 tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.shazam.com/concert/kevin-moan-the-howling-el-cerrito-little-hill-lounge-16788224",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_22d9fc27e585",
              "venue_id": "venue_cornerstone",
              "title": "BØRNS",
              "event_time": "2026-05-21T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-21T03:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "BØRNS Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/b-rns-190014",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a83b191d206c",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-21T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-21",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2b1762cba2ce",
              "venue_id": "venue_thee_stork_club",
              "title": "T-Slur Thursday 5/21",
              "event_time": "2026-05-21T21:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Trans Bay Area and T-Slur present a DJ/Dance night with DJ Croptop, Jessikat, Mars Kumari, and DJ Boyprince.",
              "event_types": [],
              "price_info": "$10.00",
              "url": "https://wl.seetickets.us/event/t-squared-w-dj-croptop-jessikat-mars-kumari/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-18T13:25:21.339846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a4fb8417fc9d",
              "venue_id": "venue_boom_boom_room",
              "title": "William Johnston’s Extravagant Superband",
              "event_time": "2026-05-21T19:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "William Johnston leads a talented ensemble for a night of high-energy live music with free entry for all guests.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/william-johnstons-extravagant-superband-no-cover-8/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_48b7e4ce0fee",
              "venue_id": "venue_boom_boom_room",
              "title": "William Johnston’s Extravagant Superband",
              "event_time": "2026-05-21T21:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "William Johnston leads a talented ensemble for a night of high-energy live music with free entry for all guests.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/william-johnstons-extravagant-superband-no-cover-8/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8607bc0ecccb",
              "venue_id": "venue_ashkenaz",
              "title": "Third Thursday Tango",
              "event_time": "05/21/2026 7:00 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-21T19:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Charles Gorczynski & Scott O’Day Tango Duo plus Live DJ Set",
              "event_types": [
                "live_music",
                "latin_world",
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/178507",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2608d883f2c5",
              "venue_id": "venue_roxy",
              "title": "Moral",
              "event_time": "Thursday, May 21, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of the landmark 1982 Filipino film that examines the lives and struggles of four women in a patriarchal society.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/moral/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3f0b61993519",
              "venue_id": "venue_roxy",
              "title": "Erupcja",
              "event_time": "Thursday, May 21, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "An international film screening presented at the theater for local audiences.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/erupcja/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a95f782f8b33",
              "venue_id": "venue_roxy",
              "title": "Chungking Express",
              "event_time": "Thursday, May 21, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of Wong Kar-wai's stylish 1994 classic following two interconnected stories of love and longing in Hong Kong.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/chungking-express/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64596f06de88",
              "venue_id": "venue_4_star_theater",
              "title": "Thabyay: Creative Resistance in Myanmar",
              "event_time": "May 21, 2026 7:30 PM – 9:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This documentary showcases the power of artistic expression against political oppression in Myanmar. The screening includes a live question-and-answer session with the filmmaker.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/thabyay-creative-resistance",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_af880b54c550",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-21",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-21",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5cdb9a97f3dc",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-21",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-21",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d2ae2edd096c",
              "venue_id": "venue_local_edition",
              "title": "Radio Gatsby",
              "event_time": "May 21, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-21T20:00:00",
              "event_date": "2026-05-21",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Radio Gatsby is a modern-day dance band with a vintage flair! Its performances showcase a fusion of timeless Swing-era, New Orleans & 1920s Jazz, transitioning to the band’s captivating interpretations of Nostalgic R&B, Motown, Soul, and 70s/80s/90s Classics. With its ensemble of talented vocalists and jazz musicians, Radio Gatsby ignites the dance floor while providing a journey through decades of exhilarating music.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/4l3f5cecnl4sht3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dbaf62330562",
              "venue_id": "venue_orpheum_theater",
              "title": "HELL'S KITCHEN - THE MUSICAL",
              "event_time": "May 21, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This musical features the music of Alicia Keys and tells a coming-of-age story set in the heart of New York City.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023315",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5feba0d7bd7c",
              "venue_id": "venue_cat_club",
              "title": "1984",
              "event_time": "Thu May 21, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The Best of the 80s on 2 Dance Floors\n——\n9pm-2am | No Cover",
              "event_types": [],
              "price_info": "No Cover",
              "url": "https://www.sfcatclub.com/calendar/ymp4cekk5sb4y8x-chwt8-3rd9b-ztzra-abpta",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-05-18T14:28:23.170830Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c3911dad5b9e",
              "venue_id": "venue_plough_and_stars",
              "title": "Set Dancing",
              "event_time": "2026-05-21T21:00:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-21T21:00:00",
              "event_date": "2026-05-21",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2578c822b11f",
              "venue_id": "venue_club_fox",
              "title": "Alex Jordan & Friends",
              "event_time": "Thursday May 21st",
              "venue_name": "Club Fox",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Thursday May 21stALEX JORDAN & FRIENDSGRATEFUL THURSDAYSw/BELLA RAYNE, EMERSON ROSE, CHRISTIAN ECK, MURPH MURPHY & ANNA ELVADoors 6:30PM / Show 7:30PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/grateful-thursdays-walex-jordan-friends-tickets-1988879102936?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1327247cf0f3",
              "venue_id": "venue_elis_mile_high",
              "title": "Vioflesh & Silhouette",
              "event_time": "Thu, May 21, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Hot Goth GF hosts a night of dark alternative music featuring international and touring acts like Vioflesh and Silhouette.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/hot-goth-gf-presents-vioflesh-chile-silhouette-la-wysteria-vei",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_554f1df71441",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-21T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-21T18:00:00",
              "event_date": "2026-05-21",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b11fdbc1c34d",
              "venue_id": "venue_1015_folsom",
              "title": "MANILA KILLA + SPECIAL GUESTS",
              "event_time": "May 21, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "AAPI BLOCK PARTY AFTERS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/manila-killa-aapi-block-party-afters/691572?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_160a362529d9",
              "venue_id": "venue_the_fireside",
              "title": "Thursday Music & Lessons",
              "event_time": "2026-05-21",
              "venue_name": "The Fireside",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Ukulele lessons, live rock, jazz & blues guitar, DJ house music, or all vinyl soul Depending on the week",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "dj_party",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ad7abea682a",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-21T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-21T19:45:00",
              "event_date": "2026-05-21",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/thu-may-21-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_aae204e6cae0",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "SHANE TODD: HOLD ME BACK",
              "event_time": "Thu May 21, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-21T19:30:00",
              "event_date": "2026-05-21",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Northern Irish comedy star Shane Todd brings his signature storytelling and charm to San Francisco as part of his latest tour.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/shane-todd-hold-me-back-san-francisco-california-05-21-2026/event/1C006459B4F4FC5E",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_440acccd9b95",
              "venue_id": "venue_san_jose_improv",
              "title": "Chris D'Elia",
              "event_time": "May 21-22 3 shows",
              "venue_name": "San Jose Improv",
              "event_start": "2026-05-21",
              "event_date": "2026-05-21",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/chris+d%27elia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-05-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-22": {
          "date": "2026-05-22",
          "updated_at": "2026-05-18T16:12:43.864689Z",
          "events": [
            {
              "event_id": "evt_76c09ed8abdf",
              "venue_id": "venue_the_independent",
              "title": "ELECTRIC FEELS",
              "event_time": "5/22/2026 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Electric Feels is an immersive dance party featuring the best of indie rock and indie dance music. The night is dedicated to playing hits from artists like Phoenix, MGMT, and The Killers.",
              "event_types": [
                "live_music",
                "rock",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/electric-feels-4/",
              "tags": [],
              "sources": [
                {
                  "source_name": "The Independent",
                  "fetched_at": "2026-03-20T11:56:34.744330Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_the_independent"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-15T17:16:54.230157Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_444b291b60ee",
              "venue_id": "venue_audio",
              "title": "DETLEF B2B IGLESIAS",
              "event_time": "2026-05-22T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-05-22T21:30:00",
              "event_date": "2026-05-22",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Tech-house heavyweights Iglesias and Detlef join forces for a back-to-back set focused on driving grooves and underground beats.",
              "event_types": [
                "dj_party",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "https://audiosf.com/event/detlef-b2b-iglesias/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Audio",
                  "fetched_at": "2026-03-21T09:14:24.015374Z",
                  "strategy_used": "LLM",
                  "source_id": "v_audio"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                }
              ],
              "match_key": "venue_audio|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d2b3c3ec122",
              "venue_id": "venue_halcyon",
              "title": "R3wire",
              "event_time": "05/22/2026 10pm-4am",
              "venue_name": "Halcyon",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "British DJ R3WIRE brings his extensive club experience and high-energy mixing style to this electronic event. Known for his versatility, he delivers a set packed with heavy hitters and infectious club rhythms.",
              "event_types": [
                "electronic",
                "dj_party"
              ],
              "price_info": "$23 pre | 21+",
              "url": "https://ra.co/events/2379146",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-03-25T06:14:52.217745Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-03-27T05:01:55.587766Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_56eae3ef7397",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Foxtide / Hana Eid / Stanton",
              "event_time": "Friday May 22 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Bottom of the Hill, S.F. Foxtide, Hana Eid, Stanton a/a $20/$22 8pm/8:30pm",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk",
                "jazz"
              ],
              "price_info": "$20/$22",
              "url": "http://www.bottomofthehill.com/20260522.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7006940e3b42",
              "venue_id": "venue_august_hall",
              "title": "DJ Pauly D",
              "event_time": "05/22/2026 10:30pm-1:30am",
              "venue_name": "August Hall",
              "event_start": "2026-05-22T22:30:00",
              "event_date": "2026-05-22",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "As part of the BottleRock AfterDark series, DJ Pauly D brings his high-energy DJ set and party atmosphere to August Hall. This late-night event promises a night of club hits and dance music from the world-renowned television personality and DJ.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$50+ | 21+",
              "url": "https://www.ticketmaster.com/event/1C006457BFB814B1",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-13T07:17:24.395508Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2a5becb1f2c5",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Nettspend",
              "event_time": "May 22 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Fox Theater, Oakland Nettspend a/a $50.60+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$50.60+",
              "url": "http://www.foopee.com/by-band.2.html#Nettspend",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-15T17:16:54.230157Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ffd8112bf90",
              "venue_id": "venue_guild_theatre",
              "title": "Larkin Poe",
              "event_time": "May 22 2026 7pm/8pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "A dedicated techno event featuring a lineup of underground DJs including Michael Leathers and Miss Crafty.",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$11.50-28.75 | 21+",
              "url": "http://www.foopee.com/by-band.2.html#Larkin_Poe",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-04-11T07:04:39.679517Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5374e0e97468",
              "venue_id": "venue_act_rembe",
              "title": "New Pages",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "ACT REMBE",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Opening night of the Royal Shakespeare Company's stage adaptation of Maggie O'Farrell's best-selling novel about the son of William Shakespeare.",
              "event_types": [
                "theater"
              ],
              "price_info": "From $59",
              "url": "https://www.act-sf.org/whats-on/2025-26-season/hamnet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_act_rembe",
                  "source_name": "ACT REMBE",
                  "fetched_at": "2026-04-11T11:20:52.515181Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_act_rembe|2026-05-22",
              "run_id": "run_209be028b4b1",
              "run_label": "Hamnet, Apr 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a105a889cb6d",
              "venue_id": "venue_sjz_break_room",
              "title": "Amar Singh Trio",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "Amarinder Singh is a Bay Area native whose sound reflects the radical musical spirit of Northern California. Born in Vallejo and raised between Oakland and Berkeley, Amarinder was immersed from an early age in a region that birthed and nurtured funk, jazz, blues, hip-hop, psychedelic rock, dub, experimental fusion, bhangra, carnatic music and Kirtan.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk",
                "experimental"
              ],
              "price_info": "$20.00",
              "url": "https://sanjosejazz.org/events/amar-singh-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-04-12T01:27:25.145061Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_jazz",
                  "source_name": "San Jose Jazz",
                  "fetched_at": "2026-04-12T19:32:27.049687Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8a370b1198e",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Măcelaru Conducts Dvořák's New World",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Cristian Măcelaru conducts Dvořák's Symphony No. 9, 'From the New World,' Rachmaninoff's Piano Concerto No. 1 with pianist Simon Trpčeski, and the world premiere of Tyler Taylor's Embers.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$30-$75",
              "url": "https://chambermusicsf.org/philharmonia-vivaldi",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_chamber_music_sf",
                  "source_name": "Chamber Music SF",
                  "fetched_at": "2026-04-12T19:15:29.224740Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-04-13T04:19:58.778262Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-17T11:43:13.664569Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8244d95f535e",
              "venue_id": "venue_regency_ballroom",
              "title": "Goldenvoice Presents American Football",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Influential emo pioneers American Football bring their intricate math-rock sounds to the vineyard, joined by opener Mei Semones. The evening features atmospheric melodies and technical musicianship in a beautiful outdoor setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.0.html#American_Football",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-13T04:13:31.972558Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b765187923a1",
              "venue_id": "venue_1015_folsom",
              "title": "DANIEL ALLAN",
              "event_time": "2026-05-22T22:00:00",
              "venue_name": "1015 Folsom",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Electronic producer Daniel Allan brings his innovative sound and live performance style to the venue. His set blends contemporary pop sensibilities with forward-thinking electronic beats for a modern dance floor experience.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/daniel-allan/681962?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-04-16T09:34:15.997065Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-16T09:53:45.323551Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-09T11:49:02.445110Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_722a19d61467",
              "venue_id": "venue_the_monarch",
              "title": "Mietze Conte",
              "event_time": "2026-05-22T21:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Electronic artist Mietze Conte brings their distinctive sound to The Great Northern for a night of innovative beats and club music. The event showcases the artist's unique approach to modern electronic production and performance.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starts at $29.14",
              "url": "https://www.eventbrite.com/e/mietze-conte-tickets-123456789",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-04-17T07:38:04.651081Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-04-18T09:05:48.019559Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-04-28T12:36:56.840380Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae8a43193d15",
              "venue_id": "venue_brick_and_mortar",
              "title": "Glom — \"As Above, So Below\" US Tour 2026",
              "event_time": "May 22 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Popscene and Brick & Mortar Music Hall proudly present Glom on their \"as above, so below\" us tour 2026. This indie-rock band offers a unique live experience, blending the anthemic choruses of 90s alternative rock, rich shoegaze textures, and tight rhythms of late 80s post-punk. Attendees can anticip...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$23.97 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.1.html#Glom",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-04-20T11:04:23.689477Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-15T16:50:53.908757Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bf0d61de17c4",
              "venue_id": "venue_cornerstone",
              "title": "Neoni",
              "event_time": "May 22 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "The alternative pop duo performs their cinematic and dark-edged tracks known for their powerful vocal harmonies and intense energy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Neoni",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ec3b49f4b6bf",
              "venue_id": "venue_ivy_room",
              "title": "Chick Jagger + Rewinder + Sonic Highway",
              "event_time": "Friday May 22 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Experience a high-energy night of rock tributes featuring the female-fronted Rolling Stones tribute Chick Jagger alongside Rewinder and Sonic Highway.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/178481",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_518d826bc080",
              "venue_id": "venue_little_hill_lounge",
              "title": "Arcade 9, Pink Steam, Dogs That Bite",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A lively night of rock and alternative music featuring Pinker Than You, Arcade 9, and Dogs That Bite. Each band brings its own distinct energy to the vineyard stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free (Suggested $10 donation)",
              "url": "https://www.shazam.com/concert/arcade-9-el-cerrito-little-hill-lounge-may-22-2026-8-00-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-04-22T12:53:59.758138Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-22T13:52:23.164708Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-15T22:19:53.810177Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3873637ff98e",
              "venue_id": "venue_924_gilman",
              "title": "Swept to Sea + Butane + Arph + More",
              "event_time": "May 22 5pm/5:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-22T17:30:00",
              "event_date": "2026-05-22",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages show featuring SWEPT TO SEA, BUTANE, ARPH, DEATH BY DISHONOR, EDGERUNNER925, STREET SWEEPER, and O'ER EARTH AND SEA. Doors open at 5:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13",
              "url": "http://www.foopee.com/by-band.3.html#Swept_To_Sea",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-22T14:01:12.127049Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b0ae15a1d57",
              "venue_id": "venue_the_ritz",
              "title": "Peelingflesh",
              "event_time": "2026-05-22T18:00:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-22T18:00:00",
              "event_date": "2026-05-22",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "This heavy metal and hardcore showcase features intense live performances from Peelingflesh, Missing Link, Kruelty, and Bayway. Attendees can expect a high-energy night of aggressive riffs and powerful vocals.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$31.34",
              "url": "https://www.ticketweb.com/event/peelingflesh-missing-link-kruelty-bayway-the-ritz-tickets/14149874",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-22T13:54:47.365481Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-22T14:09:36.179513Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_197713df6cfe",
              "venue_id": "venue_the_chapel",
              "title": "Collectivity: Wish You Were Here",
              "event_time": "Fri May 22 2026 9:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Musical ensemble Collectivity performs a dedicated live tribute to Pink Floyd's classic album 'Wish You Were Here' in its entirety.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30.00-$35.00",
              "url": "https://wl.seetickets.us/event/collectivity-perform-pink-floyds-wish-you-were-here/688870?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-25T23:00:07.126857Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b775adba72ea",
              "venue_id": "venue_the_fillmore",
              "title": "Portishead",
              "event_time": "2026-05-22",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Indie-folk favorites Mt. Joy celebrate a decade of making music together with a special anniversary performance at The Fillmore.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Not specified",
              "url": "https://19hz.info/eventlisting_BayArea.php",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-25T23:05:04.488227Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-26T12:31:54.296656Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-14T12:43:46.386553Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_35312079941b",
              "venue_id": "venue_mitchell_park_center",
              "title": "Throw it in the Sink",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Earthwise welcomes Throw It In The Sink and FlatwaysThrow It In The Sink - gabby fluke-mogul violin Lily Finnegan drums.Flatways - Jordan Glenn Sudhu Tewari Matt Robidoux drums electronics stringless guitar.Tickets More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$20",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22988",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-04-26T00:54:45.596638Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a1a393871b7b",
              "venue_id": "venue_great_american_music_hall",
              "title": "Wild Nothing, Lunar Vacation",
              "event_time": "May 22 2026 8pm/9pm",
              "venue_name": "Great American",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "On sale Friday, 1/16 at 10am ! $25 ADV | $30 DOOR Doors 8 pm | Show 9 pm Wild Nothing Website | Instagram | Facebook | YouTube | Spotify Because “Hold,” Jack Tatum’s fifth album under the moniker Wild Nothing, was written in the aftermath of new parenthood during the pandemic, it was probably inevit...",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25/$30",
              "url": "http://www.foopee.com/by-band.3.html#Wild_Nothing",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-06T10:12:26.819455Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-15T16:50:53.908757Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a72ba3be720a",
              "venue_id": "venue_kilowatt",
              "title": "Primitive Ring",
              "event_time": "May 22 7pm/8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Primitive Ring performs a live musical set at the vineyard. This event focuses on the specific sound and performance of this featured act.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.72",
              "url": "http://www.foopee.com/by-band.2.html#Primitive_Ring",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-09T12:28:28.635153Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5213a46faa19",
              "venue_id": "venue_the_knockout",
              "title": "First Attack, Ante, Tonto",
              "event_time": "Fri May 22 8pm/9pm",
              "venue_name": "The Knockout",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Experience a night of live music featuring the combined talents of First Attack, Ante, and Tonto. This triple-bill promises a diverse range of sounds from local and touring acts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-club.2.html#Knockout__S_F_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-28T12:45:22.434690Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-07T14:35:05.236140Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c825e97a2e8a",
              "venue_id": "venue_thee_stork_club",
              "title": "Halou, Bela Ruino, Ex-Halou",
              "event_time": "Fri May 22 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "The dream pop and electronic ensemble Halou performs a live set featuring their signature atmospheric soundscapes. Fans can expect a night of ethereal melodies and intricate electronic arrangements.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$18",
              "url": "http://www.foopee.com/by-club.3.html#Thee_Stork_Club__Oakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-04-30T23:49:05.353599Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bf98e7fc5a2",
              "venue_id": "venue_public_works",
              "title": "Alice Longyu Gao",
              "event_time": "05/22/2026 9pm-2am",
              "venue_name": "Public Works",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A live performance by Alice Longyu Gao, presented by Queen Out.",
              "event_types": [
                "live_music",
                "electronic",
                "hiphop_rap"
              ],
              "price_info": "See ticket page for current pricing.",
              "url": "https://www.tixr.com/groups/publicsf/events/queen-out-presents-alice-longyu-gao-186249?utm_medium=venuewebsite&utm_source=publicsf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-01T09:57:00.428606Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0827d7020b22",
              "venue_id": "venue_underground_sf",
              "title": "Amor Digital",
              "event_time": "05/22/2026 9pm",
              "venue_name": "Underground SF",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "Amor Digital heads DJ Juanny and Javi welcome multidisciplinary artist Maracuyá for a night of genre-blending club rhythms, reggaeton, and Latin bass.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "21+",
              "url": "https://www.instagram.com/p/DXxf52Sjw3-/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-05-01T15:25:16.287901Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_underground_sf|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b84910496613",
              "venue_id": "venue_swedish_american",
              "title": "Amelie Farren",
              "event_time": "May 22, 2026 8pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Amelie Farren and Gavriella take the stage for an evening of contemporary live music. This performance highlights melodic songwriting and vocal artistry in an intimate theater setting.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not listed on event page",
              "url": "http://www.foopee.com/by-band.0.html#Amelie_Farren",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-03T12:17:40.110714Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5695d7cf5a7f",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Rodvien/Boyce/Dean",
              "event_time": "Friday, May 22, 2026\n           7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Other Dimensions in Sound is our Friday music series curated and hosted by Boohaabian multi reed player extraordinare David Boyce. Each week David will be inviting different musical guests to join him in our galeria for a night of musical medicina.\n\nTonight we have an extra heavy dose of sonic sustenance with Rodvien/Boyce/Dean(Brian Rodvien-drums, David Boyce-reeds and efx, and Bryan Dean-electric bass)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/r6j66db5278nzpjj9chndzpbdec5t9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-06T19:00:19.607140Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-07T10:10:14.629558Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bd658b47b619",
              "venue_id": "venue_counterpulse",
              "title": "TenderArts Arts Kiosk",
              "event_time": "2026-05-22T13:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-05-22T13:00:00",
              "event_date": "2026-05-22",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "Visual artists exhibit and sell their work at the JCDecaux Kiosk on Market Street at 6th as part of the CounterPulse TenderArts Program.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Free",
              "url": "https://counterpulse.org/tenderarts/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e0f470485d89",
              "venue_id": "venue_black_cat",
              "title": "Dear, Ms. Dearie",
              "event_time": "05/22/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nPianist, vocalist, and composer Dawn Clement is a joyful and formidable voice in modern jazz. Known for her distinctive sound and boundless versatility, she bridges lyricism and invention with ease. DownBeat writes, “The revelation is Dawn Clement’s piano, always ready with the lyricism or structure the moment needs.”\n\nClement has performed with Jane Ira Bloom, Ron Miles, René Marie, Julian Priester, and Ingrid Jensen, and appears on säje’s GRAMMY-nominated debut album. Her recent release, Delight (May 2025, *Origin records), features Buster Williams and Matt Wilson in a “legacy trio” recorded at the storied Maggie’s Farm in Pennsylvania—an intimate, soulful reflection on connection and lineage. She also has a forthcoming project paying tribute to the music of Blossom Dearie, featuring John Clayton, Jeff Hamilton, and Steve Kovalcheck, to be released in April of 2026.\n\nClement serves as Associate Professor and Area Coordinator of Jazz and American Improvised Music at Metropolitan State University of Denver, and is the Artistic Director of the Centrum Jazz Workshop. Based in Denver, she remains a vital presence in both the Rocky Mountain and Pacific Northwest music communities.\n\nDear, Ms. Dearie is a project shaped by time, listening, and deep affection for the music of Blossom Dearie. Drawn to her understated brilliance—her swing, humor, and quiet authority at the piano—this recording honors the elegance of her songbook while allowing the music to breathe in the present.\n\nThe ensemble features Jeff Hamilton and John Clayton, artists whose sound, feel, and generosity define what it means to play this music at the highest level, alongside guitarist Steve Kovalcheck, whose warmth and clarity bring a lyrical voice to the band. Produced by drummer Matt Wilson, the project was arranged with care and intention, shaped specifically for this group of musicians.\n\nIn contrast to more exploratory and original-driven work often associated with the leader’s output, Dear, Ms. Dearie turns toward the song itself—intimate, grounded, and quietly swinging. It is both a tribute and a conversation: with Blossom Dearie, with the tradition, and with the artists who continue to carry it forward.\n\nBand Lineup:\nDawn Clement, piano/vocals\nSteve Kovalcheck, guitar\nJohn Clayton, bass\nJeff Hamilton, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/10905/?date=2026-05-22",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-08T10:55:30.263873Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-09T11:53:46.508128Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f7636bf9dd2",
              "venue_id": "venue_bing_concert_hall",
              "title": "Stanford Jazz Orchestra & Warren Wolf",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "Bing Hall",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "The Stanford Jazz Orchestra takes the stage alongside acclaimed vibraphonist Warren Wolf for an evening of dynamic big band music. The performance highlights the intersection of student talent and professional jazz mastery.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$32-$37",
              "url": "https://events.stanford.edu/events/stanford-jazz-orchestra-with-warren-wolf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-05-11T10:16:00.521980Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b3814a0c0e6a",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "AAPI Heritage Month Salon",
              "event_time": "MAY 22, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "AAPI Heritage Month Salon SeriesA Community Affair: Asian American Lineages as Bay Area History featuring Francis Wong, Jon Jang, Scott Oshiro, and Roopa MahadevanJoin us for the second installment of our Friday Salon Series celebrating AAPI Heritage Month, featuring insightful panel discussions, live music presentations, light refreshments, and community conversation. Curated by Francis Wong, Chris Trinidad, and Noah Rosen in collaboration with Asian Improv aRts and Iridium Records. More...",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/aapi-heritage-month-salon-series-a-community-affair-asian-american-lineages-as-bay-area-history/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-11T10:17:42.971739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-13T10:12:37.718628Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4684b48013d6",
              "venue_id": "venue_dna_lounge",
              "title": "WORLD GOTH NIGHT",
              "event_time": "05/22/2026 9pm-2am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Two Floors • 10 DJs • Go-Gos • Vendors • Tarot. Darkwave, Post-Punk, Industrial, EBM, Synthpop.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 pre / $25 | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/05-22.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-11T12:21:42.465906Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1e7e3af9813b",
              "venue_id": "venue_el_rio",
              "title": "LOVE COME DOWN",
              "event_time": "2026-05-22T21:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "A residency night featuring deep disco, cosmic house, classic boogie bangers, and polyrhythmatic afrobeat with vinyl veterans DJs Mo'Ski and 7evenB.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5",
              "url": "https://ra.co/events/1888888",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-11T12:41:16.871816Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_el_rio|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19faf6db8434",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Get ready for fantastic live music at Bird & Beckett Books! We're thrilled to host the Tony Johnson residency, featuring the incredible 230 Jones Street Band. Join us for an evening of captivating performance in the heart of San Francisco. Support local artists and your favorite independen...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-$30; students $10-$15; younger kids free",
              "url": "https://sflive.art/event/tony-johnson-residency-the-230-jones-street-band_2026-05-22-18-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-13T10:15:02.069294Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-15T16:50:53.908757Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e06d408f0d14",
              "venue_id": "venue_cafe_du_nord",
              "title": "Babes In Canyon",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Eloquently blending synth - folk, moody pop, club beats, and soaring vocal harmonies, Babes In Canyon crafts music that is eminently engaging and very much of the moment. Born of a spontaneous writing session during a winter storm blackout, the band wandered naturally into the land of heavy beats, l...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not listed on event page",
              "url": "https://cafedunord.com/tm-event/babes-in-canyon-with-eric-silverman-and-camp-bedford/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-15T16:50:53.908757Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b9b6f2955e9f",
              "venue_id": "venue_the_starry_plough",
              "title": "School of Rock British Invasion",
              "event_time": "Fri May 22 6pm",
              "venue_name": "The Starry Plough",
              "event_start": "2026-05-22T18:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "Students from the School of Rock showcase their musical talents with a themed performance of classic hits from the British Invasion era.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.3.html#School_of_Rock_British_Invasion",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_286f5df9f27e",
              "venue_id": "venue_black_cat",
              "title": "Dear Ms. Dearie",
              "event_time": "May 22 7pm and 9:30pm",
              "venue_name": "Black Cat",
              "event_start": "2026-05-22T21:30:00",
              "event_date": "2026-05-22",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "$40 7pm and 9:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$40",
              "url": "http://www.foopee.com/by-band.0.html#Dear_Ms__Dearie",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_891546057b26",
              "venue_id": "venue_madarae",
              "title": "DA CAPO (Afro House) at MadaRae",
              "event_time": "2026-05-22T21:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "A special night featuring South African DJ and producer Da Capo. Renowned for his innovative approach to Afro House, he has performed at iconic global venues like Hï Ibiza.",
              "event_types": [],
              "price_info": "Free before 11pm with RSVP",
              "url": "https://www.eventbrite.com/e/da-capo-afro-house-madarae-nightclub-tickets-884891128537",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-13T13:11:14.181208Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e349f9755e13",
              "venue_id": "venue_the_sound_room",
              "title": "Ray Obiedo Latin Jazz Ensemble",
              "event_time": "Friday, May 22, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Ray Obiedo blends Latin, jazz, rock and R&B in a vibrant, groove-heavy musical experience. This stellar ensemble showcases Grammy Award-winning guitarist Obiedo’s masterful compositions creating an irresistible fusion.\n\nFor over four decades, Bay Area native Ray Obiedo has established himself as one of modern jazz’s most versatile guitarists and composers. A former member of Herbie Hancock’s band and sideman to legends like Pete Escovedo and Sheila E, Obiedo’s solo career spans acclaimed albums including Latin Jazz Project and There Goes That. His current ensemble features the remarkable Lilan Kane, whose powerful voice has earned her performances with Carlos Santana and Tower of Power. Together, they create a sophisticated musical tapestry that seamlessly weaves Latin percussion, jazz harmonies and soulful melodies. The group consistently delivers electrifying live performances characterized by virtuosic improvisation and infectious energy. Obiedo’s commitment to musical authenticity and cross-cultural exploration makes each concert not just a performance but a celebration of the rich diversity within jazz today.\n\nTickets at Ray Obiedo Group featuring Lilan Kane",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "Starts at $33.85",
              "url": "https://www.soundroom.org/events/ray-obiedo-group-featuring-lilan-kane-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-14T10:13:27.969116Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-05-15T22:03:38.301037Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_916784eae79b",
              "venue_id": "venue_sailing_goat",
              "title": "Tom Quell",
              "event_time": "Fri, May 22",
              "venue_name": "Sailing Goat",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Relax at Sailing Goat with the smooth, soulful melodies and acoustic folk sounds of singer-songwriter Tom Quell.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/tom-quell",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3fabec1888b3",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-22",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-22",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b829879a0afe",
              "venue_id": "venue_act_theater",
              "title": "ACCESSSFUSD: THE ARC ART SHOW",
              "event_time": "MAY 22, 2026 12PM",
              "venue_name": "ACT Theater",
              "event_start": "2026-05-22T12:00:00",
              "event_date": "2026-05-22",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "This event highlights the development of contemporary theater through readings or performances of brand-new scripts and literary works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/community/for-students/exhibitions/accesssfusd-the-arc-art-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-14T11:48:33.996545Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-15T16:50:53.908757Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f2e662b925d8",
              "venue_id": "venue_the_lost_church",
              "title": "Kyle Blase and Tiffany Austin",
              "event_time": "2026-05-22",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance featuring Kyle Blase and Tiffany Austin at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m6hx2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_99e0a529ff45",
              "venue_id": "venue_castro_theater",
              "title": "FAIRYLAND",
              "event_time": "May 22, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Harvey Milk Day",
              "event_types": [
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/fairyland-260522",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-14T12:20:50.394785Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-15T17:16:54.230157Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0432aac0f86d",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Friday Happy Hour | May 22",
              "event_time": "May 22, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-22T16:30:00",
              "event_date": "2026-05-22",
              "venue_address": "San Francisco, CA 94118",
              "description": "Enjoy a free happy hour concert featuring two sets of music by Maurice Tani.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/friday-happy-hour-may-22/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-14T12:55:55.581639Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-15T15:15:23.116577Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63d1d99733a9",
              "venue_id": "venue_roccapulco",
              "title": "Kazzabe en vivo en San Francisco",
              "event_time": "2026-05-22T21:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "Experience the high-energy tropical rhythms of Kazzabe Si Sabe live in concert at Roccapulco.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "From $60.71",
              "url": "https://www.tickeri.com/events/kazzabe-en-vivo-en-san-francisco",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_50e260beb287",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Fri May 22 2026",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $25.00",
              "url": "https://www.eventbrite.com/cc/comedy-oakland-at-elbo-room-4794459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_96468f16fbc2",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Preview)",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance is a preview before the official opening night.",
              "event_types": [
                "theater",
                "live_music",
                "indian_classical"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6795d71959c5",
              "venue_id": "venue_the_bistro",
              "title": "Ska, Blues, and Reggae Night",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Live music performance featuring Ska, Blues, and Reggae genres.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free / No Cover",
              "url": "https://the-bistro.com/musicians",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ce483c49256f",
              "venue_id": "venue_mr_tipples",
              "title": "Lorca Hart Quartet",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Drummer Lorca Hart leads his quartet through an evening of expressive and hard-swinging jazz.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/lorca-hart-quartet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e554d88ea257",
              "venue_id": "venue_mr_tipples",
              "title": "The Humidors",
              "event_time": "2026-05-22T22:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-22T22:30:00",
              "event_date": "2026-05-22",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Hailing from the Bay Area, The Humidors churn out a unique brand of hard-hitting party music, combining elements of funk, soul, and jazz.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/the-humidors/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_137364d2aea5",
              "venue_id": "venue_vino_locale",
              "title": "Friday Night Live Music",
              "event_time": "2026-05-22T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-22T18:30:00",
              "event_date": "2026-05-22",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "Weekly live music performance in the back garden patio. Enjoy local artists ranging from folk to soft rock while sipping on regional wines.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3fb5fd82369c",
              "venue_id": "venue_cal_academy_of_science",
              "title": "California: State of Nature Exhibit Opening",
              "event_time": "2026-05-22",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Opening day for a new multi-sensory exhibition revealing the connections between people, places, and species in California.",
              "event_types": [],
              "price_info": "Included with general admission ($35 - $50)",
              "url": "https://www.calacademy.org/exhibits/california-state-of-nature",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c97d46321506",
              "venue_id": "venue_alhambra_public_house",
              "title": "JD McGowan Irish Music",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Live Irish music performance by JD McGowan.",
              "event_types": [],
              "price_info": "Check website",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c35b401aa21a",
              "venue_id": "venue_montgomery_theater",
              "title": "The Jury Experience: Death by AI",
              "event_time": "2026-05-22 2026-05-22T20:30:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "An interactive live investigation in which the audience becomes part of a case about a fatal driverless-car incident, weighing testimony, evidence, and real-time voting to decide accountability.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/the-jury-experience-death-by-ai-who-pays-the-price/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_73d6265bc298",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Karaoke Night",
              "event_time": "2026-05-22T21:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Weekly karaoke night at The Lucky Horseshoe.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0972ee234a80",
              "venue_id": "venue_cry_baby",
              "title": "The Hyphy Function",
              "event_time": "2026-05-22T22:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Bay Area hip-hop, rap, and hyphy party with DJs DJ West Coast, Chuy Gomez, and Joog Mac; patio takeover by Berk Visual and food by World Famous Hot Boys.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "First 25 people with RSVP get in free.",
              "url": "https://crybaby.live/tm-event/the-hyphy-function-w-dj-west-coast-chuy-gomez-joog-mac-patio-by-berk-visual-food-by-world-famous-hot-boys/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0493db07fc60",
              "venue_id": "venue_verdi_club",
              "title": "ArtPärdē Spectacle",
              "event_time": "2026-05-22T18:30:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-22T18:30:00",
              "event_date": "2026-05-22",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "An evening spectacle featuring art and performance at the historic Verdi Club.",
              "event_types": [],
              "price_info": "",
              "url": "https://www.verdiclub.net/event/artparde-spectacle/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e315a6736800",
              "venue_id": "venue_la_pena",
              "title": "Larry & Joe in Concert",
              "event_time": "2026-05-22T19:00:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "A joyful night of Venezuelan and Appalachian folk music featuring Larry Bellorín and Joe Troop, supporting social justice causes.",
              "event_types": [],
              "price_info": "$20 – $100",
              "url": "https://lapena.org/event/larry-joe-live-in-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e1b89894f5e5",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "AURA at Grace Cathedral (with Live Quartet)",
              "event_time": "2026-05-22T18:15:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-05-22T18:15:00",
              "event_date": "2026-05-22",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "An immersive light and sound experience that transforms the cathedral's Gothic interior into a living canvas. This special performance includes a live musical quartet.",
              "event_types": [],
              "price_info": "From $24.27",
              "url": "https://auragracecathedral.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_283e24400361",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Solo Piano & Jazz Trio",
              "event_time": "2026-05-22T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-05-22T20:30:00",
              "event_date": "2026-05-22",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Enjoy live jazz at Bix, a classic San Francisco supper club. The evening begins with solo piano from 6:00 PM to 8:00 PM, followed by a spirited jazz trio starting at 8:30 PM.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_429c81be26c7",
              "venue_id": "venue_dance_mission",
              "title": "HomeGrown",
              "event_time": "2026-05-22T19:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "The Training Ground closes out its inaugural year with an evening that looks back and leaps forward. “HomeGrown” reprises Fugue, a standout work from the fall semester choreographed by Kira Fargas, and premieres a new collaboration by Marco Palomino and Alejandro Perez for ttgsf students. The pro...",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/03/may-22-24-homegrown-the-ground-works/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dance_mission|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1991191fe230",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Wasted Life, Firm Stance, Juicebox",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "A monthly producer forum and beat showcase presented by FlipABeatClub, highlighting local electronic music talent.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$19.00",
              "url": "https://www.ticketweb.com/event/wasted-life-firm-stance-juicebox-neck-of-the-woods-tickets/13426332",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9df932478d0f",
              "venue_id": "venue_biscuits__blues",
              "title": "Big Daddy Cade's Tribute to B.B. King",
              "event_time": "2026-05-22T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-22T18:30:00",
              "event_date": "2026-05-22",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "The only tribute act to have personal approval from B.B. King himself; Big Daddy Cade brings the real deal to San Francisco with the BluesMasters.",
              "event_types": [],
              "price_info": "$25+ Admission",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260522-24bigdaddycade",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-22",
              "run_id": "run_21805abf8266",
              "run_label": "Big Daddy Cade's Tribute to B.B. King, May 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_156eb4d4efc4",
              "venue_id": "venue_caravan_lounge",
              "title": "Lawnmower",
              "event_time": "2026-05-22",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Live rock music performance by Lawnmower. No cover charge.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://localgroove.live/events/lawnmower-at-caravan-lounge-may-22-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-16T00:28:14.570954Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_05d9fafbbb50",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-22T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-22T17:00:00",
              "event_date": "2026-05-22",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Friday evening happy hour to kick off the weekend.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c289e452f809",
              "venue_id": "venue_the_midway",
              "title": "Reggaeton Rave",
              "event_time": "05/22/2026 9pm",
              "venue_name": "The Midway",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "big room house, electro house, pop EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19-43 | 21+",
              "url": "https://tixr.com/e/185412",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b320910ba4be",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Irene Tu",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Irene Tu, featuring Gary Michael Anderson and Walker Glenn.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/122887",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-22",
              "run_id": "run_a0fc9026894c",
              "run_label": "Irene Tu, May 21 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_33d2ac5913f9",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-22T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-22T16:00:00",
              "event_date": "2026-05-22",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_12122563c7b8",
              "venue_id": "venue_the_freight__salvage",
              "title": "Ramblin' Jack Elliott & Friends",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Folk concert featuring Ramblin' Jack Elliott and friends.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$44/$49",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0bb739d6ade3",
              "venue_id": "venue_meyhouse",
              "title": "Nathan Tokunaga",
              "event_time": "2026-05-22T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-22T17:00:00",
              "event_date": "2026-05-22",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Clarinetist and saxophonist Nathan Tokunaga brings the Great American Songbook to life with clarity, swing, and a fresh perspective rooted in tradition.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/classic-jazz-new-voice-featuring-nathan-tokunaga-fri-5-22-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_80f3027f6b82",
              "venue_id": "venue_meyhouse",
              "title": "Nathan Tokunaga",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Clarinetist and saxophonist Nathan Tokunaga brings the Great American Songbook to life with clarity, swing, and a fresh perspective rooted in tradition.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/classic-jazz-new-voice-featuring-nathan-tokunaga-fri-5-22-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3ef59f855145",
              "venue_id": "venue_the_starry_plough",
              "title": "Cumbia Night",
              "event_time": "2026-05-22T21:30:00",
              "venue_name": "The Starry Plough",
              "event_start": "2026-05-22T21:30:00",
              "event_date": "2026-05-22",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "Experience a night of infectious Latin rhythms and dancing during Cumbia Night at The Starry Plough. The event showcases the popular musical genre known for its driving percussion and melodic hooks.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://thestarryplough.com/event/cumbia-night-24/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-16T10:44:36.419036Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_463b67835886",
              "venue_id": "venue_the_cats",
              "title": "The Radio",
              "event_time": "2026-05-22",
              "venue_name": "The Cats",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "7:00 PM – 10:00 PM\nThe Radio",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/the-radio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a09b059f422b",
              "venue_id": "venue_mvcpa",
              "title": "Don Quixote",
              "event_time": "2026-05-22 13:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "In celebration of Western Ballet’s 50th Anniversary, Don Quixote premieres as a full-length, comedic ballet in three acts, bursting with vibrant Spanish flair, exhilarating virtuosity, and joyful storytelling.",
              "event_types": [
                "dance"
              ],
              "price_info": "$52 - $63.50",
              "url": "https://tickets.mvcpa.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-05-17T10:54:35.093784Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mvcpa|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7b1a624d862a",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-05-22T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Local DJs spin a variety of music ranging from soul and funk to modern beats. The bar is open until 2 AM on Fridays.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5a0f73a3c0d9",
              "venue_id": "venue_mojo_lounge",
              "title": "Bike Night at Mojo Lounge",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "A weekly event for motorcycle enthusiasts and music fans alike, featuring DJs and live music performances throughout the evening.",
              "event_types": [
                "live_music",
                "rock",
                "dj_party",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e19e03080b02",
              "venue_id": "venue_the_midway",
              "title": "Bjork - Vespertine",
              "event_time": "2026-05-22T16:30:00",
              "venue_name": "The Midway",
              "event_start": "2026-05-22T16:30:00",
              "event_date": "2026-05-22",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "An Envelop Immersive Listening Experience @ Midway",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3f838ca0b223",
              "venue_id": "venue_the_midway",
              "title": "Charisma @ 620 Jones",
              "event_time": "2026-05-22",
              "venue_name": "The Midway",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "620 JONES ∙ OUTDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/charisma-620-jones/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53f4877ff38c",
              "venue_id": "venue_the_midway",
              "title": "Golden Era Rave - 2010s EDM Classics",
              "event_time": "2026-05-22",
              "venue_name": "The Midway",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "GODS & MONSTERS ∙ INDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/golden-era-rave-2010s-edm-classics/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_79fe41fb7728",
              "venue_id": "venue_sap_center",
              "title": "JONES vs GUALTIERI",
              "event_time": "2026-05-22T14:30:00",
              "venue_name": "SAP Center",
              "event_start": "2026-05-22T14:30:00",
              "event_date": "2026-05-22",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Golden Boy Boxing",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_af1783ddbbdf",
              "venue_id": "venue_kilowatt",
              "title": "Baghead (DJ)",
              "event_time": "2026-05-22T22:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d222a04a6232",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-22T19:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-22T19:45:00",
              "event_date": "2026-05-22",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_960f4309740c",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-22T21:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-22T21:45:00",
              "event_date": "2026-05-22",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Late stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f6a02cd25682",
              "venue_id": "venue_tommy_ts",
              "title": "BRUCE BRUCE",
              "event_time": "2026-05-22 2026-05-23",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-22",
              "run_id": "run_3126276a800d",
              "run_label": "BRUCE BRUCE, May 22 – May 24",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_803137a97134",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-22",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8604c33f3665",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-22T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-22T14:00:00",
              "event_date": "2026-05-22",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-22",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8ffdbbacad50",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Friday night live music featuring the signature Hammond organ sound of Chris Siebert. A staple of the Mission District's live music scene.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_de9f1334d022",
              "venue_id": "venue_madrone_art_bar",
              "title": "Josh Gelfand",
              "event_time": "May 22 @ 9:30 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-22T21:30:00",
              "event_date": "2026-05-22",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "DJs Samala, Mr. Grant, N Such, Mama K and Sonny Phono rocking hip hop, dance, alternative, grunge, reggae, etc. VJ Teo with the live visual mixing of 90s music video classics and beyond. SF’s Original 90s Dance Party Music starts at 9pm. $10 at 9:30pm / 21 & up w/ID Guarantee your spot!",
              "event_types": [
                "live_music"
              ],
              "price_info": "$10",
              "url": "https://madroneartbar.com/event/josh-gelfand-25-2025-11-28/2026-05-22/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f04938e63767",
              "venue_id": "venue_rite_spot_cafe",
              "title": "The Etiquette",
              "event_time": "May 22, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "The Etiquette",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5358ce5643ea",
              "venue_id": "venue_sfjazz_lab",
              "title": "RUDRESH MAHANTHAPPA HERO TRIO",
              "event_time": "May 22 2026 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/rudresh-mahanthappa-hero-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18b6ceec9f03",
              "venue_id": "venue_sfjazz_miner",
              "title": "MAKAYA MCCRAVEN",
              "event_time": "May 22 2026 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "'In These Times' Revisited & Reworked w/ strings & special guests",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Member Discount",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/makaya-mccraven/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_86d3672a8cf1",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Sutro Music Institute Recital",
              "event_time": "Friday, May 22, 2026 5:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-22T17:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Sutro Music Institute is hosting their Spring Recital at Medicine For Nightmares! Sutro is a local music school where the teachers travel to their student's homes for private lessons. Check out their website for lesson availability: www.SutroMusicInstitute.com\n\nStudent musicians in the performance are;\n\n-Kyla John\n\n-Emma Larazzabel\n\n-Leo Larazzabel \n\n-Allesandro Larazzabel\n\n-Maddie Allen\n\n-Chloe Allen\n\n-Zachary Goldyne",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/sutro-music-institute-recital",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9846b3ea7f91",
              "venue_id": "venue_the_uc_theatre",
              "title": "Aquarium",
              "event_time": "May 22 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "",
              "event_types": [
                "other"
              ],
              "price_info": "BUY TICKETS $75 + FEES",
              "url": "https://www.theuctheatre.org/shows/aquarium-22-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-18T10:50:56.913208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e32989e2df39",
              "venue_id": "venue_dawn_club",
              "title": "FOG CITY SWING",
              "event_time": "Friday, May 22, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Ladies and Gentlemen, introducing Fog City Swing! The bay area's newest and hottest swing band featuring an electrifying three horn front line, stellar crooning vocals, and a swing till you drop rhythm section. This seven piece ensemble will transport you to the 1940’s, it is truly the world’s smallest big band!Fog City Swing is co-led by saxophonist Greg Johnson and trumpeter Daniel Herrera.\n\n\n  \n#block-e654b30fdb0e57beba2b {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-e654b30fdb0e57beba2b .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-e654b30fdb0e57beba2b {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-e654b30fdb0e57beba2b {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-e654b30fdb0e57beba2b {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-e654b30fdb0e57beba2b {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-e654b30fdb0e57beba2b .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/2ctyct385mnhy39-tg9wh-66t2b-5jsrn-ybz7p-btef8-l3cer-ynsl3-jjzrz-hp743-8n3z8-fmkm2-wcfxt",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18c5184b6989",
              "venue_id": "venue_dawn_club",
              "title": "LATE NIGHT: KEVIN PERSON TRIO",
              "event_time": "2026-05-22T23:59:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-22T23:59:00",
              "event_date": "2026-05-22",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Kevin Person Jr. has been captivating audiences with his piano artistry for over two decades. His journey began with a spark of inspiration, ignited by jazz, when his father encouraged him to join the renowned jazz program at Alta Sierra Middle School under the guidance of Paul Lucckesi. During his teenage years, Kevin's musical horizons expanded as he immersed himself in the rich traditions of Gospel music, playing passionately for his father’s church. These formative experiences laid the foundation for his distinctive blend of soulful expression and improvisational brilliance. After high school, Kevin refined his craft at California State University, Fresno, where he studied Jazz Performance. Today, he brings his dynamic energy and heartfelt performances to stages across California, sharing his love of music with audiences who are drawn to his depth, creativity, and unmistakable sound.\n\n\n  \n#block-bad3e86c01278af3937c {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-bad3e86c01278af3937c .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-bad3e86c01278af3937c {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-bad3e86c01278af3937c {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-bad3e86c01278af3937c {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-bad3e86c01278af3937c {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-bad3e86c01278af3937c .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/ymq99r06x5ano3ceed7lxwc6b2nu8i-ddz6z-m9zbs-ks7h7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_32ab70455f65",
              "venue_id": "venue_dawn_club",
              "title": "LATE NIGHT: KEVIN PERSON TRIO",
              "event_time": "2026-05-22T01:30:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-22T01:30:00",
              "event_date": "2026-05-22",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Kevin Person Jr. has been captivating audiences with his piano artistry for over two decades. His journey began with a spark of inspiration, ignited by jazz, when his father encouraged him to join the renowned jazz program at Alta Sierra Middle School under the guidance of Paul Lucckesi. During his teenage years, Kevin's musical horizons expanded as he immersed himself in the rich traditions of Gospel music, playing passionately for his father’s church. These formative experiences laid the foundation for his distinctive blend of soulful expression and improvisational brilliance. After high school, Kevin refined his craft at California State University, Fresno, where he studied Jazz Performance. Today, he brings his dynamic energy and heartfelt performances to stages across California, sharing his love of music with audiences who are drawn to his depth, creativity, and unmistakable sound.\n\n\n  \n#block-bad3e86c01278af3937c {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-bad3e86c01278af3937c .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-bad3e86c01278af3937c {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-bad3e86c01278af3937c {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-bad3e86c01278af3937c {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-bad3e86c01278af3937c {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-bad3e86c01278af3937c .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/ymq99r06x5ano3ceed7lxwc6b2nu8i-ddz6z-m9zbs-ks7h7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0076f76cb3e0",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Kenny Washington Quartet",
              "event_time": "Friday, May 22, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-22T19:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keys favorite Kenny Washington always brings concert thrills and spills to Keys. Don’t miss out on one of our very own world class bay area artists!Kenny Washington has thrilled audiences across the globe with his soulful interpretations, seemingly limitless range, and inventive scatting. Based in the San Francisco Bay Area, Washington appeared in 2013 with Wynton Marsalis and The Jazz At Lincoln Center Orchestra, alongside vocalists Gregory Porter and Paula West.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/kenny-washington-quartet-7/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ecaf35443459",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "AgapeSoul",
              "event_time": "Friday, May 22, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Love-Centric. Soul-Crafted. Groove-Infused.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/agapesoul-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c0943972fcaa",
              "venue_id": "venue_sf_conservatory",
              "title": "2026 SFCM Commencement",
              "event_time": "2026-05-22T13:00:00",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-22T13:00:00",
              "event_date": "2026-05-22",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Academic Event",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-05-18T11:23:52.619579Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01759d1e2028",
              "venue_id": "venue_odc_theater",
              "title": "String Quartet No. ATE",
              "event_time": "5/22/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002x4Uf2AI",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_717c4f21c588",
              "venue_id": "venue_rickshaw_stop",
              "title": "BROADWAY RAVE",
              "event_time": "Fri May 22 8:30PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-22T20:30:00",
              "event_date": "2026-05-22",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17.00-$24.00",
              "url": "https://wl.seetickets.us/event/BROADWAY-RAVE/686945?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-18T11:27:44.257743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_28c93cbd5401",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "NO COUNTRY, CHARM WORLD, EEE VEE EEE, CLASS OF ‘77",
              "event_time": "Fri May 22 8:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A Night of Punk/Rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "21+, $12.00",
              "url": "https://wl.seetickets.us/event/no-country-charm-world-eee-vee-eee-class-of-77/691155?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66efaa51949c",
              "venue_id": "venue_poor_house_bistro",
              "title": "Aki Kumar's Bollywood Blues Band",
              "event_time": "Fri, May 22, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-22T18:00:00",
              "event_date": "2026-05-22",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "Aki  Kumar left  his  home  in  Mumbai  with  the  intention  of working  as  a  software  engineer  in  Silicon  Valley.  Then  he  discovered  the  blues,  and  his  life  dramatically  changed.  Singing  and  playing  harmonica, he  steeped  himself…",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5415",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_24cf0bb3af0b",
              "venue_id": "venue_winters",
              "title": "Honor Among Thieves",
              "event_time": "2026-05-22T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8aceea92d7f",
              "venue_id": "venue_omca",
              "title": "Pacific Mambo Orchestra",
              "event_time": "2026-05-22",
              "venue_name": "OMCA",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Friday Nights at OMCA is set to kick off your weekend with bold Latin sounds, vibrant dance, and nonstop rhythm. Pacific Mambo Orchestra takes over the Garden Stage with an electrifying live performance, blending mambo, salsa, Latin jazz, and big band tradition into a high-energy vibe that’s both timeless and fresh. Known for their explosive stage presence and world-class musicianship, the Grammy Award-winning ensemble delivers a powerful, dance-ready experience.",
              "event_types": [
                "live_music",
                "latin_world",
                "festival",
                "community"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/friday-nights-at-omca-with-pacific-mambo-orchestra/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5ea97c9c8080",
              "venue_id": "venue_omca",
              "title": "Members Lounge",
              "event_time": "2026-05-22",
              "venue_name": "OMCA",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Calling all Members! Join us for a special Member Lounge on the Upper Level Terrace, overlooking our Garden, in celebration of you! Mingle with fellow OMCA enthusiasts while enjoying light refreshments, games, and bingo, where we’ll be giving away some amazing items from the OMCA Shop. Bring your friends and family, and enjoy Friday Nights together!",
              "event_types": [
                "community"
              ],
              "price_info": "Free for Members",
              "url": "https://museumca.org/event/friday-nights-at-omcaspecial-members-lounge-4-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2a916aaf1207",
              "venue_id": "venue_cowell_theater",
              "title": "Fort Mason Night Market",
              "event_time": "MAY 22, 2026 5PM",
              "venue_name": "Cowell Theater",
              "event_start": "2026-05-22T17:00:00",
              "event_date": "2026-05-22",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Experience the magic of the Fort Mason Night Market 2026! Join us at the stunning Fort Mason Center for Arts & Culture in San Francisco for a vibrant indoor/outdoor celebration. This free, family-friendly event transforms our historic waterfront campus into a dynamic hub of local creativity. Disc...",
              "event_types": [
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/fort-mason-night-market-2026_2026-05-22-17-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cowell_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_80e658b26605",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Măcelaru Conducts Dvořák",
              "event_time": "MAY 22, 2026 5:30PM",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-22T17:30:00",
              "event_date": "2026-05-22",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Rachmaninov PC1, Dvořák 9, Taylor | Măcelaru, Trpčeski, San Francisco Symphony",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/san-francisco-symphony-macelaru-conducts-dvoraks-new-world/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_90950e9a90ee",
              "venue_id": "venue_herbst_theater",
              "title": "COMMENCEMENT CEREMONY",
              "event_time": "May 22 2026 1:00PM",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-05-22T13:00:00",
              "event_date": "2026-05-22",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "SFCM",
              "event_types": [
                "community"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/121543",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-18T12:48:38.292641Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_herbst_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eafac396e5e8",
              "venue_id": "venue_envelop_sf",
              "title": "Bjork: Vespertine",
              "event_time": "Friday, May 22 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Experience Bjork's intimate and intricate album 'Vespertine' through Envelop's immersive spatial audio system. This session allows listeners to hear the music from all directions in a high-fidelity environment.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260522-bjork-vespertine-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8e5c57207f1",
              "venue_id": "venue_historic_bal_theatre",
              "title": "The Harmony of Rock",
              "event_time": "Friday, May 22 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-05-22T20:00:00",
              "event_date": "2026-05-22",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This tribute performance celebrates the classic rock hits and vocal harmonies of Three Dog Night, the Eagles, and other legendary rock bands.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-three-dog-night-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b7bb5962d1b0",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-22T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-22",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_152c613d5c8e",
              "venue_id": "venue_boom_boom_room",
              "title": "SF Loungecore",
              "event_time": "2026-05-22T19:35:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-22T19:35:00",
              "event_date": "2026-05-22",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Experience a night of retro-inspired sounds and atmospheric music during this specialized SF Loungecore event.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/sf-loungecore-3/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c847c49393b0",
              "venue_id": "venue_boom_boom_room",
              "title": "SF Loungecore",
              "event_time": "2026-05-22T21:20:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-22T21:20:00",
              "event_date": "2026-05-22",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Experience a night of retro-inspired sounds and atmospheric music during this specialized SF Loungecore event.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/sf-loungecore-3/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d4310c52eea1",
              "venue_id": "venue_ashkenaz",
              "title": "Rico Fridays",
              "event_time": "05/22/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Kathy Reyes - Salsa, Timba social dancing.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/184191",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab4cfc84df22",
              "venue_id": "venue_the_knockout",
              "title": "Drunk Secretary Happy Hour",
              "event_time": "5/22/2026 6:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-22T18:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Enjoy a lively themed happy hour featuring drink specials and a fun, social atmosphere at the bar.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/bee4b40c4fc4?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f840f28bc81",
              "venue_id": "venue_roxy",
              "title": "Mad Bills to Pay",
              "event_time": "Friday, May 22, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A cinematic presentation exploring social or economic themes through the lens of independent filmmaking.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/mad-bills-to-pay/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_67931a1c5f4b",
              "venue_id": "venue_roxy",
              "title": "eXistenZ (4K Restoration)",
              "event_time": "Friday, May 22, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of David Cronenberg's mind-bending sci-fi thriller presented in a stunning new 4K restoration.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/existenz-4k-restoration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d346ce8f836",
              "venue_id": "venue_roxy",
              "title": "Eraserhead (35mm)",
              "event_time": "Friday, May 22, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A late-night 35mm screening of David Lynch's surrealist debut film as part of the Arthouse 50 anniversary series.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/almost-midnights-eraserhead-35mm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_262b90699e3b",
              "venue_id": "venue_4_star_theater",
              "title": "Arthur Russell Celebration",
              "event_time": "May 22, 2026 7:30 PM – 10:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This event honors the legacy of avant-garde musician Arthur Russell through a combination of film and sound. It features a dedicated screening followed by live musical tributes from local performers.",
              "event_types": [
                "live_music",
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/arthur-russell-celebration",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66f3d04bacb0",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-22",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-22",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2c07a27e3838",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-22",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-22",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_75e25a733ddb",
              "venue_id": "venue_local_edition",
              "title": "OAKLAND JAZZ FUNK PROJECT",
              "event_time": "May 22, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-22T20:30:00",
              "event_date": "2026-05-22",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "OAKLAND JAZZ FUNK PROJECT8:30pm - 12:30amThe Oakland Jazz Funk Project believes  jazz is a living language that continues to grow and evolve.  Jazz didn't die in 1959.  It lives on in funk, neo-soul, R&B, fusion,  jazz-funk and so much more. OJFP honors and plays it all, from straight-ahead jazz to 70's funk to contemporary neo-soul.  Jazz lives on and OJFP  keeps it alive and relevant!  Their music  will warm your heart, speak to your soul and is sure to get you off your feet and dancing!",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2026/3/21/oakland-jazz-funk-project-2zy4t",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_51bc40b6af01",
              "venue_id": "venue_orpheum_theater",
              "title": "HELL'S KITCHEN - THE MUSICAL",
              "event_time": "May 22, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This musical features the music of Alicia Keys and tells a coming-of-age story set in the heart of New York City.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7017844",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b47fb9417a7",
              "venue_id": "venue_belle_cora",
              "title": "HIPSTERIA with “Tender” Tim",
              "event_time": "2026-05-22T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-05-22T18:00:00",
              "event_date": "2026-05-22",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Live jazz performance by HIPSTERIA featuring “Tender” Tim. Enjoy cool arrangements of modern pop, rock, blues, and R&B with no cover charge in a cozy outdoor setting.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://hipsteriac.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f3f2d30ba270",
              "venue_id": "venue_cat_club",
              "title": "LEISURE",
              "event_time": "Fri May 22, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-05-22T21:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Britpop, 90s Indie, Shoegaze, Madchester and More…\n——\n9pm-2am\n(fourth fridays)",
              "event_types": [],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/102524-j3x6n-b2r5z-6w9gc-4lrbd-fhj2c-bwfg8-s4gwe-ct3py-lpc9r-yhg8z-2erjn-f9rw7-ncm8k-t878g-hjxr9-jglk9-c2hh9-7n5tf-2tcgm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-05-18T14:28:23.170830Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34ad6b349943",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-22",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-22",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fdf859020cca",
              "venue_id": "venue_swedish_american",
              "title": "Amelie Farren",
              "event_time": "May 22 2026 22 Am",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Amelie Farren, Gavriella",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Amelie_Farren",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_29e325ecdd77",
              "venue_id": "venue_elis_mile_high",
              "title": "Cumbia DJ Night",
              "event_time": "Fri, May 22, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-22",
              "event_date": "2026-05-22",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "This dance-focused evening features DJs spinning a variety of Cumbia tracks for the crowd.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/cumbia-dj-night",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_478fe7adf198",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-22T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-22T18:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b21cc71002b",
              "venue_id": "venue_the_fireside",
              "title": "Friday Night Music/DJs",
              "event_time": "2026-05-22T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-05-22T18:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a305e112a464",
              "venue_id": "venue_cow_palace",
              "title": "FoodieLand Food Festival",
              "event_time": "2026-05-22T22:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Inspired by Asia's open-air night markets, FoodieLand is a family-friendly outdoor food festival featuring a multicultural marketplace with over 175 vendors, carnival games, and live musical performances.",
              "event_types": [],
              "price_info": "$12 (Admission only; food and drinks sold separately)",
              "url": "https://www.cowpalace.com/events/2026/foodieland",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_886cc1144067",
              "venue_id": "venue_1015_folsom",
              "title": "Daniel Allan",
              "event_time": "05/22/2026 10pm-2:30am",
              "venue_name": "1015 Folsom",
              "event_start": "2026-05-22T02:30:00",
              "event_date": "2026-05-22",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "pop, house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$22.25-37 | 21+",
              "url": "https://ra.co/events/2389487",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2e5192585052",
              "venue_id": "venue_make_out_room",
              "title": "DISCO-PLASTIQUE",
              "event_time": "05/22/2026 10pm-2am",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "new wave, italo disco, electro cumbia, hip-hop, reggaeton",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 | 21+",
              "url": "http://www.makeoutroom.com/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f49f1fc3b75",
              "venue_id": "venue_f8",
              "title": "Nextdimensional & Friends",
              "event_time": "05/22/2026 10pm-6am",
              "venue_name": "F8",
              "event_start": "2026-05-22T22:00:00",
              "event_date": "2026-05-22",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "house, deep house, breaks, uk garage, club",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$11-22 | 21+",
              "url": "https://ra.co/events/2381235",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5ae6a83f913",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-22T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-22T19:45:00",
              "event_date": "2026-05-22",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/fri-may-22-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8a75e43ea08d",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-22T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-22T21:45:00",
              "event_date": "2026-05-22",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/fri-may-22-945pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6ce418a2f80f",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "CHRIS REDD",
              "event_time": "Fri May 22, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-22T19:30:00",
              "event_date": "2026-05-22",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Saturday Night Live alum Chris Redd showcases his high-energy performance style and versatile comedic timing in this headlining set.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/chris-redd-san-francisco-california-05-22-2026/event/1C006434F9E8FCED",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-23": {
          "date": "2026-05-23",
          "updated_at": "2026-05-18T16:13:34.617401Z",
          "events": [
            {
              "event_id": "evt_01d2c656107c",
              "venue_id": "venue_sjz_break_room",
              "title": "Spring Series: Dolphin Hyperspace",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "Dolphin Hyperspace is a Los Angeles-based electro-jazz duo led by saxophonist Nicole McCabe and bassist Logan Kane. Widely known for legendary concerts featuring instrumental madness amongst zany synths and bonkers dance beats, the duo puts improvisation at the heart of its music.",
              "event_types": [
                "live_music",
                "jazz",
                "electronic"
              ],
              "price_info": "$27.00 (incl. fees)",
              "url": "https://sanjosejazz.org/events/dolphin-hyperspace/",
              "tags": [],
              "sources": [
                {
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-03-20T02:17:46.109691Z",
                  "strategy_used": "LLM",
                  "source_id": "v_sjz_break_room"
                },
                {
                  "source_name": "San Jose Jazz",
                  "fetched_at": "2026-03-20T03:47:38.713582Z",
                  "strategy_used": "LLM",
                  "source_id": "s_san_jose_jazz"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4cd10206d97",
              "venue_id": "venue_the_uc_theatre",
              "title": "Cut Copy",
              "event_time": "May 23 - Show: 8:00 pm",
              "venue_name": "The UC Theatre",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "The acclaimed Australian electronic band Cut Copy brings their synth-pop hits and danceable rhythms to the venue. Known for their vibrant live shows, they blend indie sensibilities with club-ready beats.",
              "event_types": [
                "electronic",
                "dj_party",
                "live_music"
              ],
              "price_info": "BUY TICKETS $45 + FEES",
              "url": "https://www.theuctheatre.org/shows/cut-copy-23-may",
              "tags": [],
              "sources": [
                {
                  "source_name": "The UC Theatre",
                  "fetched_at": "2026-03-20T12:16:17.857992Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_the_uc_theatre"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6e0a37bd1154",
              "venue_id": "venue_halcyon",
              "title": "Jay De Lys, Sebastian Fox, Gomezzy",
              "event_time": "05/23/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Argentinian tech-house producer Jay De Lys brings his groovy, percussion-led sound to the Halcyon dance floor. His performance will feature the sophisticated rhythms that have made him a staple in the international scene.",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/Fb9c78c112a2?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-03-24T21:58:13.209783Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-03-25T06:14:52.217745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b481389b095",
              "venue_id": "venue_the_fillmore",
              "title": "The Adicts",
              "event_time": "Sat May 23, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Legendary punk band The Adicts headline a high-energy show with support from the duo Dog Party. The night will be filled with classic punk rock anthems and theatrical stage performances.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-adicts-san-francisco-california-05-23-2026/event/1C006465DD4F69C7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-06T07:30:02.358221Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cdee7d3a37e9",
              "venue_id": "venue_ivy_room",
              "title": "Zeros, Hot Laundry, Garras Sucias",
              "event_time": "Saturday May 23 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Punk rock pioneers The Zeros perform alongside Hot Laundry and Garras Sucias. This event showcases a mix of classic power pop and garage rock energy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/175440",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9442d3edb60d",
              "venue_id": "venue_elis_mile_high",
              "title": "Early Moods, OWL, Cobweb",
              "event_time": "May 23 2026 8pm/9pm",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "The Los Angeles-based band Early Moods delivers a heavy set of doom and classic heavy metal. Their performance pays homage to the foundational sounds of the genre with a modern, crushing intensity.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/early-moods-owl-cobweb",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-04-07T10:51:26.627409Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c8d9ae089291",
              "venue_id": "venue_924_gilman",
              "title": "Punk In The Bay: Weekend Passes",
              "event_time": "2026-05-23T15:30:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-23T15:30:00",
              "event_date": "2026-05-23",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "924 Gilman, Berkeley Naked Aggression, Sissyfit, Gottlieb, American Dream, Rise And Strike, Discourage, Triste, Fatale Closet Monster, Blood Compact a/a $30 ($50 weekend pass) 3pm/3:30pm $ @ (Punk in the Bay - Benefit for Activist Bail & Ice Detainee Funds)",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "Check website for details",
              "url": "http://www.foopee.com/by-band.2.html#Naked_Aggression",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-11T00:33:59.470518Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_059450970d2c",
              "venue_id": "venue_act_rembe",
              "title": "New Pages",
              "event_time": "2026-05-23T19:30:00",
              "venue_name": "ACT REMBE",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Opening night of the Royal Shakespeare Company's stage adaptation of Maggie O'Farrell's best-selling novel about the son of William Shakespeare.",
              "event_types": [
                "theater"
              ],
              "price_info": "From $59",
              "url": "https://www.act-sf.org/whats-on/2025-26-season/hamnet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_act_rembe",
                  "source_name": "ACT REMBE",
                  "fetched_at": "2026-04-11T11:20:52.515181Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_act_rembe|2026-05-23",
              "run_id": "run_209be028b4b1",
              "run_label": "Hamnet, Apr 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1b5fd6daf2f6",
              "venue_id": "venue_gray_area",
              "title": "DATA/LOSS",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Gray Area",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Errorgrid brings a curated selection of experimental electronic music and audiovisual performances to the Gray Area stage. The showcase focuses on cutting-edge sound design and the technical artistry of the electronic music community.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "Check website for details",
              "url": "https://grayarea.org/event/errorgrid-presents-data-loss/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-04-12T12:12:01.278560Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-16T22:24:47.489529Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_recombinant",
                  "source_name": "Recombinant",
                  "fetched_at": "2026-05-17T15:06:25.362807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_gray_area|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_93942b426fd1",
              "venue_id": "venue_lytton_plaza",
              "title": "Throw it in the Sink",
              "event_time": "2026-05-23T14:00:00",
              "venue_name": "Lytton Plaza",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "200 University Ave, Palo Alto, CA 94301",
              "description": "Earthwise welcomes Throw It In The Sink to Lytton Plaza double bill also featuring Ben Goldberg Scott Amendola Michael Coleman Trevor DunnThrow It In The Sink gabby fluke-mogul violin Lily Finnegan drums. More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22989",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-04-26T00:54:45.596638Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_lytton_plaza|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1dc28ad8b0a9",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "US Air Guitar Champiionships",
              "event_time": "May 23 7pm/8pm",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Competitors battle for invisible glory in this regional qualifier for the national air guitar circuit. Performers are judged on their technical merit, stage presence, and 'airness' in a high-energy spectacle.",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "$15/$20",
              "url": "http://www.foopee.com/by-band.3.html#US_Air_Guitar_Champiionships",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f61b710c0cda",
              "venue_id": "venue_cafe_du_nord",
              "title": "Arts Fosjomg C;ib. We;;s Ferraro",
              "event_time": "May 23 9pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Arts Fishing Club is more than just a band; they are storytellers, explorers of the human condition, and purveyors of living life boldly: The boldness that compelled such an adventure is felt in AFC’s electrifying live shows where the band weaves the raw energy of rock and the introspective lyric...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not listed on event page",
              "url": "http://www.foopee.com/by-band.0.html#Arts_Fosjomg_C_ib__We__s_Ferraro",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b7cf2436f00",
              "venue_id": "venue_the_chapel",
              "title": "Paper Kites",
              "event_time": "May 23 7:30pm/8:30pm",
              "venue_name": "The Chapel",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "The Australian indie-folk band Paper Kites performs their signature melodic and atmospheric songs live. This concert highlights their intricate harmonies and acoustic-driven sound.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$45.00",
              "url": "http://www.foopee.com/by-band.2.html#Paper_Kites",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-11T10:19:32.154400Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4231e6871020",
              "venue_id": "venue_great_american_music_hall",
              "title": "Feng",
              "event_time": "May 23 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Great American Music Hall, S.F. Feng a/a $30/$35/$40 7pm/8pm (sold out)",
              "event_types": [
                "live_music"
              ],
              "price_info": "$30/$35/$40",
              "url": "http://www.foopee.com/by-band.1.html#Feng",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-06T10:12:26.819455Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ee79905ddbc",
              "venue_id": "venue_august_hall",
              "title": "Midnight Generation & Paco Versailles",
              "event_time": "Sat May 23 8pm/9pm",
              "venue_name": "August Hall",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Midnight Generation brings their infectious blend of retro-pop and funk-inspired electronic music to the theater. The Mexican band is known for high-energy performances that encourage the audience to dance.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/midnight-generation-paco-versailles/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-26T12:14:15.982295Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-01T06:29:15.362316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_826a9cbb2d21",
              "venue_id": "venue_the_knockout",
              "title": "Apoxupon, Seregost, Magick Creature",
              "event_time": "Sat May 23 8pm/9pm",
              "venue_name": "The Knockout",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Explore the atmospheric world of dungeon synth and experimental dark music featuring artists from the Bay Area and beyond. This event focuses on immersive, lo-fi, and medieval-inspired electronic soundscapes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-club.2.html#Knockout__S_F_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-28T12:45:22.434690Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-07T14:35:05.236140Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4dcc4f4a89dd",
              "venue_id": "venue_center_for_new_music",
              "title": "Mass Vegan Pancake Blowout",
              "event_time": "5/23/2026 12:00 PM",
              "venue_name": "Center for New Music",
              "event_start": "2026-05-23T12:00:00",
              "event_date": "2026-05-23",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "Mass vegan pancake blowout on this Saturday fete. 25+ years of no fuss pretty floured ostrich flight lessons for your shrewd in-pipes with gourmet styled flapjackery.Mephitick Ooze (MA)Fowl FiguresMadame VargaMission HypnoticShuttered More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/godwafflenoisepancakes-34/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-04-30T10:35:51.492180Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8ad23da6a57",
              "venue_id": "venue_rickshaw_stop",
              "title": "EMO NITE",
              "event_time": "Sat May 23 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "This high-energy dance party celebrates the best of emo and pop-punk music from the 2000s to today. Fans are invited to sing along to genre classics in a communal, club-like atmosphere.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20.00-$22.00",
              "url": "https://wl.seetickets.us/event/emo-nite-at-rickshaw-stop-san-francisco-ca/689469?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-30T15:22:32.287368Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-01T06:10:59.302561Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d529b4fab84",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Bandshell Blues Fest",
              "event_time": "2026-05-23T12:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-23T12:00:00",
              "event_date": "2026-05-23",
              "venue_address": "San Francisco, CA 94118",
              "description": "A celebration of classic blues featuring Highwater Blues Band, Stan Erhart & The Fabulous Misfits, and Dennis Johnson & The Revelators.",
              "event_types": [
                "live_music",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/1570/Golden-Gate-Bandshell-Concerts",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-04-30T18:19:21.237566Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-01T08:00:12.872329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c65bf3e269e6",
              "venue_id": "venue_swedish_american",
              "title": "Heavy Heavy, Andrew St. James",
              "event_time": "Sat May 23 7pm/8pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "The Heavy Heavy brings their soulful, retro-inspired rock and roll sound to the stage for a live performance. The band draws influence from 1960s and 70s rock, blues, and folk.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not listed on event page",
              "url": "http://www.foopee.com/by-club.3.html#Swedish_American_Hall__S_F_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-01T06:10:59.302561Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4cec7ccc64af",
              "venue_id": "venue_thee_stork_club",
              "title": "Lower Grand Radio DJ night",
              "event_time": "Sat May 23 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "San Francisco's own Vastum performs a set of intense and atmospheric death metal. The band is recognized for their dark lyrical themes and powerful, cavernous sound.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18/$20",
              "url": "http://www.foopee.com/by-club.3.html#Thee_Stork_Club__Oakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-01T06:10:59.302561Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-15T18:34:02.346050Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3801ab765219",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity (Preview)",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Bess Wohl and directed by Emilie Whelan. Set on a Hollywood film shoot where the chaotic soundstage mimics the real-world climate crisis, this sharp-witted comedy explores egos, secrets, and hard truths.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "Sliding scale, $15 MAD Tickets available",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-01T14:11:58.026502Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-06T10:19:21.840985Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_ashby_stage|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb2df1f0f483",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "De Yun She",
              "event_time": "2026-05-23T19:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "The acclaimed Chinese xiangsheng (cross-talk) troupe, led by master performer Guo Degang, brings their unique blend of traditional comedic artistry to San Jose.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets from $164",
              "url": "https://sanjosetheaters.org/event/de-yun-she/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-04T11:06:10.925967Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5545232badbe",
              "venue_id": "venue_guild_theatre",
              "title": "Meredith Marks DJ Set",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DJ set at The Guild Theatre. Venue listing shows 'Meredith Marks DJ Set.' Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$40",
              "url": "https://www.tixr.com/e/178155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_253ddf639f54",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Măcelaru Conducts Dvořák’s New World",
              "event_time": "5/23/2026 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Check out Măcelaru Conducts Dvořák’s New World at Davies Symphony Hall in San Francisco on May 23, 2026 and get detailed info for the event - tickets, photos, video and reviews.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23470",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-07T14:07:06.403189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-14T11:49:58.405237Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a2432c681599",
              "venue_id": "venue_yerba_buena_center",
              "title": "Las Cafeteras",
              "event_time": "2026-05-23T14:00:00",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Blending the percussive Afro-Mexican tradition of son jarocho with electronic beats and cogent rhymes, Las Cafeteras have earned a global following with their infectious live performances. Emerging from an East Los Angeles community center in the mid-aughts, the group has taken their electric sou...",
              "event_types": [
                "live_music",
                "hiphop_rap",
                "folk",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://ybgfestival.org/event/las-cafeteras/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-07T14:42:01.968442Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-09T11:49:02.445110Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-15T16:50:53.908757Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02a36c22b0e9",
              "venue_id": "venue_underground_sf",
              "title": "Bored Lord & Arreola Grande",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "Underground SF",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "Flux Aeterna invites Bay Area's own Bored Lord for a rare and special 3-hour extended set, with support from Arreola Grande.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 presale / $15 door",
              "url": "https://undergroundsf.com/events/flux-aeterna-bored-lord-3-hour-set-arreola-grande/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-05-07T16:51:39.196568Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-09T12:30:53.673583Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_underground_sf|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b630c0fffd7",
              "venue_id": "venue_black_cat",
              "title": "Dear, Ms. Dearie",
              "event_time": "05/23/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nPianist, vocalist, and composer Dawn Clement is a joyful and formidable voice in modern jazz. Known for her distinctive sound and boundless versatility, she bridges lyricism and invention with ease. DownBeat writes, “The revelation is Dawn Clement’s piano, always ready with the lyricism or structure the moment needs.”\n\nClement has performed with Jane Ira Bloom, Ron Miles, René Marie, Julian Priester, and Ingrid Jensen, and appears on säje’s GRAMMY-nominated debut album. Her recent release, Delight (May 2025, *Origin records), features Buster Williams and Matt Wilson in a “legacy trio” recorded at the storied Maggie’s Farm in Pennsylvania—an intimate, soulful reflection on connection and lineage. She also has a forthcoming project paying tribute to the music of Blossom Dearie, featuring John Clayton, Jeff Hamilton, and Steve Kovalcheck, to be released in April of 2026.\n\nClement serves as Associate Professor and Area Coordinator of Jazz and American Improvised Music at Metropolitan State University of Denver, and is the Artistic Director of the Centrum Jazz Workshop. Based in Denver, she remains a vital presence in both the Rocky Mountain and Pacific Northwest music communities.\n\nDear, Ms. Dearie is a project shaped by time, listening, and deep affection for the music of Blossom Dearie. Drawn to her understated brilliance—her swing, humor, and quiet authority at the piano—this recording honors the elegance of her songbook while allowing the music to breathe in the present.\n\nThe ensemble features Jeff Hamilton and John Clayton, artists whose sound, feel, and generosity define what it means to play this music at the highest level, alongside guitarist Steve Kovalcheck, whose warmth and clarity bring a lyrical voice to the band. Produced by drummer Matt Wilson, the project was arranged with care and intention, shaped specifically for this group of musicians.\n\nIn contrast to more exploratory and original-driven work often associated with the leader’s output, Dear, Ms. Dearie turns toward the song itself—intimate, grounded, and quietly swinging. It is both a tribute and a conversation: with Blossom Dearie, with the tradition, and with the artists who continue to carry it forward.\n\nBand Lineup:\nDawn Clement, piano/vocals\nSteve Kovalcheck, guitar\nJohn Clayton, bass\nJeff Hamilton, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/10905/?date=2026-05-23",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-08T10:55:30.263873Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-09T11:53:46.508128Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab021bbcb7bd",
              "venue_id": "venue_public_works",
              "title": "Lipphead",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Electronic music performance by Lipphead, the collaboration between Eliot Lipp and Blockhead.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$25 +",
              "url": "https://www.tixr.com/groups/publicsf/events/lipphead-eliot-lipp-blockhead-presented-by-public-works-183587",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-08T12:02:40.762036Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4c585d23613",
              "venue_id": "venue_the_mighty",
              "title": "Night Vision",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "Night Vision lands at Great Northern for a dark collision of punk, indie, electronic, and goth featuring Pink Stiletto, Defem, and DJ Omar.",
              "event_types": [],
              "price_info": "Starts at $11.28",
              "url": "https://dothebay.com/events/2026/5/23/night-vision-pink-stiletto-defem-dj-omar-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-09T22:32:01.718472Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9776d8278e48",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Max Roston-Saul Sextet",
              "event_time": "MAY 23, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Celebrating Asian American Jazz: Vernaculars plays the Music of Francis WongFrancis Wong, tenor saxophoneKarl Evangelista, guitarChris Trinidad, electric bass/synthJimmy Biala, drumsSaxophonist Francis Wong celebrates 50 years as a Bay Area musician, activist, and educator with Wong Works, a retrospective project featuring music from his long and influential musical career. In the ensemble Vernaculars, he is joined by a who’s-who of local improvisers for a set of freewheeling and powerful music. Album release celebration! More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "free",
              "url": "https://concerts.jazzschool.org/student-showcase-max-roston-saul-sextet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-11T10:17:42.971739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-13T10:12:37.718628Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_020b652ed773",
              "venue_id": "venue_the_monarch",
              "title": "PRIMAL DISCO",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "A visceral, sweat-drenched antidote to the nightlife status quo featuring a female-saturated lineup of house, disco, and tech.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starts at $11.28",
              "url": "https://www.eventbrite.com/e/primal-disco-tickets-897364123462",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-05-11T12:50:17.514293Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fe927752719a",
              "venue_id": "venue_neck_of_the_woods",
              "title": "The Philharmonik",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "This eclectic lineup features a mix of hip-hop, electronic, and indie sounds from Philharmonik, Rituals Of Mine, and supporting artists.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.concerts50.com/concert/the-philharmonik-san-francisco-may-23-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-11T13:05:02.106536Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-14T12:43:46.386553Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_267002de426f",
              "venue_id": "venue_the_starry_plough",
              "title": "British Invasion",
              "event_time": "Sat, May 23 Show: 12pm",
              "venue_name": "The Starry Plough",
              "event_start": "2026-05-23T12:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "This event celebrates the iconic sounds of the 1960s British rock movement that transformed the global music scene. Expect a night of classic hits and nostalgic performances at The Starry Plough.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thestarryplough.com/event/british-invasion/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-12T10:28:37.963652Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77a799305337",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Tiffany Austin's Band Leading Bootcamp",
              "event_time": "2026-05-23T10:00:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-05-23T10:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "A two-day intensive workshop led by Tiffany Austin focused on the art and business of band leading.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Check website for tickets",
              "url": "https://wyldflowrarts.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c1cbef52fb9",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "Michael Vincent & U No Who",
              "event_time": "SAT MAY 23 2026 8:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Donovan Plant and The Leafs perform a live set of their melodic indie rock and folk-influenced tunes. The San Francisco-based group is known for their engaging stage presence and local following.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "21+, $18.00",
              "url": "https://wl.seetickets.us/event/michael-vincent-and-u-no-who-donovan-plant-and-the-leafs-ersto/691225?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-13T10:47:03.765083Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-13T12:36:31.853883Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-15T22:35:47.542571Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_302c4aa3a9f0",
              "venue_id": "venue_924_gilman",
              "title": "Naked Aggression (9:50pm)",
              "event_time": "Sat May 23 9:50pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-23T21:50:00",
              "event_date": "2026-05-23",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": ", , , , , , , , , a/a $30 ($50 weekend pass) 3pm/3:30pm $ @ (Punk in the Bay - Benefit for Activist Bail & Ice Detainee Funds)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30",
              "url": "http://www.foopee.com/by-band.2.html#Naked_Aggression",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f6ab27c4df6",
              "venue_id": "venue_black_cat",
              "title": "Dear Ms. Dearie",
              "event_time": "May 23 7pm and 9:30pm",
              "venue_name": "Black Cat",
              "event_start": "2026-05-23T21:30:00",
              "event_date": "2026-05-23",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "$40 7pm and 9:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$40",
              "url": "http://www.foopee.com/by-band.0.html#Dear_Ms__Dearie",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_082aafc97b59",
              "venue_id": "venue_madarae",
              "title": "Tom Enzy",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "Portuguese DJ Tom Enzy brings a blend of Afro House, Latin House, and Brazilian Funk to Madarae. Includes 2-for-1 drinks from 9-11 PM.",
              "event_types": [],
              "price_info": "Free before 11pm with RSVP",
              "url": "https://www.eventbrite.com/e/tom-enzy-afro-house-latin-house-brazilian-funk-at-madarae-tickets-884893455497",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-13T13:11:14.181208Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_949d21b0d50d",
              "venue_id": "venue_sailing_goat",
              "title": "Jeff Morgan and Free Run",
              "event_time": "Sat, May 23",
              "venue_name": "Sailing Goat",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Join Jeff Morgan and Free Run for a live musical set featuring a mix of rock, blues, and original compositions.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/jeff-morgan-and-free-run",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_652f5d2ea77c",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-23",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-23",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cb2eb8399b53",
              "venue_id": "venue_the_lost_church",
              "title": "Am I the A*hole?",
              "event_time": "2026-05-23",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Stand-up comedy show at The Lost Church San Francisco.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m6sH2AQ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4e81f47f9762",
              "venue_id": "venue_castro_theater",
              "title": "GREASE SING-ALONG",
              "event_time": "May 23, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/grease-260523",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-14T12:20:50.394785Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-15T17:16:54.230157Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f58270c6ebdd",
              "venue_id": "venue_the_marsh_sf",
              "title": "The Menopause Show",
              "event_time": "2026-05-23T16:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-23T16:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Join four remarkable performers as they step into the spotlight to share raw, tender, and often laugh-out-loud stories from their journeys from menarche all the way through perimenopause and menopause. The Menopause Show illuminates this sacred, transformative, and too-often overlooked portal wit...",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/pearl-louise-pass-the-nails-and-shame-the-devil/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_274dc198fed5",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle's Takes All Kinds",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "A journalistic-theater work recreating real conversations with Americans on the front lines of today's political tensions.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b7e56df13acd",
              "venue_id": "venue_roccapulco",
              "title": "Associacion Mayab Vaqueria Carnaval Edition",
              "event_time": "2026-05-23T15:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-05-23T15:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "A special afternoon celebration featuring the Vaqueria Carnaval Edition, showcasing traditional music and dance.",
              "event_types": [
                "live_music",
                "latin_world",
                "dance",
                "community"
              ],
              "price_info": "Check website for details",
              "url": "http://www.roccapulco.com/events-calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d50d6ac224c8",
              "venue_id": "venue_roccapulco",
              "title": "CHIMBALA EN SAN FRANCISCO",
              "event_time": "2026-05-23T22:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "Dominican dembow star Chimbala performs live for a special Memorial Weekend event. Doors open at 9:00 PM.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "From $66.01",
              "url": "https://www.tickeri.com/events/chimbala-en-san-francisco",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6b85485e95d0",
              "venue_id": "venue_the_midway",
              "title": "Benny Benassi",
              "event_time": "05/23/2026 9pm-2am",
              "venue_name": "The Midway",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "The Midway and Insomniac present Italian electro-house pioneer Benny Benassi, known for his global hit 'Satisfaction'.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$40-49 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/benny-benassi-184182",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-14T13:20:55.955218Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-16T00:11:42.481076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_midway|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f5ebbd2ee778",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Sat May 23 2026",
              "event_time": "2026-05-23T19:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/cc/comedy-oakland-at-elbo-room-4794459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6532766bb043",
              "venue_id": "venue_berkeley_rep",
              "title": "RootStock Arts Live: An Evening with the BayRaagis",
              "event_time": "2026-05-23T18:45:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-23T18:45:00",
              "event_date": "2026-05-23",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "An intimate preshow evening of live Indian classical fusion music featuring the BayRaagis. Part of The Lunchbox Music Series.",
              "event_types": [
                "theater"
              ],
              "price_info": "Free and open to all with RSVP",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d779d591586a",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Preview)",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance is a preview before the official opening night.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_373e3be6737a",
              "venue_id": "venue_the_bistro",
              "title": "Nomad",
              "event_time": "2026-05-23T15:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-23T15:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Afternoon live music performance by Nomad.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free / No Cover",
              "url": "https://happeningnext.com/event/nomad-at-the-bistro-in-hayward-ca-eid3a07v6v6v1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cea8c8c42a57",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Live Music: Local Blues, RnB & Soul",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Weekly Saturday night live music series featuring the best of the Bay Area's blues and soul scene.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_982bd09dc56c",
              "venue_id": "venue_mr_tipples",
              "title": "Steven Lugerner's SLUGish Ensemble",
              "event_time": "2026-05-23T19:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Multi-instrumentalist Steven Lugerner leads this ensemble in a textured blend of composition and improvisation, merging jazz, chamber music, and experimental sounds.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/steven-lugerners-slugish-ensemble/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f229a758c34b",
              "venue_id": "venue_mr_tipples",
              "title": "Malachi Whitson Quintet",
              "event_time": "2026-05-23T22:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-23T22:30:00",
              "event_date": "2026-05-23",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Drummer Malachi Whitson leads a powerhouse quintet featuring Giulio Cetto, Kazemde George, and Kai Lyons.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/malachi-whitson-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ef59a405cb84",
              "venue_id": "venue_vino_locale",
              "title": "Saturday Night Jazz",
              "event_time": "2026-05-23T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-23T18:30:00",
              "event_date": "2026-05-23",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "Saturday evening live jazz performance. Sit by the fire pits and enjoy the beautiful tunes of local jazz musicians.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5df0d37d3ac8",
              "venue_id": "venue_alhambra_public_house",
              "title": "Perry Sing Sinatra Dinner Show!",
              "event_time": "2026-05-23T19:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Frank Sinatra live music tribute dinner show. Minimum spending of $50 per person applies.",
              "event_types": [],
              "price_info": "From $5.00",
              "url": "https://www.eventbrite.com/e/perry-sing-sinatra-dinner-show-frank-sinatra-live-music-tribute-tickets-101010101010",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4dce1e66ab55",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Saturday Night Live Music",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Live music featuring local bands.",
              "event_types": [],
              "price_info": "Check venue for cover",
              "url": "https://www.theluckyhorseshoebar.com/calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bcec4f060de4",
              "venue_id": "venue_cry_baby",
              "title": "Dayshift",
              "event_time": "2026-05-23T17:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-23T17:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Daytime party presented by Bingo Loco and Dayshift for the 30+ crowd.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/dayshift-the-30-daytime-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_da99aa2a9fab",
              "venue_id": "venue_cry_baby",
              "title": "Crash Out",
              "event_time": "2026-05-23T22:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "International dance party featuring afrobeats, dancehall, soca, reggaeton, hip-hop, R&B, and classic bangers; lineup includes Red Corvette, Internattonalz, Hauna Bauna, Bobby Flowers, and AMH, hosted by MC inHERgy.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/crash-out-afrobeats-dancehall-hip-hop-more/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6f698e9228a1",
              "venue_id": "venue_la_pena",
              "title": "Larry & Joe Workshop",
              "event_time": "2026-05-23T13:30:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-23T13:30:00",
              "event_date": "2026-05-23",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "A free workshop and sing-along session with Larry Bellorín and Joe Troop. Instruments are welcome and no experience is needed.",
              "event_types": [],
              "price_info": "Free – $10",
              "url": "https://lapena.org/event/larry-joe-free-latin-strings-workshop-sing-along/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_13befdfb3752",
              "venue_id": "venue_la_pena",
              "title": "KPFA 77th Birthday: John Santos",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "KPFA Radio celebrates its 77th birthday with a special live performance by the renowned John Santos Sextet.",
              "event_types": [],
              "price_info": "$35 – $40",
              "url": "https://lapena.org/event/kpfa-77th-birthday-celebration-john-santos-sextet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_38e9313460f1",
              "venue_id": "venue_the_monarch",
              "title": "Juanchii",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Juanchii performs a set in the Monarch Upstairs Lounge.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/juanchii-in-the-lounge-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-05-15T20:42:15.861775Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monarch|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be10d01f430f",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Solo Piano & Jazz Trio",
              "event_time": "2026-05-23T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-05-23T20:30:00",
              "event_date": "2026-05-23",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Enjoy live jazz at Bix, a classic San Francisco supper club. The evening begins with solo piano from 6:00 PM to 8:00 PM, followed by a spirited jazz trio starting at 8:30 PM.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_98909b6c21e6",
              "venue_id": "venue_dance_mission",
              "title": "The GroundWorks",
              "event_time": "2026-05-23T19:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Explore Afro-Brazilian dance with Metzi Henriquez and Jose Rivera of Fogo Na Roupa. You will learn movements coined by award winning SF Carnaval Grand Champions Fogo Na Roupa celebrating the different styles of samba including Afro Samba, Samba Reggea, Samba no pe and Samba do Roda. The classes i...",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/03/may-22-24-homegrown-the-ground-works/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dance_mission|2026-05-23",
              "run_id": "run_94a592693cc4",
              "run_label": "The GroundWorks, May 23 – May 24",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a583d7cbd36",
              "venue_id": "venue_bayfront_theater",
              "title": "Intro to Improv with Diana Brown",
              "event_time": "2026-05-23T14:30:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-05-23T14:30:00",
              "event_date": "2026-05-23",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A welcoming introductory class at the BATS Bayfront Theatre to experience the magic of improv.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.eventbrite.com/e/intro-to-improv-with-diana-brown-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_96c6a9476286",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: Women of the West",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised tale set in the Old West, featuring the stories of women on the frontier, their struggles, and their triumphs.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-women-of-the-west-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e2be2575ae7d",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Lucy Darling: Simply Darling",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "An evening of magic and comedy with the award-winning Lucy Darling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/lucy-darling-simply-darling/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_93edb7eeb10a",
              "venue_id": "venue_biscuits__blues",
              "title": "Big Daddy Cade's Tribute to B.B. King",
              "event_time": "2026-05-23T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-23T18:30:00",
              "event_date": "2026-05-23",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "The only tribute act to have personal approval from B.B. King himself; Big Daddy Cade brings the real deal to San Francisco with the BluesMasters.",
              "event_types": [],
              "price_info": "$25+ Admission",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260522-24bigdaddycade",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-23",
              "run_id": "run_21805abf8266",
              "run_label": "Big Daddy Cade's Tribute to B.B. King, May 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c32ede916397",
              "venue_id": "venue_caravan_lounge",
              "title": "Blazing metal at the Caravan Lounge",
              "event_time": "2026-05-23T22:00:00",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "An electric night of metal music organized by Dev1ous, featuring local and touring bands.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://allevents.in/san%20jose/blazing-metal-at-the-caravan-lounge/80002643501234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-16T00:28:14.570954Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_60fcc658c5f0",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Pizza and Game Night",
              "event_time": "2026-05-23T18:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-05-23T18:00:00",
              "event_date": "2026-05-23",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Community game night in the fellowship hall. All ages welcome; bring games to share. Pizza provided.",
              "event_types": [],
              "price_info": "Free; RSVP requested",
              "url": "https://mailchi.mp/b5773b963445/gathered-17313107",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-16T01:02:23.851080Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_36d621241eeb",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Irene Tu",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Irene Tu, featuring Gary Michael Anderson and Walker Glenn.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/122887",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-23",
              "run_id": "run_a0fc9026894c",
              "run_label": "Irene Tu, May 21 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0a4d8b1a673e",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Karaoke Nights",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring karaoke event at Dark Horse Lounge. Listed as every Tuesday and Saturday starting at 8pm.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/karaoke-nights/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2f353b03171d",
              "venue_id": "venue_the_freight__salvage",
              "title": "Tony Trischka's EarlJam",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Bluegrass tribute concert to Earl Scruggs featuring Michael Daves.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$44/$49",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8e622ee0ac40",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-05-23T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Prepare for an unforgettable night of live music with **Carlos Oliveira / Kata-Vento / Chloe Scott**! Experience Carlos Oliveira's innovative compositions on guitar and percussion as his **Kata-Vento** project takes the stage. Witness a stunning flute ensemble led by the brilliant **Chloe Scott**...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "https://sflive.art/event/carlos-oliveira-kata-vento-chloe-scott/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d505b995f045",
              "venue_id": "venue_meyhouse",
              "title": "Swing Meets Clave",
              "event_time": "2026-05-23T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-23T17:00:00",
              "event_date": "2026-05-23",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Trumpeter Erik Jekabson and saxophonist Michael O’Neill blend straight-ahead jazz and Afro-Latin rhythm in a groove-centered live program.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/keeping-the-groove-swing-meets-clave-sat-5-23-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7ba7bb05aaff",
              "venue_id": "venue_meyhouse",
              "title": "Swing Meets Clave",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Trumpeter Erik Jekabson and saxophonist Michael O’Neill blend straight-ahead jazz and Afro-Latin rhythm in a groove-centered live program.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/keeping-the-groove-swing-meets-clave-sat-5-23-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_67d6dd83bb64",
              "venue_id": "venue_scopo_divino",
              "title": "Ricky Bobby with Barb Murphy",
              "event_time": "2026-05-23T18:00:00",
              "venue_name": "Scopo Divino",
              "event_start": "2026-05-23T18:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "A Bay Area trio reimagining classics and modern hits with guitar, voice, and cello, bringing a fresh vibe and upbeat mood.",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover",
              "url": "https://www.scopodivino.com/events/ricky-bobby",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scopo_divino",
                  "source_name": "Scopo Divino",
                  "fetched_at": "2026-05-16T11:10:22.174562Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_scopo_divino|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8fafd0bc81cc",
              "venue_id": "venue_the_independent",
              "title": "HANNAH LEW",
              "event_time": "5.23 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Celebrate the release of Hannah Lew's new album with a night of indie music featuring supporting acts Catherine Moan and April Magazine.",
              "event_types": [
                "live_music",
                "rock",
                "electronic",
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/hannah-lew/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-17T10:23:30.992836Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-17T11:27:59.268227Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-17T13:38:17.846758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-17T13:59:15.666196Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_362e81371ed8",
              "venue_id": "venue_mvcpa",
              "title": "Don Quixote",
              "event_time": "2026-05-23 19:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "In celebration of Western Ballet’s 50th Anniversary, Don Quixote premieres as a full-length, comedic ballet in three acts, bursting with vibrant Spanish flair, exhilarating virtuosity, and joyful storytelling.",
              "event_types": [
                "dance"
              ],
              "price_info": "$52 - $63.50",
              "url": "https://tickets.mvcpa.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-05-17T10:54:35.093784Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mvcpa|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f96e2a8240f",
              "venue_id": "venue_mvcpa",
              "title": "Worth Fighting For",
              "event_time": "2026-05-23T14:00:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Worth Fighting For is a powerful musical celebration of patriotism through songs of hope, protest, and sacrifice.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$24 - $35",
              "url": "https://tickets.mvcpa.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-05-17T10:54:35.093784Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mvcpa|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c8c4f334271",
              "venue_id": "venue_the_back_room",
              "title": "Quarter Tone Poets",
              "event_time": "Sat, May 23 2026, 2pm - 4pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/quarter-tone-poets?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6fdcd6a53f5e",
              "venue_id": "venue_the_back_room",
              "title": "David Byrd & Byrds of a Feather",
              "event_time": "Sat, May 23 2026, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/david-byrd-and-byrds-of-a-feather?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_687f7f7b0ddd",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Saturday night DJ sessions featuring local talent and a lively neighborhood crowd. Craft cocktails and 12 rotating taps available.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_178ae568ca97",
              "venue_id": "venue_the_ritz",
              "title": "Electric Feels",
              "event_time": "2026-05-23T21:00:57-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-23T21:00:57",
              "event_date": "2026-05-23",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Loud Village Presents\nELECTRIC FEELS\nINDIE ROCK + INDIE DANCE PARTY\n\n \n\nSATURDAY MAY 23, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 Early Bird",
              "url": "https://www.ticketweb.com/event/electric-feels-indie-rock-the-ritz-tickets/14165694",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-17T14:12:03.974254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2b42ba136326",
              "venue_id": "venue_public_works",
              "title": "SUNNY RAVE",
              "event_time": "2026-05-23T21:30:00",
              "venue_name": "Public Works",
              "event_start": "2026-05-23T21:30:00",
              "event_date": "2026-05-23",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A high-energy rave experience in San Francisco featuring dj pressed.",
              "event_types": [],
              "price_info": "From $25",
              "url": "https://publicsf.com/events/sunny-rave-san-francisco-w-dj-pressed/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9299e028e8c5",
              "venue_id": "venue_the_midway",
              "title": "Koastle + CONRAD.",
              "event_time": "05/23/2026 2pm-8pm",
              "venue_name": "The Midway",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "TERRACE ∙ OUTDOORS ∙ 21+",
              "event_types": [],
              "price_info": "$20-25 | 21+",
              "url": "https://themidwaysf.com/event/koastle-conrad/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_423b42a59f66",
              "venue_id": "venue_the_midway",
              "title": "K-POP Superstars",
              "event_time": "2026-05-23",
              "venue_name": "The Midway",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "RIDE ∙ INDOORS ∙ ALL",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/k-pop-superstars/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ff7863253310",
              "venue_id": "venue_the_midway",
              "title": "Disclosure vs. Fred Again.. Tribute Dance Party",
              "event_time": "2026-05-23",
              "venue_name": "The Midway",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/disclosure-vs-fred-again-tribute-dance-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c57af531b658",
              "venue_id": "venue_kilowatt",
              "title": "TV Star, Chime School & Slumped",
              "event_time": "2026-05-23T13:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-23T13:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b2744e973824",
              "venue_id": "venue_kilowatt",
              "title": "Sun Atoms, Spyrals & Pets",
              "event_time": "2026-05-23T19:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$15.66",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87619a021244",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-23T19:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-23T19:45:00",
              "event_date": "2026-05-23",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0477f1ab9abe",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-23T21:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-23T21:45:00",
              "event_date": "2026-05-23",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Late stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3ea2d9aea0d0",
              "venue_id": "venue_rootstock_arts",
              "title": "The BayRaagis",
              "event_time": "2026-05-23T18:45:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-05-23T18:45:00",
              "event_date": "2026-05-23",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Part of a recurring community series, this event features the BayRaagis ensemble sharing their unique musical perspectives. The evening offers an intimate look at the group's creative process and collaborative sound.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_75cef71270bb",
              "venue_id": "venue_tommy_ts",
              "title": "BRUCE BRUCE",
              "event_time": "2026-05-23 2026-05-23",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-23",
              "run_id": "run_3126276a800d",
              "run_label": "BRUCE BRUCE, May 22 – May 24",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_996f1f56a57d",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-23T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-23",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_378f66c797f1",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-23T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-23",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5f79f0e262b8",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Saturday night jazz and soul session with Chris Siebert on the Hammond organ, accompanied by rotating local musicians.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_df2f47197d6a",
              "venue_id": "venue_the_lab",
              "title": "keyon gaskin: uncty",
              "event_time": "Saturday, May 23, 2026 8:00 PM",
              "venue_name": "The Lab",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "Buy Tickets\nDoors 7:30pm / Show 8pm\n$17 adv / $20 NOTAFLOF door / $9 subsidized / free or discounted for members",
              "event_types": [
                "dance",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.thelab.org/projects/2026/3/24/keyon-gaskin-uncty",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-05-18T10:14:45.425672Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_69499da0951c",
              "venue_id": "venue_the_sound_room",
              "title": "Aki Kumar Band",
              "event_time": "Saturday, May 23, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "A masterful harmonica player, soulful vocalist, band-leader, drummer and producer, Kumar is a man of many talents and one of the most prolific artists in the SF Bay Area today. He has successfully blended retro Indian music into his presentation, making for a unique, electrifying, multi-cultural mash-up that sounds like no one else, yet never loses touch with the inspiration it draws from the blues. A veteran of the San Jose music scene for two decades, Kumar was hailed as \"...King of ‘Bollywood blues’ music\" by SJ Mercury News (2022) and received the Metro Silicon Valley Gold Award for Best Band (2024).\n\nKumar's \"Little Village\" releases \"Aki Goes To Bollywood\" (2016) and \"Hindi Man Blues\" (2018) are considered ground-breaking albums that have garnered international critical acclaim. In 2020, Kumar made major news with the world-wide launch of his album \"Dilruba\" on Sony Music. In 2021, Little Village released Kumar's uplifting reggae-inspired single \"Zindagi\" (Life). 2025 marked a milestone year for Kumar with the release of his self-produced “Little Village” album “God Bless The USA”\n\nTickets at Aki Kumar",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/aki-kumar-band-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34bd20fb0f36",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Oren Cohen Quartet",
              "event_time": "5/23/2026 4:00 PM",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-23T16:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Oren Cohen, alto saxophoneVictor Taraboukhine, tenor saxophoneSai Ray, trumpetMax Roston-Saul, pianoMilo Kolesas-Stolzenberg, bassLucas Quan, drums More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23036",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01b4cf15ca1a",
              "venue_id": "venue_make_out_room",
              "title": "Make Out Room Record Swap #3",
              "event_time": "2026-05-23T11:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-23T11:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "A dozen collectors and record nerds breaking out their deep crates for public consumption. Vendors will be DJing and the bar will feature drink specials.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.sfstation.com/make-out-room-record-swap-3-e4701258",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bd86081b44e7",
              "venue_id": "venue_make_out_room",
              "title": "Rain Parade & Russ Tolman",
              "event_time": "2026-05-23T19:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Live music performance and record release party. Doors open at 6:30 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.shazam.com/concert/russ-tolman-san-francisco-make-out-room-may-23-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a5ca74ccb6bf",
              "venue_id": "venue_make_out_room",
              "title": "El SUPERRITMO!",
              "event_time": "2026-05-23T22:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "DJ El Kool Kyle and DJ Roger Más spinning Cumbia, Dancehall, Hip-Hop, Reggaeton, and Salsa Buena.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://dothebay.com/events/2026/5/23/el-superritmo-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3ce3ed5f3ff4",
              "venue_id": "venue_madrone_art_bar",
              "title": "Garage O’Clock Rock",
              "event_time": "May 23 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-23T18:00:00",
              "event_date": "2026-05-23",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Garage O’Clock Rock with DJ Scooter Stalin and DJ Grooves McFard spinning 80s, reggae, rocksteady, surf, Hawaiian, oldies, and garage. 6 – 9pm NO COVER",
              "event_types": [
                "dj_party"
              ],
              "price_info": "NO COVER",
              "url": "https://madroneartbar.com/event/garage-oclock-rock/2026-05-23/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ddf4d78992ad",
              "venue_id": "venue_madrone_art_bar",
              "title": "Let’s Go Disco",
              "event_time": "May 23 @ 9:30 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-23T21:30:00",
              "event_date": "2026-05-23",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Saturday, May 23rd, in San Francisco, it's going to be a hot one... Welcoming back lovetempo to the party! lovetempo is the soul-drenched, \"lonely-hearts disco\" project of Brooklyn-based artist Mattie Safer (formerly of The Rapture and longtime touring member of Poolside). The project blends saudade sentimentality and shimmering disco with sophisticated house, jazz-funk, and global [&hellip;]",
              "event_types": [
                "live_music",
                "electronic",
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/lets-go-disco-8-2026-01-24-2026-02-28-2026-03-28-2026-04-25-2026-05-23/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9502b67917ee",
              "venue_id": "venue_rite_spot_cafe",
              "title": "Don Tooten",
              "event_time": "May 23, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Don Tooten",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aedb1af674a3",
              "venue_id": "venue_sfjazz_lab",
              "title": "GUNHILD CARLING",
              "event_time": "May 23 2026 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Almost Sold Out",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Almost Sold Out",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/gunhild-carlingd/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_58634e01e52d",
              "venue_id": "venue_sfjazz_miner",
              "title": "MAKAYA MCCRAVEN",
              "event_time": "May 23 2026 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "'In These Times' Revisited & Reworked w/ strings & special guests",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Member Discount",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/makaya-mccraven/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ed3d0a22d17",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "SF Bay Area Tatreez Circle",
              "event_time": "Saturday, May 23, 2026 1:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-23T13:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Join us for an afternoon of tatreez, Palestinian embroidery, as we come together in community to stitch. A tatreez circle is a gathering of tatreez artists who stitch together while sharing stories and learning from each other. All levels of experience are welcome but this is not meant to be a workshop. We will not be teaching tatreez but are happy to help guide you on what you need to get started before the event. Bring your own projects and your own supplies.\n\nWhat is Tatreez? Tatreez is the art of Palestinian embroidery that has been practiced in Palestine for centuries. A practice passed down generationally from mother to daughter. Taking inspiration from the land and everyday life, Palestinian women hand stitched motifs and patterns directly onto their thobe that represented their social status, the villages/regions from which they hailed and their individuality.\n\nCan I join if I'm not Palestinian? YES! This is a space for Palestinians and non-Palestinians who share a love of tatreez. Regardless of who practices tatreez, it is important to always remember the history of this beautiful art and the role it plays today in the Palestinian resistance movement, both in Palestine and within the diaspora. These circles are a safe space for Palestinians and our allies.",
              "event_types": [
                "community",
                "art"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/sf-bay-area-tatreez-circle-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5200b29d8d24",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing",
              "event_time": "Saturday, May 23, 2026 7pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Since the beginning of time, women have always been considered the weaker sex. But when it comes to war, they no doubt have the upper hand. The films in this program show the many ways women (as well as non-binary and trans people) have stood up to the tyranny of war and patriarchal violence with little more than a strong sense of justice, a powerful life force and a righteous feminist touch.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "Admission: $15 (discount for members)",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-05-18T10:46:48.460857Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_791c0ae0083a",
              "venue_id": "venue_dawn_club",
              "title": "ADAM KLIPPLE SOUL JAZZ QUINTET",
              "event_time": "Saturday, May 23, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Adam Klipple, who has been described as \"a standout pianist who has gone to school on McCoy Tyner and Cecil Taylor and earned his degree,\" plays piano, Hammond organ, sampler, and a variety of vintage keyboards. He currently is a member of the legendary jazz rock band Blood, Sweat & Tears. He also currently performs and records with jazz phenom Veronica Swift.Adam has recorded and performed onstage with the likes of Ghostface Killah, Lauryn Hill, Graham Haynes, the Sun Ra Arkestra, Craig Harris, Joe Bowie's Defunkt, Sekou Sundiata, Marc Ribot, John Medeski, Kurt Rosenwinkle, Carla Cook, Dave Fiuczynski, David Gilmore, Josh Roseman, Peter Apfelbaum, Jay Rodriguez, Groove Collective, and Smokey Robinson. He has appeared at renowned venues including the Blue Note, Iridium, the Jazz Standard, Blues Alley, and the Knitting Factory, and at jazz festivals around the world.Also a composer and arranger, Adam has earned grants from Jazz at Lincoln Center, the Kennedy Center, Arts International, Meet the Composer, and the U.S. Department of State, enabling him to tour and teach master classes in southeast Asia, the Pacific Rim, Russia, Kyrgyzstan, Uzbekistan, Central Asia, and the Caucasus.  \n\n\n  \n#block-65b672db5458296d8ed4 {\n    \n    \n    \n\n\n\n  }\n\n  #block-65b672db5458296d8ed4 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-65b672db5458296d8ed4 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-65b672db5458296d8ed4 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-65b672db5458296d8ed4 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-65b672db5458296d8ed4 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-65b672db5458296d8ed4 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/adam-klipple-quartet-1-swwlf-2redx-gwtbp-9ak3n-p8442-jxlfs-nckgz-ykzks-tgb8m-rttcz-jbwpt-3bnnk-kw3np-mhbk9-2p9h4-ccrkp-tzpjk-cejr9-ln2wg-5pe6f-d22sw-whsmj-9rk74-663re-3pm9w-sral3-hw2tm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4677477ae3bf",
              "venue_id": "venue_dawn_club",
              "title": "LATE NIGHT: SHELDON ALEXANDER",
              "event_time": "2026-05-23T23:59:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-23T23:59:00",
              "event_date": "2026-05-23",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Sheldon Alexander is a professional drummer, educator, and composer from the bay area that specializes in Jazz, R&B, Funk, Soul and other Afro-Rooted genres. With his strong musical background, he received his undergraduate degree from the prestigious California Jazz Conservatory in Berkley, California. Through dedication, passion, and an unwavering commitment to his craft, Sheldon has carved out a place for himself in the Bay Area music.\n\n\n  \n#block-53a1e5684e1a6f1e6b4a {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-53a1e5684e1a6f1e6b4a .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-53a1e5684e1a6f1e6b4a {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-53a1e5684e1a6f1e6b4a {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-53a1e5684e1a6f1e6b4a {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-53a1e5684e1a6f1e6b4a {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-53a1e5684e1a6f1e6b4a .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/sheldon-alexander-trio-1-dnxr3-28rxg-f29g7-a3936-h2h5z-7erkx-t3rna-9ezay-d8g5m",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aa7dc0e93fa5",
              "venue_id": "venue_dawn_club",
              "title": "LATE NIGHT: SHELDON ALEXANDER",
              "event_time": "2026-05-23T01:30:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-23T01:30:00",
              "event_date": "2026-05-23",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Sheldon Alexander is a professional drummer, educator, and composer from the bay area that specializes in Jazz, R&B, Funk, Soul and other Afro-Rooted genres. With his strong musical background, he received his undergraduate degree from the prestigious California Jazz Conservatory in Berkley, California. Through dedication, passion, and an unwavering commitment to his craft, Sheldon has carved out a place for himself in the Bay Area music.\n\n\n  \n#block-53a1e5684e1a6f1e6b4a {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-53a1e5684e1a6f1e6b4a .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-53a1e5684e1a6f1e6b4a {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-53a1e5684e1a6f1e6b4a {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-53a1e5684e1a6f1e6b4a {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-53a1e5684e1a6f1e6b4a {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-53a1e5684e1a6f1e6b4a .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/sheldon-alexander-trio-1-dnxr3-28rxg-f29g7-a3936-h2h5z-7erkx-t3rna-9ezay-d8g5m",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dd5d56abe06d",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Lavay Smith & Her Red Hot Skillet Lickers",
              "event_time": "Saturday, May 23, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Lavay Smith & Her Red Hot Skillet Lickers have performed at many of the top festivals and concert venues in the US, Europe, Japan and Canada.  They have headlined at Jazz At Lincoln Center on New Year’s Eve, and were featured at the official Oscars after-party in Hollywood.  Performing classics and obscure gems from the golden age of jazz, blues and R&B, Lavay and her all-star band serve up soulful candy for your ears and an instant recipe for dancing and good times.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/lavay-smith-her-red-hot-skillet-lickers-14/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_908249b7ab4a",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Fog City Swing",
              "event_time": "Saturday, May 23, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Ladies and Gentlemen, introducing Fog City Swing! The bay area’s newest and hottest jazz and swing band featuring an electrifying three horn front line, stellar crooning vocals, and a swing till you drop rhythm section. Enjoy an evening of swing, hard bop, and even some classic pop favorites performed only the way they can! This seven piece ensemble will transport you to the 1940’s and beyond, it is truly the world’s smallest big band!",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/fog-city-swing-7/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87bd447934e3",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, May 23, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-23T22:30:00",
              "event_date": "2026-05-23",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keeping folks up past 10 pm in SF is no easy feat, but Key’s owner Simon Rowe has been showcasing the best of the Bay Area’s organ trios in his late night Saturday sets.",
              "event_types": [],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-50/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a97a5ccece4b",
              "venue_id": "venue_odc_theater",
              "title": "String Quartet No. ATE",
              "event_time": "5/23/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002x4Uf2AI",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_623ce055d4e8",
              "venue_id": "venue_poor_house_bistro",
              "title": "Mike Zito Band",
              "event_time": "Sat, May 23, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-23T18:00:00",
              "event_date": "2026-05-23",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "The Mike Zito Band delivers a powerhouse blend of blues, rock, and Southern soul that has earned audiences across the country a reason to keep coming back for more. Fronted by acclaimed guitarist, singer, and…",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5416",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_675cd99069cd",
              "venue_id": "venue_brava_theater",
              "title": "Candlelight: Tribute to Arijit Singh",
              "event_time": "May 23, 2026",
              "venue_name": "Brava Theater",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "⭐ Candlelight concerts bring the magic of a live, multi-sensory musical experience to awe-inspiring locations like never seen before in San Francisco. Get your tickets now to discover the music of Arijit Singh at Brava Theater Center under the gentle glow of candlelight.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/candlelight-arijit-singh-hkswk-l8a7g-rtztf-kwa2a-zswe8-48bgd",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-18T11:42:14.495739Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3f8eaa69cb31",
              "venue_id": "venue_winters",
              "title": "The Common Men/Low Bote/AC Transit",
              "event_time": "2026-05-23T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_41147b574289",
              "venue_id": "venue_omca",
              "title": "Gallery Chats",
              "event_time": "2026-05-23",
              "venue_name": "OMCA",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Join us for Gallery Chats, an opportunity to chat with and ask questions of our enthusiastic and knowledgeable OMCA Facilitators.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "Admission ticket required",
              "url": "https://museumca.org/event/gallery-chats-at-omca-25/2026-05-23/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa0299a3a6f1",
              "venue_id": "venue_presidio_theater",
              "title": "Songs From A Sinking Ship",
              "event_time": "May 23, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Flamenco Arts International presents a dynamic performance of traditional Spanish dance and music centered on a unique thematic journey.",
              "event_types": [
                "live_music",
                "latin_world",
                "dance"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/flamenco-arts-international-songs-from-a-sinking-ship",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_38bf9cfce95e",
              "venue_id": "venue_piedmont_center",
              "title": "In Bloom: Spring Art Exhibition",
              "event_time": "2026-05-23",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Center for Slavic Arts & Culture. Gallery hours weekends 11 AM - 2 PM.",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-23",
              "run_id": "run_93f04bfeefb0",
              "run_label": "In Bloom: Spring Art Exhibition, May 18 – May 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5c07d8fcb37a",
              "venue_id": "venue_piedmont_center",
              "title": "Eurocana: Music for the People",
              "event_time": "2026-05-23T19:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "George Cole Quartet",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.ticketsignup.io/colefour",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4337ac210641",
              "venue_id": "venue_artists_television_access",
              "title": "ISM2; THE DE-EVOLUTION BAND!",
              "event_time": "Saturday, May 23, 2026, 7:00 pm",
              "venue_name": "Television Access",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "922 Valencia Street, San Francisco, CA 94110",
              "description": "This program features a performance or profile of ISM2, a musical group identified as the De-Evolution Band.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.atasite.org/?p=16426",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "Television Access",
                  "fetched_at": "2026-05-18T12:02:41.326330Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_artists_television_access|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_05abf776bef4",
              "venue_id": "venue_cowell_theater",
              "title": "Mark Foehringer’s Nutcracker Sweets",
              "event_time": "MAY 23, 2026 11AM",
              "venue_name": "Cowell Theater",
              "event_start": "2026-05-23T11:00:00",
              "event_date": "2026-05-23",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Celebrate the holidays at Fort Mason Center for Arts & Culture with Mark Foehringer’s Nutcracker Sweets, a 50-minute production of the classic holiday ballet for families with small children and audiences of all ages.",
              "event_types": [
                "theater",
                "dance",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/mark-foehringers-nutcracker-sweets-2025_2026-05-23-11-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cowell_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_167169a8de01",
              "venue_id": "venue_presidio_theater",
              "title": "Songs From A Sinking Ship",
              "event_time": "MAY 23, 2026 2PM",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "A mysterious siren’s warning sets off a chain of events that transforms a routine voyage into a supernatural battle between ego and redemption— told through the passionate art of flamenco. Thunder cracks, and the ship veers off course. Will the crew rise above their own de...",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/flamenco-arts-international-songs-from-a-sinking-ship/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_52dd8af7dc82",
              "venue_id": "venue_oracle_park",
              "title": "White Sox vs. Giants",
              "event_time": "MAY 23, 2026 4:59PM",
              "venue_name": "Oracle Park",
              "event_start": "2026-05-23T16:59:00",
              "event_date": "2026-05-23",
              "venue_address": "24 Willie Mays Plaza, San Francisco, CA 94107",
              "description": "Buy Chicago White Sox at San Francisco Giants tickets for 05/23/2026 in San Francisco, CA from Vivid Seats and be there in person for all the action!",
              "event_types": [
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/chicago-white-sox-at-san-francisco-giants-httpswwwstubhubcomsan-francisco-giants-san-francisco-tickets-5-24-2026event159262285/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oracle_park|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0af30639b6da",
              "venue_id": "venue_gray_area",
              "title": "Carnaval SF Mardi Gras Kick-Off",
              "event_time": "MAY 23, 2026 5PM",
              "venue_name": "Gray Area",
              "event_start": "2026-05-23T17:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/carnaval-sf-mardi-gras-fat-tuesday-kick-off-celebration-ronnies-awesome-list-httpswwwronniesawesomelistcommardi-grassf-mardi-gras/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9a07a5925743",
              "venue_id": "venue_1015_folsom",
              "title": "PURA Saturdays",
              "event_time": "MAY 23, 2026 10PM",
              "venue_name": "1015 Folsom",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Pura Saturdays is a popular, high-energy Latin-themed nightclub event in the Bay Area (San Francisco) known for its diverse crowd, multiple rooms for different music (Salsa, Bachata, Reggaeton, EDM), top DJs, and vibrant party atmosphere, offering a premier nightlife experience with a focus on La...",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/pura-saturdays-httpswleventimuseventpura-saturdays668674_2026-05-23-22-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bc12c3e7262b",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE BEACH BOYS TRIBUTE CONCERT",
              "event_time": "Saturday, May 23 Show: 7:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-05-23T19:00:00",
              "event_date": "2026-05-23",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Experience the iconic surf-rock sounds and timeless summer harmonies of The Beach Boys in this live tribute concert.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-beach-boys-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf79a7ca4039",
              "venue_id": "venue_cornerstone",
              "title": "Neoni",
              "event_time": "2026-05-23T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-23T03:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Neoni Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/neoni-181888",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dcedb5f88473",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-23T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-23",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ece1d92a4f1",
              "venue_id": "venue_boom_boom_room",
              "title": "Wiley’s Coyotes",
              "event_time": "Sat, May 23 | Doors: 8 pm // Show: 9:45 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-23T21:45:00",
              "event_date": "2026-05-23",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Wiley’s Coyotes bring together a premier lineup of musicians for an all-star live band performance.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/wileys-coyotes-all-star-band-3/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_582bbbd532fd",
              "venue_id": "venue_dna_lounge",
              "title": "Big Muscle Party: Dogtag Edition",
              "event_time": "2026-05-23T21:00:00",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "21+.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1e6c8afb1a4",
              "venue_id": "venue_dna_lounge",
              "title": "Why 2K",
              "event_time": "2026-05-23T21:30:00",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-23T21:30:00",
              "event_date": "2026-05-23",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "90s and 2000s Throwbacks: Hip-Hop, R&B, Pop, Indie, EDM, Latin. 18+.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eef1abfdda31",
              "venue_id": "venue_dna_lounge",
              "title": "Akimbos 44 and Friends",
              "event_time": "2026-05-23",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_059ddc0a9d32",
              "venue_id": "venue_ashkenaz",
              "title": "Namaskar by Sameer Gupta",
              "event_time": "05/23/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-23T19:30:00",
              "event_date": "2026-05-23",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Indian Classical and Jazz Percussion",
              "event_types": [
                "live_music",
                "jazz",
                "indian_classical"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/179539",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_203464263e97",
              "venue_id": "venue_roxy",
              "title": "Farewell My Concubine",
              "event_time": "Saturday, May 23, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of the acclaimed historical drama that follows two actors in the Peking Opera through decades of political upheaval.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/farewell-my-concubine/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1835b1cdec1",
              "venue_id": "venue_roxy",
              "title": "Steal This Story, Please!",
              "event_time": "Saturday, May 23, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "An independent film screening or storytelling event hosted at the theater.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/steal-this-story-please-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae911b5c4465",
              "venue_id": "venue_roxy",
              "title": "The Seduction of Mimi (4K Restoration)",
              "event_time": "Saturday, May 23, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A 4K restored presentation of the legendary Bollywood action epic about two outlaws hired to capture a ruthless bandit.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/the-seduction-of-mimi-4k-restoration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b7b2972d8dc4",
              "venue_id": "venue_4_star_theater",
              "title": "Dr. Seuss Classic Cartoons",
              "event_time": "May 23, 2026 10:00 AM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-23T10:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This family-friendly screening brings the whimsical world of Dr. Seuss to the big screen. The program features a collection of beloved animated shorts based on his classic stories.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/dr-seuss-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c12966cfd65",
              "venue_id": "venue_4_star_theater",
              "title": "Burn After Reading",
              "event_time": "May 23, 2026 11:45 AM – 1:40 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-23T11:45:00",
              "event_date": "2026-05-23",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Part of a retrospective on the Coen brothers, this screening features their dark comedy about misplaced CIA memoirs. The film stars an ensemble cast including George Clooney, Brad Pitt, and Frances McDormand.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/burn-after-reading-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64f843f88456",
              "venue_id": "venue_4_star_theater",
              "title": "Raising Arizona",
              "event_time": "May 23, 2026 2:15 PM – 4:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-23T14:15:00",
              "event_date": "2026-05-23",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Enjoy a screening of the Coen brothers' high-energy comedy about a childless couple who decides to kidnap a quintuplet. This classic film is celebrated for its unique visual style and eccentric characters.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/raising-arizona-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43f85e260b94",
              "venue_id": "venue_4_star_theater",
              "title": "Sun Ra: Do the Impossible",
              "event_time": "May 23, 2026 4:45 PM – 6:45 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-23T16:45:00",
              "event_date": "2026-05-23",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Celebrate the life of jazz visionary Sun Ra with a screening of the documentary 'Do the Impossible.' The event includes a discussion and Q&A session exploring his cosmic philosophy and musical impact.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/sun-ra-celebration-with-director-q-a",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3dbc86935ddd",
              "venue_id": "venue_4_star_theater",
              "title": "Samuél Gonzalez Ensemble",
              "event_time": "May 23, 2026 8:00 PM – 10:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The Samuél Gonzalez ensemble performs live music inspired by the legendary Sun Ra. This concert is part of a larger celebration of the artist's avant-garde jazz legacy.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/sun-ra-celebration-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b56f0d752b2d",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-23",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-23",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8cfc5a489e5c",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-23",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-23",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8bbe24c2ffa3",
              "venue_id": "venue_el_rio",
              "title": "Mango!",
              "event_time": "2026-05-23T14:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-23T14:00:00",
              "event_date": "2026-05-23",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "The legendary queer dance party for women and their friends, happening every 4th Saturday on the patio.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://dothebay.com/events/2026/5/23/mango",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_282c00f103d0",
              "venue_id": "venue_local_edition",
              "title": "Victor Little’s Big Hit",
              "event_time": "May 23, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-23T20:30:00",
              "event_date": "2026-05-23",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "8:30pm - 12:30amBass - Victor Little’s Big HitGuitar - Ben Misterka (Collectivity, LyricsBorn)Vocals - Erin Honeywell (Jazz Mafia)Drums - Hassan Hurd (Fishbone)Victor Little’s Big Hit brings together an array of musicians, working with artists like Booker T. Jones, Billy Preston, Joyce Cooling, Robert Walter, Bernard Purdie, to name just a few.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2026/5/23/victor-little-amp-band",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df3203903c36",
              "venue_id": "venue_orpheum_theater",
              "title": "HELL'S KITCHEN - THE MUSICAL",
              "event_time": "May 23, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This musical features the music of Alicia Keys and tells a coming-of-age story set in the heart of New York City.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7017845",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dedb32082c68",
              "venue_id": "venue_cat_club",
              "title": "FUNKYTOWN SF",
              "event_time": "Sat May 23, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-05-23T21:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "70s Funk/Disco vs 80s Pop/New Wave\n——\n9pm-2am",
              "event_types": [],
              "price_info": "70s Funk/Disco vs 80s Pop/New Wave\n——\n9pm-2am",
              "url": "https://www.sfcatclub.com/calendar/082424-3rbbr-lj8n5-a8mfr-yxgmp-ft6xy-xgb9m-emfxp",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-05-18T14:28:23.170830Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b4774690556",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-23",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-23",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e5ef9182465",
              "venue_id": "venue_the_saloon",
              "title": "Left Coast Syncopators",
              "event_time": "May 23, 2026 9:30pm",
              "venue_name": "The Saloon",
              "event_start": "2026-05-23T21:30:00",
              "event_date": "2026-05-23",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "The Left Coast Syncopators perform live, bringing their signature jazz and swing sounds to the stage.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Left_Coast_Syncopators",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-18T14:39:23.592756Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ac509292a0e",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-23T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-23T18:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0f579bc9538",
              "venue_id": "venue_the_fireside",
              "title": "Saturday Night Music/DJs",
              "event_time": "2026-05-23T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-05-23T18:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c24f4fcc54cf",
              "venue_id": "venue_de_young",
              "title": "Margaret Jenkins Dance Company Performance",
              "event_time": "2026-05-23 12–12:30 pm",
              "venue_name": "De Young",
              "event_start": "2026-05-23T12:30:00",
              "event_date": "2026-05-23",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "The Margaret Jenkins Dance Company presents a live contemporary dance performance within the museum's unique architectural spaces.",
              "event_types": [
                "dance"
              ],
              "price_info": "de Young, Performance, Performance",
              "url": "https://www.famsf.org/events/margaret-jenkins-dance-company-performance",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fbb264defe27",
              "venue_id": "venue_great_star_theater",
              "title": "No Way Out But Up!",
              "event_time": "May 23, 2026 at 1:30 PM",
              "venue_name": "Great Star Theater",
              "event_start": "2026-05-23T13:30:00",
              "event_date": "2026-05-23",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "A high-energy youth circus production showcasing aerial arts, acrobatics, and ensemble choreography.",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "Tickets",
              "url": "https://www.tickettailor.com/events/greatstartheater/2161711",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-05-18T15:52:47.667779Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b68b41d81d8b",
              "venue_id": "venue_cow_palace",
              "title": "FoodieLand Food Festival",
              "event_time": "2026-05-23T22:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "The second day of the FoodieLand Food Festival, featuring a vast array of global flavors, artisan shops, and family entertainment.",
              "event_types": [],
              "price_info": "$12 (Admission only; food and drinks sold separately)",
              "url": "https://www.cowpalace.com/events/2026/foodieland",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a8d517057ad2",
              "venue_id": "venue_cornerstone",
              "title": "All Your Friends",
              "event_time": "05/23/2026 8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-23T20:00:00",
              "event_date": "2026-05-23",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "indie dance",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25 | 18+",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/all-your-friends-the-indie-party-182705",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3dd74e7760ba",
              "venue_id": "venue_gray_area",
              "title": "Data/Loss",
              "event_time": "05/23/2026 8pm-11:59pm",
              "venue_name": "Gray Area",
              "event_start": "2026-05-23T23:59:00",
              "event_date": "2026-05-23",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "experimental, noise",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$15-25 | 18+",
              "url": "https://grayarea.org/event/errorgrid-dataloss/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aae6d32c8073",
              "venue_id": "venue_audio",
              "title": "Slushii",
              "event_time": "05/23/2026 9:30pm",
              "venue_name": "Audio",
              "event_start": "2026-05-23T21:30:00",
              "event_date": "2026-05-23",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "future bass, trap, dubstep",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19.83-48.25 | 21+",
              "url": "https://wl.eventim.us/event/slushii/677293?afflky=AudioSF",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4c3b56b7564c",
              "venue_id": "venue_dna_lounge",
              "title": "Why2k! Dance Party",
              "event_time": "05/23/2026 9:30pm-2:30am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-23T21:30:00",
              "event_date": "2026-05-23",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "hip-hop, r&b, pop, EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10-15 pre / $22 | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/05-23.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2992bddabbcd",
              "venue_id": "venue_f8",
              "title": "Mostly Cloudy",
              "event_time": "05/23/2026 10pm-3am",
              "venue_name": "F8",
              "event_start": "2026-05-23T22:00:00",
              "event_date": "2026-05-23",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "footwork, house, electro, bounce, techno, latin club",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$13.55-27.15 | 21+",
              "url": "https://ra.co/events/2399171",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5837d3c58fc3",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-23T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-23T19:45:00",
              "event_date": "2026-05-23",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sat-may-23-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4a6a45f4febb",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-23T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-23T21:45:00",
              "event_date": "2026-05-23",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sat-may-23-945pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f639a3b4adc3",
              "venue_id": "venue_san_jose_improv",
              "title": "Maddy Smith Presents: Bad Genes Tour",
              "event_time": "May 23-24 3 shows",
              "venue_name": "San Jose Improv",
              "event_start": "2026-05-23",
              "event_date": "2026-05-23",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/event/maddy+smith+presents%3a+bad+genes+tour/14663703/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-05-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-24": {
          "date": "2026-05-24",
          "updated_at": "2026-05-18T16:12:43.891227Z",
          "events": [
            {
              "event_id": "evt_78335b164cdd",
              "venue_id": "venue_halcyon",
              "title": "DOC MARTIN: MEMORIAL DAY BOAT PARTY",
              "event_time": "05/24/2026 6:30pm",
              "venue_name": "Halcyon",
              "event_start": "2026-05-24T18:30:00",
              "event_date": "2026-05-24",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Celebrate the holiday weekend with house music legend Doc Martin during this special Memorial Day boat party hosted by Halcyon. Enjoy a curated selection of deep and soulful house tracks while taking in the views from the water.",
              "event_types": [
                "live_music",
                "electronic",
                "community"
              ],
              "price_info": "$55.62",
              "url": "https://link.dice.fm/a038d0639764?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_name": "Halcyon",
                  "fetched_at": "2026-03-21T09:08:19.968576Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_halcyon"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                }
              ],
              "match_key": "venue_halcyon|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a01192392787",
              "venue_id": "venue_the_midway",
              "title": "KSHMR (21+ Event)",
              "event_time": "05/24/2026 9pm-2am",
              "venue_name": "The Midway",
              "event_start": "2026-05-24T21:00:00",
              "event_date": "2026-05-24",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "Get ready for an electrifying night as KSHMR takes over The Midway San Francisco! Experience a world-class DJ set and an immersive EDM performance from this acclaimed producer. Join us for a pulsating 21+ electronic music event, kicking off at 9 PM and rocking until 2 AM. Secure your standard adm...",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$31+ | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/kshmr-172496",
              "tags": [],
              "sources": [
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-22T21:27:02.934188Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-03-25T04:19:56.583833Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a7fbf0a3d54d",
              "venue_id": "venue_the_independent",
              "title": "ROSE GRAY",
              "event_time": "5.24 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Catch Rose Gray live at The Independent SF on Sunday, May 24, with doors opening at 7:30 pm and the show beginning at 8:00 pm. This 18+ event will immerse attendees in Rose Gray's performance. Please note there is a delivery delay for tickets, set for two weeks prior to the show.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/rose-gray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-17T11:27:59.268227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cca5900c8d12",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Tragedy Andy",
              "event_time": "Sunday May 24 2026 6:00PM doors -- music at 6 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-24T18:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "This multi-act lineup features a variety of punk and ska-influenced bands for a diverse musical showcase. It is a high-energy event featuring several local and touring performers.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 $36.31 in advance [30 face value + 6.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260524.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f5701048ec0",
              "venue_id": "venue_guild_theatre",
              "title": "Better Than Ezra",
              "event_time": "2026-05-24T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live concert at The Guild Theatre. Door time listed as 7:00 pm; show starts at 8:00 pm.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$60",
              "url": "http://www.foopee.com/by-band.0.html#Better_Than_Ezra",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-04-10T20:42:14.129371Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4c756ea0ea2a",
              "venue_id": "venue_act_rembe",
              "title": "Hamnet",
              "event_time": "2026-05-24T19:30:00",
              "venue_name": "ACT REMBE",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Opening night of the Royal Shakespeare Company's stage adaptation of Maggie O'Farrell's best-selling novel about the son of William Shakespeare.",
              "event_types": [
                "theater"
              ],
              "price_info": "From $59",
              "url": "https://www.act-sf.org/whats-on/2025-26-season/hamnet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_act_rembe",
                  "source_name": "ACT REMBE",
                  "fetched_at": "2026-04-11T11:20:52.515181Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_act_rembe|2026-05-24",
              "run_id": "run_209be028b4b1",
              "run_label": "Hamnet, Apr 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0e729a6ae9f7",
              "venue_id": "venue_brick_and_mortar",
              "title": "Heembeezy",
              "event_time": "May 24 7:30pm/8:30pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Heembeezy visits Brick and Mortar as part of the Beezy World Tour. The event promises an energetic live performance from the hip-hop artist.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$26.74 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.1.html#Heembeezy",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-20T12:44:45.071428Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-04-22T11:46:11.412387Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e3162f806ee9",
              "venue_id": "venue_berkeley_piano_club",
              "title": "Transfigured Night: Jeff Li",
              "event_time": "2026-05-24T19:30:00",
              "venue_name": "Berkeley Piano",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "2724 Haste St, Berkeley, CA 94704",
              "description": "An evening of hauntingly beautiful and poignant piano music performed by East Bay pianist Jeff Li, featuring works by Sibelius, Bach, Chopin, Zwilich, Babadjanian, and the Beatles/Hiromi Uehara. This is the West Coast premiere of the recital.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/transfigured-night-piano-recital-by-jeff-li-tickets-880628286957",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_piano_club",
                  "source_name": "Berkeley Piano",
                  "fetched_at": "2026-04-22T11:15:52.312897Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-04-28T12:36:56.840380Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_piano_club|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f8fb2f72367",
              "venue_id": "venue_ivy_room",
              "title": "Marcus Rezak's Shred Is Dead",
              "event_time": "Sunday May 24 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-24T18:00:00",
              "event_date": "2026-05-24",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Guitarist Marcus Rezak performs two sets of \"Shred Is Dead,\" featuring progressive, high-energy interpretations of Grateful Dead classics.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/178612",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89831f2f1aad",
              "venue_id": "venue_924_gilman",
              "title": "Punk in the Bay Benefit",
              "event_time": "May 24 3pm/3:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-24T15:30:00",
              "event_date": "2026-05-24",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Two-day all-ages punk benefit for activist bail and ICE detainee funds, presented by Rise Collective, Angel Tortured Productions, and Get Some Magazine. Weekend pass covers both May 23 and May 24. Doors open at 3:00 PM both days.",
              "event_types": [
                "live_music",
                "rock",
                "festival",
                "community"
              ],
              "price_info": "$30 ($50 weekend pass)",
              "url": "http://www.foopee.com/by-band.0.html#Desmadre",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-22T14:01:12.127049Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_edcb1a2e9c29",
              "venue_id": "venue_the_ritz",
              "title": "A TRIBUTE TO OUR FRIEND DOVER",
              "event_time": "2026-05-24T15:00:56-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-24T15:00:56",
              "event_date": "2026-05-24",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "WHISKEY SUNDAY\nSATURDAY SAINTS\nJOE Q CITIZEN\nTHE BACKSTABBERS\nBUKAKI BLASTER\nSUNDAY MAY 24, 2026\nDoors: 3PM // All Ages // $10\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "https://www.ticketweb.com/event/a-tribute-to-our-friend-the-ritz-tickets/14835763",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-22T14:09:36.179513Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-26T11:58:55.749900Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6b0435f1b462",
              "venue_id": "venue_caravan_lounge",
              "title": "Devious, Negative Sixx, Short Fuse",
              "event_time": "May 24 10pm",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-24T22:00:00",
              "event_date": "2026-05-24",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "This event features a live performance by the artist or group known as Devious, showcasing their specific musical or artistic style. It offers an opportunity to experience their work in an intimate theater setting.",
              "event_types": [
                "live_music",
                "rock",
                "film"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.0.html#Devious",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-06T12:38:36.535520Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19e72f451388",
              "venue_id": "venue_kilowatt",
              "title": "Faith Zapata, Lucky Break, Quynh",
              "event_time": "May 24 1pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-24T13:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Singer-songwriter Faith Zapata performs a selection of her emotive and melodic songs live on stage. Her performance highlights her vocal talent and personal approach to indie-pop music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "http://www.foopee.com/by-band.1.html#Faith_Zapata",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-11T14:14:44.111086Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d51769d97a4b",
              "venue_id": "venue_the_uc_theatre",
              "title": "The Beths",
              "event_time": "May 24 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "UC Theater, Berkeley Beths, French Cassettes, Folk Bitch Trio a/a $42.50+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "BUY TICKETS $42.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/the-beths-24-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-28T10:37:42.386724Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-04-28T12:41:12.221337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1415b7008ecd",
              "venue_id": "venue_california_theatre",
              "title": "Anubhav Singh Bassi: Kisi Ko Batana Mat",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "California Theatre",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Popular Indian stand-up comedian Anubhav Singh Bassi brings his latest special 'Kisi Ko Batana Mat' to San Jose for a night of laughter and storytelling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Starts at $40.00",
              "url": "https://events.sulekha.com/kisi-ko-batana-mat-by-anubhav-singh-bassi-in-bay-area_event_in_san-jose-ca_374470",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_kalalaya",
                  "source_name": "Kalalaya",
                  "fetched_at": "2026-04-30T18:39:30.914085Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-05-07T14:08:30.643050Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6500c901171a",
              "venue_id": "venue_thee_stork_club",
              "title": "Suver (record release), Silverware, Mox",
              "event_time": "Sun May 24 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Suver hosts a special live performance to celebrate the official release of their latest record. Attendees will be among the first to hear the new tracks performed live in a concert setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10/$12",
              "url": "http://www.foopee.com/by-club.3.html#Thee_Stork_Club__Oakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-01T06:10:59.302561Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-04T11:11:12.115455Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-05T11:31:37.032106Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b58384e27f2",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "ANTIMATTER + JACOB FELIX HEULE",
              "event_time": "MAY 24 2026  7:15pm",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-05-24T19:15:00",
              "event_date": "2026-05-24",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "ANTIMATTER (https://antimatter3.bandcamp.com/ xopher Davidson, analog / digital electronics) and Jacob Felix Heule (https://www.heule.us/ percussion): Wave Function Collapse, resting upon the threshold between a state of limitless potentials and one of decoherence-that which cannot be measured, quantified, simulated or collected as data. Forever drifting over time, a spectral bass-relief sculpted by entropy.MEERENAI SHIM (https://www.meerenai.com/) and DIANE GRUBBE (https://www.dianegrubbe.com/) team up to perform composed and improvised music for a variety of flutes, including glissando and contrabass flutes. The program includes Salvatore Sciarrino’s \"Il pomeriggio di un allarme al parcheggio\" for glissando flute, “Pathways\" for two flutes by Efraín Amaya, Matthew Joseph Payne’s \"Etude for contrabass flute and TI83+ calculator\" and the premiere of a duo for two glissando flutes by Diane Grubbe. More...",
              "event_types": [
                "experimental",
                "live_music",
                "electronic"
              ],
              "price_info": "$20 click here to purchase advance tickets online",
              "url": "https://www.sfsound.info/#may-24-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_west_oakland_sound_series",
                  "source_name": "West Oakland Sound Series",
                  "fetched_at": "2026-05-01T14:17:59.406097Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_dresher_ensemble_studio",
                  "source_name": "Dresher Ensemble Studio",
                  "fetched_at": "2026-05-06T06:39:19.743417Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1735b4c32d4c",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Crucial Reggae Sundays | May 24",
              "event_time": "May 24, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-24T16:30:00",
              "event_date": "2026-05-24",
              "venue_address": "San Francisco, CA 94118",
              "description": "Reggae in the park featuring a live performance by Saritah and sets from resident DJs Guid8nce, Sep, and Irie Dole.",
              "event_types": [
                "live_music",
                "latin_world",
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/crucial-reggae-sundays-may-24/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-03T12:26:38.895162Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-04T10:51:00.917617Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22e8b0cbd42c",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Shadmehr Aghili Live in San Jose",
              "event_time": "2026-05-24T20:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Enjoy an unforgettable night with Shadmehr Aghili, the 'King of Persian Pop,' performing his greatest hits and new songs live on stage.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Tickets from $115",
              "url": "https://sanjosetheaters.org/event/shadmehr-aghili/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-04T11:06:10.925967Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_21cd95c715f8",
              "venue_id": "venue_hammer_theater",
              "title": "Countryside to Cosmos",
              "event_time": "2026-05-24T14:30:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-05-24T14:30:00",
              "event_date": "2026-05-24",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "An orchestral program exploring nature and the human spirit through works by Beethoven, Honegger, and Carlos Simon.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "From $15",
              "url": "https://hammertheatre.com/event/mission-chamber-orchestra-presents-countryside-to-cosmos/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_mission_chamber_orchestra",
                  "source_name": "Mission Chamber Orchestra",
                  "fetched_at": "2026-05-06T11:10:19.326609Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-07T15:24:46.527851Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_380be201af3e",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Măcelaru Conducts Dvořák’s New World",
              "event_time": "5/24/2026 2:00 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-24T14:00:00",
              "event_date": "2026-05-24",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco Symphony",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23471",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-07T14:07:06.403189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-17T11:43:13.664569Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0bf3fb3a0db8",
              "venue_id": "venue_1015_folsom",
              "title": "NETSKY",
              "event_time": "Sun, May 24 •  9:00 PM",
              "venue_name": "1015 Folsom",
              "event_start": "2026-05-24T21:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Belgian drum and bass legend Netsky takes over The Great Northern for a high-energy night of liquid and dancefloor-focused beats. This performance showcases his melodic approach to the genre that has earned him international acclaim.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Tickets | Bottle Service",
              "url": "https://wl.eventim.us/event/netsky/685026?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-07T16:30:07.357520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-09T11:49:02.445110Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ddfe0657e7cf",
              "venue_id": "venue_hillside_club",
              "title": "BHC Concert Series Chamber Music Sundaes",
              "event_time": "May 24, 2026, 3:00 PM – 5:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-05-24T15:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "The Berkeley Hillside Club hosts an afternoon of exquisite chamber music as part of its regular concert series. This performance features professional musicians playing classical repertoire in a historic venue.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.eventbrite.com/e/1693977204419?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-08T11:03:59.360037Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-05-08T12:01:29.224155Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hillside_club|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f5906cb10f71",
              "venue_id": "venue_ashkenaz",
              "title": "Fanfare Zambaleta",
              "event_time": "May 24, 2026 8pm til 10:30pm",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-24T22:30:00",
              "event_date": "2026-05-24",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "a/a free 7:30/8pm til 10:30pm",
              "event_types": [
                "latin_world",
                "live_music"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.1.html#Fanfare_Zambaleta",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-11T13:37:07.306198Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43434a0672cd",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Tiffany Austin's Band Leading Bootcamp",
              "event_time": "2026-05-24T10:00:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-05-24T10:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "The second day of Tiffany Austin's intensive workshop on band leading.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Check website for tickets",
              "url": "https://wyldflowrarts.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_72828922c38a",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Tiffany Austin Quartet",
              "event_time": "2026-05-24T14:00:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-05-24T14:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "A performance by the Tiffany Austin Quartet, featuring swing and soul-infused jazz.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Check website for tickets",
              "url": "https://wyldflowrarts.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_261f466606fd",
              "venue_id": "venue_black_cat",
              "title": "JL Collective Vol. II",
              "event_time": "05/24/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nIn the second installment of his collaborative series, Jonah Levine brings together a unique combination of artists from across musical and geographic worlds for a one-night-only performance of newly created music.\n\nEach edition of the series invites an out-of-town artist to join Levine in the Bay Area for a short residency of writing, recording, and sonic exploration, culminating in a live debut at Black Cat. The result is a set of original music that exists only in the moment it’s performed.\n\nThis installment features Tommaso Cappellato and Michael \"Tiny\" Lindsey.\n\nCappellato, an LA-based drummer, producer, and DJ originally from Italy, is the founder of Domanda Music and a driving force behind projects such as Collettivo Immaginario and Explorare. His work blends jazz, electronic, and global influences, and has taken him to stages and festivals around the world.\n\nLindsey, known as “Tiny,” is a New York–born bassist who has become a pillar of the Bay Area music community. A versatile musician with deep roots in jazz, R&B, funk, and gospel, he has performed and toured internationally with artists including John Legend, Alicia Keys, John Mayer, Boyz II Men, Common, and Jay-Z, and has appeared on major television programs such as The Tonight Show and Jimmy Kimmel Live. His playing reflects decades of experience across genres and a lifelong dedication to the craft.\n\nLevine, a Bay Area native, spent much of his early career in Los Angeles, performing with artists such as Leon Bridges, contributing to Grammy Award–winning records, and releasing multiple albums both as a bandleader and as a member of Katalyst. Through this series, he brings together distinct musical communities, creating space for spontaneous collaboration between artists who might not otherwise share the stage.\n\nBand Lineup:\nJonah Levine, piano, trombone\nTommaso Cappellato, drums\nMichael \"Tiny\" Lindsey, bass",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11346/?date=2026-05-24",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-13T10:36:54.420073Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a646b48208f",
              "venue_id": "venue_swedish_american",
              "title": "Private Event",
              "event_time": "2026-05-24T20:00:00",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents Sam Yo (Peloton) - The Monk's Mindset Book Tour.",
              "event_types": [
                "community"
              ],
              "price_info": "Price not listed on event page",
              "url": "https://cafedunord.com/tm-event/private-event-23/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_swedish_american|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f96ab1eaabf1",
              "venue_id": "venue_ashkenaz",
              "title": "Balkan Sundays",
              "event_time": "05/24/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "a/a free 7:30/8pm til 10:30pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "FREE",
              "url": "https://www.ashkenaz.com/#/events/178508",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-13T11:54:49.769084Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0cd133c28ca0",
              "venue_id": "venue_924_gilman",
              "title": "Desmadre (9:10pm)",
              "event_time": "Sun May 24 9:10pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-24T21:10:00",
              "event_date": "2026-05-24",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": ", , , , , a/a $30 ($50 weekend pass) 3pm/3:30pm $ @ (Punk in the Bay - Benefit for Activist Bail & Ice Detainee Funds)",
              "event_types": [
                "live_music",
                "rock",
                "festival",
                "community"
              ],
              "price_info": "$30",
              "url": "http://www.foopee.com/by-band.0.html#Desmadre",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_1",
                  "source_name": "Foopee Date 1",
                  "fetched_at": "2026-05-13T12:30:54.312771Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2bd73de68565",
              "venue_id": "venue_black_cat",
              "title": "JL Collective",
              "event_time": "May 24 7pm and 9:15pm",
              "venue_name": "Black Cat",
              "event_start": "2026-05-24T21:15:00",
              "event_date": "2026-05-24",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "$20-$50 7pm and 9:15pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20",
              "url": "http://www.foopee.com/by-band.1.html#JL_Collective",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a2f1ef43a8a3",
              "venue_id": "venue_sailing_goat",
              "title": "The Bob Roden Quintet",
              "event_time": "Sun, May 24",
              "venue_name": "Sailing Goat",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Settle in for a sophisticated performance of classic and contemporary jazz by The Bob Roden Quintet.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/the-bob-roden-quintet-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30647b8c2298",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-24",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-24",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_65f656420dcf",
              "venue_id": "venue_roccapulco",
              "title": "Associacion Mayab - Carnaval Day 2",
              "event_time": "2026-05-24T16:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-05-24T16:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "The second day of the Associacion Mayab Carnaval celebration at Roccapulco.",
              "event_types": [
                "community",
                "festival"
              ],
              "price_info": "Check website for details",
              "url": "http://www.roccapulco.com/events-calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6acbfba71610",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity (Previews)",
              "event_time": "2026-05-24 2026-05-24T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-05-24T17:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Bess Wohl and directed by Emilie Whelan. Set on a Hollywood film shoot where the chaotic soundstage mimics the real-world climate crisis, this sharp-witted comedy explores egos, secrets, and hard truths.",
              "event_types": [],
              "price_info": "",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-05-24",
              "run_id": "run_98ccfcc4e387",
              "run_label": "Continuity (Previews), May 23 – May 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_98424b81761d",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Preview - Masks Required)",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. Masks are required for this performance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e55dacd2937d",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Sunday BBQ Breakfast",
              "event_time": "2026-05-24T09:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-05-24T09:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "A special weekend tradition featuring brisket hash, custom omelets, biscuits and gravy, and other Southern breakfast standards. Complimentary coffee is included with breakfast orders.",
              "event_types": [
                "community"
              ],
              "price_info": "Menu prices",
              "url": "https://smokingpigbbq.net/menus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3179bf918c37",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Horseshoe Jam (Bluegrass)",
              "event_time": "2026-05-24T16:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-24T16:00:00",
              "event_date": "2026-05-24",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Weekly intermediate bluegrass jam on stage.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://californiabluegrass.org/cbaevent/horseshoe-jam/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_82aeddb96e8b",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Bernal Hillbillies Bluegrass Show",
              "event_time": "2026-05-24T19:30:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Live bluegrass performance by the Bernal Hillbillies on the fourth Sunday of the month.",
              "event_types": [],
              "price_info": "Check venue for cover",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_611a2ab04e15",
              "venue_id": "venue_verdi_club",
              "title": "iHeartMambo Social",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Monthly salsa social held on the 4th Sunday. Features a complimentary beginner salsa class at 7:00 PM followed by social dancing.",
              "event_types": [],
              "price_info": "$15",
              "url": "https://www.verdiclub.net/event/iheartmambo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2a3bdd7d82ab",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Solo Piano",
              "event_time": "2026-05-24T18:30:00",
              "venue_name": "Bix",
              "event_start": "2026-05-24T18:30:00",
              "event_date": "2026-05-24",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Experience an intimate evening of solo piano jazz at Bix, featuring some of the Bay Area's finest musicians in a historic Barbary Coast setting.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_43c77bae40b6",
              "venue_id": "venue_sjz_break_room",
              "title": "The Bad Plus (1st Set)",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "The Bad Plus perform the first set at SJZ Break Room. The long-running band is known for adventurous, boundary-pushing jazz.",
              "event_types": [],
              "price_info": "$37.40 (Incl. fees)",
              "url": "https://sanjosejazz.org/events/the-bad-plus-1st-set/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-05-15T20:48:12.874651Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bf2b18181907",
              "venue_id": "venue_dance_mission",
              "title": "The GroundWorks",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "training ground sf closes its inaugural year with an all-premiere program for its cohort, featuring new works by David Harvey, Darlyn Perez and Brodie Rachelle Masse, and Gregory Dawson.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/03/may-22-24-homegrown-the-ground-works/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-05-24",
              "run_id": "run_94a592693cc4",
              "run_label": "The GroundWorks, May 23 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ef215859cdc4",
              "venue_id": "venue_dance_mission",
              "title": "Carnaval San Francisco Grand Parade",
              "event_time": "2026-05-24T10:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-05-24T10:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Dance Mission and members of the Grrrl Brigade parade with Fogo Na Roupa in Carnaval San Francisco, the large Caribbean and Latinx dance and music celebration.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://dancemissiontheater.org/2026/04/04/may-24-carnaval-san-francisco/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0dd0f7d770c1",
              "venue_id": "venue_biscuits__blues",
              "title": "Big Daddy Cade's Tribute to B.B. King",
              "event_time": "2026-05-24T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-24T18:30:00",
              "event_date": "2026-05-24",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "The only tribute act to have personal approval from B.B. King himself; Big Daddy Cade brings the real deal to San Francisco with the BluesMasters.",
              "event_types": [],
              "price_info": "$25+ Admission",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260522-24bigdaddycade",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-24",
              "run_id": "run_21805abf8266",
              "run_label": "Big Daddy Cade's Tribute to B.B. King, May 22 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bc41eac422cb",
              "venue_id": "venue_st_josephs_arts_society",
              "title": "Ghibli in Concert",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "St Josephs Arts Society",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1401 Howard St, San Francisco, CA 94103",
              "description": "Experience the enchanting melodies of Studio Ghibli music in a captivating piano trio concert featuring works by film composer Joe Hisaishi.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sixthstationtrio.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_st_josephs_arts_society",
                  "source_name": "St Josephs Arts Society",
                  "fetched_at": "2026-05-16T00:40:52.568337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_st_josephs_arts_society|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6290c5a1dc47",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Festival of Pentecost",
              "event_time": "2026-05-24T10:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-05-24T10:00:00",
              "event_date": "2026-05-24",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Pentecost worship with leaders from Pacific Lutheran Theological Seminary, including President John Nunes preaching, followed by information about PLTS theological education.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://flcpa.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-16T01:02:23.851080Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e3fe5549a54b",
              "venue_id": "venue_el_rio",
              "title": "Global P Carnaval Afterparty",
              "event_time": "05/24/2026 8:30pm-1:30am",
              "venue_name": "El Rio",
              "event_start": "2026-05-24T20:30:00",
              "event_date": "2026-05-24",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "The ultimate Carnaval SF afterparty featuring Reggaeton, Cumbia, Dancehall, Baile, Club Classics, House, and more.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 b4 9309 / $15 | 21+",
              "url": "https://tockify.com/elriosf2/detail/4211/1779679800000",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-17T12:11:30.934005Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ef7b2fc9c67",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Irene Tu",
              "event_time": "2026-05-24T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Irene Tu, featuring Gary Michael Anderson and Walker Glenn.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/122887",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-24",
              "run_id": "run_a0fc9026894c",
              "run_label": "Irene Tu, May 21 – May 24",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_68287e74d28a",
              "venue_id": "venue_the_freight__salvage",
              "title": "Marjan Vahdat & Sahba Motallebi",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Persian classical performance presented in partnership with Diaspora Arts Connection.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$59/$64 Premium Admission; $39/$44 General Admission",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5aba3b20a4f3",
              "venue_id": "venue_bird_and_beckett",
              "title": "Happy Hour",
              "event_time": "2026-05-24T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-24T17:00:00",
              "event_date": "2026-05-24",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Unleash your imagination at Innuendo, an evening of playful wit and clever delight! Join us at Bird & Beckett Books, your beloved independent bookstore and cultural hub in San Francisco. Dive into a unique liter...",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "https://sflive.art/event/innuendo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f57b6a40031",
              "venue_id": "venue_madrone_art_bar",
              "title": "MEMORIAL DAY – WE WORK HERE",
              "event_time": "May 24 @ 9:00 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-24T21:00:00",
              "event_date": "2026-05-24",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Local500 Presents: WeWorkHere Special Guests: Akumen & Andy Oro You’ve seen them behind the bar, but tonight, they are mixing more than just cocktails. Madrone’s very own bar staff, Dave, Noah, Rene, and other locals are DJing a combination of HOUSE, TECHNO, and CLUB music. No Cover 9:00 pm.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/memorial-day-we-work-here/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-16T10:22:54.231181Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87259540f029",
              "venue_id": "venue_meyhouse",
              "title": "Mads Tolling: From Grieg to Gershwin",
              "event_time": "2026-05-24T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-24T17:00:00",
              "event_date": "2026-05-24",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Two-time GRAMMY winner Mads Tolling joins pianist Ian Scarfe for 'From Grieg to Gershwin,' a chamber music program bridging European romanticism and American classicism.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/meyhouse-classical-two-time-grammy-winner-mads-tolling-and-ian-scarfe-sun-5-24-5pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_20e1ebc67b5e",
              "venue_id": "venue_scopo_divino",
              "title": "Trivia Night!",
              "event_time": "2026-05-24T18:00:00",
              "venue_name": "Scopo Divino",
              "event_start": "2026-05-24T18:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "Join Scopo Divino for a fun and engaging night of trivia. Reservations are recommended.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "No cover",
              "url": "https://www.scopodivino.com/events/trivia-night",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scopo_divino",
                  "source_name": "Scopo Divino",
                  "fetched_at": "2026-05-16T11:10:22.174562Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_scopo_divino|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f7f3f3276057",
              "venue_id": "venue_brava_theater",
              "title": "Questions, Not Answers",
              "event_time": "MAY 24, 2026 2PM",
              "venue_name": "Brava Theater",
              "event_start": "2026-05-24T14:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Get ready to explore \"life's big questions\" at \"Questions, Not Answers,\" Brava for Women in the Arts' engaging film and conversation series! Join us in San Francisco for a special screening and discussion of the acclaimed masterpiece, 'Three Colors: Red.' It's a unique opportunity to connect, exp...",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/threecolors-47w5-8c573-3jrd9-mh3km-96e2k",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-17T10:50:43.221956Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_884f88c456e7",
              "venue_id": "venue_sfmoma",
              "title": "Free Community Day",
              "event_time": "2026-05-24T12:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-05-24T12:00:00",
              "event_date": "2026-05-24",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Special event - free community day",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c63f2ff0527",
              "venue_id": "venue_mvcpa",
              "title": "Kwok Koo: Echoes of the Night",
              "event_time": "2026-05-24T19:30:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Kwok Koo performs an evening of masterworks exploring poetry, color, and virtuosity in music by Schumann, Chopin, Brahms, Debussy, Scriabin, and Bach-Busoni.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$37",
              "url": "https://tickets.mvcpa.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-05-17T10:54:35.093784Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mvcpa|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_44d64333cc2f",
              "venue_id": "venue_the_back_room",
              "title": "Souls On Board",
              "event_time": "Sun, May 24 2026, 2pm - 4pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-05-24T14:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/souls-on-board-aaron-germain-brian-fishler-david-white?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8420d95bb15c",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-05-24T10:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-05-24T10:00:00",
              "event_date": "2026-05-24",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "All year long we set aside Sunday mornings for Daytime members—10:00 a.m. to noon is just for you.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3bc3ae96ea18",
              "venue_id": "venue_hi_lo_club",
              "title": "Sunday Night Jazz Trio",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Live jazz trio performances to wrap up the weekend in a relaxed, low-key environment.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6b741151e16c",
              "venue_id": "venue_mojo_lounge",
              "title": "Acoustic Open Mic Night",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "The weekly Sunday acoustic open mic continues, offering a platform for local singer-songwriters and musicians to share their work in an intimate setting.",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6c39a7ef9455",
              "venue_id": "venue_the_midway",
              "title": "Marvin Gaye - What's Going On + Selected Works",
              "event_time": "2026-05-24T12:30:00",
              "venue_name": "The Midway",
              "event_start": "2026-05-24T12:30:00",
              "event_date": "2026-05-24",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "An Envelop Immersive Experience @ Midway",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b7fc605d8be2",
              "venue_id": "venue_the_midway",
              "title": "The Perreo Pari Day Party",
              "event_time": "2026-05-24",
              "venue_name": "The Midway",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "TERRACE ∙ OUTDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/the-perreo-pari-day-party-memorial-weekend-edition/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae96d3fc0d38",
              "venue_id": "venue_the_midway",
              "title": "KSHMR: Memorial Day Weekend",
              "event_time": "2026-05-24",
              "venue_name": "The Midway",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "RIDE ∙ INDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/kshmr-memorial-day-weekend/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bae71d2e1fda",
              "venue_id": "venue_kilowatt",
              "title": "Jewel House, Loke Tamba & Bitter Loa",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15.66",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0544dd316505",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-24T19:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-24T19:45:00",
              "event_date": "2026-05-24",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6554ace441fb",
              "venue_id": "venue_rootstock_arts",
              "title": "Abhishek Lahiri",
              "event_time": "2026-05-24T17:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-05-24T17:00:00",
              "event_date": "2026-05-24",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Renowned musician Abhishek Lahiri leads a dual-part event featuring a virtuosic sarod performance followed by an educational masterclass. It is a rare opportunity for students and fans to learn from a master of Indian classical music.",
              "event_types": [
                "live_music",
                "indian_classical",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c0f64b9a99f6",
              "venue_id": "venue_tommy_ts",
              "title": "BRUCE BRUCE",
              "event_time": "2026-05-24 2026-05-23",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-24",
              "run_id": "run_3126276a800d",
              "run_label": "BRUCE BRUCE, May 22 – May 24",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f68ddb7c354f",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-24T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-24",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9bd09e85ae84",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-24T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-24T14:00:00",
              "event_date": "2026-05-24",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-24",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_79f717b10de4",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Sunday Night Jazz: Lavay Smith & Chris Siebert",
              "event_time": "2026-05-24T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Acclaimed jazz and blues singer Lavay Smith performs with her husband, organist Chris Siebert. A weekly tradition at the Royal Cuckoo featuring soulful vocals and swinging organ tunes.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0d34eb59ce79",
              "venue_id": "venue_the_lab",
              "title": "Dustin Wong / Julius Smack / Matt Robidoux",
              "event_time": "5/24/2026 8:00 PM",
              "venue_name": "The Lab",
              "event_start": "2026-05-24T20:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "dustin wong (LA) / julius smack (LA) / matt robidoux (SF) More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22991",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4af62bd98f9b",
              "venue_id": "venue_make_out_room",
              "title": "Dimensions w/ DJ 2NITE",
              "event_time": "2026-05-24T22:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-24T22:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Heart beeps, brain waves, and good vibes dance party.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "http://www.makeoutroom.com/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b4f8ce59a97a",
              "venue_id": "venue_madrone_art_bar",
              "title": "Memorial Day Party – Local/Global",
              "event_time": "May 24 @ 5:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-24T17:00:00",
              "event_date": "2026-05-24",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "A Bay Area/Global Sounds Day Party 5-9pm NO COVER An all-female crew of professional DJs who play music from the Bay Area (hip-hop/funk/soul) and global sounds (afrobeats, reggaeton, dancehall, Arab and Indian, Asian beats). Local/Global with @djmadresf and friends",
              "event_types": [
                "dj_party"
              ],
              "price_info": "NO COVER",
              "url": "https://madroneartbar.com/event/day-party-local-global-with-djmadre-and-friends/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a13a943943e5",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Vocal Open Mic",
              "event_time": "MAY 24, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Singers of all experience levels are invited to perform jazz standards and contemporary arrangements in a supportive live setting.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/vocal-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_15c9e79fabe1",
              "venue_id": "venue_sfjazz_lab",
              "title": "GUNHILD CARLING",
              "event_time": "May 24 2026 6:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-05-24T18:00:00",
              "event_date": "2026-05-24",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Almost Sold Out",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Almost Sold Out",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/gunhild-carlingd/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33df3a267e0b",
              "venue_id": "venue_sfjazz_miner",
              "title": "MAKAYA MCCRAVEN",
              "event_time": "May 24 2026 7:00 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "'In These Times' Revisited & Reworked w/ strings & special guests",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Member Discount",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/makaya-mccraven/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a99c4127801c",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Bay Area Queer Open Mic",
              "event_time": "Sunday, May 24, 2026 6:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-24T18:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "A welcoming space for queer musicians and songwriters to share their work, connect, and build community. Performers can sign up online in advance, join as walk-ins, or be featured as a monthly Featured Artist.\n\nThis month’s feature is TraumaCheez \n\nTraumaCheez is a San Francisco-based indie singer-songwriter. Her musical artistry combines explosive vocals with a fluid sense of groove. Featuring catchy melodies paired with witty, humorous lyrics - and a high-energy stage presence focused on live interaction - she delivers a truly captivating performance.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/bay-area-queer-open-mic-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d69f3907094",
              "venue_id": "venue_shapeshifters",
              "title": "Amusement Ride(s)",
              "event_time": "Sunday, May 24, 2026 7pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "experimental",
                "live_music"
              ],
              "price_info": "Admission: $12 (discount for members)",
              "url": "https://www.tickettailor.com/events/shapeshifterscinema/2198336",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-05-18T10:46:48.460857Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64ead0b9503f",
              "venue_id": "venue_yoshis",
              "title": "Theo Croker",
              "event_time": "SUN 5.24 7:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GRAMMY-NOMINATED TRUMPETER PUSHING THE BOUNDARIES OF JAZZ, NEO-SOUL, AND HIP-HOP",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk",
                "hiphop_rap"
              ],
              "price_info": "$30 - $64",
              "url": "https://yoshis.com/events/buy-tickets/theo-croker-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_774acfa2d437",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Rhonda Benin feat. Tammy Hall",
              "event_time": "2026-05-24T17:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-24T17:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Rhonda Benin is bringing her powerhouse vocals to Keys Bistro in San Francisco for a night of soulful jazz and blues. Backing her up is a stellar rhythm section featuring Tammy Hall on piano, Ron Belcher on bass, and Leon Joyce, Jr. on drums. Don’t miss this incredible lineup in the heart of North Beach.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/rhonda-benin-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_41519d28c86e",
              "venue_id": "venue_sf_conservatory",
              "title": "Valley Christian Concerto Competition",
              "event_time": "2026-05-24T16:00:00",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-24T16:00:00",
              "event_date": "2026-05-24",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Concerto Competition, Orchestra, Partnership Event",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-05-18T11:23:52.619579Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d06acb8cb4f",
              "venue_id": "venue_poor_house_bistro",
              "title": "Vinny & Les and The Dukanes",
              "event_time": "Sun, May 24, 2026,  12:00 PM – 07:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-24T12:00:00",
              "event_date": "2026-05-24",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "12pm – 3pm: Vinny & Les – Vinny & Les delivers a high-energy blend of classic rock, blues, and soulful grooves that keeps audiences engaged from the first note to the final encore. Led by…",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5418",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de889ecd8928",
              "venue_id": "venue_winters",
              "title": "Memorial Melee Music Festival",
              "event_time": "2026-05-24T15:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-24T15:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b63b0fe9ee1",
              "venue_id": "venue_piedmont_center",
              "title": "In Bloom: Spring Art Exhibition",
              "event_time": "2026-05-24",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Center for Slavic Arts & Culture. Gallery hours weekends 11 AM - 2 PM.",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-24",
              "run_id": "run_93f04bfeefb0",
              "run_label": "In Bloom: Spring Art Exhibition, May 18 – May 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_809367602d03",
              "venue_id": "venue_piedmont_center",
              "title": "Genre-Defying New Music and Improvisation",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Vitamin EM Collective",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.simpletix.com/e/270397",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ef5e11a9b23",
              "venue_id": "venue_bach_dds",
              "title": "Terrie Odabi",
              "event_time": "2026-05-24T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-05-24T16:30:00",
              "event_date": "2026-05-24",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "A powerhouse soul-blues vocalist from the San Francisco Bay Area, Terrie Odabi performs a special Memorial Day weekend concert. Known for her stirring vocals and commanding stage presence, her music is deeply influenced by legends like Mavis Staples and Etta James.",
              "event_types": [],
              "price_info": "$60/$50 Adults; $23/$12 Student",
              "url": "https://dothebay.com/events/2026/5/24/terrie-odabi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6fee14ef86af",
              "venue_id": "venue_the_marsh_sf",
              "title": "Looking For Justice",
              "event_time": "MAY 24, 2026 5PM",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-24T17:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "A hippie, activist, lesbian, feminist, lawyer, judge’s search for identity & justice. The at times humorous and at times deadly serious show begins when Amy moves to Berkeley in the early 1970’s during second wave feminism. Amy finds her identity as a lesbian feminist, goes to law school to fight...",
              "event_types": [
                "other"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/amy-oppenheimer-looking-for-justice_2026-05-24-17-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e59b2d8a621a",
              "venue_id": "venue_envelop_sf",
              "title": "Marvin Gaye: What's Going On",
              "event_time": "Sunday, May 24 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Listen to Marvin Gaye's soul masterpiece and other selected works in a three-dimensional soundscape. This event highlights the rich arrangements and powerful vocals of the legendary artist.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260524-marvin-gaye-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88b404ba1217",
              "venue_id": "venue_historic_bal_theatre",
              "title": "Paperback Writer: Beatles Tribute",
              "event_time": "Sunday, May 24 Show: 3:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-05-24T15:00:00",
              "event_date": "2026-05-24",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Paperback Writer delivers a high-energy tribute to The Beatles, featuring special guests and a journey through the Fab Four's greatest hits.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-monkees-beatles-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0af2e79bc111",
              "venue_id": "venue_cornerstone",
              "title": "All Your Friends: The Indie Party",
              "event_time": "2026-05-24T03:30:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-24T03:30:00",
              "event_date": "2026-05-24",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "All Your Friends: The Indie Party Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/all-your-friends-the-indie-party-182705",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e3795bdf85f",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-24T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-24",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_725e87e60f74",
              "venue_id": "venue_dna_lounge",
              "title": "Hubba Hubba Revue",
              "event_time": "2026-05-24T19:00:00",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-24T19:00:00",
              "event_date": "2026-05-24",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Undersea Burlesque. 18+.",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3cd3c90f54f9",
              "venue_id": "venue_the_knockout",
              "title": "90s Simpsons Trivia Happy Hour",
              "event_time": "5/24/2026 6:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-24T18:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Test your knowledge of classic 90s Simpsons episodes during this nostalgic trivia event paired with happy hour drinks.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/m5efcafd1c41?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_86bd438c6e74",
              "venue_id": "venue_the_knockout",
              "title": "Reggae Sunday: Strictly Rockers",
              "event_time": "5/24/2026 9:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-24T21:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "End the weekend with a rhythmic celebration featuring strictly rockers-style reggae music and dancing.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/nc6fbda9296e?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f31867017584",
              "venue_id": "venue_roxy",
              "title": "UGLY BABY: Up For Adoption",
              "event_time": "Sunday, May 24, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A creative showcase or screening featuring the work of the Ugly Baby comedy and performance collective.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/ugly-baby-up-for-adoption/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b78ef3b35f9",
              "venue_id": "venue_roxy",
              "title": "Amadeus (4K Restoration)",
              "event_time": "Sunday, May 24, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "A screening of the Academy Award-winning biographical drama about the rivalry between Mozart and Salieri in a new 4K restoration.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/amadeus-4k-restoration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-05-18T13:32:20.375945Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_412663730c6a",
              "venue_id": "venue_4_star_theater",
              "title": "Dr. Seuss Classic Cartoons",
              "event_time": "May 24, 2026 10:00 AM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-24T10:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This family-friendly screening brings the whimsical world of Dr. Seuss to the big screen. The program features a collection of beloved animated shorts based on his classic stories.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/dr-seuss-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea05b0f7554f",
              "venue_id": "venue_4_star_theater",
              "title": "Burn After Reading",
              "event_time": "May 24, 2026 12:00 PM – 7:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-24T12:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Part of a retrospective on the Coen brothers, this screening features their dark comedy about misplaced CIA memoirs. The film stars an ensemble cast including George Clooney, Brad Pitt, and Frances McDormand.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/burn-after-reading-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_425a96c9207e",
              "venue_id": "venue_4_star_theater",
              "title": "Raising Arizona",
              "event_time": "May 24, 2026 2:30 PM – 4:45 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-24T14:30:00",
              "event_date": "2026-05-24",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Enjoy a screening of the Coen brothers' high-energy comedy about a childless couple who decides to kidnap a quintuplet. This classic film is celebrated for its unique visual style and eccentric characters.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/raising-arizona-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d4e0d3c5d467",
              "venue_id": "venue_4_star_theater",
              "title": "Whip It",
              "event_time": "May 24, 2026 7:30 PM – 9:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-24T19:30:00",
              "event_date": "2026-05-24",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This 'Roller Reels' event features a screening of the roller derby drama 'Whip It,' directed by Drew Barrymore. The evening includes a special presentation by Kinsey Anne and a live DJ set.",
              "event_types": [
                "film",
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/whip-it",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9bd7bf3729ef",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-24",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-24",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_514dee642cf6",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-24",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-24",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_62834f8d3093",
              "venue_id": "venue_el_rio",
              "title": "Salsa Sundays",
              "event_time": "2026-05-24T15:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-24T15:00:00",
              "event_date": "2026-05-24",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "Monthly salsa party on the patio. The first hour includes all-levels instruction with no partner needed.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://thegaycalendar.com/v/el-rio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a3f04335b836",
              "venue_id": "venue_orpheum_theater",
              "title": "HELL'S KITCHEN - THE MUSICAL",
              "event_time": "May 24, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This musical features the music of Alicia Keys and tells a coming-of-age story set in the heart of New York City.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023317",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_867efc73e87d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-24",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-24",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_236e89c251fd",
              "venue_id": "venue_plough_and_stars",
              "title": "Seisiún",
              "event_time": "2026-05-24T13:00:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-24T13:00:00",
              "event_date": "2026-05-24",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "Afternoon session",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3f6cda2bd862",
              "venue_id": "venue_elis_mile_high",
              "title": "Drag Bingo!",
              "event_time": "Sun, May 24, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "This lively community event combines the classic game of bingo with entertaining drag performances.",
              "event_types": [
                "community"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/drag-bingo-6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ae3b762cc85",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-24T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-24T18:00:00",
              "event_date": "2026-05-24",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2cee8ab1bb49",
              "venue_id": "venue_the_fireside",
              "title": "Sunday Sports & Drinks",
              "event_time": "2026-05-24",
              "venue_name": "The Fireside",
              "event_start": "2026-05-24",
              "event_date": "2026-05-24",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Sports, bloody marys, mimosas, buckets of beer",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c77fcef672be",
              "venue_id": "venue_cow_palace",
              "title": "FoodieLand Food Festival",
              "event_time": "2026-05-24T22:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-05-24T22:00:00",
              "event_date": "2026-05-24",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "The final day of the FoodieLand Food Festival at the Cow Palace, uniting local talent and small businesses for a celebration of community and culture.",
              "event_types": [],
              "price_info": "$12 (Admission only; food and drinks sold separately)",
              "url": "https://www.cowpalace.com/events/2026/foodieland",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_41d93b7f3dc5",
              "venue_id": "venue_the_fillmore",
              "title": "Movement Ecstatic Dance",
              "event_time": "05/24/2026 10am-1:11pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-24T13:11:00",
              "event_date": "2026-05-24",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "global club",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25-55.20 | 21+",
              "url": "https://www.eventbrite.com/e/movement-ecstatic-dance-sf-jami-deva-registration-1989134088605",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19c4b69905d7",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-24T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-24T19:45:00",
              "event_date": "2026-05-24",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sun-may-24-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f645944b0cc5",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "SAMMY OBEID",
              "event_time": "Sun May 24, 2026 4:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-24T16:00:00",
              "event_date": "2026-05-24",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Known for his analytical style and wordplay, Sammy Obeid delivers a clever performance from a comedian who once performed 1,001 nights in a row.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/sammy-obeid-san-francisco-california-05-24-2026/event/1C00643ABD1EEA5D",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-25": {
          "date": "2026-05-25",
          "updated_at": "2026-05-18T15:49:47.107845Z",
          "events": [
            {
              "event_id": "evt_f30af99925f0",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "UltraBomb, Peelander-Z, Freak Accident",
              "event_time": "Monday May 25 2026 7:00PM doors -- music at 7:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; punk; action comic punk; psychedlic punk surf",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$23",
              "url": "http://www.bottomofthehill.com/20260525.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5f55c73e0cb7",
              "venue_id": "venue_ivy_room",
              "title": "Doomsday: E.S.C. + Gigas Fist",
              "event_time": "Monday May 25 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "This high-energy lineup features a mix of metal and punk-influenced bands performing live at Bottom of the Hill.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180224",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b5b9a597da27",
              "venue_id": "venue_noe_valley_ministry",
              "title": "Earplay: Is That Your Final Answer?",
              "event_time": "5/25/2026 7:30 PM",
              "venue_name": "Noe Valley Ministry",
              "event_start": "2026-05-25T19:30:00",
              "event_date": "2026-05-25",
              "venue_address": "1021 Sanchez St, San Francisco, CA 94114",
              "description": "Is That Your Final Answer?The final concert of Earplay's 41st season features a world premiere by Trevor Weston.Pre-concert talk at 6:45pm More...",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$15 tickets ($10 for Supermusers)",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22811",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-11T10:10:30.072303Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-05-11T13:28:36.476622Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_noe_valley_ministry|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee0e539167ce",
              "venue_id": "venue_the_marsh_sf",
              "title": "Monday Night Marsh",
              "event_time": "2026-05-25T19:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "A breeding ground for new performance, sharing personal stories and unique experiences.",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "$10 - $25 sliding scale",
              "url": "https://themarsh.org/monday-night-marsh/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_71aae28ecbc4",
              "venue_id": "venue_the_bistro",
              "title": "Hayward Bistro Open Mic (Host: Spirit Flute)",
              "event_time": "2026-05-25T19:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Weekly open mic night. Sign-ups start at 6:30 PM. Hosted by Spirit Flute.",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "Free / No Cover",
              "url": "https://bayareaopenmics.com/hayward-bistro-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b5ac923ffd49",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Pizza Monday",
              "event_time": "2026-05-25T16:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-25T16:00:00",
              "event_date": "2026-05-25",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Neapolitan-style pizza night.",
              "event_types": [],
              "price_info": "Varies",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91ad3db5019f",
              "venue_id": "venue_the_saloon",
              "title": "The Bachelors",
              "event_time": "2026-05-25T21:30:00",
              "venue_name": "The Saloon",
              "event_start": "2026-05-25T21:30:00",
              "event_date": "2026-05-25",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Weekly Monday night residency featuring The Bachelors.",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover",
              "url": "https://thesaloonsf.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_70e01d3de587",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-25T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6f6ea1f762be",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Salsa Crazy Mondays",
              "event_time": "2026-05-25T19:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "Weekly salsa and bachata dance lessons followed by a social dance party.",
              "event_types": [
                "workshop",
                "dance",
                "community"
              ],
              "price_info": "$11.30 - $43.20",
              "url": "https://www.ticketweb.com/event/salsa-crazy-mondays-neck-of-the-woods-tickets/13426335",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_901f9ae4c0bf",
              "venue_id": "venue_biscuits__blues",
              "title": "GamperDrums Presents: ZinggFlower",
              "event_time": "2026-05-25T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-25T18:30:00",
              "event_date": "2026-05-25",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "A night of world-class musicianship featuring some of the Bay Area’s best.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260525gamperdrumspresentszinggflower",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_89c9b94e9447",
              "venue_id": "venue_chase_center",
              "title": "Valkyries vs. Sun",
              "event_time": "2026-05-25T19:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Dinner Party Tour 2026",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a1d89d6fd219",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-25T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-25T16:00:00",
              "event_date": "2026-05-25",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f5ba59bfaa9a",
              "venue_id": "venue_blush",
              "title": "Tarot readings with Christopher L.",
              "event_time": "2026-05-25",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-25",
              "event_date": "2026-05-25",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Mind-bending Tarot readings by our deck Shaman extraordinaire Christopher L.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2951e415a86f",
              "venue_id": "venue_the_midway",
              "title": "Pink Floyd - Wish You Were Here",
              "event_time": "2026-05-25T21:30:00",
              "venue_name": "The Midway",
              "event_start": "2026-05-25T21:30:00",
              "event_date": "2026-05-25",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "An Envelop Immersive Listening Experience @ Midway",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9912a00ec115",
              "venue_id": "venue_tommy_ts",
              "title": "JOE CORZO",
              "event_time": "2026-05-25",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-25",
              "event_date": "2026-05-25",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4521d40fa86",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Piano Night at The Royal Cuckoo Organ Lounge",
              "event_time": "2026-05-25T19:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Monday night piano session featuring the venue's vintage Steinway Upright. An early start time makes this a perfect way to begin the week with live jazz.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://northbeachlive.com/event/piano-night-at-the-royal-cuckoo-organ-lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fdcd063df886",
              "venue_id": "venue_madrone_art_bar",
              "title": "Motown on Mondays",
              "event_time": "May 25 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "It’s only Monday if you treat it like one! DJ Gordo Cabeza and weekly guests play originals, exclusive remixes and close relatives of your favorite Motown songs. The most talked about night in town! Starting at 7pm. Doors 4pm – 2am / 21 & up w/ID $5 cover after 8pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://madroneartbar.com/event/motown-on-mondays-79-2025-12-01-2026-04-27/2026-05-25/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_903cba0b4a88",
              "venue_id": "venue_shotgun_studios",
              "title": "The World of a Play: Continuity (Seminar Series)",
              "event_time": "2026-05-25T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-05-25T10:30:00",
              "event_date": "2026-05-25",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "The second Monday gathering of the 'Continuity' seminar series, exploring design discussions and rehearsal processes.",
              "event_types": [],
              "price_info": "$150 for the series",
              "url": "https://shotgunplayers.org/online/article/miriams-place",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_45decc2651d3",
              "venue_id": "venue_livermore_shiva_vishnu_temple",
              "title": "Memorial Day",
              "event_time": "05/25/2026 15:38",
              "venue_name": "Livermore Temple",
              "event_start": "2026-05-25",
              "event_date": "2026-05-25",
              "venue_address": "1232 Arrowhead Ave, Livermore, CA 94551",
              "description": "Memorial Day, (Weekend Hours)\n\nDashami 16:41\n\nUttara Phalguni 15:38",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_livermore_shiva_vishnu_temple",
                  "source_name": "Livermore Temple",
                  "fetched_at": "2026-05-18T10:48:34.629623Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_livermore_shiva_vishnu_temple|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c7d31e7192a",
              "venue_id": "venue_yoshis",
              "title": "Kevin Moore & Carl Wheeler",
              "event_time": "MON 5.25 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-25T20:00:00",
              "event_date": "2026-05-25",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "INSPIRATIONAL VIBES",
              "event_types": [
                "live_music"
              ],
              "price_info": "$37 - $74",
              "url": "https://yoshis.com/events/buy-tickets/kevin-moore-carl-wheeler/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9708e14990f8",
              "venue_id": "venue_dawn_club",
              "title": "SILVER BELL JAZZ BAND",
              "event_time": "Monday, May 25, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-25T20:00:00",
              "event_date": "2026-05-25",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Silver Bell Jazz Band inspires dancers and listeners all over the Bay Area. The band specializes in ragtime, blues, swing, and dixieland from the early 20th century. They’re known for their authenticity and dedication to the craft as well as their foot-tapping energy.\n\n\n  \n#block-263885b34d9f4bf58cd0 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-263885b34d9f4bf58cd0 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-263885b34d9f4bf58cd0 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-263885b34d9f4bf58cd0 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-263885b34d9f4bf58cd0 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-263885b34d9f4bf58cd0 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-263885b34d9f4bf58cd0 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/silver-bell-jazz-band-k238gj-49-rmt9a-62p4y-nxrh8-t5b22-r92pe",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf77d1b91f2c",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC AT HOTEL UTAH",
              "event_time": "Mon May 25 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Monday night",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/Open-Mic-at-Hotel-Utah/689618?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9dd84a0ce633",
              "venue_id": "venue_artists_television_access",
              "title": "Rewards Program",
              "event_time": "Monday, May 25, 2026, 7:30 pm",
              "venue_name": "Television Access",
              "event_start": "2026-05-25T19:30:00",
              "event_date": "2026-05-25",
              "venue_address": "922 Valencia Street, San Francisco, CA 94110",
              "description": "This broadcast presents \"Rewards Program,\" a segment or short film airing on the Television Access channel.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.atasite.org/?p=16578",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "Television Access",
                  "fetched_at": "2026-05-18T12:02:41.326330Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_artists_television_access|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1052d7bd9efd",
              "venue_id": "venue_envelop_sf",
              "title": "Pink Floyd: Wish You Were Here",
              "event_time": "Monday, May 25 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-05-25",
              "event_date": "2026-05-25",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Dive into the atmospheric sounds of Pink Floyd's 'Wish You Were Here' with a spatial audio presentation. The immersive setup provides a new way to experience the band's iconic progressive rock compositions.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260525-pink-floyd-wish-you-were-here-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf0b6e7e34c1",
              "venue_id": "venue_the_knockout",
              "title": "Krazy for Karaoke",
              "event_time": "5/25/2026 9:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-25T21:00:00",
              "event_date": "2026-05-25",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Step up to the mic and sing your heart out during this high-energy karaoke night at The Knockout.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/De3d4a5099f4?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d09f058636d3",
              "venue_id": "venue_local_edition",
              "title": "Closed for Memorial Day",
              "event_time": "May 25, 2026 4:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-25T16:30:00",
              "event_date": "2026-05-25",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Closed for the holiday. Happy Memorial Day!Book your next reservation here.Click here to host your next event with us!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/74aap54y6wfms4p-rewj3-69bba-kdd9x",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bd2722226663",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-05-25T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-05-25T19:00:00",
              "event_date": "2026-05-25",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_038aade7f05b",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-25",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-25",
              "event_date": "2026-05-25",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-25",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55d42e4e2c83",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-05-25T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-25T18:00:00",
              "event_date": "2026-05-25",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_afbb216eb4c4",
              "venue_id": "venue_the_fireside",
              "title": "Monday Mixology & Board Games",
              "event_time": "2026-05-25",
              "venue_name": "The Fireside",
              "event_start": "2026-05-25",
              "event_date": "2026-05-25",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Mixology behind the bar, industry discounts, mystery DJ, and board games (play ours or bring yours)",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-26": {
          "date": "2026-05-26",
          "updated_at": "2026-05-18T15:58:43.544519Z",
          "events": [
            {
              "event_id": "evt_985ac658e4d3",
              "venue_id": "venue_the_independent",
              "title": "OLD MERVS",
              "event_time": "5.26 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Australian duo Old Mervs bring their surf-infused indie rock sound to the stage. Their music features breezy melodies and relatable lyrics that capture a relaxed, coastal vibe.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/old-mervs/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-17T11:27:59.268227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d144ef18c2b5",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Sloppy Seconds",
              "event_time": "Tuesday May 26 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "May 26 Sloppy Seconds, Memphis Murder Men, Middle-Aged Queers 21+ $20/$25 8pm/8:30pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260526.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d3a3504a267c",
              "venue_id": "venue_august_hall",
              "title": "Dance With The Dead, Magic Sword",
              "event_time": "05/26/2026 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Synthwave powerhouses Dance With The Dead and Magic Sword join forces for \"The Face Off Tour,\" a high-concept performance that pits dark electronic rhythms against cinematic fantasy soundscapes. Dance With The Dead brings their signature fusion of 80s horror-inspired synth and heavy metal guitar...",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "$33 | 5+",
              "url": "https://www.ticketmaster.com/event/1C006379CFD8AEFA",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-14T08:04:51.445159Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5061521080df",
              "venue_id": "venue_mabuhay_gardens",
              "title": "MAJOR ACCIDENT",
              "event_time": "2026-05-26 7:30 PM",
              "venue_name": "The Mab",
              "event_start": "2026-05-26T19:30:00",
              "event_date": "2026-05-26",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Punk rock fans can enjoy a powerful lineup featuring Major Accident and Monster Squad. The show also includes high-octane sets from Ultra Sect and Cross Checked.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "MAY 26 // 7:30 PM",
              "url": "https://www.tixr.com/groups/mab/events/mabuhaygardens-major-accident-monster-squad-ultra-sect-cross-checked-186137",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-04-20T11:10:06.137547Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-22T13:52:23.164708Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e45f08e6bdd0",
              "venue_id": "venue_brick_and_mortar",
              "title": "Alt Bloom",
              "event_time": "May 26 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "a/a $27.58 (under 21 plus $5) 7pm/8pm ^",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.58 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#Alt_Bloom",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-20T12:44:45.071428Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-04-22T11:46:11.412387Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1e5898a5c8a9",
              "venue_id": "venue_the_fillmore",
              "title": "TK from Ling tosite sigure",
              "event_time": "2026-05-26",
              "venue_name": "The Fillmore",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The Japanese musician and vocalist of Ling tosite sigure brings his solo North American tour to The Fillmore for an evening of intricate rock music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Not specified",
              "url": "https://www.thefillmore.com/events/tk-ling-tosite-sigure-tour-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-22T10:41:32.406241Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-22T14:35:54.369608Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-15T22:31:39.774240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a842f073ea19",
              "venue_id": "venue_the_warfield",
              "title": "WALE & SMINO",
              "event_time": "Tue, May 26, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Two prominent voices in modern hip-hop and R&B join forces for an intimate live performance.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1328099",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-04-28T12:57:37.834317Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_54a9fcdf509b",
              "venue_id": "venue_the_uc_theatre",
              "title": "Inner Wave & Los Mesoneros",
              "event_time": "May 26 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Inner Wave brings their signature psychedelic pop sound to the stage, joined by the Latin rock stylings of Los Mesoneros.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/inner-wave-los-mesoneros-26-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92e5718302ed",
              "venue_id": "venue_rickshaw_stop",
              "title": "Lowertown",
              "event_time": "May 26 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Indie rock duo Lowertown headlines this eclectic musical showcase featuring supporting performances by Fat and Evil Children.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 7pm/8pm",
              "url": "http://www.foopee.com/by-band.2.html#Lowertown",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-10T10:22:09.870523Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_318db3900094",
              "venue_id": "venue_thee_stork_club",
              "title": "Telehealth",
              "event_time": "May 26 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This event features a blend of post-punk and experimental indie rock from a trio of underground bands.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Telehealth",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-03T12:24:34.379125Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-04T11:11:12.115455Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_836aa9e8b92f",
              "venue_id": "venue_924_gilman",
              "title": "Concison",
              "event_time": "May 26 6:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-26T18:30:00",
              "event_date": "2026-05-26",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A diverse showcase of indie and alternative rock bands takes the stage for a multi-artist concert event.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12/$15",
              "url": "http://www.foopee.com/by-band.0.html#Concison",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c544b8f1b36d",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-26",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-26",
              "event_date": "2026-05-26",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-26",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_712291bbad64",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Preview)",
              "event_time": "2026-05-26T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance is a preview before the official opening night.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c08d9702e95d",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-05-26T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-05-26T18:30:00",
              "event_date": "2026-05-26",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dce3be24a540",
              "venue_id": "venue_alhambra_public_house",
              "title": "Line Dancing",
              "event_time": "2026-05-26T19:30:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-26T19:30:00",
              "event_date": "2026-05-26",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Weekly line dancing session at Alhambra Irish House.",
              "event_types": [],
              "price_info": "Free",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_88df077f8670",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-05-26T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-26T21:00:00",
              "event_date": "2026-05-26",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Tuesday night swing dance event featuring live music and a drop-in basic swing lesson.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/the-woodchoppers-ball/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be34b59a4af1",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-26T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_465a634ea05b",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Popstar Booty Camp",
              "event_time": "2026-05-26T20:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "A high-energy dance showcase featuring performances from the Popstar Booty Camp participants.",
              "event_types": [
                "dance"
              ],
              "price_info": "$15.00",
              "url": "https://www.ticketweb.com/event/popstar-booty-camp-dance-performance-neck-of-the-woods-tickets/13426336",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d76a38ef59c9",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Andrés Cepeda",
              "event_time": "2026-05-26T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Colombian singer-songwriter Andrés Cepeda performs live in San Francisco.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/andres-cepeda/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4e70a401cfdb",
              "venue_id": "venue_chase_center",
              "title": "Niall Horan",
              "event_time": "2026-05-26T18:30:00",
              "venue_name": "Chase Center",
              "event_start": "2026-05-26T18:30:00",
              "event_date": "2026-05-26",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "a/a performance",
              "event_types": [],
              "price_info": "$71+",
              "url": "http://www.foopee.com/by-band.2.html#Niall_Horan",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-15T22:31:39.774240Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a3d140e1f28c",
              "venue_id": "venue_biscuits__blues",
              "title": "The West Coast Blues Revue",
              "event_time": "2026-05-26T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-26T18:30:00",
              "event_date": "2026-05-26",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "A rotating crew of the Bay Area’s finest, led by Hal Petcher, tears through gritty and soulful blues.",
              "event_types": [],
              "price_info": "$15",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260505thewestcoastbluesrevue",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_73b90cf12b5d",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-26T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-26T17:00:00",
              "event_date": "2026-05-26",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Tuesday happy hour at the White Horse Bar.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5e3fae83209d",
              "venue_id": "venue_white_horse",
              "title": "Queer-aoke",
              "event_time": "2026-05-26T20:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Tuesday night karaoke hosted by Noor.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-aoke-every-tue-thu-at-white-horse-bar-8pm-tickets-880562304147",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_33b63713c748",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-26T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-26T16:00:00",
              "event_date": "2026-05-26",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b1b695a188f6",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Karaoke Nights",
              "event_time": "2026-05-26T20:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring karaoke event at Dark Horse Lounge. Listed as every Tuesday and Saturday starting at 8pm.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/karaoke-nights/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3d5ebc57925e",
              "venue_id": "venue_the_freight__salvage",
              "title": "Jazzschool Studio Band & Jazz Garden",
              "event_time": "2026-05-26T19:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-05-26T19:30:00",
              "event_date": "2026-05-26",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Jazz performance featuring Jazzschool Studio Band and Dave Eshelman's Jazz Garden Big Band.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$29/$34",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_36efb514ff30",
              "venue_id": "venue_little_hill_lounge",
              "title": "Mark Clifford's Standards Hang",
              "event_time": "2026-05-26T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Mark Clifford leads a session of jazz standards at Little Hill Lounge, offering an open environment for musical collaboration. This event invites performers and listeners alike to appreciate classic jazz repertoire.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_outsound",
                  "source_name": "Outsound",
                  "fetched_at": "2026-05-17T11:27:05.546641Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_29ab71693273",
              "venue_id": "venue_the_back_room",
              "title": "Rick Dougherty & Don Burnham",
              "event_time": "Tue, May 26 2026, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/rick-dougherty-and-don-burnham?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49bb4d47b497",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekly Live Jazz & Americana",
              "event_time": "2026-05-26T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Tuesday night residency featuring live jazz and Americana artists. No cover charge.",
              "event_types": [
                "live_music",
                "jazz",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_114813b5e2e2",
              "venue_id": "venue_blush",
              "title": "Live Music at Blush!",
              "event_time": "2026-05-26",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-26",
              "event_date": "2026-05-26",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Quality live music featuring Blues, Jazz, Gypsy Jazz, Americana and more.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5280e7acd2c1",
              "venue_id": "venue_mojo_lounge",
              "title": "Karaoke Night with DJ RAMD",
              "event_time": "2026-05-26T21:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-26T21:00:00",
              "event_date": "2026-05-26",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Weekly karaoke session featuring a wide selection of tracks and hosted by DJ RAMD.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2d941d9b0b50",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-05-26",
              "venue_name": "David Brower Center",
              "event_start": "2026-05-26",
              "event_date": "2026-05-26",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-05-26",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7f24f2326b9c",
              "venue_id": "venue_make_out_room",
              "title": "Fever Dream",
              "event_time": "05/26/2026 9:30pm-2am",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-26T21:30:00",
              "event_date": "2026-05-26",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "darkwave, synthpop, EBM, italo disco, minimal",
              "event_types": [
                "dj_party"
              ],
              "price_info": "free | 21+",
              "url": "http://www.makeoutroom.com/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_99a4a10f69e5",
              "venue_id": "venue_tommy_ts",
              "title": "DJ4Q COMEDY",
              "event_time": "2026-05-26",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-26",
              "event_date": "2026-05-26",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "dj_party",
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5b829eff5e5f",
              "venue_id": "venue_make_out_room",
              "title": "JAZZ at the MAKE OUT ROOM!",
              "event_time": "2026-05-26T19:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Weekly live jazz performance. Doors open at 6:30 PM.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover, donations accepted",
              "url": "http://www.makeoutroom.com/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ceaa85ac9803",
              "venue_id": "venue_madrone_art_bar",
              "title": "LIVE MODEL TUESDAY SKETCH",
              "event_time": "May 26 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-26T18:30:00",
              "event_date": "2026-05-26",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "LIVE MODEL TUESDAY SKETCH hosted by Sketchboard Co. Madhuri @ Madrone Art Bar $15 fee to draw the model Every Tuesday 6:30 to 8:30 PM with live music by Twango Bring your own materials No Photos Please Respect the Models",
              "event_types": [
                "live_music",
                "folk",
                "art",
                "workshop"
              ],
              "price_info": "$15 fee",
              "url": "https://madroneartbar.com/event/livemodelsketch-2026-05-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f478cb3b63e",
              "venue_id": "venue_madrone_art_bar",
              "title": "Karaoke",
              "event_time": "May 26 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-26T21:30:00",
              "event_date": "2026-05-26",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "KARAOKE With host Lauren Yellow Music starts at 9:30pm",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/glitter-tears-karaoke-18-2026-02-04-2026-02-04-2026-04-07-2026-04-21/2026-05-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_82b855161d92",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazzschool Studio Band",
              "event_time": "MAY 26, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-26T19:30:00",
              "event_date": "2026-05-26",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "The Jazzschool Studio Band presents a dynamic performance of big band music featuring collaborations with esteemed guest artists.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/jazzschool-studio-band-with-special-guests-the-jazz-garden-big-band/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee01f372097c",
              "venue_id": "venue_rite_spot_cafe",
              "title": "Zolo-Solo / Malibu Buckaroo",
              "event_time": "May 26, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-26",
              "event_date": "2026-05-26",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Early: Zolo-Solo\nLate: Malibu Buckaroo",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_534ab67f425c",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "From The City to the Town",
              "event_time": "Tuesday, May 26, 2026 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Mycelium Youth Network presents an analysis of state violence, displacement, and environment across three cohorts of youth 15-23 years old from San Francisco and Oakland. Join us for an interactive art show that honors youth and attendees as knowledge holders and invites community to co-create understandings of environmental justice and resistance beyond individual action by engaging youth artwork and Photovoice projects. Also, come learn from our youth’s year-long work around mutual aid distributions, ICE safety planning, and community healing! \n\nMycelium Youth Network (MYN) is a Bay Area youth-centered organization founded in 2017, dedicated to bridging the gap between increasing climate-related disasters and the abilities of young people to proactively respond. We prepare predominantly low-income Black and Brown youth in the Bay Area -- who are most vulnerable to and already feeling the effects of environmental racism -- for climate change by drawing from ancestral traditions and practices. MYN focuses on climate resilience and climate mitigation to create and strengthen existing holistic relationships and build out regenerative economies. We empower youth to grow as visionary leaders and budding environmentalists, connect with ancestral teachings, and trust in the wisdom of the natural world. \n\nThe Youth Leadership Council is a place-based, environmental justice internship that equips young people from Mission High and Metwest High with political education, decision-making power, and research tools to critically assess their conditions, organize, and co-create their visions of a liberated future. \n\nData Warriors is an anti-racist and anti-colonial participatory research internship where frontline youth from Oakland (ages 15-23) study issues they care about, relate them to State violence and environmental justice, then design and practice interventions that support their community. A core objective of Data Warriors is to develop evaluation values, tools, and capacity to explore lived realities and socioemotional experiences of oppression and liberation.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/from-the-city-to-the-town-state-violence-through-the-lens-of-youth",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_967af3db7cfb",
              "venue_id": "venue_yoshis",
              "title": "Jonathan Lyte: Who's That? Live",
              "event_time": "TUE 5.26 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "ADV$20 / PSEE$25 / DOS$30",
              "url": "https://yoshis.com/events/buy-tickets/jonathan-lyte-who-s-that-live/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bf40032e0b90",
              "venue_id": "venue_dawn_club",
              "title": "ALAN JONES BAND",
              "event_time": "Tuesday, May 26, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Alan Jones is a 21 year-old Bassist and Composer from Denver, Colorado dedicated to honoring the legacy of Black American Music through performance and composition. He has shared the stage with greats such as Matt Wilson, David Sanchez, Ed Simon, Christopher Clarke, Carmen Bradford, Chad Lefkowitz-Brown, Kristen Strom, and Keith Oxman. He currently studies with Matt Brewer and Scott Pingel at the San Francisco Conservatory of Music.\n\n\n  \n#block-fd002a4173e6a11f0255 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-fd002a4173e6a11f0255 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-fd002a4173e6a11f0255 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-fd002a4173e6a11f0255 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-fd002a4173e6a11f0255 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-fd002a4173e6a11f0255 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-fd002a4173e6a11f0255 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/sheldon-alexander-trio-1-dnxr3-3cdf4-j7jn3-g95ex-l7jwa-wkwb7-zr8wx-t2dty-a53pa",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c7ab501d8b35",
              "venue_id": "venue_sf_conservatory",
              "title": "Arts Leadership: Education Panel",
              "event_time": "2026-05-26T18:00:00",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-26T18:00:00",
              "event_date": "2026-05-26",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Seminar, PDEC, Workshop",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-05-18T11:23:52.619579Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_770d9a119f1d",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue May 26 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690198?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_83066b327890",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-05-26T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles, featuring live jazz performances in an intimate setting.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f79012550b6a",
              "venue_id": "venue_the_knockout",
              "title": "More Ephemeral + Pink Stiletto + Mutant",
              "event_time": "5/26/2026 7:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-26T19:00:00",
              "event_date": "2026-05-26",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Catch a live triple-bill performance featuring the sounds of More Ephemeral, Pink Stiletto, and Mutant.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$11.33",
              "url": "https://link.dice.fm/Re1d3d8f7c75?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc9ddd616552",
              "venue_id": "venue_local_edition",
              "title": "The Local Edition Jazz Orchestra",
              "event_time": "May 26, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-26T20:00:00",
              "event_date": "2026-05-26",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live every Tuesday exclusively at Local Edition! The Local Edition Jazz Orchestra is a diverse group of long-time friends that have played alongside one another for years. The ensemble ranges from having as little as 8 to as many as 18 participants performing with occasional guest singers such as Billy Valentine, Bud E. Luv (aka Bobby Vickers), and Tom Scott.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kwazn5t9r7ak59x-h3dwl-7hzkw-awb8n-7my9y-xbp55-lecjc-ayh5z-nn75p-82brr-yenxa-3apc9-ltjtp-t4pb2-y5l9x-t7ypf-rnkjb",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_da59522ae7cf",
              "venue_id": "venue_plough_and_stars",
              "title": "Free Pool",
              "event_time": "2026-05-26T21:00:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-26T21:00:00",
              "event_date": "2026-05-26",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b6ba4447b9f",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-05-26T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-26T18:00:00",
              "event_date": "2026-05-26",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8866217e34b",
              "venue_id": "venue_the_fireside",
              "title": "Live Trivia",
              "event_time": "2026-05-26T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-05-26T19:30:00",
              "event_date": "2026-05-26",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Live trivia at Lounge; on Zoom every second Tuesday",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b50605ceff44",
              "venue_id": "venue_the_riptide",
              "title": "Tides & Tunes Sessions",
              "event_time": "2026-05-26T19:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-05-26T19:30:00",
              "event_date": "2026-05-26",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-05-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-27": {
          "date": "2026-05-27",
          "updated_at": "2026-05-18T16:13:34.645944Z",
          "events": [
            {
              "event_id": "evt_fd57c216dbdf",
              "venue_id": "venue_black_cat",
              "title": "The Soul Sessions: The Dynamic Faye Carol & Her Septet",
              "event_time": "2026-05-27T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-05-27T21:30:00",
              "event_date": "2026-05-27",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "The Dynamic Faye Carol is known in the Bay Area and beyond, highly regarded for her powerful voice, astounding versatility and stage presence.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$30-$50",
              "url": "http://www.foopee.com/by-band.1.html#Joe_Warner",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-04-07T08:06:19.104423Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a5e31b920431",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Accessory (solo), Facing",
              "event_time": "Wednesday May 27 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Throwin' Bo's presents...; shoegaze; dream pop; dreamo shoegaze",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$16/$20",
              "url": "http://www.bottomofthehill.com/20260527.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dfa0e08dbaac",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Last Dinner Party, Automatic",
              "event_time": "May 27 2026 7pm/8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Rising indie-rock stars The Last Dinner Party perform their theatrical art-pop alongside the post-punk trio Automatic.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.2.html#Last_Dinner_Party",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-17T11:27:59.268227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db9d6acd8b16",
              "venue_id": "venue_924_gilman",
              "title": "Worst Party Ever & Friends",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A night of indie and alternative music featuring Worst Party Ever, Camp Ghost, Robo Pumpkin, and Jordan Giardino.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for details",
              "url": "http://www.foopee.com/by-band.3.html#Worst_Party_Ever",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-11T00:33:59.470518Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_418a61050a3d",
              "venue_id": "venue_bill_graham_civic",
              "title": "YELLOWCARD",
              "event_time": "May 27, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Experience Yellowcard's \"The Up Up Down Down Tour,\" featuring an exciting lineup with special guests New Found Glory and Plain White T's, for an evening of live music. This all-ages event offers general admission, where attendees can choose to stand on the floor level or secure upstairs seating on a...",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/yellowcard-260527",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-17T11:27:59.268227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ef2b7fc2fd5",
              "venue_id": "venue_the_chapel",
              "title": "Jacob Fred Jazz Odyssey",
              "event_time": "Wed May 27 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "The long-running ensemble brings their experimental and genre-bending approach to jazz to the Bottom of the Hill stage.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$26.00-$30.00",
              "url": "https://wl.seetickets.us/event/jacob-fred-jazz-odyssey/688222?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-18T07:10:52.541367Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c02099bb64c",
              "venue_id": "venue_cornerstone",
              "title": "Deceits, Past Self",
              "event_time": "May 27 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "A night of darkwave and post-punk music featuring the atmospheric sounds of Deceits and Past Self.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$28.81",
              "url": "http://www.foopee.com/by-band.0.html#Deceits",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_154d3379620c",
              "venue_id": "venue_ivy_room",
              "title": "Spaghetti w/ Jim Campilongo",
              "event_time": "Wednesday May 27 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Renowned guitarist Jim Campilongo joins forces with Scott Amendola and Mat Muntz for an evening of jazz and experimental music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/177969",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_82d537b41223",
              "venue_id": "venue_brick_and_mortar",
              "title": "The Scratch + Dug",
              "event_time": "May 27 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Brick & Mortar Music Hall and Popscene proudly present The Scratch, a dynamic Dublin band blending heavy metal, Irish folk, stadium rock, and post-punk into a constantly evolving sound. Attendees can anticipate an energetic live show from this group, who have cultivated a dedicated following through...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.58 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.3.html#Scratch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-04-25T23:55:47.070203Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_72202172e3fb",
              "venue_id": "venue_black_cat",
              "title": "Joe Warner Trio",
              "event_time": "May 27 7pm",
              "venue_name": "Black Cat",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $15.50 - $25.50 \n\n7:00 show: Doors @ 6:00\n\nMidweek just got a whole lot deeper. \n\nJaZzLine INSTITUTE presents The Soul Sessions: an electrifying live music series bringing the Bay Area’s finest to the stage at Black Cat every Wednesday night, March through May. Experience world-class musicianship up close in an intimate setting where jazz, soul, gospel, funk, and R&B collide.\n\nThe Dynamic Miss Faye Carol is known as an icon in the Bay Area and beyond, highly regarded for her powerful voice, astonishing versatility, and gift of connecting with her\naudience. Equally at home in jazz, blues, R&B, gospel, funk, latin, and hip-hop, she has developed her own authentic sound and unique delivery, delighting audiences young and old across the globe. After beginning her career with gospel music, Faye Carol made her name singing with Oakland blues and funk legend Johnny Talbot & De Thangs in the 1960s. She soon formed her own trio and gained fame in San Francisco's jazz, blues, and cabaret clubs of the 1970s and 80s. Over a 60-year career in music, this living legend has developed her own unique acoustic sound and style in Black Music - drawing from funk, blues, gospel, and straight ahead swingin' - and cultivated an audience that remains as diverse as her uplifting music. She has maintained a high level of musicianship in her groups, mentoring some of the Bay Area's brightest young talent including Benny Green, Marcus Shelby, and her daughter Kito Kamili. Her vocal proteges include international superstars Kehlani and Ledisi. \n\nMiss Faye has shared the stage with Marvin Gaye, Otis Redding, Joe Tex, Martha Reeves & The Vandellas, Ray Charles, Gene Ammons, Pharaoh Sanders, Joan Baez, Billy Higgins, Albert King, Bobby Hutcherson, Sister Rosetta Tharpe, Buster Williams, Azar Lawrence, Steve Turre, Dennis Chambers, Bernard Purdie, Lenny White, Robert Randolph, Mistah F.A.B., Henry Butler, Gary Bartz, Cedar Walton, Ledisi, Billy Hart, Roy McCurdy, Mike Clark, Casey Benjamin, Philly Joe Jones, Lady Tramaine Hawkins, Houston Person, Vi Redd, Jeff ‘Tain’ Watts, Dayna Stephens, Dorothy Donegan, Pete Escovedo, David Murray, Chester Thompson, Charles Brown, and Eddie 'Cleanhead' Vinson, among others.\n\nMiss Faye is also a dedicated educator and community activist and founder of School of The Getdown. School of The Getdown has presented arts education and performance programs throughout the Bay Area for over 25 years, with the mission of celebrating Black arts and sharing these cultural traditions with diverse Bay Area communities, with particular attention towards youth and the Black community. School of The Getdown programs include an annual Youth Arts Camp, after school arts programs for youth, the annual Black Women’s Roots Festival, Black History Month programs in underserved schools, the annual Black Music Month Festival, masterclasses with visiting artists, and commissioned artistic works celebrating Black culture.\n\nFaye Carol has been honored with the proclamation of a city-wide “Faye Carol Day” in the City of Berkeley and City of Oakland & inducted into the Oakland Walk of Fame, the Meridian\nMississippi Walk of Fame, and the Pittsburg Entertainment & Arts Hall of Fame, and has received countless awards including the Bay Area Jazz Journalists Association Jazz Hero Award, Jefferson Award for Public Service, four Cabaret Gold Awards, Top Star Awards Entertainer of the Year, the Hewlett 50 Arts Commission, and the Watler & Elise Haas Fund Creative Power Award.\n\nSeats are limited. The vibe is undeniable. Make your reservations now while supplies last. The $10 cash tickets are available at the door based on availability.\n\nThe Soul Sessions at Black Cat\nWhere groove meets spirit.\nWhere legends and rising stars share one stage.\nWhere Wednesday nights feel like church for music lovers.\n\nSupported by a Culture Forward grant from The Svane Family Foundation\n\nBand Lineup:\nFaye Carol - vocals\nMike Olmos - trumpet\nCharles McNeal - alto sax\nAngelo Luster - tenor sax\nJoel Behrman - trombone\nHeshima Mark Williams - bass\nDante Roberson - drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.1.html#Joe_Warner",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-04-28T10:41:48.568514Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aab8dfa05a64",
              "venue_id": "venue_the_uc_theatre",
              "title": "Elmiene - Sounds For Someone Tour",
              "event_time": "May 27 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "The rising soul and R&B singer-songwriter performs an intimate set showcasing his powerful vocals and poetic lyrics.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theuctheatre.org/shows/elmiene-sounds-for-someone-tour-27-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a6d5af42e02b",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Midweek Melodies",
              "event_time": "2026-05-27T16:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-27T16:30:00",
              "event_date": "2026-05-27",
              "venue_address": "San Francisco, CA 94118",
              "description": "Mark Karan's Budz performs with openers the Keller Sisters for a special Wednesday session.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/1570/Golden-Gate-Bandshell-Concerts",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-04-30T18:19:21.237566Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-02T10:50:38.128308Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5f8459b9b3e2",
              "venue_id": "venue_dna_lounge",
              "title": "Male Tears & Sleek Teeth",
              "event_time": "05/27/2026 8pm",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "This electronic-focused event showcases the gothic synth-pop and dark club beats of Male Tears and Sleek Teeth.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$20 pre / $28 | All ages",
              "url": "https://www.dnalounge.com/calendar/2026/05-27d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-03T11:48:29.966028Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-03T12:20:45.877558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2881f12de035",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Open Mic Night",
              "event_time": "May 27 7:30pm/8pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "A diverse lineup of emerging musical acts including Pocket Full Of Crumbs, Seko, and One Hundred Angel perform live. This showcase features a variety of genres and local talent.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.2.html#Pocket_Full_Of_Crumbs",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-05T11:23:44.932584Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6dec9f1f8a8b",
              "venue_id": "venue_great_american_music_hall",
              "title": "Sleepytime Gorilla Museum",
              "event_time": "May 27 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "The avant-garde metal and experimental rock collective Sleepytime Gorilla Museum returns for a night of theatrical musical chaos.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "http://www.foopee.com/by-band.3.html#Sleepytime_Gorilla_Museum",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-07T10:13:15.689319Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ae3f9bfa064",
              "venue_id": "venue_guild_theatre",
              "title": "The Lettermen, Concert to benefit Pierce's Pledge",
              "event_time": "2026-05-27T19:30:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Benefit concert at The Guild Theatre for Pierce's Pledge. Doors at 6:30 PM; show starts at 7:30 PM.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$85",
              "url": "https://www.tixr.com/e/180945",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4e93165f8132",
              "venue_id": "venue_the_knockout",
              "title": "Kepi Ghoulie Electric & Friends",
              "event_time": "May 27 8pm/9pm",
              "venue_name": "The Knockout",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Punk rock veteran Kepi Ghoulie brings a fully electric set to the stage alongside Los Angeles guests See Night. Expect a high-energy show filled with catchy hooks and fast-paced rhythms.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.1.html#Kepi_Ghoulie_Electric",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-07T16:15:27.099251Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-10T11:21:54.339243Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3de89e13cec8",
              "venue_id": "venue_stanford_memchu",
              "title": "The Glory of the French Baroque",
              "event_time": "05/27/2026 7:30 PM",
              "venue_name": "Stanford Memorial Church",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "450 Jane Stanford Way, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/partner-events/department-of-music/2025-26-season/spring/stanford-university-singers/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stanford_memchu|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_509bb9fce3a9",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-27",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-27",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88719a122f1e",
              "venue_id": "venue_the_lost_church",
              "title": "Tony Sparks, Danny Dechi & Benjamin Steinberg",
              "event_time": "2026-05-27",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance featuring Tony Sparks, Danny Dechi, and Benjamin Steinberg at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m9TR2AY",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_13897faf8c60",
              "venue_id": "venue_the_marsh_sf",
              "title": "The Marsh Rising: Alicia Dattner's Joke Mandala",
              "event_time": "2026-05-27T19:30:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "A solo performance written and performed by Alicia Dattner as part of The Marsh Rising series.",
              "event_types": [
                "theater"
              ],
              "price_info": "$15 - $25 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/rising-alicia-dattner/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ebe17c748cfc",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity (Previews)",
              "event_time": "2026-05-27 2026-05-24T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Bess Wohl and directed by Emilie Whelan. Set on a Hollywood film shoot where the chaotic soundstage mimics the real-world climate crisis, this sharp-witted comedy explores egos, secrets, and hard truths.",
              "event_types": [],
              "price_info": "",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-05-27",
              "run_id": "run_98ccfcc4e387",
              "run_label": "Continuity (Previews), May 23 – May 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_40718481946f",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Opening Night)",
              "event_time": "2026-05-27T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "The official opening night performance of the world premiere musical The Lunchbox.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2344c715d82d",
              "venue_id": "venue_the_bistro",
              "title": "Bryan Bielanski",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Live rock music performance by Bryan Bielanski.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free / No Cover",
              "url": "https://www.shazam.com/concert/bryan-bielanski-hayward-the-bistro-may-27-2026-7-00-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4b03b70ec1ab",
              "venue_id": "venue_mr_tipples",
              "title": "Jim Witzel Quartet",
              "event_time": "2026-05-27T20:45:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-27T20:45:00",
              "event_date": "2026-05-27",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Guitarist Jim Witzel and his group perform material from his latest release, 'Very Early; Remembering Bill Evans,' featuring Adam Shulman, Dan Feiszli, and Jason Lewis.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/jim-witzel-quartet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4dfaf6a5be7b",
              "venue_id": "venue_vino_locale",
              "title": "Wednesday Garden Jazz",
              "event_time": "2026-05-27T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-27T18:30:00",
              "event_date": "2026-05-27",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "Local jazz artists perform in the back garden. Reservations are highly recommended for patio seating.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_77d8253a4fc9",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "The Shoe Jazz Jam",
              "event_time": "2026-05-27T20:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Weekly jazz jam session open to all players.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/dirty-works-jazz-jam-the-shoe-tickets-107655434520",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_32e792921c6c",
              "venue_id": "venue_castro_theater",
              "title": "PROF G MARKETS WITH SCOTT GALLOWAY AND ED ELSON",
              "event_time": "May 27, 2026 7:30pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/prof-g-markets-260527",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-15T19:54:28.474688Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-05-17T11:27:59.268227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bb0f2064a7f",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "Wednesday, May 27, 2026, 6 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Meet in the Grand Lobby for a curator-led tour of Conjuring Power: Roots & Futures of Queer & Trans Movements. Join co-curators Caro De Robertis and Tina Valentin Aguirre for this unique opportunity to learn more about this exhibition exploring how queer and trans communities harness creativity t...",
              "event_types": [],
              "price_info": "Free with registration",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-15T20:07:43.283347Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-27",
              "run_id": "run_70cf9617abb3",
              "run_label": "Conjuring Power, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c47b03539a0b",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-05-27T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Wednesday queer country dancing event with partner and line dance instruction.",
              "event_types": [],
              "price_info": "",
              "url": "https://www.verdiclub.net/event/scuff-queer-line-dancing-two-stepping/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_36943e321412",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_878050ae2b79",
              "venue_id": "venue_caravan_lounge",
              "title": "The Caravan Lounge Comedy Show",
              "event_time": "2026-05-27T22:00:00",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-27T22:00:00",
              "event_date": "2026-05-27",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Weekly punk rock comedy open mic featuring local stand-up comedians. Sets are typically 5 minutes long.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://localgroove.live/events/the-caravan-lounge-comedy-show-at-caravan-lounge-may-27-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-16T00:28:14.570954Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a4749e89c6b2",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-27T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-27T17:00:00",
              "event_date": "2026-05-27",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Wednesday happy hour gathering.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_107f639defec",
              "venue_id": "venue_rooster_t_feathers",
              "title": "New Talent Comedy Competition: Semi-Finals",
              "event_time": "2026-05-27T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Semi-final round of Roosters' annual new talent comedy competition.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/350912",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ccd98da1325f",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-27T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-27T16:00:00",
              "event_date": "2026-05-27",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d914ba2f7a85",
              "venue_id": "venue_scopo_divino",
              "title": "Le Jazz Hot",
              "event_time": "2026-05-27T18:00:00",
              "venue_name": "Scopo Divino",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "The trio of the Hot Club of San Francisco, featuring Paul 'Pazzo' Mehling on guitar, celebrates the music of Django Reinhardt.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover",
              "url": "https://www.scopodivino.com/events/le-jazz-hot",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scopo_divino",
                  "source_name": "Scopo Divino",
                  "fetched_at": "2026-05-16T11:10:22.174562Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_scopo_divino|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a49b4ca215a5",
              "venue_id": "venue_f8",
              "title": "Mike Kerrigan & Knives",
              "event_time": "2026-05-27T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-05-27T21:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Local stars Mike Kerrigan & Knives perform with support from Undasided.",
              "event_types": [],
              "price_info": "Starts at $0",
              "url": "https://www.eventbrite.com/e/strut-sf-f8-present-mike-kerrigan-knives-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dd9b8313e8c4",
              "venue_id": "venue_blush",
              "title": "Live Music at Blush!",
              "event_time": "2026-05-27",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Quality live music featuring Blues, Jazz, Gypsy Jazz, Americana and more.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eeb22b654e6c",
              "venue_id": "venue_mojo_lounge",
              "title": "Wednesday Jam Night",
              "event_time": "2026-05-27T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "The mid-week collaborative jam session returns, inviting musicians to join in for live blues and rock performances.",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1e3d6e512bd4",
              "venue_id": "venue_public_works",
              "title": "Art Battle",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A live competitive painting event where artists transform blank canvases into finished works in just 20 minutes.",
              "event_types": [],
              "price_info": "From $20",
              "url": "https://publicsf.com/events/art-battle-san-francisco-may-27-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7d7308655772",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-05-27",
              "venue_name": "David Brower Center",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-05-27",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5dcb97781a71",
              "venue_id": "venue_shelton_theater",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-05-27T19:45:00",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-27T19:45:00",
              "event_date": "2026-05-27",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. The venue page says each show features veteran comedians Denise Lee, Jon Allen, and Scott Simpson, plus rotating Bay Area and visiting comics.",
              "event_types": [],
              "price_info": "$25",
              "url": "https://tickets.cttcomedy.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shelton_theater",
                  "source_name": "Shelton Theater",
                  "fetched_at": "2026-05-17T14:53:58.661868Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4c2885d67a9b",
              "venue_id": "venue_rootstock_arts",
              "title": "SF Indian Classical Sessions",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "This monthly gathering showcases the depth of Indian classical music through live performances in San Francisco. It serves as a dedicated space for artists and enthusiasts to connect over traditional ragas and talas.",
              "event_types": [
                "live_music",
                "indian_classical",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4679114d995c",
              "venue_id": "venue_make_out_room",
              "title": "Calitalo Disco",
              "event_time": "05/27/2026 10pm-2am",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-27T22:00:00",
              "event_date": "2026-05-27",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "afro house, italo disco, nu-disco, funky house, tropical house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "free | 21+",
              "url": "http://www.makeoutroom.com/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-17T14:57:44.240138Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc10a14cfc23",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-27T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Mid-week Hammond organ session with Chris Siebert. Enjoy award-winning cocktails and live jazz in one of San Francisco's most unique bars.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_809b718c280b",
              "venue_id": "venue_the_sound_room",
              "title": "StorySlam Oakland",
              "event_time": "Wednesday, May 27, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "StorySlam Oakland is Oakland's longest-running true storytelling show, where people tell short and true stories from their lives. Or just listen and laugh.\n\nHow it works:The hosts will encourage audience members to shout out ideas for themes. It could be a theme you have a story about, or a theme you want to hear some true stories about. We'll write them down and then the fun begins.\n\nYou can also take your time between now and the show and craft a story on our pre-announced theme, which is Naughty. Put your name in the hat for a chance to tell your story. We usually have time for about 10 storytellers.We live in some alarming times, no doubt. Sometimes shady stuff is funny, stometimes it's serious. Any story is good as long as it's true, about you, and five to six minutes long. We'll have a timer to keep you on track. Remember, no notes or reading allowed. You'll tell it like you're telling friends around the dinner table.\n\nHosted by creator Julie Soller & comic Inanc Ino.\n\nTickets at StorySlam Oakland",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/js7h26wn8t6kekf5dtderaj3txn96w",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c03c283037e6",
              "venue_id": "venue_madrone_art_bar",
              "title": "Jenny Kerr",
              "event_time": "May 27 @ 9:30 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-27T21:30:00",
              "event_date": "2026-05-27",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Jenny Kerr Band Swampy original Americana. Authentic SF music, no gimmicks. Songs about dogs. And leavin’. And comin’ back again. 7-9pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/jenny-kerr-14-2026-05-27/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_704f61f416da",
              "venue_id": "venue_bing_concert_hall",
              "title": "McMurtry Lecture: Hamza Walker",
              "event_time": "Wed, May 27, 2026 6pm to 7:30pm PT",
              "venue_name": "Bing Hall",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "LECTURE/PRESENTATION/TALK",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://events.stanford.edu/event/burt-and-deedee-mcmurtry-lecture-with-curator-hamza-walker",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-05-18T10:21:29.598434Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6c5e975e8401",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazzschool Student Performance Series",
              "event_time": "2026-05-27",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "This recurring series highlights the diverse talents of Jazzschool students as they gain professional experience performing for a live audience.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://concerts.jazzschool.org/jazzschool-student-performance-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-27",
              "run_id": "run_0ae56a30c533",
              "run_label": "Jazzschool Student Performance Series, May 26 – Jun 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dd1c6975ca79",
              "venue_id": "venue_rite_spot_cafe",
              "title": "Octomutt Duet / Friendo",
              "event_time": "May 27, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Early: Octomutt Duet\nLate: Friendo",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4613d6dc72c8",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Indian Classical Sessions",
              "event_time": "Wednesday, May 27, 2026 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "The SF Indian Classical Session at Medicine for Nightmares is back May 27th! 7pm show starts, $10! The Indian Classical Sessions are an informal gathering dedicated to sharing the meditative beauty, ecstatic energy, and sheer majesty of South Asian music. Hosted by percussionist, drum set and tabla player Sameer Gupta, this gathering focuses on curating 4 short live sets that represent different influences and traditions surrounding South Asian music. Our goal is to connect, build our raga music loving community, and share South Asian classical music in an impromptu, casual and attentive setting.\n\n\nFeatured sets are:\nVivek Thyagarajan \nAkshay Naresh \nKamal Ahmad \nSonia Mann Qureshi (kathak) & Ferhan Qureshi",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/wyprm6bnfzb4t9h9hsjbjpr2gbzbtl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-18T10:45:56.313519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_78aeb39b135c",
              "venue_id": "venue_livermore_shiva_vishnu_temple",
              "title": "Pradosham",
              "event_time": "05/27/2026 19:38",
              "venue_name": "Livermore Temple",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "1232 Arrowhead Ave, Livermore, CA 94551",
              "description": "Pradosham\n\nDwadashi 19:27\n\nChitra 19:38",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_livermore_shiva_vishnu_temple",
                  "source_name": "Livermore Temple",
                  "fetched_at": "2026-05-18T10:48:34.629623Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_livermore_shiva_vishnu_temple|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c218c2d76a66",
              "venue_id": "venue_yoshis",
              "title": "Miguel Zenón Quartet",
              "event_time": "WED 5.27 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "ONE OF THE MOST GROUNDBREAKING AND INFLUENTIAL SAXOPHONISTS AND COMPOSERS OF HIS GENERATION",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$29 - $69",
              "url": "https://yoshis.com/events/buy-tickets/miguel-zenon-quartet-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_edfe5cc75596",
              "venue_id": "venue_dawn_club",
              "title": "TOMOKO FUNAKI",
              "event_time": "Wednesday, May 27, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Tomoko Funaki was born in Japan into a musical family. Following in the footsteps of her parents, both musicians, she studied classical violin and flute. A move to New York exposed her to a broad range of musical genres but she found herself increasingly drawn towards jazz. After moving to San Francisco in 2002, she began studying upright bass and quickly immersed herself into the San Francisco jazz scene, studying and performing with luminaries including Ray Drummond, Rodney Whitaker, Rufus Reid, the Marcus Shelby Jazz Orchestra, Andrew Speight, Vince Lateano, Mark Levine, Donald \"Duck\" Bailey, Allan Harris and Denise Perrier. She has also been involved in jazz education programs such as ‘Stanford Jazz Workshop’ and SFSU ICA ‘The Generations Jazz Project’ in recent years.  tomoko-funaki.com\n\n\n  \n#block-5cc3e1d34f5489382e9e {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-5cc3e1d34f5489382e9e .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-5cc3e1d34f5489382e9e {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-5cc3e1d34f5489382e9e {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-5cc3e1d34f5489382e9e {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-5cc3e1d34f5489382e9e {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-5cc3e1d34f5489382e9e .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/tomoko-funaki-tfm3a-k6hec-ph4cy-st8jb-a7h55-fd235-xtmbz-4f9s7-t43y6-dzxcy-mjbhm-cxc7y-rhna8-2yghs-mpa8x",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4818e35a781e",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Guitar Hang",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Especially for jazz guitar enthusiasts: West Coast standard-bearers Jack Tone Riordan and Jeffrey Burr are your hosts for an evening of jazz guitar delights. Fans of Wes Montgomery, Jim Hall, Grant Green, Charlie Christian etc will not want to miss this special homage and celebration of six-string swingdom.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/the-guitar-hang-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d3e72c11409",
              "venue_id": "venue_sf_conservatory",
              "title": "Arts Leadership: Music Panel",
              "event_time": "2026-05-27T18:00:00",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Seminar, PDEC, Workshop",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-05-18T11:23:52.619579Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5ba7317b4726",
              "venue_id": "venue_rickshaw_stop",
              "title": "Nerd Nite SF #160",
              "event_time": "Wed May 27 8:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Japanese Cocktails, Throwing a FUNCTION + NOT Legal Advice",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "$10.00-$15.00",
              "url": "https://wl.seetickets.us/event/nerd-nite-sf-160/688685?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-18T11:27:44.257743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_287e25bad36f",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "JERRY JOSEPH, JEFF COTTON’S GIN JOINT (SOLO)",
              "event_time": "Wed May 27 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "An Evening of Authentic American Music and Storytelling",
              "event_types": [
                "live_music",
                "folk",
                "literary"
              ],
              "price_info": "21+, $17.00",
              "url": "https://wl.seetickets.us/event/jerry-joseph-jeff-cottons-gin-joint-solo/689412?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c85f898d0855",
              "venue_id": "venue_poor_house_bistro",
              "title": "William Johnston Trio Jazz Jam",
              "event_time": "Wed, May 27, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "Join us for an amazing Jazz Jam with William Johnston Trio Hosting. Alongside this is Allagashi Brewery highlighting their amazing brews for $2! Come hang with us.",
              "event_types": [
                "live_music",
                "jazz",
                "community"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5419",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_36e1717334bb",
              "venue_id": "venue_cafe_zoe_pizza_guy",
              "title": "Mental Health Open Mic",
              "event_time": "2026-05-27T18:00:00",
              "venue_name": "Cafe Zoe",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1929 Menalto Ave, Menlo Park, CA 94025",
              "description": "Menlo Park’s 8th Annual Mental Health Open Mic Night at Cafe Zoe. Hosted with Menlo Park Library; Frances Ancheta Becker is listed as emcee for this special community event focused on awareness and reducing stigma.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "Free",
              "url": "https://www.meetup.com/menloparklibrary/events/313948828/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_zoe_pizza_guy",
                  "source_name": "Cafe Zoe",
                  "fetched_at": "2026-05-18T11:49:07.145864Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_zoe_pizza_guy|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bc21f0a38779",
              "venue_id": "venue_artists_television_access",
              "title": "SF DocFest: Atomic Ed and the Black Hole & Gibtown",
              "event_time": "Wednesday, May 27, 2026, 6:00 pm",
              "venue_name": "Television Access",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "922 Valencia Street, San Francisco, CA 94110",
              "description": "This SF DocFest presentation features two documentaries exploring unique historical and cultural subjects: \"Atomic Ed and the Black Hole\" and \"Gibtown.\"",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.atasite.org/?p=16456",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "Television Access",
                  "fetched_at": "2026-05-18T12:02:41.326330Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_artists_television_access|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e3bd5fd9020e",
              "venue_id": "venue_artists_television_access",
              "title": "SF DocFest: Plaster Caster",
              "event_time": "Wednesday, May 27, 2026, 8:15 pm",
              "venue_name": "Television Access",
              "event_start": "2026-05-27T20:15:00",
              "event_date": "2026-05-27",
              "venue_address": "922 Valencia Street, San Francisco, CA 94110",
              "description": "Part of the SF DocFest lineup, this documentary profiles the life and work of the legendary artist Cynthia Plaster Caster.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.atasite.org/?p=16459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "Television Access",
                  "fetched_at": "2026-05-18T12:02:41.326330Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_artists_television_access|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8277e60061c",
              "venue_id": "venue_yerba_buena_center",
              "title": "3D Paper Flowers Art Workshop",
              "event_time": "MAY 27, 2026 2PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-27T14:00:00",
              "event_date": "2026-05-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Create art inspired by programs at YBCA in this series of drop-in art workshops for participants of all ages. Each workshop will explore different practices and art-making methods. Materials will be provided, and participants will be able to take their artwork home as a souvenir. Incorpora...",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/free-art-workshop-3d-paper-flowers/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4648e71d1499",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-27T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-27",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a6040466a519",
              "venue_id": "venue_boom_boom_room",
              "title": "No Mercy Band",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "The No Mercy Band delivers a powerful live musical performance at the venue with no cover charge required.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/no-mercy-band-no-cover-charge-2/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_76574e5df20f",
              "venue_id": "venue_boom_boom_room",
              "title": "No Mercy Band",
              "event_time": "2026-05-27T21:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-27T21:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "The No Mercy Band delivers a powerful live musical performance at the venue with no cover charge required.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/no-mercy-band-no-cover-charge-2/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5f88819cb1a0",
              "venue_id": "venue_ashkenaz",
              "title": "Stu Allen & Mars Hotel",
              "event_time": "05/27/2026 7:00 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "A Grateful Dead Night",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/182713",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2395610b0ce8",
              "venue_id": "venue_the_knockout",
              "title": "Untypical Girl Rock n’ Roll Happy Hour",
              "event_time": "5/27/2026 6:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "This themed happy hour celebrates rock and roll with a focus on female-led bands and unconventional artists.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/nbba86ea0eb6?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43a1911aadf8",
              "venue_id": "venue_4_star_theater",
              "title": "Tommy Guerrero & Josh Lippi",
              "event_time": "May 27, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Skateboard legend and musician Tommy Guerrero performs live alongside Josh Lippi. The night of music is rounded out with a set by DJ Groove.",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-tommy-guerrero",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c206a403cec",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-27",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-27",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_742b508a24f4",
              "venue_id": "venue_local_edition",
              "title": "Verve Quintet",
              "event_time": "May 27, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-27T20:30:00",
              "event_date": "2026-05-27",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "This fabulous quintet honors the blue note, hard bop tradition of the 1960’s and beyond. Aaron Germain - BassAdam Klipple - PianoAndrew Dixon - Tenor SaxDaniel Herrera - TrumpetJPaul Macklin - Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2022/12/5/verve-quartet-lw6gf-2w999-eftac-ny9b9-pr9x4-px7cy-xb6kt-z8gfa-4d8lf-mpphl-f2b3k-6d3l3-srfht-7z32k-l62be-r85y2-gwt6z-ya9td-92ll8-mkfg8-pfyjd-h795r-e45l5-y4mbx-ej8rf-4g6rb-23h3g",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bbfd717bf765",
              "venue_id": "venue_cat_club",
              "title": "PLAY-X-LAND",
              "event_time": "Wed May 27, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-05-27T21:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Come out and play every\nWednesday Night!",
              "event_types": [],
              "price_info": "Come out and play every\nWednesday Night!",
              "url": "https://www.sfcatclub.com/calendar/gbklnjjbmp82ds9-p56t3-axemk-mxnab-sansl-3g77b-snctn-6r83z-a9yad-hfay2-say9w-ddd7b-9lb53-43kgz-4yjhw-al4kp-dwa9a-6bbr3-p3k2e-j9h6f",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-05-18T14:28:23.170830Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ebd126d197f",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-27",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-27",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_81f4a5b5543a",
              "venue_id": "venue_plough_and_stars",
              "title": "Trivia Night",
              "event_time": "2026-05-27T19:30:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b7bcd351c7c",
              "venue_id": "venue_club_fox",
              "title": "The Otilia Donaire Band",
              "event_time": "Wednesday May 27th",
              "venue_name": "Club Fox",
              "event_start": "2026-05-27",
              "event_date": "2026-05-27",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Wednesday May 27thClub Fox Blues WednesdaysThe Otilia Donaire BandDoors 6:30PM /Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/club-fox-blues-jam-the-otilia-donaire-band-tickets-1984163356010?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1fd3d5690bcc",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-05-27T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-27T18:00:00",
              "event_date": "2026-05-27",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8d0e3094f27e",
              "venue_id": "venue_the_fireside",
              "title": "Singer/Songwriter Open Mic",
              "event_time": "2026-05-27T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Singer/Songwriter open mic",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3481d071165b",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic with Charlie Kaupp",
              "event_time": "2026-05-27T19:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-05-27T19:00:00",
              "event_date": "2026-05-27",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_109f17654740",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-27T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-27T19:45:00",
              "event_date": "2026-05-27",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/wed-may-27-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d7ad84145ea3",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "GET IT?! GAMESHOW",
              "event_time": "Wed May 27, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-27T19:30:00",
              "event_date": "2026-05-27",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "This interactive comedy event blends a traditional game show format with live stand-up and unpredictable audience participation.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/get-it-gameshow-san-francisco-california-05-27-2026/event/1C006477B8EBB2ED",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_832e70758c1b",
              "venue_id": "venue_san_jose_improv",
              "title": "Shawn Felipe",
              "event_time": "May 27 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-05-27T20:00:00",
              "event_date": "2026-05-27",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/shawn+felipe/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-05-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-28": {
          "date": "2026-05-28",
          "updated_at": "2026-05-18T16:13:34.661934Z",
          "events": [
            {
              "event_id": "evt_e4d57cc90982",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Supersuckers / Scott H. Biram / Hangtown",
              "event_time": "Thursday May 28 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; cowpunk rock · alternative country; country, bluegrass, and rock n roll; post-apocalyptic spaghetti western surf rock",
              "event_types": [
                "live_music",
                "rock",
                "folk",
                "latin_world"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260528.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f4d3828816f",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "MAY 28, 2026 7:30PM",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "TICKET INFO",
              "url": "https://sflive.art/event/san-francisco-opera-the-barber-of-seville-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-06T11:32:02.068017Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-05-28",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e764fc491ce",
              "venue_id": "venue_orpheum_theater",
              "title": "The Phantom of the Opera",
              "event_time": "MAY 28, 2026 7PM",
              "venue_name": "Orpheum Theater",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This legendary production tells the story of a mysterious, masked musical genius who lives beneath the Paris Opera House and becomes obsessed with a talented young soprano. It is one of the most celebrated and longest-running musicals in theatrical history.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy tickets",
              "url": "https://broadwaysf.com/events/the-phantom-of-the-opera/orpheum-theatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theater",
                  "fetched_at": "2026-04-11T10:43:41.294540Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-13T07:47:46.039722Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0058c1c32e82",
              "venue_id": "venue_924_gilman",
              "title": "Green Day Cover Band Night",
              "event_time": "2026-05-28T18:30:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-28T18:30:00",
              "event_date": "2026-05-28",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "May 28 Mary Jane Mafia, Insomniacs, Green For A Day, Green 182, Jacob The Horse, Arcade 9, Famous a/a $20 6:30pm (Green Day cover band night)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$7 - $15",
              "url": "http://www.foopee.com/by-band.2.html#Mary_Jane_Mafia",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T11:11:30.532030Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-11T11:24:31.428588Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bff132aeace7",
              "venue_id": "venue_cornerstone",
              "title": "Being As An Ocean, Lagrimas, Commoner",
              "event_time": "May 28 2026 6pm/7pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "A night of melodic hardcore and emotive heavy music featuring Being As An Ocean and supporting acts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33.43",
              "url": "http://www.foopee.com/by-band.0.html#Being_As_An_Ocean",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_172145786fee",
              "venue_id": "venue_august_hall",
              "title": "Chapterhouse, Asteroid #4",
              "event_time": "May 28 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Shoegaze pioneers Chapterhouse celebrate the 35th anniversary of their influential album Whirlpool with a special live performance at August Hall.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$44.95",
              "url": "http://www.foopee.com/by-band.0.html#Chapterhouse",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-19T10:40:22.788869Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e130b7e3ebd5",
              "venue_id": "venue_rickshaw_stop",
              "title": "ProleteR",
              "event_time": "Thu May 28 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "French producer Proleter brings his unique fusion of swing, jazz, and hip-hop beats to the venue for a rhythmic live performance.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$20.00-$25.00",
              "url": "https://wl.seetickets.us/event/proleter/688456?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-22T11:22:51.337557Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-22T13:54:47.365481Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8512fd4bc316",
              "venue_id": "venue_the_uc_theatre",
              "title": "Sepultura",
              "event_time": "May 28 6:30 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-28T18:30:00",
              "event_date": "2026-05-28",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Sepultura, Exodus, Biohazard, Tribal Gaze",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$47.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/sepultura-celebrating-life-through-death-final-north-american-tour-2026-28-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4e70461871d",
              "venue_id": "venue_guild_theatre",
              "title": "Pink Floyd Laser Spectacular",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live show at The Guild Theatre. Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$40",
              "url": "https://www.tixr.com/e/179691",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9fe72867056b",
              "venue_id": "venue_cafe_du_nord",
              "title": "Austin Giorgio",
              "event_time": "May 28 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "The singer and entertainer brings his modern take on jazz standards and pop crooning to the live stage.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not listed on event page",
              "url": "http://www.foopee.com/by-band.0.html#Austin_Giorgio",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d26b424b0274",
              "venue_id": "venue_the_chapel",
              "title": "Isobel Campbell",
              "event_time": "May 28 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "The acclaimed Scottish singer-songwriter and former Belle and Sebastian member performs a set of delicate indie folk.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$26.00-$29.00",
              "url": "http://www.foopee.com/by-band.1.html#Isobel_Campbell",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-13T10:22:43.984937Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f309148e992b",
              "venue_id": "venue_great_american_music_hall",
              "title": "Thaiboy Digital, Whitearmor",
              "event_time": "May 28 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Goldenvoice Presents… Thaiboy Digital with Whitearmor.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$25/$30/$35",
              "url": "http://www.foopee.com/by-band.3.html#Thaiboy_Digital",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-07T16:14:03.875124Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-09T10:25:44.987863Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f0f1046288fc",
              "venue_id": "venue_kilowatt",
              "title": "Mint Field, Figure Eight",
              "event_time": "May 28 8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Mexico City's Mint Field brings their signature shoegaze and atmospheric rock to the stage, supported by Figure Eight.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$21.33",
              "url": "http://www.foopee.com/by-band.2.html#Mint_Field",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-07T16:15:27.099251Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-11T14:14:44.111086Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c66052ca6dc",
              "venue_id": "venue_the_knockout",
              "title": "Kilroy Roger, Sad Eyes Kill, Dusty Slims",
              "event_time": "May 28 8pm/9pm",
              "venue_name": "The Knockout",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Enjoy a night of live performances from Dusty Slims, Kilroy Rogers, and Sad Eyes Kill. This event showcases a variety of gritty and soulful musical styles.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12",
              "url": "http://www.foopee.com/by-band.1.html#Kilroy_Roger",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-07T16:15:27.099251Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-11T12:27:44.241764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_698666968f36",
              "venue_id": "venue_ccrma",
              "title": "Leila Abdul-Rauf: Architecture of Shadow",
              "event_time": "Thu, 05/28/2026 - 7:30pm - 8:30pm",
              "venue_name": "CCRMA",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "660 Lomita Dr, Stanford, CA 94305",
              "description": "Streaming and in-person:Click for stream CCRMA presents Leila Abdul-Rauf: Architecture of Shadow More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://ccrma.stanford.edu/events/leila-abdul-rauf-architecture-of-shadow",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ccrma",
                  "source_name": "CCRMA",
                  "fetched_at": "2026-05-08T10:21:49.655785Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-09T10:20:49.851925Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ccrma|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34a61989a513",
              "venue_id": "venue_mr_tipples",
              "title": "Astrid Kuljanic Trio ft. Scott Amendola",
              "event_time": "5/28/2026 7:00 PM",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Croatian vocalist Astrid Kuljanic presents a diverse evening of global music, drawing on her Adriatic heritage, Brazilian music, and jazz. Featuring Mat Muntz and Scott Amendola.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$15 – $30",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22994",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-11T10:10:30.072303Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-12T10:26:19.337845Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_870eb3b48499",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Anna Laura Quinn Trio",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Live jazz performance by the Anna Laura Quinn Trio in the intimate cabaret setting of the Blue Room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Check website for details",
              "url": "https://stookeysclubmoderne.com/music-and-events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-05-11T12:06:17.391939Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3332eb2e0238",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Nishanth Chari & Sameer Gupta - Sitar & Tabla",
              "event_time": "2026-05-28T19:30:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "Musicians Nishanth Chari and Sameer Gupta present a collaborative performance of Indian classical music on sitar and tabla.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "Check website for tickets",
              "url": "https://wyldflowrarts.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b88ebaf36aa4",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-28",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-28",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4de0a820c1c",
              "venue_id": "venue_the_lost_church",
              "title": "Anchor Donor Party",
              "event_time": "2026-05-28",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Special donor event at The Lost Church San Francisco.",
              "event_types": [
                "community"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m9SR2AY",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4e2614c54083",
              "venue_id": "venue_roccapulco",
              "title": "Anacondaz in San Francisco",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "The popular band Anacondaz brings their unique sound to San Francisco for a live performance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for details",
              "url": "https://eventcartel.com/events/anacondaz-in-san-francisco-tickets-7845/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7854fad4e1a2",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Thu May 28 2026",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/e/comedy-oakland-at-the-elbo-room-thu-may-28-2026-tickets-1986495717165",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7d3516723fe3",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity (Previews)",
              "event_time": "2026-05-28 2026-05-24T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Bess Wohl and directed by Emilie Whelan. Set on a Hollywood film shoot where the chaotic soundstage mimics the real-world climate crisis, this sharp-witted comedy explores egos, secrets, and hard truths.",
              "event_types": [],
              "price_info": "",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-05-28",
              "run_id": "run_98ccfcc4e387",
              "run_label": "Continuity (Previews), May 23 – May 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_057a99bb7d23",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance includes closed captioning.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_638b3c8a89e1",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Thursday Night Live Music",
              "event_time": "2026-05-28T18:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Mid-week live music performances that transform dinner into a social event. Featuring local musicians playing blues and classic rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_05c2b03551bd",
              "venue_id": "venue_black_cat",
              "title": "Maralisa & The Starlight Martinis",
              "event_time": "05/28/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nWith vocals rooted in an upbringing of heavy jazz, blues and soul influences such as Taj Mahal, Billie Holiday, Bonnie Raitt and Amy Winehouse, Maralisa’s distinct sound and timbre flow seamlessly through genre, creating a world of her own with a focus on the heart and emotion of a song. Revive Music writes, \"Maralisa has a confident, developed style that makes her immediately recognizable.\" \n\nBay Area raised, Maralisa studied jazz voice at The New School in New York and remained there for nearly a decade, forming her longtime band Space Captain (Tru Thoughts Records) and recording/performing as a guest vocalist in a number of NY based projects. She relocated to Los Angeles in 2020 for a few years before traveling north to San Francisco, which she now calls home. \n\nMaralisa has performed alongside Khruangbin, BADBADNOTGOOD, Ghostface Killah, Nick Hakim, The Hot 8 Brass Band, Kendra Morris and more at notable venues including Rough Trade, Pier 17, the Bryant Park Emerging Music Festival, Teragram Ballroom, Bimbo’s 365 Club and Mr. Tipple’s. Her first solo EP Sugarbird released in 2015 plays with genre and vocal arrangement, featuring many close collaborators from New York. Releases with Space Captain have included double single Easier / Remedy, In Memory EP, All Flowers In Time LP, and double singles Secret Garden / Back of My Mind and Birthday Cards / Chester Springs. \n\nHer jazz group, Maralisa & The Starlight Martinis, featuring seasoned Bay Area musicians Jay Sanders on piano, Eric Markowitz on bass and James Gallagher on drums, play a mix of classic standards, bossa and throwback soul inspired by vocal greats including Nina Simone and Julie London. Maralisa is currently performing throughout the Bay Area and working on Space Captain’s sophomore album as well as her first solo LP - a melding of soul, psych-pop and 70s folk exploring family history and influence and personal growth through visceral storytelling.\n  \nBand Lineup:\nJay Sanders - piano\nNico Martinez - bass\nJames Gallagher - drums\nJack Roben - guitar \nDanny Brown - sax",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/10930/?date=2026-05-28",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-15T11:42:48.344337Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-15T22:31:39.774240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_458bfe19b035",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-28T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-28T14:00:00",
              "event_date": "2026-05-28",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-28",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_64993191041f",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-28",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7fd81581229a",
              "venue_id": "venue_vino_locale",
              "title": "Thursday Acoustic Sessions",
              "event_time": "2026-05-28T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-28T18:30:00",
              "event_date": "2026-05-28",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "Acoustic performances by local artists in the intimate setting of the Victorian patio.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f33850618d35",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-05-28T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-05-28T18:30:00",
              "event_date": "2026-05-28",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8d1aea49ed26",
              "venue_id": "venue_cal_academy_of_science",
              "title": "NightLife: Mabuhay",
              "event_time": "2026-05-28T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "A night of Filipino pride and feel-good energy featuring local culture, science, and music. 21+ only.",
              "event_types": [],
              "price_info": "$25 - $35",
              "url": "https://www.calacademy.org/nightlife/mabuhay",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bb607d3bf9b7",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-05-28T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6c3a45559c9c",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_67d37619c241",
              "venue_id": "venue_joe_goode_annex",
              "title": "Duetrospectives",
              "event_time": "2026-05-28T19:30:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A collection of Jess Curtis' duets from 1995-2018, restaged and re-imagined by a group of artistic collaborators.",
              "event_types": [
                "dance"
              ],
              "price_info": "$20 – $35 (sliding scale)",
              "url": "https://joegoode.org/event/duetrospectives-presented-by-gravity/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6c0197afffc5",
              "venue_id": "venue_alhambra_public_house",
              "title": "Trivia Night",
              "event_time": "2026-05-28T19:30:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Weekly Trivia Night! Test your knowledge and compete for prizes.",
              "event_types": [],
              "price_info": "Free",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ee869944fd8f",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Thursday Jazz Night",
              "event_time": "2026-05-28T21:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Live jazz bands performing at The Lucky Horseshoe.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0c10eb1434b2",
              "venue_id": "venue_cry_baby",
              "title": "Kranium",
              "event_time": "2026-05-28T19:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Kranium live in Oakland at Crybaby, presented by Duke Concept.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/kranium-a-slight-delay-tour-live-in-oakland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_54252f9582e7",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Thursday night Argentine Tango milonga.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/milonga-malevaje/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_57d16f8745c8",
              "venue_id": "venue_first_church_berkeley",
              "title": "Midday Organ Meditation",
              "event_time": "2026-05-28T12:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-05-28T12:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Weekly midday meditation featuring organist William Ludtke. Includes 30 minutes of silent meditation followed by 30 minutes of organ music.",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.firstchurchberkeley.org/resonance/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7aea887cdda8",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Choral Evensong",
              "event_time": "2026-05-28T17:30:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-05-28T17:30:00",
              "event_date": "2026-05-28",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A mid-week choral service in the Anglican tradition, featuring meditative and jubilant music performed by the cathedral choir.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://gracecathedral.org/events/choral-evensong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_96c572e0451a",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-05-28T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_20fd32e1f7fb",
              "venue_id": "venue_dance_mission",
              "title": "Dance Mission Fundraiser",
              "event_time": "2026-05-28T17:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-05-28T17:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Interactive cooking party fundraiser with Chef Vanessa Silva featuring hands-on stations, chef-crafted food, and a live DJ in support of Dance Mission Theater’s stabilization campaign.",
              "event_types": [],
              "price_info": "$200/person",
              "url": "https://dancemissiontheater.org/2026/04/05/may-28-dance-mission-fundraiser-with-culinary-artistas/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ae950f3b9999",
              "venue_id": "venue_neck_of_the_woods",
              "title": "ProleteR & .Tetsuo",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "French beatmaker ProleteR brings his signature blend of swing, nu jazz, and instrumental hip-hop to San Francisco, joined by .Tetsuo.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$20 adv / $25 at the door",
              "url": "https://www.ticketweb.com/event/proleter-tetsuo-neck-of-the-woods-tickets/13426338",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_98a64415c094",
              "venue_id": "venue_1015_folsom",
              "title": "THROTTLE: DIØN",
              "event_time": "05/28/2026 9pm-2:30am",
              "venue_name": "1015 Folsom",
              "event_start": "2026-05-28T02:30:00",
              "event_date": "2026-05-28",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "hard techno",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Tickets | Bottle Service",
              "url": "https://ra.co/events/2437057",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-16T00:10:22.765248Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_adefb003ac62",
              "venue_id": "venue_chase_center",
              "title": "Valkyries vs. Fever",
              "event_time": "2026-05-28T19:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fcf74f150bd8",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-28T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-28T17:00:00",
              "event_date": "2026-05-28",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Thursday happy hour session.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a8f210306abf",
              "venue_id": "venue_white_horse",
              "title": "Queer-aoke",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Weekly Thursday night karaoke.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-aoke-every-tue-thu-at-white-horse-bar-8pm-tickets-880562304147",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4ac4a93170b4",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Thursday Bible Study",
              "event_time": "2026-05-28T10:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-05-28T10:00:00",
              "event_date": "2026-05-28",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Weekly Zoom Bible study looking at the readings for the following Sunday’s worship.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://flcpa.org/bible-study/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-16T01:02:23.851080Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_86e10915553f",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Nico Carney",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Nico Carney, featuring Robert Omoto and Patrick Fishman.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135562",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-28",
              "run_id": "run_cab9ef86866b",
              "run_label": "Nico Carney, May 28 – May 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a1a62764407f",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-28T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-28T16:00:00",
              "event_date": "2026-05-28",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c404b87d6668",
              "venue_id": "venue_sfmoma",
              "title": "The Zizi Show",
              "event_time": "2026-05-28T18:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Performance",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0da9d2b8c1a",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: At the Edge",
              "event_time": "2026-05-28T18:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the boundaries of science and creativity tonight, from geology, to neuroscience, to a genre-bending musical performance.",
              "event_types": [
                "live_music",
                "experimental",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4635ac325bc1",
              "venue_id": "venue_exploratorium",
              "title": "Resonance: Circuit des Yeux",
              "event_time": "2026-05-28T19:30:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Haley Fohr of Circuit des Yeux and Alan Sparhawk present Wordless Music, a recent work for solo voice based on a simple concept—one microphone and one voice.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_740898f8c6c3",
              "venue_id": "venue_blush",
              "title": "Live Music at Blush!",
              "event_time": "2026-05-28",
              "venue_name": "Blush! Wine Bar",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "476 Castro St, San Francisco, CA 94114",
              "description": "Quality live music featuring Blues, Jazz, Gypsy Jazz, Americana and more.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_blush",
                  "source_name": "Blush! Wine Bar",
                  "fetched_at": "2026-05-17T12:49:58.239369Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_blush|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf47a159804e",
              "venue_id": "venue_public_works",
              "title": "Yamagucci",
              "event_time": "2026-05-28T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Yamagucci brings a signature blend of high-energy beats and infectious rhythm to the dancefloor.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://publicsf.com/events/yamagucci-presented-by-public-works-safra/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_98450b651c3e",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-05-28",
              "venue_name": "David Brower Center",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-05-28",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7f8d8fe69156",
              "venue_id": "venue_rootstock_arts",
              "title": "Nishanth Chari & Sameer Gupta",
              "event_time": "2026-05-28T19:30:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Experience a traditional Indian classical duet featuring the intricate strings of the sitar accompanied by rhythmic tabla percussion. Nishanth Chari and Sameer Gupta bring their technical mastery to this evocative musical dialogue.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f972e00d427",
              "venue_id": "venue_tommy_ts",
              "title": "EARTHQUAKE",
              "event_time": "2026-05-28 2026-05-29",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-28",
              "run_id": "run_adcb5609c885",
              "run_label": "EARTHQUAKE, May 28 – May 30",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63ca92a6f06d",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-28T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-28",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_653a57d45361",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-28T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-28T14:00:00",
              "event_date": "2026-05-28",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-28",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_853c5f41a8a4",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Live jazz and soul featuring the Hammond organ. Chris Siebert leads a rotating group of talented local musicians.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf2bf15814c2",
              "venue_id": "venue_the_sound_room",
              "title": "Jules Leyhe & The Family Jules",
              "event_time": "Thursday, May 28, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "We start with Jules Leyhe & The Family Jules.\n\nJules is one of the world’s foremost blues slide-guitar players—so much so that even Premier Guitar magazine called his music “the best blues slide licks since Derek Trucks, maybe even Duane Allman.” His band is also top-notch - featuring Ian McArldle on paino, Isaac Schwartz on drums and renowned bassist Matt Roades.\n\nThen we add a special guest to create something new and exciting!\n\nThis month the featured guest is Adam Levy.\n\nChalking up an enviable career to luck is characteristic of the soft-spoken Levy, whose humility is echoed in his musical voice. Much as he chooses his words wisely, Adam is tactful and tasteful in his guitar playing, never stepping into a solo spotlight without something meaningful to add to a song. One great example is his guitar work on the Norah Jones hit “Come Away with Me.” Understated but memorable, Levy’s solo draws on elements of jazz and country to reflect perfectly the simple, earnest sentiment of the composition.\n\nMaking music with Norah Jones was just one experience in a string of elite gigs for Levy. A few years prior he had met Tracy Chapman, who enlisted him to play on her mid-’90s masterpiece, New Beginning. Levy’s guitar earns the limelight in the bluesy “Give Me One Reason,” which won Best Rock Song at the 1997 Grammy Awards. More recently, he has worked with Ani DiFranco, Rosanne Cash, Jamestown Revival, and Allen Toussaint.\n\nTickets at Jules Leyhe & The Family Jules with Adam Levy",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/jules-leyhe-amp-the-family-jules-with-adam-levy-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43d84df8ac5f",
              "venue_id": "venue_madrone_art_bar",
              "title": "Aaron Hammerman",
              "event_time": "May 28 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Aaron Hammerman of the Deep Basement Shakers specializes in primal, joint-rocking boogie, barrelhouse, blues and early R&B. Vintage, foot- stomping American roots music designed for good times. Let’s get down! 6 – 9pm No Cover",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/the-deep-basement-shakers-2026-01-22-2026-03-26/2026-05-28/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0571000fe056",
              "venue_id": "venue_madrone_art_bar",
              "title": "Huney Knuckles",
              "event_time": "May 28 @ 9:00 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "HUGE NOISE, world class musicianship, mind-bending solos, and uber funky jams Kevin Wong, Darian Gray, Tony Peebles & Bian Sheu 9pm-12:30am / $7 The newest kids on the block, the Huney Knuckles (formerly the Black Star Pirates) combines the left hand keyboard bass wizardry of Kevin Wong with the indomitable pocket of Darian Gray, touring [&hellip;]",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$7",
              "url": "https://madroneartbar.com/event/huney-knuckles-14-2026-01-22-2026-05-28/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14e4808bb633",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazzschool Student Performance Series",
              "event_time": "2026-05-28",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "This recurring series highlights the diverse talents of Jazzschool students as they gain professional experience performing for a live audience.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/jazzschool-student-performance-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-28",
              "run_id": "run_0ae56a30c533",
              "run_label": "Jazzschool Student Performance Series, May 26 – Jun 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_07696f004d72",
              "venue_id": "venue_rite_spot_cafe",
              "title": "Dead Sailor Girls / Trivia Nite",
              "event_time": "May 28, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Early: Dead Sailor Girls\nLate: Trivia Nite with Katy!",
              "event_types": [
                "live_music",
                "sports"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_039570865d34",
              "venue_id": "venue_sfjazz_miner",
              "title": "OPEN SOUNDCHECK: RAVI COLTRANE & TERENCE BLANCHARD",
              "event_time": "May 28 2026 4:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-28T16:30:00",
              "event_date": "2026-05-28",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/open-soundcheck-ravi-coltrane-terence-blanchard/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e63d4a285e28",
              "venue_id": "venue_sfjazz_miner",
              "title": "TERENCE BLANCHARD & RAVI COLTRANE",
              "event_time": "May 28 2026 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Miles Davis & John Coltrane Centennial",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Almost Sold Out",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/terence-blanchard-ravi-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a85d04612ac0",
              "venue_id": "venue_shapeshifters",
              "title": "Earth Balance",
              "event_time": "Thursday, May 28, 2026 7pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "art"
              ],
              "price_info": "Admission: $15 (discount for members)",
              "url": "https://buytickets.at/shapeshifterscinema/2203321",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-05-18T10:46:48.460857Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e6bd58c68ec2",
              "venue_id": "venue_dawn_club",
              "title": "MIKE OLMOS QUINTET",
              "event_time": "Thursday, May 28, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Mike Olmos has become one the most in demand jazz musicians in the San Francisco Bay Area while maintaining a frequent national and international performance/touring schedule. In the Bay, Mike has been performing with various bands such as the Marcus Shelby Jazz Orchestra, Lavay Smith and her Red Hot Skillet Lickers, Pete Escovedo, Wil Blades, Eddie Roberts, Jubu and Legally Blynd. ​When in town he can be found hosting and joining jam sessions at local clubs.​He has had the privilege of performing with Rosemary Clooney, Etta James, Michael Buble and many other great talents.He can be heard on late legendary Blues/R&B singer Etta James' Grammy nominated final album \"The Dreamer\" as well as many others.\n\n\n  \n#block-b449003206fd84e25334 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-b449003206fd84e25334 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-b449003206fd84e25334 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-b449003206fd84e25334 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-b449003206fd84e25334 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-b449003206fd84e25334 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-b449003206fd84e25334 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/mike-olmos-quintet-1-tmadk-jz535-cwpmt-52csh-8cllg-zj9h4-bbrtp-bh4nk-55rrn-tfbhj-a56jl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1e74374aa776",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Lilan Kane",
              "event_time": "Thursday, May 28, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Lilan Kane returns to Keys Jazz Bistro performing songs by female singers who have influenced her personal musical journey and style.Lilan Kane is a vocalist rooted in jazz and soul. Often noted for her distinct vocal timbre and musicality, she has captured audiences in the Bay Area for years selling out venues like SFJAZZ and Yoshis and playing various festivals. With one full length album, Love, Myself and two EPS, she has shared the stage with many notable performers including Pete Escovedo, Jazz Mafia, Ray Obiedo, Sharon Jones & The Dap Kings, Hall & Oates, Morgan James, and many more.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/lilan-kane-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b11f98fa20a0",
              "venue_id": "venue_hillside_club",
              "title": "Dance Night!",
              "event_time": "May 28, 2026, 7:00 PM – 10:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "An energetic social event inviting guests to the Hillside Club for an evening of music and dancing.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Learn more",
              "url": "https://www.hillsideclub.org/event-details/dance-night-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dbb178260d6f",
              "venue_id": "venue_ivy_room",
              "title": "Soothsayer, Bloodhum & Theya",
              "event_time": "Thursday May 28 7:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "pure severe live presents",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/181243",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30bf316aacc1",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "JERRY JOSEPH, JEFF COTTON’S GIN JOINT (SOLO)",
              "event_time": "Thu May 28 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "An Evening of Authentic American Music and Storytelling",
              "event_types": [
                "live_music",
                "folk",
                "literary"
              ],
              "price_info": "21+, $17.00",
              "url": "https://wl.seetickets.us/event/jerry-joseph-jeff-cottons-gin-joint-solo/689413?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_50f12167226c",
              "venue_id": "venue_poor_house_bistro",
              "title": "David Bowie Glam Rock Jam Night",
              "event_time": "Thu, May 28, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "Get ready to turn back the clock and dive headfirst into the glitter, glam, and cosmic energy of David Bowie at Poor House Bistro’s Glam Rock Theme Jam Night! This one-of-a-kind evening will celebrate the…",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5421",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fcd64e2ce1be",
              "venue_id": "venue_winters",
              "title": "Hill",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f1a06d833d21",
              "venue_id": "venue_brick_and_mortar",
              "title": "Jorden Kyle, Danny Ali, & Friends",
              "event_time": "Thu 5.28 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "BRICK & MORTAR MUSIC HALL PRESENTS",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25.00",
              "url": "https://www.brickandmortarmusic.com/tm-event/jorden-kyle/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_36c1794cab74",
              "venue_id": "venue_yerba_buena_center",
              "title": "Neighborhood Choirs Concert",
              "event_time": "MAY 28, 2026 12:30PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-28T12:30:00",
              "event_date": "2026-05-28",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "One voice can change the world, but when people sing together they transform themselves. Singers from the Community Music Center Openhouse LGBTQ+ Choir, directed by Zahra Rothschild, and CMC 30th Street Choir, directed by Martha Rodriquez Salazar, perform popular and folkloric music from the Amer...",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/community-music-center-neighborhood-choirs/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9a81d54774aa",
              "venue_id": "venue_bird_and_beckett",
              "title": "Sixteen Rivers Press 2026 Releases",
              "event_time": "MAY 28, 2026 7PM",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Be the first to discover what's next! Join us at Bird & Beckett Books for an exclusive preview of the \"Sixteen Rivers Press 2026 releases.\" Mingle with fellow book lovers and get an exciting glimpse into upcoming poetry, fiction, and literary works from this...",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/sixteen-rivers-press-2026-releases/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_433ae8c61dd3",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-28T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-28",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_966297689e97",
              "venue_id": "venue_thee_stork_club",
              "title": "MS.SMITH (album release)",
              "event_time": "2026-05-28T21:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Album release show for MS.SMITH.",
              "event_types": [],
              "price_info": "Price not listed",
              "url": "https://wl.seetickets.us/event/mssmith-album-release/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-18T13:25:21.339846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cb137810846c",
              "venue_id": "venue_boom_boom_room",
              "title": "House of Love 3",
              "event_time": "2026-05-28T20:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "This collaborative musical showcase features live performances by Casa Del Sol, Tree Adams, Scott Law, and other guest artists.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/house-of-love-3-ft-casa-del-sol-tree-adams-scott-law-dale-fanning-chris-haugen-special-guests/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_feada8a2afe9",
              "venue_id": "venue_ashkenaz",
              "title": "Tom Rigney & Flambeau",
              "event_time": "05/28/2026 7:00 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Cajun/Zydeco",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/180748",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e0043e23ef2",
              "venue_id": "venue_4_star_theater",
              "title": "Good Neighbor Sam",
              "event_time": "May 28, 2026 7:00 PM – 9:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-28T19:00:00",
              "event_date": "2026-05-28",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The Western Neighborhoods Project presents a screening of this 1964 comedy starring Jack Lemmon. The film follows an advertising executive who must pretend to be his neighbor's husband to help her secure an inheritance.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/wnp-film-club-good-neighbor-sam",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53bb2874b2e0",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-28",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-28",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a12ae2ed592b",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-28",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-28",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aa80fedc0798",
              "venue_id": "venue_local_edition",
              "title": "The Art Khu Quartet",
              "event_time": "May 28, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-28T20:30:00",
              "event_date": "2026-05-28",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Arthur Khu is a world-renowned pianist whose remarkable virtuosity and artistry drawinspiration from jazz legends like Keith Jarrett, Herbie Hancock, and Chick Corea, as well asclassical composers such as Chopin and Debussy. He's also a prolific composer whose styleblends Wayne Shorter's post-bop sensibilities with elements of Brahms and Rachmaninoff.Collaborating with some of California's finest musicians, his music is always intense, emotional,and driving.",
              "event_types": [
                "live_music",
                "jazz",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kwazn5t9r7ak59x-h3dwl-7hzkw-awb8n-7my9y-xbp55-lecjc-ayh5z-28m7r-wrfe2-5ephw-dnl5w-zwg8n-zc4nw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eca7480e8b79",
              "venue_id": "venue_cat_club",
              "title": "1984",
              "event_time": "Thu May 28, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The Best of the 80s on 2 Dance Floors\n——\n9pm-2am | No Cover",
              "event_types": [],
              "price_info": "No Cover",
              "url": "https://www.sfcatclub.com/calendar/ymp4cekk5sb4y8x-chwt8-3rd9b-ztzra-abpta-7a9be",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-05-18T14:28:23.170830Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_146721fd19a4",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-28",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-28",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_569b845fab1f",
              "venue_id": "venue_plough_and_stars",
              "title": "Set Dancing",
              "event_time": "2026-05-28T21:00:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "Featuring Dave Cory & Mahati Chintapalli",
              "event_types": [
                "live_music",
                "folk",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_edb78179903f",
              "venue_id": "venue_club_fox",
              "title": "One Man Gone: Grateful Dead Tribute",
              "event_time": "Thursday May 28th",
              "venue_name": "Club Fox",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Thursday May 28thONE MAN GONEGrateful Dead TributeDoors 7PM / Show 8PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/one-man-gone-grateful-dead-tribute-tickets-1981506765075?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42f46d2e0978",
              "venue_id": "venue_elis_mile_high",
              "title": "Daisychain, King Dream, Swiss",
              "event_time": "Thu, May 28, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Daisychain, King Dream, and Swiss perform a diverse lineup of live music sets.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/daisychain-king-dream-swiss",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cfed0e821d38",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-28T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_51dfc0286d52",
              "venue_id": "venue_the_fireside",
              "title": "Thursday Music & Lessons",
              "event_time": "2026-05-28",
              "venue_name": "The Fireside",
              "event_start": "2026-05-28",
              "event_date": "2026-05-28",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Ukulele lessons, live rock, jazz & blues guitar, DJ house music, or all vinyl soul Depending on the week",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "dj_party",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92abd56c3771",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Boards Of Canada Listening Party",
              "event_time": "May 28, 2026 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-05-28T17:00:00",
              "event_date": "2026-05-28",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "ome hear the new Boards Of Canada album, Inferno, at Amoeba Hollywood with friends and fellow fans Thursday, May 28 at 5pm!!\n\nAttendees receive a \"Listening Session Goodie Pack\" (while supplies last) and can purchase Inferno a day before it comes out (on limited edition red translucent 2LP vinyl in triple gatefold sleeve with a 16-page booklet, black 2LP vinyl and CD with 20-page booklet).\n\n- No purchase necessary.\n\n- No RSVP needed. Event is free/all-ages.\n\n- Limit of 1 \"Goodie Pack\" per person. Quantities are limited/while they last beginning at 5pm.",
              "event_types": [
                "community",
                "film"
              ],
              "price_info": "free/all-ages",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3126/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-05-18T15:53:38.118113Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_282cb00b9a9e",
              "venue_id": "venue_the_riptide",
              "title": "Metzger's Field Band",
              "event_time": "2026-05-28T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-05-28T18:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aa10c70e7a58",
              "venue_id": "venue_the_riptide",
              "title": "Punk Rock and Schlock Karaoke",
              "event_time": "2026-05-28T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-05-28T21:00:00",
              "event_date": "2026-05-28",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_646e0b3b8248",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-28T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-28T19:45:00",
              "event_date": "2026-05-28",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/thu-may-28-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8bd725f5f34e",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "COBB'S COMEDY ALLSTARS",
              "event_time": "Thu May 28, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-28T19:30:00",
              "event_date": "2026-05-28",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "A curated lineup of the best local and national comedians takes the stage for a diverse night of top-tier stand-up.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/cobbs-comedy-allstars-san-francisco-california-05-28-2026/event/1C006477B8F0B2F7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_24860b5dbb0c",
              "venue_id": "venue_san_jose_improv",
              "title": "TammyTea Love",
              "event_time": "May 28 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-05-28T20:00:00",
              "event_date": "2026-05-28",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/tammytea+love/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-05-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-29": {
          "date": "2026-05-29",
          "updated_at": "2026-05-18T16:16:06.623951Z",
          "events": [
            {
              "event_id": "evt_a9e97b595338",
              "venue_id": "venue_canada_theater",
              "title": "Respighi, Mahler, and Lutosławski",
              "event_time": "Fri May 29, 2026 at 7:30 pm",
              "venue_name": "Cañada College Theater",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
              "description": "Redwood Symphony’s third Sondheim show in concert, after previous productions of Sweeney Todd and our recent Follies. This will be the West Coast premiere of a brand new opera orchestra-sized arrangement by the show’s original orchestrator, Jonathan Tunick. These performances will include the entire wonderfully literate and witty show, with dialogue and clowns (we’re sending in all of them!)",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "Paid",
              "url": "https://redwoodsymphony.org/concert/a-little-night-music-in-concert/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Redwood Symphony 41",
                  "fetched_at": "2026-03-24T04:47:04.794246Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_redwood_symphony_41"
                },
                {
                  "source_name": "Cañada College Theater",
                  "fetched_at": "2026-03-24T15:44:41.951128Z",
                  "strategy_used": "LLM",
                  "source_id": "v_canada_theater"
                },
                {
                  "source_id": "s_redwood_symphony",
                  "source_name": "Redwood Symphony",
                  "fetched_at": "2026-04-02T07:40:35.711350Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_canada_theater|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_46a0838d8b98",
              "venue_id": "venue_the_independent",
              "title": "RAY BULL",
              "event_time": "5.29 Show: 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Brooklyn-based duo Ray Bull performs their quirky and infectious indie pop tracks. Known for their creative visuals and catchy songwriting, they offer a fresh and engaging live experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/ray-bull/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87fea3d91a21",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Chip Kinman & Band",
              "event_time": "Friday May 29 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Punk pioneer Chip Kinman leads a night of gritty rock and roll alongside local favorites Steakhouse.",
              "event_types": [
                "live_music",
                "electronic",
                "rock"
              ],
              "price_info": "$20 $25.31 in advance [20 face value + 5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260529.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c898e7b1c140",
              "venue_id": "venue_halcyon",
              "title": "M-High, Jordy, Saxon",
              "event_time": "05/29/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-05-29T22:00:00",
              "event_date": "2026-05-29",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "M-High brings his signature house grooves and soulful production style to Halcyon for an evening of sophisticated dance music. The set will highlight his talent for blending classic house elements with modern flair.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/Yceba6b568ff?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-04-07T09:47:54.600518Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_247ed80e95ba",
              "venue_id": "venue_4_star_theater",
              "title": "Kelley Stoltz Record Release",
              "event_time": "May 29, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Celebrate the release of Kelley Stoltz's latest record with a live performance featuring support from The Telephone Numbers and No Picture. The event brings together local indie-pop and rock talent for a night of new music.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-kelley-stoltz-telephone-numbers",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c6035dd3f55",
              "venue_id": "venue_castro_theater",
              "title": "INJI",
              "event_time": "May 29, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Turkish-born, NYC-based artist INJI is flipping the script on dance-pop — fusing whip-smart lyrics, floor-shaking beats, and razor-sharp wit into club anthems that hit just as hard intellectually as they do on the dancefloor.. A classically trained pianist turned Wharton grad, she exploded onto t...",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/inji-260529",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b6d229c0a98a",
              "venue_id": "venue_greek_theatre",
              "title": "Alabama Shakes, Nathaniel Rateliff",
              "event_time": "May 29, 2026 8:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Alabama Shakes returns to the stage with special guest Nathaniel Rateliff for a soulful night at the Greek Theatre.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/alabama-shakes-260529",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-08T10:38:48.905211Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_837365863959",
              "venue_id": "venue_bill_graham_civic",
              "title": "Seven Lions",
              "event_time": "May 29, 2026 7:30pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "2nd Show Added by Popular Demand!\nAsleep in the Garden of Infernal Stars Tour - TRIVECTA B2B KILL THE NOISE\nAVELLO\nOLIVERSE",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/seven-lions-260529",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-07T10:56:36.561174Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_62a9373d2bb9",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-05-29",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-06T11:32:02.068017Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-05-29",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2e77fc345c87",
              "venue_id": "venue_sjz_break_room",
              "title": "Wally Schnalle's Idiot Fish Septet",
              "event_time": "2026-05-29T19:00:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "Idiot Fish is the creation of drummer/composer Wally Schnalle. Brewing since 2010 when this group first appeared live at Summer Fest, Wally has incorporated many compositional evolutions, technological learning curves, and member incarnations to bring the tour de force that the band now possesses.",
              "event_types": [
                "live_music",
                "jazz",
                "experimental"
              ],
              "price_info": "$20.00",
              "url": "https://sanjosejazz.org/events/wally-schnalles-idiot-fish-septet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-04-12T01:27:25.145061Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_jazz",
                  "source_name": "San Jose Jazz",
                  "fetched_at": "2026-04-12T19:32:27.049687Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_80828de89f1c",
              "venue_id": "venue_regency_ballroom",
              "title": "dj Arjun Rampal",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Renowned actor and DJ Arjun Rampal takes to the decks at JAX Vineyards to spin a curated mix of electronic and club tracks. This event offers a sophisticated nightlife experience within the unique vineyard environment.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.3.html#dj_Arjun_Rampal",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-16T09:13:42.764342Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-30T23:11:50.885369Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_39ce27572cd5",
              "venue_id": "venue_odc_theater",
              "title": "The Glance: A Laptopera",
              "event_time": "5/29/2026 8:00 PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "The Glance: A Laptopera The Glance: A Laptopera is an immersive opera that reimagines the Orpheus myth for laptop orchestra and live voices. In this contemporary retelling, lovers Orphea and Eurydice struggle to build intimacy in a world shaped by constant surveillance, confronting their own limitations around trust and connection.Co-produced by Laptopera Productions and 836M, The Glance was created by composer Anne Hege with collaborators including electronic instrument builders Daniel Iglesia and Curtis Ullerich; vocalists Sidney Chen, Carmina Escobar, and Michele Kennedy; art director Kim Anno; lighting designer Mitchell Ost; and choreographer Carrie Ahern.https://www.annehege.com/theglance More...",
              "event_types": [
                "live_music",
                "classical",
                "theater",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22831",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-18T07:02:44.259876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-04-18T18:37:51.317086Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_621a9a4b7bc7",
              "venue_id": "venue_cornerstone",
              "title": "Jiluka",
              "event_time": "May 29 2026 6:30pm/7:30pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-29T18:30:00",
              "event_date": "2026-05-29",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "The Japanese visual kei metal band brings their high-energy 'Electro Gothic Metal' sound to the stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jiluka",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ceacfa552db",
              "venue_id": "venue_august_hall",
              "title": "Vundabar, Yot Club, Goon",
              "event_time": "May 29 6pm/7:30pm",
              "venue_name": "August Hall",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Boston-based trio Vundabar brings their high-energy brand of \"sludge-pop\" to the stage, blending jangly guitar melodies with frenetic, post-punk intensity. They are joined by the viral lo-fi sensation Yot Club, whose sun-drenched indie-pop sound provides a nostalgic and breezy counterpoint...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$44.95",
              "url": "http://www.foopee.com/by-band.3.html#Vundabar",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-20T12:44:45.071428Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-20T13:07:20.521600Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_03f7615927cd",
              "venue_id": "venue_jax_vinyards",
              "title": "Ollie Dudek Trio",
              "event_time": "May 29 5:30pm",
              "venue_name": "JAX Vineyards",
              "event_start": "2026-05-29T17:30:00",
              "event_date": "2026-05-29",
              "venue_address": "326 Brannan St, San Francisco, CA 94107",
              "description": "San Francisco native and accomplished jazz bassist Ollie Dudek leads a trio performing immortal standards from the Great American Songbook. The performance is co-sponsored by the nonprofit Jazz in the Neighborhood.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.2.html#Ollie_Dudek_Trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-28T12:44:01.736992Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_jax_vinyards",
                  "source_name": "JAX Vineyards",
                  "fetched_at": "2026-05-11T12:56:39.313285Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_jax_vinyards|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c67fb6fcc39",
              "venue_id": "venue_the_uc_theatre",
              "title": "Chaos & Carnage 2026",
              "event_time": "May 29 4:45 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-29T16:45:00",
              "event_date": "2026-05-29",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "A massive lineup of deathcore and extreme metal bands delivers an intense night of heavy music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$45 + FEES",
              "url": "https://www.theuctheatre.org/shows/chaos-carnage-2026-w-thy-art-is-murder-bodysnatcher-carnifex-special-guests-29-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f125f00b8bd8",
              "venue_id": "venue_rickshaw_stop",
              "title": "Samiam, Flatliners",
              "event_time": "May 29 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Samiam, Flatliners $25/$30",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30",
              "url": "http://www.foopee.com/by-band.3.html#Samiam",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-18T11:27:44.257743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a79d17fc0add",
              "venue_id": "venue_guild_theatre",
              "title": "Mason Jennings",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live concert at The Guild Theatre. Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$45",
              "url": "https://www.tixr.com/e/177209",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_41759d8b4509",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Jovino Santos Neto Trio",
              "event_time": "2026-05-29T17:30:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-05-29T17:30:00",
              "event_date": "2026-05-29",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Master pianist and composer Jovino Santos Neto presents Brazilian Jazz featuring modern harmonic journeys and high-energy grooves, accompanied by Scott Thompson and Dave Flores.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "$25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/concerts/2026/5/29/jovino-santos-neto-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-05-06T18:09:28.971011Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b81f6a758fde",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "David Michalak",
              "event_time": "Friday, May 29, 2026\n           7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Other Dimensions in Sound is our Friday music series curated and hosted by Boohaabian multi reed player extraordinare David Boyce. Each week David will be inviting different musical guests to join him in our galeria for a night of musical medicina.\n\nTonight David welcomes David Michalak.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/ejchp9yswb7jlkygl2ymzbrwlplwxn",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-05-06T19:00:19.607140Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-07T10:10:14.629558Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_67265df72767",
              "venue_id": "venue_counterpulse",
              "title": "TenderArts Arts Kiosk",
              "event_time": "2026-05-29T13:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-05-29T13:00:00",
              "event_date": "2026-05-29",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "Visual artists exhibit and sell their work at the JCDecaux Kiosk on Market Street at 6th as part of the CounterPulse TenderArts Program.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Free",
              "url": "https://counterpulse.org/tenderarts/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0289a5e98186",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Ravel & Music of the Americas",
              "event_time": "5/29/2026 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Ginastera, López Bellido, Turina, Ravel | Harth-Bedoya, Higgins, San Francisco Symphony",
              "event_types": [
                "live_music",
                "classical",
                "workshop"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23472",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-07T14:07:06.403189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-17T11:43:13.664569Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9261606ee24f",
              "venue_id": "venue_the_chapel",
              "title": "Allah-Las, Sam Blasucci",
              "event_time": "May 29 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Allah-Las deliver their signature blend of 1960s-inspired garage rock and surf-psych for a nostalgic musical evening.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$38.00-$42.00",
              "url": "http://www.foopee.com/by-band.0.html#Allah_Las",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-16T10:29:13.529574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c06393eae24",
              "venue_id": "venue_great_american_music_hall",
              "title": "Forbidde",
              "event_time": "May 29 2026 6pm/7pm",
              "venue_name": "Great American",
              "event_start": "2026-05-29T18:00:00",
              "event_date": "2026-05-29",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "A heavy-hitting lineup of thrash and progressive metal bands featuring veterans Forbidden and Cynic.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35/$40",
              "url": "http://www.foopee.com/by-band.1.html#Forbidde",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-07T16:14:03.875124Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-11T10:18:41.946842Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2044eb0bdbff",
              "venue_id": "venue_the_knockout",
              "title": "Ex Heir, Le Mal, 55 Castles, Yama Uba",
              "event_time": "May 29 8pm/9pm",
              "venue_name": "The Knockout",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Immerse yourself in a night of darkwave and post-punk featuring Le Mal, 55 Castles, and Yama Uba. The evening promises atmospheric synths and driving basslines.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.1.html#Ex_Heir",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-07T16:15:27.099251Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-13T11:55:41.198027Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_46aa542e0993",
              "venue_id": "venue_1015_folsom",
              "title": "LP GIOBBI",
              "event_time": "Fri, May 29 •  10:00 PM",
              "venue_name": "1015 Folsom",
              "event_start": "2026-05-29T22:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Renowned DJ and producer LP Giobbi brings her signature blend of piano-driven house music to the stage at The Great Northern. Attendees can expect an uplifting performance from this classically trained musician and electronic artist.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/lp-giobbi/683944?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-07T16:30:07.357520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-09T11:49:02.445110Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e3e5530c869",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Paul McCartney Listening Party",
              "event_time": "May 29, 2026 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-05-29T17:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Amoeba Music is celebrating the new Paul McCartney album, The Boys of Dungeon Lane, with an in-store listening party on release day! \n\t\n\tCome together with your friends old and new to hear The Boys of Dungeon Lane at Amoeba. We'll have  postcard party favors, tote bags with purchase of the new album, and a chance to win a very special raffle prize!\n\n- Event is free/all-ages\n\n- Prize will be raffled off to one lucky winner after album playback.\n\n- Postcards, tote with purchase are both while supplies last and one per person.\n\n- Raffle tickets are free/no purchase necessary. One per person and must be present to win.\n\n- This is a fan event only. Paul McCartney will not be in attendance.",
              "event_types": [
                "community",
                "film"
              ],
              "price_info": "free/all-ages",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3127/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-05-07T16:44:40.206463Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_amoeba_music",
                  "source_name": "Amoeba Music",
                  "fetched_at": "2026-05-07T17:23:15.912341Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_91eb56000120",
              "venue_id": "venue_public_works",
              "title": "John Digweed",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Legendary DJ John Digweed showcases his mastery of progressive house and techno in this highly anticipated performance. With decades of experience, he provides a sophisticated and atmospheric journey through electronic music.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Sold Out",
              "url": "https://www.tixr.com/groups/publicsf/events/set-with-john-digweed-bedrock-in-sf-183218",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-08T12:02:40.762036Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-13T12:28:55.247094Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_658abda43ca1",
              "venue_id": "venue_the_mighty",
              "title": "SQUISH",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "A night of hardgroove and bass-heavy techno featuring BADSISTA, mad miran, Pariah, and DJ DEADNAME, presented by the SQUISH collective (co-promoted by Fake and Gay).",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/events/1898745",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-09T22:32:01.718472Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_fake_and_gay",
                  "source_name": "Fake and Gay",
                  "fetched_at": "2026-05-12T11:40:52.110395Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_mighty|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_68ba1bbfcf0d",
              "venue_id": "venue_the_starry_plough",
              "title": "Classic Metal",
              "event_time": "Fri, May 29 Show: 6pm",
              "venue_name": "The Starry Plough",
              "event_start": "2026-05-29T18:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "The Starry Plough hosts a night dedicated to the powerful riffs and high energy of classic heavy metal music. Fans can enjoy a selection of hard-hitting tracks from the genre's most influential eras.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thestarryplough.com/event/classic-metal/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-12T10:28:37.963652Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fae548d2609d",
              "venue_id": "venue_the_starry_plough",
              "title": "Left Of The Dial",
              "event_time": "Fri, May 29 Show: 8pm",
              "venue_name": "The Starry Plough",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "Named after the classic anthem for college radio, this event features a curated selection of alternative and indie rock music. It offers a showcase for underground sounds and non-mainstream artists at The Starry Plough.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thestarryplough.com/event/left-of-the-dial/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-12T10:28:37.963652Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_567dde154551",
              "venue_id": "venue_presidio_theater",
              "title": "Opera Parallèle: Doubt",
              "event_time": "2026-05-29",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Opera Parallèle returns to the Presidio Theatre to present the world premiere of a newly reimagined version of Doubt, the iconic story of suspicion, morality, and shifty power dynamics in a Catholic school. Adapted from John Patrick Shanley’s Oscar-nominated film and Pulitzer Prize-winning play, thi...",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/opera-parallele-doubt-at-the-presidio-theatre",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-13T10:56:14.324132Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-05-13T12:28:00.187092Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-29",
              "run_id": "run_28348a5c4fe4",
              "run_label": "Opera Parallèle: Doubt at the Presidio Theatre, May 29 – May 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a62c4a175f32",
              "venue_id": "venue_madarae",
              "title": "TMPLE (Hybrid Set) at MadaRae",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "London-based duo TMPLE (Charlie Jordan and James Fitz-Gibbon) perform a hybrid set. The duo is known for their signature sound and features on major labels.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/events/1924641",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-13T13:11:14.181208Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d29dd18232bc",
              "venue_id": "venue_sailing_goat",
              "title": "Mike Rufo",
              "event_time": "Fri, May 29",
              "venue_name": "Sailing Goat",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Singer-songwriter Mike Rufo brings his thoughtful lyrics and engaging blend of rock and folk to the Sailing Goat stage.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/mike-rufo-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5bb0ad101528",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-29",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-29",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e07ecbc0988",
              "venue_id": "venue_the_lost_church",
              "title": "Armando Anto: The Maestro of Comedy",
              "event_time": "2026-05-29",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedy performance by Armando Anto at The Lost Church San Francisco.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m9db2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_78eafc113e3e",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Friday Happy Hour | May 29",
              "event_time": "May 29, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-29T16:30:00",
              "event_date": "2026-05-29",
              "venue_address": "San Francisco, CA 94118",
              "description": "A free Friday evening concert featuring two sets by Tracorum.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/friday-happy-hour-may-29/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-14T12:55:55.581639Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-15T15:15:23.116577Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b8b8ac8d2c0",
              "venue_id": "venue_the_elbo_room",
              "title": "Cali Agents",
              "event_time": "2026-05-29T19:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live music performance listed on The Elbo Room Jack London upcoming events calendar.",
              "event_types": [],
              "price_info": "",
              "url": "https://www.elboroomjacklondon.com/upcoming-events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a26bc51b4485",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity (Previews)",
              "event_time": "2026-05-29 2026-05-24T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Bess Wohl and directed by Emilie Whelan. Set on a Hollywood film shoot where the chaotic soundstage mimics the real-world climate crisis, this sharp-witted comedy explores egos, secrets, and hard truths.",
              "event_types": [],
              "price_info": "",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-05-29",
              "run_id": "run_98ccfcc4e387",
              "run_label": "Continuity (Previews), May 23 – May 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_69140e4ff606",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (South Asian Heritage Night)",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance features a South Asian Heritage Night preshow gathering.",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91514eb13b61",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-29T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-29T14:00:00",
              "event_date": "2026-05-29",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-29",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_00784dbb19e7",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-29",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_53fa272c181c",
              "venue_id": "venue_vino_locale",
              "title": "Friday Night Patio Music",
              "event_time": "2026-05-29T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-29T18:30:00",
              "event_date": "2026-05-29",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "Live music featuring local artists in the back garden. Enjoy dinner and wine accompanied by beautiful tunes.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f48293fffb54",
              "venue_id": "venue_joe_goode_annex",
              "title": "Duetrospectives",
              "event_time": "2026-05-29T19:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A collection of Jess Curtis' duets. This performance includes ASL interpretation, Audio Description, and a Haptic Tour at 7:00 PM, followed by a post-show conversation.",
              "event_types": [
                "dance"
              ],
              "price_info": "$20 – $35 (sliding scale)",
              "url": "https://joegoode.org/event/duetrospectives-presented-by-gravity/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d0b439a5c3fe",
              "venue_id": "venue_alhambra_public_house",
              "title": "Jimmy Dewrance Live Blues",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Live blues music performance by Jimmy Dewrance.",
              "event_types": [],
              "price_info": "Check website",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0dc77130925b",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Karaoke Night",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Weekly karaoke night.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f81ed3106838",
              "venue_id": "venue_the_saloon",
              "title": "Highwater Blues",
              "event_time": "2026-05-29T16:00:00",
              "venue_name": "The Saloon",
              "event_start": "2026-05-29T16:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Bay Area Blues and R&B band performing an afternoon set from 4:00 PM to 8:00 PM.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "No cover",
              "url": "https://highwaterblues.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ecab41496fa0",
              "venue_id": "venue_the_saloon",
              "title": "Mitch Polzak & the Royal Deuces",
              "event_time": "2026-05-29T21:30:00",
              "venue_name": "The Saloon",
              "event_start": "2026-05-29T21:30:00",
              "event_date": "2026-05-29",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Rockabilly and honky-tonk performance during the late shift.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Tip jar",
              "url": "https://hickswithsticks.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9bed4375bc23",
              "venue_id": "venue_cry_baby",
              "title": "GEMS: The 2000s Party",
              "event_time": "2026-05-29T22:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-29T22:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "2000s throwback dance party with Lexapeel, Jr. the DJ, Travis Bobbito, and a Global Bass patio by Shino Smoke.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free entry for the first 25 people with RSVP available.",
              "url": "https://crybaby.live/tm-event/gems-the-2000s-party-edition-w-lexapeel-jr-the-dj-travis-bobbito-global-bass-patio-by-shino-smoke/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f67583d4615d",
              "venue_id": "venue_la_pena",
              "title": "The Neighborhood Kids",
              "event_time": "2026-05-29T19:30:00",
              "venue_name": "La Pena",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "A conscious hip-hop collective performance featuring Verde, Amon the MC, and others, focused on unity and social change.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://lapena.org/event/the-neighborhood-kids-the-voice-of-the-revolution-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-05-15T20:25:19.038807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_la_pena|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_523b75595c1a",
              "venue_id": "venue_the_monarch",
              "title": "Mr. Matias",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Mr. Matias performs in the Monarch Upstairs Lounge.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/mr-matias-in-the-lounge-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-05-15T20:42:15.861775Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monarch|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c2a7212ec3b2",
              "venue_id": "venue_the_monarch",
              "title": "Bounce SF: Bárbara Lago",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Bounce SF presents a performance by Bárbara Lago at Monarch.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $15.00",
              "url": "https://ra.co/events/1918346",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-05-15T20:42:15.861775Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monarch|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c00ffde5adab",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Solo Piano & Jazz Trio",
              "event_time": "2026-05-29T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-05-29T20:30:00",
              "event_date": "2026-05-29",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Enjoy live jazz at Bix, a classic San Francisco supper club. The evening begins with solo piano from 6:00 PM to 8:00 PM, followed by a spirited jazz trio starting at 8:30 PM.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a08d1b3950b0",
              "venue_id": "venue_jax_vinyards",
              "title": "Ollie Dudek Trio",
              "event_time": "2026-05-29T19:00:00",
              "venue_name": "JAX Vineyards",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "326 Brannan St, San Francisco, CA 94107",
              "description": "Accomplished second-generation professional jazz bassist Ollie Dudek leads a trio performing immortal standards from the Great American Songbook. The performance features two sets on the front patio.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free Admission with RSVP",
              "url": "https://dothebay.com/events/2026/5/29/ollie-dudek-trio-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_jax_vinyards",
                  "source_name": "JAX Vineyards",
                  "fetched_at": "2026-05-15T20:52:14.888852Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_jax_vinyards|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d24c8b7fafbe",
              "venue_id": "venue_neck_of_the_woods",
              "title": "We Headed West, Starzdust, eSex",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "A night of indie and alternative rock with Queentide, Eternal Wave, and Wormsalt.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12 in adv / $15 at the door",
              "url": "https://www.ticketweb.com/event/we-headed-west-starzdust-esex-neck-of-the-woods-tickets/13426339",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c651ee04883",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Margaret Cho: Choligarchy",
              "event_time": "2026-05-29T21:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-05-29T21:30:00",
              "event_date": "2026-05-29",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Comedian. Actor. Musician. Advocate. Entrepreneur. Five-time Grammy and Emmy nominee. When hasn’t Margaret Cho’s strong voice been part of our consciousness? It feels like she has always been here, like a friend you can always count on, lighting the path for other women, other members of underrep...",
              "event_types": [
                "comedy"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/margaret-cho-choligarchy/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7aba3aece0fe",
              "venue_id": "venue_the_monkey_house",
              "title": "Andrew Page, George Palen & John Rafferty",
              "event_time": "2026-05-29",
              "venue_name": "The Monkey House",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Singer/songwriters Andrew Page and George Palen perform, with John Rafferty also appearing. Poster highlights Page's witty, intense songs and Palen's blend of blues and folk influences with baritone ukulele.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Sliding scale donation $20-40 (unless otherwise noted)",
              "url": "https://static.wixstatic.com/media/60be15_69ffb593c43b4a6ea94b17573a1c30a1~mv2.png/v1/fill/w_600%2Ch_225%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/5-29%20page%2C%20palen.png",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-05-15T21:31:30.195149Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_994ebd1fec1c",
              "venue_id": "venue_biscuits__blues",
              "title": "Chase Walker Band",
              "event_time": "2026-05-29T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-29T18:30:00",
              "event_date": "2026-05-29",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Chase Walker Band delivers fiery blues-rock with soulful vocals and searing guitar, blending vintage spirit with modern energy.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260529chasewalkerband",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cfff28244efd",
              "venue_id": "venue_white_horse",
              "title": "Queer Happy Hour",
              "event_time": "2026-05-29T17:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-29T17:00:00",
              "event_date": "2026-05-29",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Friday happy hour to start the weekend.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.eventbrite.com/e/queer-happy-hour-tuesday-friday-5-8-pm-tickets-880564942037",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf7d252f859e",
              "venue_id": "venue_great_star_theater",
              "title": "In/Decision",
              "event_time": "MAY 29, 2026 7:30PM",
              "venue_name": "Great Star Theater",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "\"In/Decision\" is a unique theatrical circus experience from the producers of *Memoir*, exploring the defining moments, choices, and consequences in our lives. Attendees can expect a seamless weaving of breathtaking aerials, acrobatics, and storytelling that delves into the fragile space between c...",
              "event_types": [],
              "price_info": "Tickets",
              "url": "https://www.tickettailor.com/events/greatstartheater/2098041",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-05-16T00:54:05.793419Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3220253b9617",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Nico Carney",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Nico Carney, featuring Robert Omoto and Patrick Fishman.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135562",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-29",
              "run_id": "run_cab9ef86866b",
              "run_label": "Nico Carney, May 28 – May 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a674e7482dbd",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-05-29T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-29T16:00:00",
              "event_date": "2026-05-29",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_14b3a1a02d0a",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-05-29T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Get ready for a captivating evening of live music! Join us at Bird & Beckett Books for a fantastic performance by the David Parker Sextet. Immerse yourself in their vibrant jazz melodies in the cozy atmosphere of our beloved community bookstore. Support local arts and enjoy a memorable musical ex...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "https://sflive.art/event/david-parker-sextet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-17T11:12:15.565004Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53fb27552336",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "Ordinary People",
              "event_time": "2026-05-29",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "An audio-visual story layered with live narration, instrumentation, voices from Việt Nam, animation, photography and song.",
              "event_types": [
                "live_music",
                "experimental",
                "theater",
                "film"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dresher_ensemble_studio",
                  "source_name": "Dresher Ensemble Studio",
                  "fetched_at": "2026-05-16T10:22:01.057615Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0e8a75dac02",
              "venue_id": "venue_meyhouse",
              "title": "Paula West",
              "event_time": "2026-05-29T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-29T17:00:00",
              "event_date": "2026-05-29",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Jazz vocalist Paula West performs a program spanning Bob Dylan, Cole Porter, and more in an evening of storytelling through song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/paula-west-from-bob-dylan-to-cole-porter-fri-5-29-5pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a81ff8cbd921",
              "venue_id": "venue_meyhouse",
              "title": "Paula West",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Jazz vocalist Paula West performs a program spanning Bob Dylan, Cole Porter, and more in an evening of storytelling through song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/paula-west-from-bob-dylan-to-cole-porter-fri-5-29-8pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_728563ea817f",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Inaugural Concert Redux",
              "event_time": "2026-05-29T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "This special performance at the Center for the Performing Arts revisits the program of the venue's first-ever concert. Audiences can enjoy a celebratory evening of music that honors the center's history and opening.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_nova_vista_symphony",
                  "source_name": "Nova Vista Symphony",
                  "fetched_at": "2026-05-16T10:53:44.286649Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0fa416c9baa4",
              "venue_id": "venue_gray_area",
              "title": "After Thought",
              "event_time": "5/29/2026 7:00 PM",
              "venue_name": "Gray Area",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "After ThoughtA night of electronic and multimedia compositions by Stanford composers. More...",
              "event_types": [
                "experimental",
                "live_music"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/after-thought/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-17T10:21:44.258811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_220de2d6a8b5",
              "venue_id": "venue_the_cats",
              "title": "El Camino Revival",
              "event_time": "2026-05-29",
              "venue_name": "The Cats",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "7:00 PM – 10:00 PM\nEl Camino Revival",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/el-camino-revival/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97a029a04f07",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "SF Porchfest Kickoff Party",
              "event_time": "Fri May 29 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "This event brings together a diverse group of local artists and bands, including the SF Porchfest House Band and Maurice Tani, for an evening of eclectic sounds.",
              "event_types": [
                "live_music",
                "festival"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/sf-porchfest-house-band-gen-11-maurice-tani-c-breezy-quar/689543?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-17T10:36:23.721937Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-17T13:59:15.666196Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_601400181efe",
              "venue_id": "venue_the_back_room",
              "title": "Kaimera",
              "event_time": "Fri, May 29 2026, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/kaimera?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f08f531cd12",
              "venue_id": "venue_f8",
              "title": "PAURRO + Loris",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Program audio presents PAURRO and Loris for a night of techno and house.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/clubs/61234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5b6d1398ca85",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Friday night vibes with local DJs and signature house creations like the 'Old Fashioned' or 'Mexican Lager'.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_997f161e5ae0",
              "venue_id": "venue_mojo_lounge",
              "title": "Bike Night at Mojo Lounge",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Friday night bike night featuring live entertainment and a relaxed, community-focused vibe.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c94759b3e0a1",
              "venue_id": "venue_the_midway",
              "title": "Kaytranada - 99.9%",
              "event_time": "2026-05-29T16:30:00",
              "venue_name": "The Midway",
              "event_start": "2026-05-29T16:30:00",
              "event_date": "2026-05-29",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "An Envelop Immersive Dancing Experience @ Midway",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9af441989c1c",
              "venue_id": "venue_the_midway",
              "title": "SoDown",
              "event_time": "MAY 29, 2026 10PM",
              "venue_name": "The Midway",
              "event_start": "2026-05-29T22:00:00",
              "event_date": "2026-05-29",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "Experience SoDown's electrifying performance at The Midway, San Francisco's renowned venue. This 21+ event promises a dynamic night of music, immersing attendees in a high-energy atmosphere. Join us for a memorable late-night experience designed for fans looking for cutting-edge sound in a premie...",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/sodown/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_908b25ed7a68",
              "venue_id": "venue_the_midway",
              "title": "Starjunk 95 Industrial Sunset Memories",
              "event_time": "MAY 29, 2026 10PM",
              "venue_name": "The Midway",
              "event_start": "2026-05-29T22:00:00",
              "event_date": "2026-05-29",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "Step into the distinctive world of Starjunk 95's \"Industrial Sunset Memories,\" a 21+ event hosted at The Midway in San Francisco. This immersive night invites attendees to experience a unique atmosphere, beginning at 10 PM on May 29, 2026, and continuing until 2 AM the following morning. It promi...",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/starjunk-95-industrial-sunset-memories/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_83c0a97d6be4",
              "venue_id": "venue_underground_sf",
              "title": "IDP #28",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "Underground SF",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "An evening of underground electronic music.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for details",
              "url": "https://undergroundsf.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-05-17T14:44:11.616070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_underground_sf|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_954c997516e6",
              "venue_id": "venue_kilowatt",
              "title": "Ashton York, Caleb Nichols & Lizzie Waters",
              "event_time": "2026-05-29T19:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9fcf664b9e09",
              "venue_id": "venue_kilowatt",
              "title": "Cuernos",
              "event_time": "2026-05-29T22:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-29T22:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1641d37f864e",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-05-29",
              "venue_name": "David Brower Center",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-05-29",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ac9dbf49704c",
              "venue_id": "venue_tommy_ts",
              "title": "EARTHQUAKE",
              "event_time": "2026-05-29 2026-05-29",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-29",
              "run_id": "run_adcb5609c885",
              "run_label": "EARTHQUAKE, May 28 – May 30",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f1a2708dcd0b",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-29T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-29",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_69c29c14bfed",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-29T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-29T14:00:00",
              "event_date": "2026-05-29",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-29",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bac5761bca57",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Friday night live music at the Royal Cuckoo. Chris Siebert performs on the Hammond organ with special guests from the local jazz scene.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5281be71a454",
              "venue_id": "venue_the_sound_room",
              "title": "Mads Tolling & Sam Reider: Django to Tango",
              "event_time": "Friday, May 29, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Experience an unforgettable evening of genre-bending brilliance with Two-Time Grammy Award–winning violinist Mads Tolling and acclaimed accordionist and pianist Sam Reider in their captivating program, Django to Tango. Journey from the fiery swing of Django Reinhardt’s gypsy jazz to the sultry rhythms of Argentine tango and beyond. Blending virtuosity with playful improvisation, Tolling and Reider reimagine classics and unveil original works that bridge continents and centuries. Django to Tango celebrates the joy of musical storytelling—filled with rhythm, romance, and spontaneity.\n\nMads Tolling is the 2016 winner of DownBeat Critics Poll Rising Star Violin Award, and SF Classical Voice 2023 and 2025 Jazz Performer. Mads is a former long-time member of bassist Stanley Clarke's Band, and the Turtle Island Quartet. Recently he toured and recorded three albums with the late great, Bob Weir.\n\nSam Reider is a Latin Grammy-nominated pianist, accordionist, composer, and educator. He has performed and recorded with a range of artists including Jon Batiste, Laurie Lewis, Paquito D’Rivera, and Jorge Glem, with whom he appeared on NPR’s Tiny Desktop.\n\nJoining Mads and Sam this evening is bassist Sam Bevan, whose presence brings depth, groove, and a strong sense of interplay to the trio.\n\nMads Tolling (violin), Sam Reider (accordion, piano), Sam Bevan (bass)\n\nTickets at Mads Tolling & Sam Reider: Django to Tango",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/mads-tolling-amp-sam-reider-django-to-tango",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_907378e2505d",
              "venue_id": "venue_madrone_art_bar",
              "title": "Lester T. Raww – FALLING OUT: Music from Fallout",
              "event_time": "May 29 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-29T18:00:00",
              "event_date": "2026-05-29",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Lester T. Raww FALLING OUT: Music from Fallout Music from the 30's, 40's & 50's 6-9pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/lester-t-raww/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d8d7c9f7a87",
              "venue_id": "venue_madrone_art_bar",
              "title": "Party 4 U",
              "event_time": "May 29 @ 9:30 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-29T21:30:00",
              "event_date": "2026-05-29",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "PARTY 4 U! Dance to CharliXCX, Chappell Roan, Lady Gaga, Robyn, Weeknd etc…DJs Fox & Kool Karlo. 🏆🥴😈 $10 after 9:30pm Guarantee your spot!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 after 9:30pm",
              "url": "https://madroneartbar.com/event/party-4-u-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3f0851a31026",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazzschool Student Performance Series",
              "event_time": "2026-05-29",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "This recurring series highlights the diverse talents of Jazzschool students as they gain professional experience performing for a live audience.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/jazzschool-student-performance-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-29",
              "run_id": "run_0ae56a30c533",
              "run_label": "Jazzschool Student Performance Series, May 26 – Jun 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b624926d7967",
              "venue_id": "venue_rite_spot_cafe",
              "title": "GG Amos & Randy Lee Odell",
              "event_time": "May 29, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "GG Amos & Randy Lee Odell ft. David Phillips & Vicky Gross",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d46c01a07c58",
              "venue_id": "venue_sfjazz_miner",
              "title": "TERENCE BLANCHARD & RAVI COLTRANE",
              "event_time": "May 29 2026 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Miles Davis & John Coltrane Centennial",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Member Discount",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/terence-blanchard-ravi-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f410932926a",
              "venue_id": "venue_livermore_shiva_vishnu_temple",
              "title": "Vaikasi Visakam",
              "event_time": "05/29/2026 24:50",
              "venue_name": "Livermore Temple",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "1232 Arrowhead Ave, Livermore, CA 94551",
              "description": "Vaikasi Visakam\n\nChaturdashi 23:28\n\nVisakha 24:50",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_livermore_shiva_vishnu_temple",
                  "source_name": "Livermore Temple",
                  "fetched_at": "2026-05-18T10:48:34.629623Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_livermore_shiva_vishnu_temple|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63a87abe714e",
              "venue_id": "venue_black_cat",
              "title": "Brandon Goldberg Residency",
              "event_time": "05/29/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nAward-winning pianist and composer Brandon Goldberg has been playing piano and making music since he was three years old. Critics have praised his “unassailable technique, advanced harmonic understanding, a deep sense of swing and, most impressively, a clarity and plethora of ideas executed to near-perfection.” – Downbeat Magazine\n\nGoldberg has performed at renowned jazz festivals worldwide, including the Newport Jazz Festival, SFJazz, PDX Jazz, Litchfield, Twin Cities, Caramoor, NCPA Mumbai Jazz Festival, Santander Jazz in Spain, and Ystad Jazz in Sweden. He has also graced the stages of prestigious jazz clubs, such as Dizzy’s Club, Smoke Jazz Club, Mezzrow, and Birdland Theater in New York, as well as The Side Door Jazz Club in Connecticut, and Marian’s Jazz Room in Switzerland, just to name a few.\n\nGoldberg released his third album, “Brandon Goldberg Trio: Live at Dizzy’s” in 2024. The album is described as a “prodigious work, wrapped in tradition and steered with refreshing contemporaneity. A testament to shared musical vision, this album showcases Goldberg’s musicianship” - Lydia Liebman PR. The “song selection and sequencing are exquisite...Impeccable sense of time, spotless communication with the accompaniment, unhurriedness, fidelity to melody and harmonic structure.” – Dark Blue Notes. Goldberg has released two other albums which also received critical acclaim – “In Good Time” (2021) and “LET’S PLAY!” (2019) - both were recognized as top albums of the year, earning four-star reviews from Downbeat Magazine. \n\nGoldberg often collaborates with David Foster, recently playing at the iconic Hollywood Bowl alongside Chris Botti and making memorable appearances with Katharine McPhee on Good Morning America and Live with Kelly and Mark accompanying as she performed songs from her new album with David Foster, Christmas Songs. Goldberg has also written original music for television and his compositions were featured in 1923 and Lawmen: Bass Reeves.\n\nGoldberg is a 2024 YoungArts Winner with Distinction, the youngest semifinalist in the 2023 Herbie Hancock Institute of Jazz International Piano Competition and youngest recipient of the 2022 ASCAP Herb Alpert Young Jazz Composer Award.\n\nBand Lineup:\nBrandon Goldberg, piano\nDavid Wong, bass\nAaron Kimmel, drums",
              "event_types": [],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/10907/?date=2026-05-29",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9cb3231d068c",
              "venue_id": "venue_dawn_club",
              "title": "FOG CITY SWING",
              "event_time": "Friday, May 29, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Ladies and Gentlemen, introducing Fog City Swing! The bay area's newest and hottest swing band featuring an electrifying three horn front line, stellar crooning vocals, and a swing till you drop rhythm section. This seven piece ensemble will transport you to the 1940’s, it is truly the world’s smallest big band!Fog City Swing is co-led by saxophonist Greg Johnson and trumpeter Daniel Herrera.\n\n\n  \n#block-54da0f40f77dc2c9e752 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-54da0f40f77dc2c9e752 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-54da0f40f77dc2c9e752 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-54da0f40f77dc2c9e752 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-54da0f40f77dc2c9e752 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-54da0f40f77dc2c9e752 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-54da0f40f77dc2c9e752 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/2ctyct385mnhy39-tg9wh-66t2b-5jsrn-ybz7p-btef8-l3cer-ynsl3-jjzrz-hp743-8n3z8-fmkm2-wcfxt-7x257",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_952870e19aea",
              "venue_id": "venue_dawn_club",
              "title": "LATE NIGHT SET: MAX EHRHARDT",
              "event_time": "2026-05-29T23:59:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-29T23:59:00",
              "event_date": "2026-05-29",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Max Ehrhardt is a Oakland based trumpet player and educator dedicated to spreading music and creativity into the Bay-Area community. Growing up in programs like Oaktown Jazz Workshops and earning his undergraduate degree at the University of the Pacific under the instruction of Joe Mazzaferro, Max has accumulated a wealth of musical experience spanning multiple genres and styles.Drawing influence from Hard Bop players such as Lee Morgan, Blue Mitchell, and Freddie Hubbard as well as Funk and Soul artists like Billy Withers and Earth, Wind, and Fire, Max shares his love of many different styles and genres of music.The Lakeshore Collective represents the growing and inclusive community of Bay Area musicians. As an ever changing ensemble of artists and band members, they showcase the unique talents and collaborative personalities of all Bay-Area musicians.\n\n\n  \n#block-6373ef8c3202820af735 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-6373ef8c3202820af735 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-6373ef8c3202820af735 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-6373ef8c3202820af735 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-6373ef8c3202820af735 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-6373ef8c3202820af735 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-6373ef8c3202820af735 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/31p80rou0psrpeqnfyebdbqhxi5pur-nb2e7-lx5tp-95jp7-as53t-lyn2y-264yh-tkczb-2f68l",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77af9fcebe0a",
              "venue_id": "venue_dawn_club",
              "title": "LATE NIGHT SET: MAX EHRHARDT",
              "event_time": "2026-05-29T01:30:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-29T01:30:00",
              "event_date": "2026-05-29",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Max Ehrhardt is a Oakland based trumpet player and educator dedicated to spreading music and creativity into the Bay-Area community. Growing up in programs like Oaktown Jazz Workshops and earning his undergraduate degree at the University of the Pacific under the instruction of Joe Mazzaferro, Max has accumulated a wealth of musical experience spanning multiple genres and styles.Drawing influence from Hard Bop players such as Lee Morgan, Blue Mitchell, and Freddie Hubbard as well as Funk and Soul artists like Billy Withers and Earth, Wind, and Fire, Max shares his love of many different styles and genres of music.The Lakeshore Collective represents the growing and inclusive community of Bay Area musicians. As an ever changing ensemble of artists and band members, they showcase the unique talents and collaborative personalities of all Bay-Area musicians.\n\n\n  \n#block-6373ef8c3202820af735 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-6373ef8c3202820af735 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-6373ef8c3202820af735 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-6373ef8c3202820af735 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-6373ef8c3202820af735 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-6373ef8c3202820af735 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-6373ef8c3202820af735 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/31p80rou0psrpeqnfyebdbqhxi5pur-nb2e7-lx5tp-95jp7-as53t-lyn2y-264yh-tkczb-2f68l",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_75b5872d442f",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Jazz Mafia: PRINCE REIMAGINED",
              "event_time": "2026-05-29T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Oakland’s powerhouse collective Jazz Mafia dives deep into the purple catalog for Prince Reimagined, a high energy tribute to the music of Prince. Now in its third year, the show has become a fan favorite with all performances selling out last season.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/jazz-mafia-prince-reimagined/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ba6a7511135",
              "venue_id": "venue_ivy_room",
              "title": "Plunder, Monarchy of Roses, Grain & Dear Motorist",
              "event_time": "Friday May 29 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "This multi-band showcase features a diverse lineup of live sets from Plunder, Monarchy of Roses, Grain, and Dear Motorist.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182528",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef467bdd63ec",
              "venue_id": "venue_poor_house_bistro",
              "title": "M'Sippi Slide",
              "event_time": "Fri, May 29, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-29T18:00:00",
              "event_date": "2026-05-29",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "Singing with passion and meaning! Lijah covers songs from Aretha Franklin, Koko Taylor, Amy Winehouse, Tracy Chapman and Big Mama Thornton! A delivery from the heart and soul! Vocals- Lijah Guitar- Johnny “Cat” Soubrand Bass-…",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5423",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c5f0e821faf",
              "venue_id": "venue_winters",
              "title": "MATINEE***Proceed to the Route",
              "event_time": "2026-05-29T16:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-29T16:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d426ffa4aef",
              "venue_id": "venue_winters",
              "title": "Picket Fences/Mourning Mountains/Hyper mouth",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01fe6ddcb8d9",
              "venue_id": "venue_omca",
              "title": "Non Stop Bhangra",
              "event_time": "2026-05-29",
              "venue_name": "OMCA",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "This Friday Night at OMCA turns up the energy with vibrant rhythms, cultural celebration, and nonstop movement. Non Stop Bhangra takes over the Garden Stage with an immersive, high-energy experience celebrating the music and dance of Punjab, India. Featuring live drumming, DJs, dance performances, and interactive lessons, this joyful, all-ages dance party invites everyone to jump in, let loose, and feel the beat.",
              "event_types": [
                "live_music",
                "latin_world",
                "festival",
                "community"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/friday-nights-at-omca-with-non-stop-bhangra-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5f3408edaf21",
              "venue_id": "venue_brick_and_mortar",
              "title": "THE MOM DANCE PARTY",
              "event_time": "Fri 5.29 Show: 7:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "MOMS FEELIN THEMSELVES PRESENTS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$50.24",
              "url": "https://www.brickandmortarmusic.com/tm-event/the-mom-dance-party-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2e27cc5295e2",
              "venue_id": "venue_piedmont_center",
              "title": "An Evening of Solo Piano Masterworks",
              "event_time": "2026-05-29T19:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-29T19:00:00",
              "event_date": "2026-05-29",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Jason B. Sia, concert pianist",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.ticketsignup.io/jasonsia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc77cc40654f",
              "venue_id": "venue_envelop_sf",
              "title": "Kaytranada: 99.9%",
              "event_time": "Friday, May 29 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Dance to the infectious grooves of Kaytranada's '99.9%' album in an immersive audio environment. This event combines high-energy beats with Envelop's unique spatial sound technology.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260529-kaytranada-99.9-dance",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b77ecbde2104",
              "venue_id": "venue_cornerstone",
              "title": "Being As An Ocean",
              "event_time": "2026-05-29T02:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-29T02:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Being As An Ocean Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/being-as-an-ocean-181017",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ee2e514340c",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-29T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-29",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1704702d32ac",
              "venue_id": "venue_thee_stork_club",
              "title": "Late to the Party - 1960s dance night! 5/29",
              "event_time": "2026-05-29T21:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-29T21:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "1960s-themed dance night at Thee Stork Club.",
              "event_types": [],
              "price_info": "Price not listed",
              "url": "https://wl.seetickets.us/event/late-to-the-party-1960s-dance-night-529/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-18T13:25:21.339846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fe749949c759",
              "venue_id": "venue_boom_boom_room",
              "title": "Afrolicious",
              "event_time": "Fri, May 29 | Doors: 8 pm // Show: 9:45 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-29T21:45:00",
              "event_date": "2026-05-29",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Afrolicious brings their signature blend of funk, disco, and Afrobeat to the stage for an energetic dance party.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/afrolicious-3/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5232594cc5ce",
              "venue_id": "venue_ashkenaz",
              "title": "Quattro",
              "event_time": "05/29/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "with Paper Kayak",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/181231",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bdd1d28cda41",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-29",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-29",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_37c09e0bbce0",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-29",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-29",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa86deb4eae7",
              "venue_id": "venue_local_edition",
              "title": "Sarah V and Band",
              "event_time": "May 29, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-29T20:30:00",
              "event_date": "2026-05-29",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Sarah V and Band8:30 - 12:30Catch Sarah V’s superb vocals with this high-energy Pop and R&B band, keeping us dancing all night long!",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2026/5/29/3ikj9zt7de5scgajx04kruqo627rnm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cb47f0e5aa58",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "May 29, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7144583",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ed7feec52d26",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-29",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-29",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eefd116f5a5b",
              "venue_id": "venue_924_gilman",
              "title": "Punklandia Night One",
              "event_time": "2026-05-29T18:30:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-29T18:30:00",
              "event_date": "2026-05-29",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages show at 924 Gilman. Doors open at 6:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://app.showslinger.com/v4/punklandia-night-one?from=%2Fe1%2F460%2F924-gilman%2F8c96699fd6&promo_widget_v3_id=460",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-18T15:36:59.474010Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_41b4fbcd0e56",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Music Masti Memories",
              "event_time": "May 29, 2026",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "TICKETS ARE NOT SOLD THROUGH FOX THEATRE. PLEASE CONTACT PROMOTER IF YOU HAVE ANY QUESTIONS AT 669-265-4603",
              "event_types": [
                "live_music"
              ],
              "price_info": "GET TICKETS",
              "url": "https://events.sulekha.com/music-masti-memories-by-sudesh-and-anuradha_event-in_redwood-city-ca_398971",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b7bef9e18b9",
              "venue_id": "venue_elis_mile_high",
              "title": "Mala Greña, Icara, Dj Sizzle",
              "event_time": "Fri, May 29, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "This event features live performances by Mala Greña and Icara with music curated by Dj Sizzle.",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/mala-grena-icara-dj-sizzle",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e55c725f0318",
              "venue_id": "venue_the_ritz",
              "title": "Frikitona",
              "event_time": "2026-05-29T21:00:46-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-29T21:00:46",
              "event_date": "2026-05-29",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "FRIKITONA – CLASSIC VS CURRENT REGGAETON FIESTA\n\n \n\nFRIDAY MAY 29, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20 Advance – $25 Day-of-Show",
              "url": "https://www.ticketweb.com/event/frikitona-classics-vs-the-ritz-tickets/14915103",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-18T15:41:10.895193Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a49899ecf2cf",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-29T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-29T18:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f4f625467a9",
              "venue_id": "venue_the_fireside",
              "title": "Friday Night Music/DJs",
              "event_time": "2026-05-29T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-05-29T18:00:00",
              "event_date": "2026-05-29",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cd8d5127067b",
              "venue_id": "venue_the_riptide",
              "title": "Skankin': Reggae Wednesdays",
              "event_time": "2026-05-29T20:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-05-29T20:00:00",
              "event_date": "2026-05-29",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c3d7a27064dd",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-29T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-29T19:45:00",
              "event_date": "2026-05-29",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/fri-may-29-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f1ebe8a37cc0",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-29T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-29T21:45:00",
              "event_date": "2026-05-29",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/fri-may-29-945pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7a8a74295d34",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "ADAM FRIEDLAND",
              "event_time": "Fri May 29, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-29T19:30:00",
              "event_date": "2026-05-29",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian and podcast host Adam Friedland brings his unique brand of alternative humor and dry wit to the club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/adam-friedland-san-francisco-california-05-29-2026/event/1C006450EFE2F192",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c0ba336f92f",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "DARK AND DARKER: A DARK COMEDY SHOW",
              "event_time": "Fri May 29, 2026 10:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-29T22:00:00",
              "event_date": "2026-05-29",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "This showcase features a lineup of comedians performing their edgiest and most macabre material for fans of dark humor.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/dark-and-darker-a-dark-comedy-san-francisco-california-05-29-2026/event/1C006495076D8C3A",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6b830cb13aa9",
              "venue_id": "venue_san_jose_improv",
              "title": "Becky Robinson: The Beasts in Me Tour",
              "event_time": "May 29-31 4 shows",
              "venue_name": "San Jose Improv",
              "event_start": "2026-05-29",
              "event_date": "2026-05-29",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/event/becky+robinson%3a+the+beasts+in+me+tour/14699253/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4eb082e25bc8",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Carnaval",
              "event_time": "May 29, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-05-29T18:00:00",
              "event_date": "2026-05-29",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "CARNAVAL!  faithfully recreates the drive and the sound that has made Santana's music a mainstay in rock music history for the past five decades! You'll hear all the hits from Santana's early years through the new favorites of today. All of it played with the same instrumentation, soul, and passion that fans have known and loved.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/CarnavalSantanaTributeBand",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-05-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-05-30": {
          "date": "2026-05-30",
          "updated_at": "2026-05-18T16:11:37.643651Z",
          "events": [
            {
              "event_id": "evt_04e31c9a98f0",
              "venue_id": "venue_bill_graham_civic",
              "title": "SEVEN LIONS",
              "event_time": "May 30, 2026 7:30 pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Melodic dubstep and trance artist Seven Lions performs a headline set featuring his signature blend of heavy bass and ethereal vocals.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Sold Out! | More Info",
              "url": "https://billgrahamcivic.com/events/seven-lions-260530",
              "tags": [],
              "sources": [
                {
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-03-21T14:12:37.459251Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_bill_graham_civic"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0405412c67bf",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Leanna Firestone / Abby Cates",
              "event_time": "Saturday May 30 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; The Victory Lap Tour; pop-indie-rock: country, pop, folk, and disco; indie folk pop",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "$22/$25",
              "url": "http://www.bottomofthehill.com/20260530.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b85f68616fa8",
              "venue_id": "venue_canada_theater",
              "title": "A Little Night Music in Concert",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "Cañada College Theater",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
              "description": "Second performance of Redwood Symphony's concert presentation of Stephen Sondheim's A Little Night Music, conducted by Eric Kujawsky and directed by Sara Kannen Dean. West Coast premiere of Jonathan Tunick's orchestra-sized arrangement; approximately 2 hours 30 minutes including intermission.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "Prices vary for special concerts; check website for details.",
              "url": "https://redwoodsymphony.org/concert/a-little-night-music-in-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_canada_theater",
                  "source_name": "Cañada College Theater",
                  "fetched_at": "2026-04-07T08:56:57.536897Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_redwood_symphony",
                  "source_name": "Redwood Symphony",
                  "fetched_at": "2026-04-10T21:12:30.873589Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_canada_theater|2026-05-30",
              "run_id": "run_98462c00f0cf",
              "run_label": "A Little Night Music in Concert, May 29 – May 30",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2991da5bdd98",
              "venue_id": "venue_f8",
              "title": "RISE COLLECTIVE PRESENTS SPORTMODE",
              "event_time": "May 30, 2026 9:00 PM",
              "venue_name": "F8",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Rise Collective presents a multi-stage takeover at F8 headlined by Portland-based bass music producer and DJ SPORTMODE. The event features ten DJs across two stages, showcasing a high-energy mix of trap, bass, techno, and house music.",
              "event_types": [
                "electronic",
                "dj_party"
              ],
              "price_info": "$11-23 | 21+",
              "url": "https://www.feightsf.com/new-events/rise-collective-presents-sportmode",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-04-07T10:06:54.115289Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_529c3d5a7fc1",
              "venue_id": "venue_greek_theatre",
              "title": "Alabama Shakes, Nathaniel Rateliff",
              "event_time": "May 30, 2026 8:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "An evening of soulful rock and Americana featuring powerful vocal performances from these two acclaimed acts.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/alabama-shakes-260530",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d53b184d433f",
              "venue_id": "venue_curran_theater",
              "title": "Joe Jackson + Band",
              "event_time": "Sat, May 30, 2026",
              "venue_name": "Curran Theater",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "The versatile English musician performs a career-spanning set that highlights his evolution from new wave to jazz and pop. Accompanied by his band, Jackson brings his sophisticated songwriting to the Orpheum Theatre.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy tickets for Joe Jackson + Band\nBuy tickets",
              "url": "https://us.atgtickets.com/events/joe-jackson/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theater",
                  "fetched_at": "2026-04-10T23:55:12.607576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_curran_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3f012b19ef89",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-05-30",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-06T11:32:02.068017Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-05-30",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a7f53140003",
              "venue_id": "venue_the_ritz",
              "title": "THE FLATLINERS / SAMIAM + STRANGELIGHT",
              "event_time": "2026-05-30T19:00:14-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-30T19:00:14",
              "event_date": "2026-05-30",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "The Flatliners and Samiam bring a night of high-energy punk rock and melodic alternative music to the Rickshaw Stop stage. This performance showcases two veteran acts known for their influential sounds within the punk scene.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance – $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/the-flatliners-samiam-the-ritz-tickets/14139434",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_747ebc4717b8",
              "venue_id": "venue_odc_theater",
              "title": "The Glance: A Laptopera",
              "event_time": "5/30/2026 8:00 PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "The Glance: A Laptopera The Glance: A Laptopera is an immersive opera that reimagines the Orpheus myth for laptop orchestra and live voices. In this contemporary retelling, lovers Orphea and Eurydice struggle to build intimacy in a world shaped by constant surveillance, confronting their own limitations around trust and connection.Co-produced by Laptopera Productions and 836M, The Glance was created by composer Anne Hege with collaborators including electronic instrument builders Daniel Iglesia and Curtis Ullerich; vocalists Sidney Chen, Carmina Escobar, and Michele Kennedy; art director Kim Anno; lighting designer Mitchell Ost; and choreographer Carrie Ahern.https://www.annehege.com/theglance More...",
              "event_types": [
                "live_music",
                "classical",
                "theater",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22832",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-18T07:02:44.259876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-04-18T18:37:51.317086Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_85ef9a30ed5d",
              "venue_id": "venue_cornerstone",
              "title": "CD Ghost, Midi Memory",
              "event_time": "May 30 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "An evening of synth-pop and dream-pop melodies featuring these two electronic-leaning acts.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$28.81",
              "url": "http://www.foopee.com/by-band.0.html#CD_Ghost",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b9a47eb278a0",
              "venue_id": "venue_ivy_room",
              "title": "Doug Gillard",
              "event_time": "Saturday May 30 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Indie rock veteran Doug Gillard headlines an evening of melodic songwriting with support from Bye Bye Blackbirds and a solo set by Bill Sawn.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/178543",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d19c8bc3b833",
              "venue_id": "venue_august_hall",
              "title": "Sasha Colby",
              "event_time": "May 30 10pm/11pm",
              "venue_name": "August Hall",
              "event_start": "2026-05-30T22:00:00",
              "event_date": "2026-05-30",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Princess Forever returns to August Hall featuring a special appearance by drag superstar Sasha Colby for a spectacular display of performance art.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.3.html#Sasha_Colby",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-22T14:20:07.711604Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_afdb761e1bd4",
              "venue_id": "venue_underground_sf",
              "title": "The Night Belongs to the Underground",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "Underground SF",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "An official after-party for the Unabridged SF campaign. Shigeto (Ghostly International) performs a full DJ set spanning experimental underground sounds, with support from Aivilo and Researcher.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/events/1894237",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-04-26T12:23:59.773658Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_as_you_like_it_ayli",
                  "source_name": "As You Like It (AYLI)",
                  "fetched_at": "2026-05-01T13:36:48.153008Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_underground_sf|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_59a489b3bf41",
              "venue_id": "venue_halcyon",
              "title": "Viot, Santi, Rhythm & Sound",
              "event_time": "05/30/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-05-30T22:00:00",
              "event_date": "2026-05-30",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Rising talent VIOT performs at Halcyon, showcasing the infectious tech house style that has earned him international acclaim.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/Y98cac2f2a2b?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-04-28T12:03:17.867272Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d03fc38848c3",
              "venue_id": "venue_the_uc_theatre",
              "title": "Ladytron “Paradises”",
              "event_time": "May 30 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "The influential electronic group brings their stylish synth-pop and new wave sound to an intimate live setting.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$37.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/ladytron-paradises-30-may",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1edd39604e7",
              "venue_id": "venue_caravan_lounge",
              "title": "SÖNUS: Planes of Torment Release",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Album release show for SÖNUS's third album 'Planes of Torment', featuring support from Stone Gnome and Gravedodger.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://dothebay.com/events/2026/5/30/planes-of-torment-album-release-show-with-stone-gnome-and-gravedodger-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-05-01T10:23:40.139382Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_54c34d8271a6",
              "venue_id": "venue_bird_and_beckett",
              "title": "KLAXON MUTANT ALL-STARS",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Unleash your inner mutant! Join us for the exciting Klaxon Mutant All-Stars event at Bird & Beckett Books. Discover a truly unique experience at our independent bookstore, a vibrant community hub hosting numerous music and literary events. Supporting Bird & Beckett means championing local...",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22985",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-01T14:19:36.173476Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2c39babc7b7a",
              "venue_id": "venue_rickshaw_stop",
              "title": "Child, Thorn, El Kabong",
              "event_time": "May 30 2026 2pm/3pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-30T14:00:00",
              "event_date": "2026-05-30",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Local and emerging rock acts Child, Thorn, and El Kabong perform a showcase of heavy and alternative sounds at The Independent.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 2pm/3pm",
              "url": "http://www.foopee.com/by-band.0.html#Child",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_003a841ca953",
              "venue_id": "venue_thee_stork_club",
              "title": "The Darts, Service, Pretty Frankenstein",
              "event_time": "May 30 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "An eclectic mix of indie and alternative rock bands take the stage for a live local showcase.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$17 8pm",
              "url": "http://www.foopee.com/by-band.0.html#Darts",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-03T12:24:34.379125Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-04T11:11:12.115455Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d83928f831d3",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Golden Gate Park Kids Festival",
              "event_time": "2026-05-30T10:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-30T10:30:00",
              "event_date": "2026-05-30",
              "venue_address": "San Francisco, CA 94118",
              "description": "A family-friendly festival at the Bandshell featuring music and activities for children.",
              "event_types": [
                "festival",
                "community"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-04T10:51:00.917617Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-06T12:25:58.464013Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e44a28d32d0",
              "venue_id": "venue_castro_theater",
              "title": "ROBBY HOFFMAN",
              "event_time": "May 30, 2026 9:30pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-30T21:30:00",
              "event_date": "2026-05-30",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "$48+ 6pm/7pm and 9pm/9:30pm # (sold out)",
              "event_types": [
                "comedy"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/robby-hoffman-260530-late",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa05ad0a529f",
              "venue_id": "venue_guild_theatre",
              "title": "Missing Persons",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live concert at The Guild Theatre. Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$50",
              "url": "https://www.tixr.com/e/178157",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f8fb2f22bc6c",
              "venue_id": "venue_california_theatre",
              "title": "ECHO Dance Showcase",
              "event_time": "2026-05-30T19:00:00",
              "venue_name": "California Theatre",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Celebrate a decade of dance with Enjoy Dance Studio's annual ECHO Dance Showcase, featuring a dynamic evening of K-Pop, Hip-Hop, Heels, Jazz, and more.",
              "event_types": [
                "dance"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/2026-echo-dance-showcase/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-05-07T14:08:30.643050Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ed8b12216824",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Ravel & Music of the Americas",
              "event_time": "5/30/2026 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco Symphony",
              "event_types": [
                "live_music",
                "classical",
                "workshop"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23473",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-07T14:07:06.403189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-17T11:43:13.664569Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a6c7f99cbad",
              "venue_id": "venue_the_chapel",
              "title": "Allah-Las, Sam Blasucci",
              "event_time": "May 30 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Allah-Las deliver their signature blend of 1960s-inspired garage rock and surf-psych for a nostalgic musical evening.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$38.00-$42.00",
              "url": "http://www.foopee.com/by-band.0.html#Allah_Las",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-16T10:29:13.529574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e5181e465dd",
              "venue_id": "venue_kilowatt",
              "title": "Rocksteady Riot",
              "event_time": "May 30 1pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-30T13:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "A diverse lineup of bands including Rocksteady Riot, Beyond The Zero, and Lowline perform live at the venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.2.html#Rocksteady_Riot",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-07T16:15:27.099251Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-14T13:17:24.055606Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d7e933184a18",
              "venue_id": "venue_the_knockout",
              "title": "Windows, Richard Tripps, Pranks",
              "event_time": "May 30 5pm/6pm",
              "venue_name": "The Knockout",
              "event_start": "2026-05-30T17:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Spend your afternoon with the melodic sounds of Windows from Los Angeles and Richard Tripps. This matinee concert provides a perfect soundtrack for a weekend afternoon.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.3.html#Windows",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-07T16:15:27.099251Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-13T11:55:41.198027Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_672c97aa6fe5",
              "venue_id": "venue_the_saloon",
              "title": "Wreckless Strangers",
              "event_time": "May 30 2026 8:30pm",
              "venue_name": "The Saloon",
              "event_start": "2026-05-30T20:30:00",
              "event_date": "2026-05-30",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "The California-based collective performs their signature blend of Americana, blues, and rock and roll.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.3.html#Wreckless_Strangers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-07T16:17:48.793862Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-11T12:23:56.050973Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_36ea26d03a80",
              "venue_id": "venue_castro_theater",
              "title": "ROBBY HOFFMAN",
              "event_time": "May 30, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "a/a $48+ 6pm/7pm and 9pm/9:30pm # (sold out)",
              "event_types": [
                "comedy"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/robby-hoffman-260530",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-09T11:18:30.344881Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ccae3158f54",
              "venue_id": "venue_the_midway",
              "title": "My Friend",
              "event_time": "05/30/2026 2pm-8pm",
              "venue_name": "The Midway",
              "event_start": "2026-05-30T14:00:00",
              "event_date": "2026-05-30",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "A special day party featuring the UK-based duo My Friend as part of their North American tour.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15-31+ | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/polaris-presents-my-friend-across-the-pond-tour-184158",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-09T12:30:53.673583Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-11T14:01:05.391101Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_midway|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1620b730c60f",
              "venue_id": "venue_the_box_shop",
              "title": "Exit Through The Box Shop",
              "event_time": "2026-05-30T19:00:00",
              "venue_name": "The Box Shop",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "951 Hudson Ave, San Francisco, CA 94124",
              "description": "A Box Shop benefit party with Opulent Temple featuring DJs, art installations, fire art by Flaming Lotus Girls, Jen Reed’s Compost Playground, light and sculpture works, live painting, aerial acts, and more as part of The Box Shop’s final season at Hudson Ave.",
              "event_types": [],
              "price_info": "$25-75 | All ages",
              "url": "https://boxshopsf.org/events/exit-through-the-box-shop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_box_shop",
                  "source_name": "The Box Shop",
                  "fetched_at": "2026-05-09T22:08:02.106912Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_box_shop|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d33960ee4d32",
              "venue_id": "venue_the_mighty",
              "title": "Pedro Sampaio After Party",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "This event celebrates the high-energy sounds of Brazilian Baile Funk with a night dedicated to heavy bass and rhythmic dance music. It offers an immersive cultural experience centered on the vibrant street music of Rio de Janeiro.",
              "event_types": [],
              "price_info": "Starts at $11.28",
              "url": "https://dothebay.com/events/2026/5/30/boomboom-pedro-sampaio-after-party-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-09T22:32:01.718472Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-11T13:32:37.748556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef8a412fc66e",
              "venue_id": "venue_bing_concert_hall",
              "title": "Stanford Wind Symphony",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "Bing Hall",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "The Stanford Wind Symphony presents a concert of diverse repertoire for wind instruments, ranging from classical masterpieces to modern compositions. The performance highlights the technical skill and musicality of the university's wind and percussion students.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$32-$37",
              "url": "https://events.stanford.edu/events/stanford-wind-symphony",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-05-11T10:16:00.521980Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2939b57d153a",
              "venue_id": "venue_stookeys_blue_room",
              "title": "DJ Shindog's 80s New Wave Night",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "A night of 80s New Wave music with DJ Shindog. No cover, first come, first served.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://stookeysclubmoderne.com/music-and-events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-05-11T12:06:17.391939Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3159f89980c3",
              "venue_id": "venue_the_starry_plough",
              "title": "Classic Metal",
              "event_time": "Sat, May 30 Show: 4pm",
              "venue_name": "The Starry Plough",
              "event_start": "2026-05-30T16:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "The Starry Plough hosts a night dedicated to the powerful riffs and high energy of classic heavy metal music. Fans can enjoy a selection of hard-hitting tracks from the genre's most influential eras.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thestarryplough.com/event/classic-metal-2/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-12T10:28:37.963652Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e345f464dac3",
              "venue_id": "venue_the_starry_plough",
              "title": "Left Of The Dial",
              "event_time": "Sat, May 30 Show: 6pm",
              "venue_name": "The Starry Plough",
              "event_start": "2026-05-30T18:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "Named after the classic anthem for college radio, this event features a curated selection of alternative and indie rock music. It offers a showcase for underground sounds and non-mainstream artists at The Starry Plough.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thestarryplough.com/event/left-of-the-dial-2/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-12T10:28:37.963652Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4d4d08ba631d",
              "venue_id": "venue_dinkelspiel_auditorium",
              "title": "Stanford Afro-Latin Jazz Ensemble",
              "event_time": "05/30/2026 7:30 PM",
              "venue_name": "Dinkelspiel Auditorium",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "471 Lagunita Dr, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/partner-events/department-of-music/2025-26-season/spring/stanford-afro-latin-jazz-ensemble-tribute-to-the-mambo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dinkelspiel_auditorium|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8af162114b7e",
              "venue_id": "venue_stanford_memchu",
              "title": "Stanford Chamber Chorale: There Is Sweet Music",
              "event_time": "05/30/2026 8:00 PM",
              "venue_name": "Stanford Memorial Church",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "450 Jane Stanford Way, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/partner-events/department-of-music/2025-26-season/spring/stanford-chamber-chorale/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stanford_memchu|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_98f70f0d84f0",
              "venue_id": "venue_swedish_american",
              "title": "Private Event",
              "event_time": "2026-05-30T00:00:00",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-05-30T00:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Private event listing.",
              "event_types": [
                "community"
              ],
              "price_info": "Price not listed on event page",
              "url": "https://cafedunord.com/tm-event/private-event-21/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_swedish_american|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0fee376ad70f",
              "venue_id": "venue_sailing_goat",
              "title": "Ruby Lee Hill",
              "event_time": "Sat, May 30",
              "venue_name": "Sailing Goat",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Catch a live performance by Ruby Lee Hill, showcasing her unique vocal style and musical artistry.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/ruby-lee-hill-6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8192b008aea",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-30",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-30",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e855e71b8388",
              "venue_id": "venue_the_lost_church",
              "title": "Bailey Blanton & MelonCollie",
              "event_time": "2026-05-30",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance featuring Bailey Blanton and MelonCollie at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m6Qn2AI",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3f3265d4a51a",
              "venue_id": "venue_the_marsh_sf",
              "title": "Carole Klyce's Flight Risk",
              "event_time": "2026-05-30T17:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-30T17:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Written and performed by Carole Klyce, this show features post-show music with 'The Runaways' on its opening night.",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/carole-klyce-flight-risk/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f106a2dcf749",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle's Takes All Kinds",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "A journalistic-theater work recreating real conversations with Americans on the front lines of today's political tensions.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0208283dc49f",
              "venue_id": "venue_roccapulco",
              "title": "David Pabon en concierto - San Francisco",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "Salsa legend David Pabon performs live as part of his 'Tour 35 Años de Salsa'.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "From $67.04",
              "url": "https://www.tickeri.com/events/david-pabon-en-concierto-san-francisco",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_652b1b26e6ad",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity - Opening Night",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "The official opening night performance of Bess Wohl's 'Continuity', a fast-paced comedy about a film crew grappling with the climate crisis.",
              "event_types": [],
              "price_info": "$40 - $80",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_977e5824fdaa",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. Matinee performance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_93aecde1492b",
              "venue_id": "venue_the_bistro",
              "title": "Cole Panther",
              "event_time": "2026-05-30T15:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-05-30T15:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Afternoon live music performance by Cole Panther.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free / No Cover",
              "url": "https://www.shazam.com/concert/cole-panther-hayward-the-bistro-may-30-2026-3-00-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c89ccef236f7",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Live Music: Local Blues, RnB & Soul",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Weekly Saturday night live music series featuring the best of the Bay Area's blues and soul scene.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_daf830943b36",
              "venue_id": "venue_mr_tipples",
              "title": "Sami Stevens Quintet",
              "event_time": "2026-05-30T22:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-30T22:30:00",
              "event_date": "2026-05-30",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Vocalist Sami Stevens leads her quintet in a performance that blends jazz tradition with modern soul and experimental pop sensibilities.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/sami-stevens-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0ac7b2b298d3",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-30T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-30T14:00:00",
              "event_date": "2026-05-30",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-30",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6bb45f9ce48b",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-30",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fe4144c0555d",
              "venue_id": "venue_vino_locale",
              "title": "Saturday Jazz Finale",
              "event_time": "2026-05-30T18:30:00",
              "venue_name": "Vino Locale",
              "event_start": "2026-05-30T18:30:00",
              "event_date": "2026-05-30",
              "venue_address": "431 Kipling St, Palo Alto, CA 94301",
              "description": "The final Saturday jazz performance of the month in the back garden patio.",
              "event_types": [],
              "price_info": "Free admission; reservations recommended",
              "url": "https://www.vinolocale.com/live-music-patio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_vino_locale",
                  "source_name": "Vino Locale",
                  "fetched_at": "2026-05-15T13:45:12.446514Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_vino_locale|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ffa66d830011",
              "venue_id": "venue_good_karma",
              "title": "Charged Particles plays Funky Latin Jazz",
              "event_time": "2026-05-30T21:30:00",
              "venue_name": "Good Karma",
              "event_start": "2026-05-30T21:30:00",
              "event_date": "2026-05-30",
              "venue_address": "37 S 1st St, San Jose, CA 95113",
              "description": "The Bay Area funky Latin jazz quartet Charged Particles performs live at Good Karma. Known for their high-energy, virtuosic performances, the band has been playing for over 30 years at major venues and festivals worldwide. Reviewers describe their sound as inventive, invigorating, and mesmerizing.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://www.upcomingevents.com/san-jose/events/good-karma-fine-ales-food-hifi/charged-particles-plays-funky-latin-jazz-at-good-karma-649496?ref=uceaddevent",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_good_karma",
                  "source_name": "Good Karma",
                  "fetched_at": "2026-05-15T13:56:50.174296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_good_karma|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5935039b3333",
              "venue_id": "venue_ocean_ale_house",
              "title": "Kat Robichaud",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Live performance by singer-songwriter Kat Robichaud, known for her theatrical flair and powerful vocals.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.shazam.com/concert/kat-robichaud-san-francisco-ocean-ale-house-may-30-2026-800-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9eef6b085a44",
              "venue_id": "venue_joe_goode_annex",
              "title": "Duetrospectives",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "Part of the ROT FESTIVAL 2026, bringing affordable, accessible experimental embodied arts to the Joe Goode Annex.",
              "event_types": [
                "dance"
              ],
              "price_info": "$20 – $35 (sliding scale)",
              "url": "https://joegoode.org/event/duetrospectives-presented-by-gravity/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c17edb1e5234",
              "venue_id": "venue_alhambra_public_house",
              "title": "Geordie Smith Band",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Performance by the Geordie Smith band, featuring talented young students.",
              "event_types": [],
              "price_info": "Check website",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fe007bde1cae",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Saturday Night Live Music",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Live music featuring local bands.",
              "event_types": [],
              "price_info": "Check venue for cover",
              "url": "https://www.theluckyhorseshoebar.com/calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5f60090090ff",
              "venue_id": "venue_cry_baby",
              "title": "Blue Face",
              "event_time": "2026-05-30T18:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-30T18:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Blue Face live in Oakland at Crybaby, presented by High Tolerance Entertainment.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/blue-face-fresh-out-of-love-tour-live-in-oakland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_283641f2a28f",
              "venue_id": "venue_cry_baby",
              "title": "Desmadre",
              "event_time": "2026-05-30T22:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-05-30T22:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Latin dance party featuring reggaeton, perreo, corridos, cumbia, dembow, moombahton, and more, with DJs DJ Agana, Chuy Gomez, and MorZuhn; patio takeover by Earth Angel.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/desmadre-a-la-vuelta-w-dj-agana-chuy-gomez-zuhhndry-patio-takeover-by-earth-angel/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d75f1db8d2aa",
              "venue_id": "venue_oasis",
              "title": "PRINCESS FOREVER w/ SASHA COLBY",
              "event_time": "2026-05-30T23:00:00",
              "venue_name": "Oasis",
              "event_start": "2026-05-30T23:00:00",
              "event_date": "2026-05-30",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "A high-energy drag spectacular and disco-pop dance party featuring RuPaul's Drag Race star Sasha Colby. This event is produced by Oasis Arts and held at August Hall while the main Oasis venue undergoes renovations.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "Tickets start at $30",
              "url": "https://www.ticketmaster.com/princess-forever-w-sasha-colby-san-francisco-california-05-30-2026/event/1C0060A1B2C3D4E5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-05-15T20:27:54.675119Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be9666902d63",
              "venue_id": "venue_the_monarch",
              "title": "Velvet Club: Flores Negras",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Velvet Club featuring a performance by Flores Negras.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $11.28",
              "url": "https://ra.co/events/1918347",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-05-15T20:42:15.861775Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e5577b617d78",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Solo Piano & Jazz Trio",
              "event_time": "2026-05-30T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-05-30T20:30:00",
              "event_date": "2026-05-30",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Enjoy live jazz at Bix, a classic San Francisco supper club. The evening begins with solo piano from 6:00 PM to 8:00 PM, followed by a spirited jazz trio starting at 8:30 PM.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_81e92b657e95",
              "venue_id": "venue_hammer_theater",
              "title": "San Jose Dance Theatre: Alice in Wonderland",
              "event_time": "2026-05-30T19:00:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "An original ballet by Artistic Director Nicole Haskins, bringing Lewis Carroll's beloved story to life with whimsical choreography and colorful characters.",
              "event_types": [],
              "price_info": "From $108",
              "url": "https://hammertheatre.com/event/san-jose-dance-theatre-presents-alice-in-wonderland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1008fd7a2136",
              "venue_id": "venue_neck_of_the_woods",
              "title": "God Fearing Tour",
              "event_time": "2026-05-30T19:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "The God Fearing Tour stops at Neck of the Woods featuring post-punk trio Blood Club, Future Nobodies, and Heels.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18 in adv / $25 at the door",
              "url": "https://www.ticketweb.com/event/god-fearing-tour-blood-club-neck-of-the-woods-tickets/13426341",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5d93896d4aea",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: Women of the West",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised tale set in the Old West, featuring the stories of women on the frontier, their struggles, and their triumphs.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-women-of-the-west-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_700ac23b0b75",
              "venue_id": "venue_the_monkey_house",
              "title": "Michael Manring & Teja Gerken",
              "event_time": "2026-05-30",
              "venue_name": "The Monkey House",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Bay Area instrumentalists Teja Gerken and Michael Manring perform a duo set exploring acoustic fingerstyle guitar and expanded electric fretless bass, including original compositions, Celtic traditional pieces, classical pieces, jazz standards, and favorite tunes by fingerstyle guitar peers.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Sliding scale donation $20-40 (unless otherwise noted)",
              "url": "https://static.wixstatic.com/media/60be15_4d391dfac26a44e4a0837ce574f1e2a7~mv2.png/v1/fill/w_600%2Ch_324%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/5-30%20teja%2C%20manring.png",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-05-15T21:31:30.195149Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a600a3223b4a",
              "venue_id": "venue_biscuits__blues",
              "title": "Earl Thomas Featuring The Anthony Cullins Band",
              "event_time": "2026-05-30",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Confirmed upcoming show at Biscuits & Blues.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260530earlthomasfeaturingtheanthonycullinsband",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bf478b0679b3",
              "venue_id": "venue_public_works",
              "title": "The Glitch Mob",
              "event_time": "Sat, May 30 •  9:30 PM",
              "venue_name": "Public Works",
              "event_start": "2026-05-30T21:30:00",
              "event_date": "2026-05-30",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Electronic trio The Glitch Mob performs their powerful, bass-driven tracks known for intricate sound design and high-energy rhythms. This live show at Yerba Buena Center features the group's distinctive blend of glitch-hop and industrial electronica.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Tickets",
              "url": "https://www.tixr.com/groups/publicsf/events/the-glitch-mob-presented-by-pw-and-dj-dials-183520?utm_medium=venuewebsite&utm_source=publicsf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-16T00:09:28.427139Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-17T13:29:00.297554Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77fcfa1b22df",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Crystal Marie Denha",
              "event_time": "2026-05-30T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Crystal Marie Denha, featuring Cody Woods and Patrick Fishman.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/359533",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_04501e578723",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Karaoke Nights",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring karaoke event at Dark Horse Lounge. Listed as every Tuesday and Saturday starting at 8pm.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/karaoke-nights/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6e32a0df6beb",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "Ordinary People",
              "event_time": "2026-05-30",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "An audio-visual story layered with live narration, instrumentation, voices from Việt Nam, animation, photography and song.",
              "event_types": [
                "live_music",
                "experimental",
                "theater",
                "film"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dresher_ensemble_studio",
                  "source_name": "Dresher Ensemble Studio",
                  "fetched_at": "2026-05-16T10:22:01.057615Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_930bc043e2a8",
              "venue_id": "venue_meyhouse",
              "title": "Paula West",
              "event_time": "2026-05-30T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-30T17:00:00",
              "event_date": "2026-05-30",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Jazz vocalist Paula West performs a program spanning Bob Dylan, Cole Porter, and more in an evening of storytelling through song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/paula-west-from-bob-dylan-to-cole-porter-sat-5-30-5pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_51f54451a46e",
              "venue_id": "venue_meyhouse",
              "title": "Paula West",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Jazz vocalist Paula West performs a program spanning Bob Dylan, Cole Porter, and more in an evening of storytelling through song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/paula-west-from-bob-dylan-to-cole-porter-sat-5-30-8pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6da1725dc035",
              "venue_id": "venue_gray_area",
              "title": "Build, Treat, Heal Fundraiser",
              "event_time": "2026-05-30T12:00:00",
              "venue_name": "Gray Area",
              "event_start": "2026-05-30T12:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "A community fundraiser event held at Gray Area featuring local artists and organizers.",
              "event_types": [
                "community"
              ],
              "price_info": "Donation-based",
              "url": "https://grayarea.org/event/build-treat-heal-glia-fundraiser/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-17T10:21:44.258811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_recombinant",
                  "source_name": "Recombinant",
                  "fetched_at": "2026-05-17T15:06:25.362807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_gray_area|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dda498afe59c",
              "venue_id": "venue_the_cats",
              "title": "Hot Rod Racing Club",
              "event_time": "2026-05-30",
              "venue_name": "The Cats",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "7:00 PM – 10:00 PM\nHot Rod Racing Club",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/hot-rod-racing-club-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8187e882ac8a",
              "venue_id": "venue_mvcpa",
              "title": "Pacific Ballet Academy Spring Showcase",
              "event_time": "2026-05-30 17:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Pacific Ballet Academy of Mountain View presents its annual showcase featuring dancers from the school and advanced dancers from the Studio Company. For the first time, we are presenting an abridged version of Giselle in one act!",
              "event_types": [
                "dance"
              ],
              "price_info": "$32 - $34",
              "url": "https://tickets.mvcpa.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-05-17T10:54:35.093784Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mvcpa|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63e7c1b5dc2d",
              "venue_id": "venue_presidio_theater",
              "title": "Opera Parallèle: Doubt",
              "event_time": "2026-05-30",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Opera Parallèle stages Douglas J. Cuomo’s operatic adaptation of the acclaimed play and film exploring suspicion and morality in a 1960s Catholic school.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/opera-parallele-doubt-at-the-presidio-theatre",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-17T10:55:25.846544Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-05-17T13:15:17.804929Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-30",
              "run_id": "run_28348a5c4fe4",
              "run_label": "Opera Parallèle: Doubt at the Presidio Theatre, May 29 – May 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_afb3a881d8fc",
              "venue_id": "venue_herbst_theater",
              "title": "SF PHILHARMONIC AND ANNE RICHARDSON",
              "event_time": "May 30 2026 7:30PM",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "Groupmuse Night Out | Neighborhood:\nHerbst Theatre | Price:\n$20 tickets ($15 for Supermusers)",
              "event_types": [],
              "price_info": "TICKET INFO",
              "url": "https://sfwarmemorial.org/119104",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-17T11:43:13.664569Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-05-17T13:15:17.804929Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_herbst_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_58afd3ee4106",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Saturday night DJ set in the heart of Polk Street. Open until 2 AM.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d064b70564c6",
              "venue_id": "venue_the_midway",
              "title": "PEDRO SAMPAIO",
              "event_time": "2026-05-30",
              "venue_name": "The Midway",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "RIDE ∙ INDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/pedro-sampaio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c022ef7f3692",
              "venue_id": "venue_the_midway",
              "title": "MR. BILL",
              "event_time": "MAY 30, 2026 9PM",
              "venue_name": "The Midway",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "Experience a dynamic live performance by MR. BILL at The Midway in San Francisco. This 21+ event invites attendees to enjoy a night of music and a vibrant atmosphere, running from 9 PM until 2 AM.",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/mr-bill/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef4504ecada4",
              "venue_id": "venue_sap_center",
              "title": "MANÁ y LOS FABULOSOS CADILLACS",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "SAP Center",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dd64154a8cc0",
              "venue_id": "venue_kilowatt",
              "title": "Date My Friend (50+ Edition)",
              "event_time": "2026-05-30T16:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-30T16:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "$24.72",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b0a62064c0e1",
              "venue_id": "venue_kilowatt",
              "title": "Starbelliedbug, Misandrist & Big Dog Mastiff",
              "event_time": "2026-05-30T19:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dadcdcbc6177",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-05-30",
              "venue_name": "David Brower Center",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-05-30",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4b9178eaf9a3",
              "venue_id": "venue_tommy_ts",
              "title": "EARTHQUAKE",
              "event_time": "2026-05-30 2026-05-29",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-30",
              "run_id": "run_adcb5609c885",
              "run_label": "EARTHQUAKE, May 28 – May 30",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_36115512d02e",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-30",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5ba2b619984d",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-30T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-30T14:00:00",
              "event_date": "2026-05-30",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-30",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_59298f221afd",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Saturday night session featuring the soulful sounds of the Hammond organ with Chris Siebert and friends.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_345628e4901d",
              "venue_id": "venue_the_sound_room",
              "title": "Kenny Washington Quartet",
              "event_time": "Saturday, May 30, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "A masterful vocalist and “the superman of the Bay Area jazz scene” (SF Chronicle), Kenny Washington is easily among the most beloved and soulful singers working today. A native of New Orleans, Kenny grew up singing gospel music in church and playing saxophone in the school band. He continued his music studies at Xavier University where he became interested in various styles ranging from traditional and contemporary jazz, to classical, to rhythm-and-blues and pop. Joining the U.S. Navy Band in 1986, Kenny performed and toured nationally and internationally through out the U.S., Asia, Russia, and Australia. After nine years in the Navy, Kenny made his home in the San Francisco Bay Area where he established himself as a top vocalist.\n\nWhile performing with the Michael O’Neill Quintet at the Douglas Beach House, Kenny met vibraphonist Joe Locke who happened to be in the audience. This led to an invitation to perform with Joe at Dizzy’s; Jazz at Lincoln Center (JALC). Since then he has been a featured artist at JALC for over ten years where he has appeared with Joe Locke, Eric Reed, Eric Alexander, Joe Lavano, Branford Marsalis, Roberta Gambarini and Wynton Marsalis. With Wynton, Kenny has performed both in small groups and large including numerous times with the \"Jazz at Lincoln Center Orchestra.” In 2013 Kenny was featured in Wynton’s oratorio: \"Blood On The Fields\" which also included vocalist Gregory Porter. Kenny has headlined performances in Japan, Russia, Scotland, Shanghai, Denmark, Mongolia and many other countries. He has performed at top Jazz Festival including the Monterey Jazz Festival, Mid-Atlantic Jazz Festival and the San Jose Jazz Festival.\n\nKenny is a jazz vocalist virtuoso. Emulating the classic styles of Ella Fitzgerald and Sarah Vaughan and infusing colors of Stevie Wonder and Donny Hathaway, Kenny's free, playful approach, with over a four-octave range is awe inspiring. His tone on ballads is liquid and his scat singing - informed by his saxophone playing - is rapid-fire, passionate, melodious and inventive. His intonation is so precise that it becomes noticeable if the piano wasn’t tuned that day. Kenny is considered by many to be the premiere male vocalist on the planet today. This man is a must-see.\n\nTickets at Kenny Washington Quartet",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/2p3plfx7fx5p625eywwabk7rep99xw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a2562e5a71be",
              "venue_id": "venue_make_out_room",
              "title": "El SUPERRITMO!",
              "event_time": "2026-05-30T22:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-30T22:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Cumbia, Dancehall, Hip-Hop, Reggaeton, and Salsa Buena dance party.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://dothebay.com/events/2026/5/30/el-superritmo-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf8f4797d787",
              "venue_id": "venue_madrone_art_bar",
              "title": "RUDY CANT FAIL W/ CATHY 2 TONE",
              "event_time": "May 30 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-30T18:00:00",
              "event_date": "2026-05-30",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Five Saturdays means Rudy Can’t Fail @ Madrone Art Bar! Join Cathy 2-Tone & special guests as they spin the tunes that you want to groove to- 6pm to 9pm! Joe wants YOU to be there! No Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/rudy-cant-fail-w-cathy-2-tone-3/2026-05-30/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba83ec41c42b",
              "venue_id": "venue_madrone_art_bar",
              "title": "The No Theme Super Dance Jam",
              "event_time": "May 30 @ 9:30 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-30T21:30:00",
              "event_date": "2026-05-30",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "The No Theme Super Dance Jam WITH DJ SONNY PHONO 9:30pm-2am $10 Cover Guarantee your spot!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 Cover",
              "url": "https://madroneartbar.com/event/the-no-theme-super-dance-jam-2025-11-29-2026-05-30/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_99371eae4b03",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazzschool Student Performance Series",
              "event_time": "2026-05-30",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "This recurring series highlights the diverse talents of Jazzschool students as they gain professional experience performing for a live audience.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/jazzschool-student-performance-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-30",
              "run_id": "run_0ae56a30c533",
              "run_label": "Jazzschool Student Performance Series, May 26 – Jun 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0620b100a2b6",
              "venue_id": "venue_great_american_music_hall",
              "title": "PRIVATE EVENT",
              "event_time": "2026-05-30T19:00:00",
              "venue_name": "Great American",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Private event at Great American Music Hall.",
              "event_types": [
                "community"
              ],
              "price_info": "Other Content",
              "url": "https://wl.seetickets.us/event/private-event/680323?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-18T10:23:52.305326Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1841e8d9a784",
              "venue_id": "venue_rite_spot_cafe",
              "title": "Joe Mackessy / Marc Dantona",
              "event_time": "May 30, 2026",
              "venue_name": "Rite Spot Cafe",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "2099 Folsom St, San Francisco, CA 94110",
              "description": "Early: Joe Mackessy\nLate: Marc Dantona & the Contenders",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE unless otherwise noted.",
              "url": "https://www.ritespotcafe.net/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rite_spot_cafe",
                  "source_name": "Rite Spot Cafe",
                  "fetched_at": "2026-05-18T10:25:34.270598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rite_spot_cafe|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_70b91369b0b2",
              "venue_id": "venue_sfjazz_miner",
              "title": "TERENCE BLANCHARD & RAVI COLTRANE",
              "event_time": "May 30 2026 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Miles Davis & John Coltrane Centennial",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Almost Sold Out",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/terence-blanchard-ravi-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d92610374fea",
              "venue_id": "venue_the_independent",
              "title": "THE EMO NIGHT TOUR",
              "event_time": "5.30 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "IT'S RELATIVE! PRESENTS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/the-emo-night-tour-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_786eb8a1e991",
              "venue_id": "venue_black_cat",
              "title": "Brandon Goldberg Residency",
              "event_time": "05/30/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nAward-winning pianist and composer Brandon Goldberg has been playing piano and making music since he was three years old. Critics have praised his “unassailable technique, advanced harmonic understanding, a deep sense of swing and, most impressively, a clarity and plethora of ideas executed to near-perfection.” – Downbeat Magazine\n\nGoldberg has performed at renowned jazz festivals worldwide, including the Newport Jazz Festival, SFJazz, PDX Jazz, Litchfield, Twin Cities, Caramoor, NCPA Mumbai Jazz Festival, Santander Jazz in Spain, and Ystad Jazz in Sweden. He has also graced the stages of prestigious jazz clubs, such as Dizzy’s Club, Smoke Jazz Club, Mezzrow, and Birdland Theater in New York, as well as The Side Door Jazz Club in Connecticut, and Marian’s Jazz Room in Switzerland, just to name a few.\n\nGoldberg released his third album, “Brandon Goldberg Trio: Live at Dizzy’s” in 2024. The album is described as a “prodigious work, wrapped in tradition and steered with refreshing contemporaneity. A testament to shared musical vision, this album showcases Goldberg’s musicianship” - Lydia Liebman PR. The “song selection and sequencing are exquisite...Impeccable sense of time, spotless communication with the accompaniment, unhurriedness, fidelity to melody and harmonic structure.” – Dark Blue Notes. Goldberg has released two other albums which also received critical acclaim – “In Good Time” (2021) and “LET’S PLAY!” (2019) - both were recognized as top albums of the year, earning four-star reviews from Downbeat Magazine. \n\nGoldberg often collaborates with David Foster, recently playing at the iconic Hollywood Bowl alongside Chris Botti and making memorable appearances with Katharine McPhee on Good Morning America and Live with Kelly and Mark accompanying as she performed songs from her new album with David Foster, Christmas Songs. Goldberg has also written original music for television and his compositions were featured in 1923 and Lawmen: Bass Reeves.\n\nGoldberg is a 2024 YoungArts Winner with Distinction, the youngest semifinalist in the 2023 Herbie Hancock Institute of Jazz International Piano Competition and youngest recipient of the 2022 ASCAP Herb Alpert Young Jazz Composer Award.\n\nBand Lineup:\nBrandon Goldberg, piano\nDavid Wong, bass\nAaron Kimmel, drums",
              "event_types": [],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/10907/?date=2026-05-30",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_80c197d602eb",
              "venue_id": "venue_yoshis",
              "title": "Eric Darius",
              "event_time": "SAT 5.30",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "FEARLESS, HIGH-OCTANE SAXOPHONIST TURNING JAZZ, FUNK, AND R&B INTO PURE ADRENALINE",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$39-$79",
              "url": "https://yoshis.com/events/buy-tickets/eric-darius-8/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_adbbbbb3f7e4",
              "venue_id": "venue_dawn_club",
              "title": "AZURE MCCALL",
              "event_time": "Saturday, May 30, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "McCall, Hawaii’s first lady of jazz is a multi-award winning vocalist. She is heir to the vocal tradition of Sarah Vaughan, Carmen McRae and Ella Fitzgerald. Her warmth and sense of humor fuel every interpretation. After releasing her first CD ‘Body and Soul’ she was asked by the great bassist Ray Brown to be his vocalist on tour. Of course, she accepted, beginning an incredible jazz journey – school was in! Soon after, Azure became the first singer to work with Freddie Hubbard’s band. Additional collaborators include Frank Morgan, Tennyson Stephens, Joe Lovano, Geoffrey Keezer, Curtis Lundy, Dizzy Gillespie and many more. In 2008, President Barack Obama asked her to perform at his pre-election party. “That’s why he won,” Azure says (smiling). Azure became the ‘Jazz Diva’ for Celebrity and Royal Caribbean Cruises. She has traveled to more than 50 countries including, Greece, Germany, Russia, and Italy- just to name a few.\n\n\n  \n#block-36408d2cf76386354169 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-36408d2cf76386354169 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-36408d2cf76386354169 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-36408d2cf76386354169 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-36408d2cf76386354169 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-36408d2cf76386354169 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-36408d2cf76386354169 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/1onhhsjq53k5uofqbb1g8sslma85s8-2h3mk-rjgry-xaype-sww2t-tcmx3-74f4w-lcnsj-m8whx-az7gp-ya2m7-s2sky",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e1f58bd1072a",
              "venue_id": "venue_dawn_club",
              "title": "LUKE WESTBROOK TRIO",
              "event_time": "2026-05-30T23:59:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-30T23:59:00",
              "event_date": "2026-05-30",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Early exposure to jazz through educational programs (b.1979 SF, CA) allowed Luke to participate in the Monterey Jazz Festival, and the Grammy in the Schools programs as part of the San Francisco Jazz Festival.In the years following those early days Luke has secured his reputation as a first call Jazz guitar player in the thriving San Francisco Bay Area music scene (performing at The SF Jazz Center, Bach Dancing and Dynamite, La Peña Cultural Center, Black Cat Supper Club, Mr. Tipples, Cafe Du Nord, Jupiter, and many other venues).Alongside performing in Bay Area bars and clubs Luke has also provided music for well known clients at prestigious event venues— here are a few notable past clients: Carnegie Mellon University, Waymo, The SF Olympic Club, Bohemian Club, SFCDMA, DeLoitte, UCSF/Marc Benioﬀ, General Electric, Netflix.Alongside pursuing his ambitions of live performance he’s also explored other professional duties in the field of music working as a professional sheet music transcriptionist and also as a commercial music composer (Wall Street Journal, AmFar Foundation, and the NFL).\n\n\n  \n#block-00360af9e65e94229fd8 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-00360af9e65e94229fd8 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-00360af9e65e94229fd8 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-00360af9e65e94229fd8 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-00360af9e65e94229fd8 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-00360af9e65e94229fd8 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-00360af9e65e94229fd8 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/luke-westbrook-b5ma2-tkz9h-yw7y8-5k6y8-gswyw-kynzk-2slmn-7tem2-h9bl2-7n9pr-rry65",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01ad6ccf3913",
              "venue_id": "venue_dawn_club",
              "title": "LUKE WESTBROOK TRIO",
              "event_time": "2026-05-30T01:30:00",
              "venue_name": "Dawn Club",
              "event_start": "2026-05-30T01:30:00",
              "event_date": "2026-05-30",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Early exposure to jazz through educational programs (b.1979 SF, CA) allowed Luke to participate in the Monterey Jazz Festival, and the Grammy in the Schools programs as part of the San Francisco Jazz Festival.In the years following those early days Luke has secured his reputation as a first call Jazz guitar player in the thriving San Francisco Bay Area music scene (performing at The SF Jazz Center, Bach Dancing and Dynamite, La Peña Cultural Center, Black Cat Supper Club, Mr. Tipples, Cafe Du Nord, Jupiter, and many other venues).Alongside performing in Bay Area bars and clubs Luke has also provided music for well known clients at prestigious event venues— here are a few notable past clients: Carnegie Mellon University, Waymo, The SF Olympic Club, Bohemian Club, SFCDMA, DeLoitte, UCSF/Marc Benioﬀ, General Electric, Netflix.Alongside pursuing his ambitions of live performance he’s also explored other professional duties in the field of music working as a professional sheet music transcriptionist and also as a commercial music composer (Wall Street Journal, AmFar Foundation, and the NFL).\n\n\n  \n#block-00360af9e65e94229fd8 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n--tweak-text-block-background-color: initial;\n\n  }\n\n  #block-00360af9e65e94229fd8 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-00360af9e65e94229fd8 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-00360af9e65e94229fd8 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-00360af9e65e94229fd8 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-00360af9e65e94229fd8 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-00360af9e65e94229fd8 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/luke-westbrook-b5ma2-tkz9h-yw7y8-5k6y8-gswyw-kynzk-2slmn-7tem2-h9bl2-7n9pr-rry65",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-05-18T11:10:09.037969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_988e8f11755d",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Tammy Hall “The Songs I Love”",
              "event_time": "Saturday, May 30, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "For this series at Keys, Tammy pays tribute to her mentors and influences, including Etta Jones,Ernestine Anderson,Denise Perrrier,Houston Person,Mary Lou Williams,Tania maria,Nina Simone-to name a few….",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/tammy-hall-the-songs-i-love/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6fb26e4b7edc",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Janice Maxie Reid",
              "event_time": "Saturday, May 30, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "A “one-woman band”, Janice often doubles as a #keyboard and left-hand keyboard bass player which makes her a force of nature on any stage! Her soulful, angelic and daringly accurate vocal prowess, distinctive four-octave voice range and engaging stage presence captivate her audiences! Janice’s vast musical gifts and massive repertoire are always on point and leave her audiences wanting for more! Janice has performed on major #concert stages including Bourbon Street Music Club in Sao Paulo, Brazil, Saratoga Spring Performing Arts Center, Davies Symphony Hall, Concord Pavilion,#Yoshi’s and the legendary Berkeley and #Russian River Jazz #Festivals.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/janice-maxie-reid-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_317834735b24",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, May 30, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-30T22:30:00",
              "event_date": "2026-05-30",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keeping folks up past 10 pm in SF is no easy feat, but Key’s owner Simon Rowe has been showcasing the best of the Bay Area’s organ trios in his late night Saturday sets.",
              "event_types": [],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-53/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9be289f2d226",
              "venue_id": "venue_hillside_club",
              "title": "Garden Party! Fundraiser",
              "event_time": "May 30, 2026, 3:00 PM – 6:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-05-30T15:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "A festive outdoor gathering held to raise funds for the club's programs and the preservation of its historic venue.",
              "event_types": [
                "community",
                "festival"
              ],
              "price_info": "RSVP",
              "url": "https://www.eventbrite.com/e/garden-party-at-the-hillside-club-tickets-1984338257144?",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5fc3379c9a8e",
              "venue_id": "venue_poor_house_bistro",
              "title": "Terry Hiatt Band",
              "event_time": "Sat, May 30, 2026,  06:00 PM – 09:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-30T18:00:00",
              "event_date": "2026-05-30",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "Terry has been playing for 50+ years and in that time has played and recorded with such artists as the late Sista Monica Parker, Terrie Odabi, Paula Harris, EC Scott, Lydia Pense, Lara Price, Jerry…",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5424",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_95cf23de1953",
              "venue_id": "venue_brava_theater",
              "title": "Tradición, Movimiento, y Pasión",
              "event_time": "May 30, 2026",
              "venue_name": "Brava Theater",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Cuicacalli Escuela de Danza y Compañía Presents its 18th Annual Festival: Tradición, Movimiento, y Pasión \n\nA dance performance where our students, from beginner to advanced level, promise to transport audiences through diverse regions of Mexico to experience the pride of Ballet Folklórico Mexicano through Zapateados, Faldeos, and Sombreros, as well as enjoy the abstract motion of Contemporary dancing and the dynamic and energetic culture of Hip-Hop.",
              "event_types": [
                "dance",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/cuicalli18th-y85nf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-18T11:42:14.495739Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bde90d8c5449",
              "venue_id": "venue_winters",
              "title": "Carabeza/Trophy Eddy/Simone Gramling",
              "event_time": "2026-05-30T15:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-30T15:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_da91361b5653",
              "venue_id": "venue_winters",
              "title": "Little Foot/Yes, Ma'am/Graveside Quartet",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_74c116727b06",
              "venue_id": "venue_omca",
              "title": "Gallery Chats",
              "event_time": "2026-05-30",
              "venue_name": "OMCA",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Join us for Gallery Chats, an opportunity to chat with and ask questions of our enthusiastic and knowledgeable OMCA Facilitators.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "Admission ticket required",
              "url": "https://museumca.org/event/gallery-chats-at-omca-25/2026-05-30/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_13146c51d9b4",
              "venue_id": "venue_brick_and_mortar",
              "title": "THE MOM DANCE PARTY",
              "event_time": "Sat 5.30 Show: 7:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "MOMS FEELIN THEMSELVES PRESENTS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$50.24",
              "url": "https://www.brickandmortarmusic.com/tm-event/the-mom-dance-party-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c937c78f558",
              "venue_id": "venue_piedmont_center",
              "title": "In Bloom: Spring Art Exhibition",
              "event_time": "2026-05-30",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Center for Slavic Arts & Culture. Gallery hours weekends 11 AM - 2 PM.",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-30",
              "run_id": "run_93f04bfeefb0",
              "run_label": "In Bloom: Spring Art Exhibition, May 18 – May 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4e7cc58eb32",
              "venue_id": "venue_piedmont_center",
              "title": "Rhapsody in Blue: George Gershwin’s Life",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Rami Bar-Niv, concert pianist",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.ticketsignup.io/ramibn",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b71d39b1c4e2",
              "venue_id": "venue_artists_television_access",
              "title": "AVANT TO LIVE; NEW EXPERIMENTAL WORKS",
              "event_time": "Saturday, May 30, 2026, 8:00 pm",
              "venue_name": "Television Access",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "922 Valencia Street, San Francisco, CA 94110",
              "description": "This program showcases a collection of new experimental video works and avant-garde media art.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.atasite.org/?p=16429",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "Television Access",
                  "fetched_at": "2026-05-18T12:02:41.326330Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_artists_television_access|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9a8bc2a82bf8",
              "venue_id": "venue_historic_bal_theatre",
              "title": "THE ULTIMATE BOSTON TRIBUTE",
              "event_time": "Saturday, May 30 Show: 7:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This event pays homage to the legendary rock band Boston, recreating their signature progressive rock sound and stadium-filling antheMS.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/the-ultimate-boston-tribute/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1dbbc0f48730",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Free Community Performance: Anza Library Branch",
              "event_time": "5/30/2026 2:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-30T14:30:00",
              "event_date": "2026-05-30",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Anza Library",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "LEARN MORE",
              "url": "https://sfpl.org/events/2026/05/30/performance-san-francisco-symphony",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-18T13:00:17.576242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7e5772282948",
              "venue_id": "venue_cornerstone",
              "title": "Jiluka",
              "event_time": "2026-05-30T02:30:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-30T02:30:00",
              "event_date": "2026-05-30",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Jiluka Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/jiluka-173838",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87856dedb57c",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-30T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-30",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_caeb1fe18dfe",
              "venue_id": "venue_boom_boom_room",
              "title": "The Attic w/ Growler",
              "event_time": "2026-05-30T20:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-30T20:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "The Attic presents a live musical set featuring the band Growler at this iconic San Francisco venue.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/the-attic-w-growler/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cd35e63da62c",
              "venue_id": "venue_ashkenaz",
              "title": "Khalifa do Accordion",
              "event_time": "05/30/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Brazilian Multi-Instrumentalist",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/179678",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5fc00f4a83f",
              "venue_id": "venue_the_knockout",
              "title": "Jno + Cage Wilson",
              "event_time": "5/30/2026 9:30PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-30T21:30:00",
              "event_date": "2026-05-30",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Jno headlines a live concert event with supporting performances by Cage Wilson and other guest artists.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "https://luma.com/jno.us",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_61b58a090486",
              "venue_id": "venue_4_star_theater",
              "title": "Chitty Chitty Bang Bang",
              "event_time": "May 30, 2026 10:00 AM – 12:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-30T10:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Bring the family for a screening of the classic musical adventure about a magical flying car. The film features iconic songs and a whimsical journey to the land of Vulgaria.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/chitty-chitty-bang-bang-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_58a2a43053dd",
              "venue_id": "venue_4_star_theater",
              "title": "The Gleaners and I",
              "event_time": "May 30, 2026 1:30 PM – 7:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-30T13:30:00",
              "event_date": "2026-05-30",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This screening highlights Agnès Varda's acclaimed documentary exploring the world of modern-day foragers and salvagers. It is a poetic look at the things and people society leaves behind.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/the-gleaners-and-i",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e68f8b5f01e9",
              "venue_id": "venue_4_star_theater",
              "title": "Jane B. par Agnès V.",
              "event_time": "May 30, 2026 3:00 PM – 5:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-30T15:00:00",
              "event_date": "2026-05-30",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Agnès Varda directs this experimental biographical portrait of actress and singer Jane Birkin. The film uses various cinematic styles to explore Birkin's life and persona.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/jane-b-par-agnes-v-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e2d5f7178e6c",
              "venue_id": "venue_4_star_theater",
              "title": "Cléo from 5 to 7",
              "event_time": "May 30, 2026 7:30 PM – 9:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-30T19:30:00",
              "event_date": "2026-05-30",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Experience a masterpiece of the French New Wave that follows a singer through the streets of Paris while she awaits medical results. The film captures two pivotal hours of her life in near real-time.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/cleo-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_675d5b193dc0",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-30",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-30",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea78c4e37ebc",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-30",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-30",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e1dd23e25248",
              "venue_id": "venue_el_rio",
              "title": "Ew",
              "event_time": "2026-05-30T15:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-30T15:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "A daytime EW switch up at El Rio featuring D.C. talents Baronhawk Poitier and Tommy C, celebrating LGBTQ+ and BIPOC positive dance culture.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.eventbrite.com/e/ew-el-rio-with-baronhawk-poitier-and-tommy-c-tickets-884617234567",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_48739298f426",
              "venue_id": "venue_el_rio",
              "title": "Mostly Cloudy",
              "event_time": "2026-05-30T21:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-30T21:00:00",
              "event_date": "2026-05-30",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "Late night dance party featuring Queenie and Sánlo.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://ra.co/events/san-francisco-oakland/el-rio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b9b6d13e9451",
              "venue_id": "venue_local_edition",
              "title": "GamperDrums FunkJazz",
              "event_time": "May 30, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-05-30T20:30:00",
              "event_date": "2026-05-30",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live Performance 8:30-12:30Simon Russell, Organ and VocalsBrian Pardo, GuitarChris Gamper, DrumsTogether, this trio forms an ensemble that not only honors the rich legacy of jazz but also adds a contemporary flair to the San Francisco's musically historic ambiance.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2023/6/7/tba-haww5-ak3tw-9j4na-83pp2-t9rs2-3hs74-mbnbp-c7ne7-9sy8t-84yx2-hyhd3-9tc5s-xlzz3-3tgbs-3hcba-emc7y-wpg9b-lnmhn-djb5c-p3lng-3el2f-y28me-fll7m-h7tgw-gtxeh-6f5fg-mt4nk-7x9ys-x3m95-jnrxw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-05-18T13:43:25.995194Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_307eeeb92e54",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "May 30, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-30-may-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_59ba0e1fde44",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-30",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-30",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d391898e2439",
              "venue_id": "venue_the_fireside",
              "title": "Travis Hayes",
              "event_time": "May 30 2026 7pm",
              "venue_name": "The Fireside",
              "event_start": "2026-05-30T19:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Travis_Hayes",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f637ff5a7d12",
              "venue_id": "venue_924_gilman",
              "title": "Punklandia Night Two",
              "event_time": "2026-05-30T18:30:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-30T18:30:00",
              "event_date": "2026-05-30",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages show at 924 Gilman. Doors open at 6:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://app.showslinger.com/v4/punklandia-night-two?from=%2Fe1%2F460%2F924-gilman%2F8c96699fd6&promo_widget_v3_id=460",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-18T15:36:59.474010Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0e36e9337824",
              "venue_id": "venue_club_fox",
              "title": "Supersonic & Who Too",
              "event_time": "Saturday May 30th",
              "venue_name": "Club Fox",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Saturday May 30thSUPERSONIC – The Oasis Experiencew/WHO TOO – A Tribute to The WhoDoors 7PM / Show 8PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/supersonic-the-oasis-experience-who-too-tribute-to-the-who-tickets-1984157276827?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d302be381ce1",
              "venue_id": "venue_elis_mile_high",
              "title": "Abracanasty",
              "event_time": "Sat, May 30, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-30",
              "event_date": "2026-05-30",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Eli's Mile High hosts a live performance featuring the unique sounds of Abracanasty.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/abracanasty",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6961392617a2",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-30T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-30T18:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc5fbbf0077d",
              "venue_id": "venue_de_young",
              "title": "Art Institute European Collection Talk",
              "event_time": "2026-05-30 1 pm",
              "venue_name": "De Young",
              "event_start": "2026-05-30T13:00:00",
              "event_date": "2026-05-30",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "This lecture provides insights into the Art Institute of Chicago’s recent reinstallation of its European art collection.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Legion of Honor, Talk, Talk",
              "url": "https://www.famsf.org/events/talk-art-institute-chicago-european-design-galleries",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d3e9365b6399",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Modest Mouse Listening Party",
              "event_time": "May 30, 2026 4pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-05-30T16:00:00",
              "event_date": "2026-05-30",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Head to Amoeba Berkeley for an advanced listening party of Modest Mouse's first new album in five years,  An Eraser and a Maze, on Saturday, May 30th at 4pm.\n\t\n\tHear the complete album, get free stickers and a postcard (while supplies last), and enter our raffle for a fabulous prize.\n\t\n\tAn Eraser and a Maze releases on 6/5 via Glacial Pace on CD, Double Vinyl, and Record Store-Exclusive Limited Edition Double Blue vinyl.\n\t\n\t- Event is free/all-ages\n\t- Prize will be raffled off to one lucky winner after album playback.\n\t- Postcards and stickers are both while supplies last and one per person.\n\t- Raffle tickets are free/no purchase necessary. One per person and must be present to win.\n\t- This is a fan event only. Modest Mouse will not be in attendance.",
              "event_types": [
                "community",
                "film"
              ],
              "price_info": "free",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3130/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-05-18T15:53:38.118113Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9979f2595a4c",
              "venue_id": "venue_the_riptide",
              "title": "Duffman Jams with Corey Duffel",
              "event_time": "2026-05-30T20:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-05-30T20:30:00",
              "event_date": "2026-05-30",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_af7219680079",
              "venue_id": "venue_dna_lounge",
              "title": "Unity 26 Year Anniversary",
              "event_time": "05/30/2026 6pm-2:30am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-30T02:30:00",
              "event_date": "2026-05-30",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "trance, house, drum and bass, hardcore",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20-25 pre / $40 | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/05-30.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77236c9b3c37",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-30T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-30T19:45:00",
              "event_date": "2026-05-30",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sat-may-30-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a85735ce773e",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-30T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-30T21:45:00",
              "event_date": "2026-05-30",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sat-may-30-945pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-05-31": {
          "date": "2026-05-31",
          "updated_at": "2026-05-18T16:12:43.971648Z",
          "events": [
            {
              "event_id": "evt_bb7768fe1198",
              "venue_id": "venue_the_independent",
              "title": "JABOUKIE YOUNG-WHITE",
              "event_time": "5.31 Show: 7:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Comedian and actor Jaboukie Young-White brings his sharp wit and observational humor to the stage for a live stand-up set. He is well-known for his work on The Daily Show and his popular social media presence.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/jaboukie-young-white/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01f6e6f28074",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Half Rotten Goddess",
              "event_time": "Sunday May 31 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-05-31T20:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "May 31 Half Rotten Goddess, Persephone, Rival Plague a/a $13/$15 8pm/8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260531.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0099659fdece",
              "venue_id": "venue_ivy_room",
              "title": "The Mixtape for Palestine",
              "event_time": "Sunday May 31 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-05-31T18:00:00",
              "event_date": "2026-05-31",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "seaweed sway & watermelon jams present - The Mixtape for Palestine Allstars Ft. Vicki Randle, Anna Moss, Ezra Lipp, Rafa",
              "event_types": [
                "live_music"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/177967",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6eb647f2e760",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-05-31",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-06T11:32:02.068017Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-05-31",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc56f5b75cc0",
              "venue_id": "venue_the_ritz",
              "title": "Lords Of Acid",
              "event_time": "2026-05-31T18:00:53-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-05-31T18:00:53",
              "event_date": "2026-05-31",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "This multi-artist showcase features the industrial dance music of Lords Of Acid along with performances by Dead On A Sunday and Princess Superstar. The event offers an eclectic mix of electronic, post-punk, and alternative genres for a high-energy experience.",
              "event_types": [
                "live_music",
                "electronic",
                "rock"
              ],
              "price_info": "$35 Advance – $38 Day-of-Show",
              "url": "https://www.ticketweb.com/event/lords-of-acid-dead-on-the-ritz-tickets/14056104",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_38d80aa344ad",
              "venue_id": "venue_down_home_music",
              "title": "record swap",
              "event_time": "May 31 2026 8am",
              "venue_name": "Down Home Music",
              "event_start": "2026-05-31T08:00:00",
              "event_date": "2026-05-31",
              "venue_address": "10341 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A community gathering for music enthusiasts to browse, buy, and trade vinyl records and music memorabilia.",
              "event_types": [
                "community"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.3.html#record_swap",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-16T09:09:45.505766Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_down_home_music",
                  "source_name": "Down Home Music",
                  "fetched_at": "2026-04-17T07:41:23.503796Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_down_home_music|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2c0089e224b7",
              "venue_id": "venue_odc_theater",
              "title": "The Glance: A Laptopera",
              "event_time": "5/31/2026 4:00 PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-05-31T16:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "The Glance: A Laptopera The Glance: A Laptopera is an immersive opera that reimagines the Orpheus myth for laptop orchestra and live voices. In this contemporary retelling, lovers Orphea and Eurydice struggle to build intimacy in a world shaped by constant surveillance, confronting their own limitations around trust and connection.Co-produced by Laptopera Productions and 836M, The Glance was created by composer Anne Hege with collaborators including electronic instrument builders Daniel Iglesia and Curtis Ullerich; vocalists Sidney Chen, Carmina Escobar, and Michele Kennedy; art director Kim Anno; lighting designer Mitchell Ost; and choreographer Carrie Ahern.https://www.annehege.com/theglance More...",
              "event_types": [
                "other"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22833",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-18T07:02:44.259876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-04-18T18:37:51.317086Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2364c6471480",
              "venue_id": "venue_cornerstone",
              "title": "Pradabagshawty",
              "event_time": "May 31 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-31T20:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "The rising hip-hop artist performs a live set featuring their latest tracks and rhythmic beats.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$28.29",
              "url": "http://www.foopee.com/by-band.2.html#Pradabagshawty",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b7abc0b541ec",
              "venue_id": "venue_brick_and_mortar",
              "title": "Fun Lovin' Criminals",
              "event_time": "May 31 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "The iconic group Fun Lovin' Criminals brings their signature mix of rock, hip-hop, and jazz to the stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34.24 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.1.html#Fun_Lovin__Criminals",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-04-28T11:20:48.602044Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d28d69a13f27",
              "venue_id": "venue_center_for_new_music",
              "title": "Luminous Being",
              "event_time": "5/31/2026 12:00 PM",
              "venue_name": "Center for New Music",
              "event_start": "2026-05-31T12:00:00",
              "event_date": "2026-05-31",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "Come on by for an evening of lovely groovy melodic sideways. Pre-experientialism that aims for the heart & arrives through the ears. A snowy pasture on a sunny day. Tim Bulkley on drums, Dillon Vado on Vibraphone, Ben Goldberg on clarinet. More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/luminous-being/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-04-30T10:35:51.492180Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63f6de435a4b",
              "venue_id": "venue_the_lost_church",
              "title": "The Tofanas + Dugyu & Friends",
              "event_time": "May 31, 2026 7:30pm/8pm",
              "venue_name": "The Lost Church",
              "event_start": "2026-05-31T19:30:00",
              "event_date": "2026-05-31",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Tofanas and Dugyu & Friend perform a night of contemporary and alternative music at the historic venue.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$15",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-01T00:59:27.715810Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-11T13:38:31.871919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0cdc4a2e9b9a",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "sfSoundGroup",
              "event_time": "MAY 31 2026  7:15pm",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-05-31T19:15:00",
              "event_date": "2026-05-31",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "PROGRAM\n\n \n\nErik Satie - CINEMA (1926)\nwith René Clair’s silent Dada short film, Entr’acte  (1924)\n\n \n\nLarry Polansky - The World’s Longest Melody (1993)\n\n \n\nLarry Polansky - Approaching the Azimuth... (1998)\n\n \n\nLarry Polansky - freeHorn (2004)\n\n \n\nTom Dambly - For Trumpet and Electronics (2026)\n\n \n\nMatt Ingalls - Fences (2001/2026)\n\n \n\n \n\n\nMUSICIANS\n\nDiane Grubbe, flute\nMatt Ingalls, clarinet\nJohn Ingle, saxophone\n\nTom Dambly, trumpet\nBrendan Lai-Tong, trombone\n\nGiacomo Fiore, guitar\nHadley McCarroll, piano\nKjell Nordeson, percussion\nMonica Scott, cello\nLisa Mezzacappa, bass",
              "event_types": [
                "experimental",
                "live_music",
                "film"
              ],
              "price_info": "$20 click here to purchase advance tickets online",
              "url": "https://www.sfsound.info/#may-31-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_west_oakland_sound_series",
                  "source_name": "West Oakland Sound Series",
                  "fetched_at": "2026-05-01T14:17:59.406097Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_dresher_ensemble_studio",
                  "source_name": "Dresher Ensemble Studio",
                  "fetched_at": "2026-05-06T06:39:19.743417Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e9648c909403",
              "venue_id": "venue_dna_lounge",
              "title": "Living Dead Girl",
              "event_time": "May 31 2026 7pm/7:30pm",
              "venue_name": "DNA Lounge",
              "event_start": "2026-05-31T19:30:00",
              "event_date": "2026-05-31",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "The Conspiracy Tour. All Ages.",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "$17/$24",
              "url": "http://www.foopee.com/by-band.2.html#Living_Dead_Girl",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-02T10:44:50.704516Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-03T11:48:29.966028Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5f9adee4671e",
              "venue_id": "venue_rickshaw_stop",
              "title": "Marietta",
              "event_time": "May 31 2026 7pm/7:45pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-05-31T19:45:00",
              "event_date": "2026-05-31",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Influential indie and emo band Marietta performs a live set featuring their characteristic melodic and driving sound.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Marietta",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ec143f1852f5",
              "venue_id": "venue_artists_television_access",
              "title": "Rewards Program Live Score",
              "event_time": "5/31/2026 7:30 PM",
              "venue_name": "Television Access",
              "event_start": "2026-05-31T19:30:00",
              "event_date": "2026-05-31",
              "venue_address": "922 Valencia Street, San Francisco, CA 94110",
              "description": "This installment of This is Not a Film Festival presents Program 3, featuring a curated selection of non-traditional media and video art. The event challenges standard cinematic conventions through a series of diverse and experimental screenings.",
              "event_types": [
                "live_music",
                "experimental",
                "film"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22999",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-06T06:16:22.143035Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "Television Access",
                  "fetched_at": "2026-05-06T08:17:22.027892Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_artists_television_access|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a7b7ed46f7af",
              "venue_id": "venue_guild_theatre",
              "title": "Marc Fontane",
              "event_time": "2026-05-31T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-05-31T20:00:00",
              "event_date": "2026-05-31",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live concert at The Guild Theatre. Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$42",
              "url": "https://www.tixr.com/e/182395",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9ca13e7dacc4",
              "venue_id": "venue_davies_symphony_hall",
              "title": "San Francisco Symphony Chorus Concert",
              "event_time": "5/31/2026 2:00 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "See Unknown programme in Berlin, Germany Paris, France Budapest, Hungary Chicago, IL, United States Vienna, Austria Hamburg, Germany span Read reviews of Jenny Wong San Francisco Symphony San...",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23733",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-07T14:07:06.403189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-17T11:43:13.664569Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30d4669f319b",
              "venue_id": "venue_924_gilman",
              "title": "Small Crush",
              "event_time": "May 31 4pm/5pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-05-31T16:00:00",
              "event_date": "2026-05-31",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "a/a $5-$25 sliding scale 4pm/5pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$5",
              "url": "http://www.foopee.com/by-band.3.html#Small_Crush",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4507ea3e603",
              "venue_id": "venue_the_chapel",
              "title": "Marc & The Casuals",
              "event_time": "May 31 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Summer Soul Celebration - Supporting Talent: The West Coast Spiritual Corinthians, DJ Lead Teddy - Soul",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$33.40",
              "url": "http://www.foopee.com/by-band.2.html#Marc___The_Casuals",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-09T11:55:08.798919Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_2",
                  "source_name": "Foopee Date 2",
                  "fetched_at": "2026-05-13T12:32:17.417281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-18T10:24:42.800944Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b6c9439286ba",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Pedro José Pastrana: Album Release Concert",
              "event_time": "2026-05-31T16:00:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-05-31T16:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "The Pedro José Pastrana Trio presents an album release concert featuring innovative Latin Jazz centered around the Puerto Rican 'Cuatro'.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "Check website for tickets",
              "url": "https://www.shazam.com/concert/pedro-jose-pastrana-oakland-wyldflowr-arts-17482594",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6f90a2529fac",
              "venue_id": "venue_sailing_goat",
              "title": "Combo Colocha",
              "event_time": "Sun, May 31",
              "venue_name": "Sailing Goat",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Dance along to the infectious rhythms of Combo Colocha, a band known for their high-energy Latin and tropical sounds.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/combo-colocha-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e993a47d5ed",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-05-31",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-05-31",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92e4e58ff0c0",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Masks Required)",
              "event_time": "2026-05-31T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. Masks are required for this matinee performance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_459387e5d62b",
              "venue_id": "venue_the_bistro",
              "title": "Live at the Bistro",
              "event_time": "2026-05-31",
              "venue_name": "The Bistro",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Sunday live music performance.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free / No Cover",
              "url": "https://stayhappening.com/e/live-at-the-bistro-in-hayward-E2ISTV3V6V6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cdb48dd3b571",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Sunday BBQ Breakfast",
              "event_time": "2026-05-31T09:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-05-31T09:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "A special weekend tradition featuring brisket hash, custom omelets, biscuits and gravy, and other Southern breakfast standards. Complimentary coffee is included with breakfast orders.",
              "event_types": [
                "community"
              ],
              "price_info": "Menu prices",
              "url": "https://smokingpigbbq.net/menus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_005233c9b97c",
              "venue_id": "venue_mr_tipples",
              "title": "Johnny Bones",
              "event_time": "2026-05-31T19:45:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-05-31T19:45:00",
              "event_date": "2026-05-31",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Saxophonist Johnny Bones brings his signature swing and soulful jazz style to the stage for two evening sets.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/johnny-bones/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1a12fd10ee91",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-31T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-31",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_45989b71569e",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-05-31T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-05-31T20:00:00",
              "event_date": "2026-05-31",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-05-31",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0461f8a1e2ed",
              "venue_id": "venue_ocean_ale_house",
              "title": "Songwriters Showcase @ Ocean Alehouse",
              "event_time": "2026-05-31T13:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-05-31T13:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "An afternoon of original music featuring David Thompson, Rod Reilly, Sean Lightholder, Arne Hurty, David Kesler, and Anna Karney.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://dothebay.com/events/2026/5/31/songwriters-showcase-ocean-alehouse-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5b99c9eba289",
              "venue_id": "venue_piedmont_center",
              "title": "Chamber Series: “I, Too, Sing America”",
              "event_time": "2026-05-31T16:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-31T16:00:00",
              "event_date": "2026-05-31",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "The 2025-26 Chamber Series finale, curated by James Parrish Smith, explores identity and belonging through the works of Brian Raphael Nabors, Anna Clyne, and Antonín Dvořák. The program includes Nabors' String Quartet, Clyne's Breathing Statues, and Dvořák's 'American' String Quartet.",
              "event_types": [],
              "price_info": "Tickets start at $40; $15 for students and children",
              "url": "https://purchase.berkeleysymphony.org/ChooseSeats/1801",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-15T15:07:26.159089Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-05-16T10:38:20.555104Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b65f0e86d3de",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Dub Mission 30th Anniversary",
              "event_time": "2026-05-31T16:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-31T16:30:00",
              "event_date": "2026-05-31",
              "venue_address": "San Francisco, CA 94118",
              "description": "Celebrating 30 years of Dub Mission with DJs Sep, Vinnie Esparza, and Maneesh the Twister.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://illuminate.org/events/dub-mission-30th-anniversary-may-31-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-15T15:15:23.116577Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0bf73fcea481",
              "venue_id": "venue_alhambra_public_house",
              "title": "Irish Live Music and Ceili Dancing",
              "event_time": "2026-05-31T17:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-05-31T17:00:00",
              "event_date": "2026-05-31",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Sunday dinner, drinks, and Irish traditional live music with Ceili style dancing. Lessons available.",
              "event_types": [],
              "price_info": "Lesson is $15 cash",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1166f16ea2ee",
              "venue_id": "venue_montgomery_theater",
              "title": "Celebration of Dance",
              "event_time": "2026-05-31T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "Beshkan Dance Academy’s annual showcase featuring student performances rooted in cultural expression, modern interpretation, and storytelling, highlighting dancers of varied ages and experience levels.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/celebration-of-dance-beshkan-dance-academy/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a88a17c7385f",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Horseshoe Jam (Bluegrass)",
              "event_time": "2026-05-31T16:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-05-31T16:00:00",
              "event_date": "2026-05-31",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Weekly intermediate bluegrass jam on stage.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://californiabluegrass.org/cbaevent/horseshoe-jam/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_40b32af8a2a8",
              "venue_id": "venue_verdi_club",
              "title": "SF Daytime Social – Salsa & Bachata",
              "event_time": "2026-05-31T15:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-05-31T15:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Monthly Sunday social featuring Bachata and Salsa workshops followed by a dance party.",
              "event_types": [],
              "price_info": "$15",
              "url": "https://www.verdiclub.net/event/sf-daytime-social-salsa-bachata/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6f5cef86fdfc",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Farewell Evensong: Jared Johnson",
              "event_time": "2026-05-31T11:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-05-31T11:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A special service and reception honoring the tenure of Canon Director of Music Jared Johnson.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://gracecathedral.org/events/evensong-farewell-to-canon-director-of-music-jared-johnson/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0a86ddd7f40a",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Solo Piano",
              "event_time": "2026-05-31T18:30:00",
              "venue_name": "Bix",
              "event_start": "2026-05-31T18:30:00",
              "event_date": "2026-05-31",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Experience an intimate evening of solo piano jazz at Bix, featuring some of the Bay Area's finest musicians in a historic Barbary Coast setting.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_eb8c25fa38a2",
              "venue_id": "venue_hammer_theater",
              "title": "San Jose Dance Theatre: Alice in Wonderland",
              "event_time": "2026-05-31T14:00:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "The final performance of San Jose Dance Theatre's whimsical production of Alice in Wonderland.",
              "event_types": [],
              "price_info": "From $108",
              "url": "https://hammertheatre.com/event/san-jose-dance-theatre-presents-alice-in-wonderland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_06751fbe60aa",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Losing Streak",
              "event_time": "2026-05-31T20:00:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-05-31T20:00:00",
              "event_date": "2026-05-31",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "Live performance by Losing Streak at Neck of the Woods.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15.00",
              "url": "https://www.ticketweb.com/event/losing-streak-neck-of-the-woods-tickets/13426342",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d4f109c752ba",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Rae Studios Presents: RS26: Spring Edition",
              "event_time": "2026-05-31",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "A dance showcase presented by Rae Studios featuring various performances.",
              "event_types": [
                "dance"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/rs26-spring-edition/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_90a07dc432b8",
              "venue_id": "venue_biscuits__blues",
              "title": "Hadden Sayers",
              "event_time": "2026-05-31",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Confirmed upcoming show at Biscuits & Blues.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260531haddensayers",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4e9e1d13455c",
              "venue_id": "venue_chase_center",
              "title": "Valkyries vs. Aces",
              "event_time": "2026-05-31T12:30:00",
              "venue_name": "Chase Center",
              "event_start": "2026-05-31T12:30:00",
              "event_date": "2026-05-31",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42a4a84b7684",
              "venue_id": "venue_white_horse",
              "title": "DJs for DYKE MARCH: An SF Dyke March Benefit",
              "event_time": "2026-05-31T14:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "An afternoon of music and celebration with door proceeds benefiting the 2026 SF Dyke March.",
              "event_types": [],
              "price_info": "Donation at the door",
              "url": "https://www.eventbrite.com/e/djs-for-dyke-march-white-horse-bar-an-sf-dyke-march-benefit-tickets-880567549837",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f7a59c891bcd",
              "venue_id": "venue_first_lutheran_pa",
              "title": "New Member Reception at Worship",
              "event_time": "2026-05-31T10:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-05-31T10:00:00",
              "event_date": "2026-05-31",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Sunday worship includes reception of a new member on Holy Trinity Sunday.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://mailchi.mp/b5773b963445/gathered-17313107",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-16T01:02:23.851080Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_658b7815a83d",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Silicon Valley Pun Competition",
              "event_time": "2026-05-31T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Comedy competition focused on puns.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/359386",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4cbb713b91fd",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jam Session hosted by the Vince Lateano Trio",
              "event_time": "2026-05-31T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-05-31T17:00:00",
              "event_date": "2026-05-31",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "All-comers Jam Session hosted by the Vince Lateano Trio on the Last Sunday of every month.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a0c6200319c",
              "venue_id": "venue_the_cats",
              "title": "Harmony Lane",
              "event_time": "2026-05-31",
              "venue_name": "The Cats",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "6:00 PM – 8:30 PM\nHarmony Lane",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/harmony-lane-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae22f51c0367",
              "venue_id": "venue_sfmoma",
              "title": "MAKE! Matisse Landscapes",
              "event_time": "2026-05-31T11:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-05-31T11:00:00",
              "event_date": "2026-05-31",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Workshop series",
              "event_types": [
                "workshop",
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e141b67ad89e",
              "venue_id": "venue_mvcpa",
              "title": "Pacific Ballet Academy Spring Showcase",
              "event_time": "2026-05-31T17:00:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-05-31T17:00:00",
              "event_date": "2026-05-31",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Pacific Ballet Academy of Mountain View presents its annual showcase featuring dancers from the school and advanced dancers from the Studio Company. For the first time, we are presenting an abridged version of Giselle in one act!",
              "event_types": [
                "dance"
              ],
              "price_info": "$32 - $34",
              "url": "https://tickets.mvcpa.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-05-17T10:54:35.093784Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mvcpa|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_65a1825fa3c6",
              "venue_id": "venue_hi_lo_club",
              "title": "Sunday Night Jazz Trio",
              "event_time": "2026-05-31T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Weekly Sunday jazz session featuring local musicians and a communal atmosphere.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ed86e6c037fe",
              "venue_id": "venue_mojo_lounge",
              "title": "Acoustic Open Mic Night",
              "event_time": "2026-05-31T19:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "End the month with the Mojo Lounge's signature Sunday acoustic open mic night, featuring local talent and a supportive crowd.",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.instagram.com/themojolounge.fremont/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-05-17T14:10:13.762337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2f1f8c5ea4e0",
              "venue_id": "venue_the_midway",
              "title": "Ambiente y Cafe x Mas Vida Market",
              "event_time": "2026-05-31",
              "venue_name": "The Midway",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "RIDE ∙ INDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/ambiente-y-cafe-x-mas-vida-market/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2227bfe76bd0",
              "venue_id": "venue_the_midway",
              "title": "San Francisco Queer Art & Music Festival",
              "event_time": "2026-05-31",
              "venue_name": "The Midway",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/san-francisco-queer-art-music-festival/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c13a95e913d",
              "venue_id": "venue_kilowatt",
              "title": "Daizy, 1,000 Dreams & Chess",
              "event_time": "2026-05-31T13:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-31T13:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc493f6a8e45",
              "venue_id": "venue_kilowatt",
              "title": "Forest Ray, Silver Swoon & Miles Gordon",
              "event_time": "2026-05-31T19:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_486a69974b87",
              "venue_id": "venue_rootstock_arts",
              "title": "Saint John Coltrane Church Centennial",
              "event_time": "2026-05-31T14:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "This special event honors the 100th anniversary and spiritual legacy of the Saint John Coltrane Church. The celebration features music and reflections inspired by the intersection of jazz and divinity.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b3285da26bd",
              "venue_id": "venue_tommy_ts",
              "title": "RUDY ORTIZ",
              "event_time": "2026-05-31",
              "venue_name": "Tommy T's",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87f50c1485e7",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-31T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-31T19:30:00",
              "event_date": "2026-05-31",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-31",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8af626760c2b",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-05-31T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-05-31",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_af6cc9e7ecf0",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Sunday Night Jazz: Lavay Smith & Chris Siebert",
              "event_time": "2026-05-31T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-05-31T20:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Weekly Sunday night performance by singer Lavay Smith and organist Chris Siebert, delivering classic jazz and blues.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_60df39e8ff70",
              "venue_id": "venue_make_out_room",
              "title": "Dimensions w/ DJ 2NITE",
              "event_time": "2026-05-31T22:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-05-31T22:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Late night Sunday dance party.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "http://www.makeoutroom.com/calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3317eb51d828",
              "venue_id": "venue_madrone_art_bar",
              "title": "SUNDAY B3 SESSIONS",
              "event_time": "May 31 @ 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-05-31T21:00:00",
              "event_date": "2026-05-31",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Sunday B3 Sessions Hosted by Adam Shulman and Mike Olmos Swinging soul jazz with a jam session to follow 9pm-Close No Cover",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/spikes-open-mic-sunday-b3-sessions-2025-11-23/2026-05-31/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1b75e7ac0b3",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazzschool Student Performance Series",
              "event_time": "2026-05-31",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-05-31T19:30:00",
              "event_date": "2026-05-31",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "This recurring series highlights the diverse talents of Jazzschool students as they gain professional experience performing for a live audience.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/jazzschool-student-performance-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-05-31",
              "run_id": "run_0ae56a30c533",
              "run_label": "Jazzschool Student Performance Series, May 26 – Jun 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4005a989e85e",
              "venue_id": "venue_sfjazz_miner",
              "title": "TERENCE BLANCHARD & RAVI COLTRANE",
              "event_time": "May 31 2026 7:00 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Miles Davis & John Coltrane Centennial",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.sfjazz.org/tickets/productions/25-26/terence-blanchard-ravi-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-05-18T10:45:03.823227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b98e0af0f27",
              "venue_id": "venue_black_cat",
              "title": "Brandon Goldberg Residency",
              "event_time": "05/31/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nAward-winning pianist and composer Brandon Goldberg has been playing piano and making music since he was three years old. Critics have praised his “unassailable technique, advanced harmonic understanding, a deep sense of swing and, most impressively, a clarity and plethora of ideas executed to near-perfection.” – Downbeat Magazine\n\nGoldberg has performed at renowned jazz festivals worldwide, including the Newport Jazz Festival, SFJazz, PDX Jazz, Litchfield, Twin Cities, Caramoor, NCPA Mumbai Jazz Festival, Santander Jazz in Spain, and Ystad Jazz in Sweden. He has also graced the stages of prestigious jazz clubs, such as Dizzy’s Club, Smoke Jazz Club, Mezzrow, and Birdland Theater in New York, as well as The Side Door Jazz Club in Connecticut, and Marian’s Jazz Room in Switzerland, just to name a few.\n\nGoldberg released his third album, “Brandon Goldberg Trio: Live at Dizzy’s” in 2024. The album is described as a “prodigious work, wrapped in tradition and steered with refreshing contemporaneity. A testament to shared musical vision, this album showcases Goldberg’s musicianship” - Lydia Liebman PR. The “song selection and sequencing are exquisite...Impeccable sense of time, spotless communication with the accompaniment, unhurriedness, fidelity to melody and harmonic structure.” – Dark Blue Notes. Goldberg has released two other albums which also received critical acclaim – “In Good Time” (2021) and “LET’S PLAY!” (2019) - both were recognized as top albums of the year, earning four-star reviews from Downbeat Magazine. \n\nGoldberg often collaborates with David Foster, recently playing at the iconic Hollywood Bowl alongside Chris Botti and making memorable appearances with Katharine McPhee on Good Morning America and Live with Kelly and Mark accompanying as she performed songs from her new album with David Foster, Christmas Songs. Goldberg has also written original music for television and his compositions were featured in 1923 and Lawmen: Bass Reeves.\n\nGoldberg is a 2024 YoungArts Winner with Distinction, the youngest semifinalist in the 2023 Herbie Hancock Institute of Jazz International Piano Competition and youngest recipient of the 2022 ASCAP Herb Alpert Young Jazz Composer Award.\n\nBand Lineup:\nBrandon Goldberg, piano\nDavid Wong, bass\nAaron Kimmel, drums",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/10906/?date=2026-05-31",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_07b5a03c9eb2",
              "venue_id": "venue_yoshis",
              "title": "That 70's Flow: The B-Side",
              "event_time": "SUN 5.31 7:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "MUSIC THAT MOVES THE SPIRIT, THE BODY, AND THE ROOM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$39 - $69",
              "url": "https://yoshis.com/events/buy-tickets/ja-ronn-flow/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f1233b16038",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Brad Leali Jazz Quartet ft. Carla Helmbrecht",
              "event_time": "2026-05-31T17:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-05-31T17:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "The sensitive and sophisticated vocal stylings of Carla Helmbrecht are the perfect complement to the soulful, blues- and swing-influenced style of the Brad Leali ensemble. Not only do they explore classic jazz standards and original materials, but they are able to infuse historical and modern components to their unique arrangements. This dynamic duo will be backed tonight by a world class trio with Adam Shulman (piano/organ), Brian Fishler (drums), and Matthew Montgomery (bass).",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/the-brad-leali-jazz-quartet-ft-carla-helmbrecht-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ca36fe470d76",
              "venue_id": "venue_hillside_club",
              "title": "Danse Libre presents A Regency Afternoon",
              "event_time": "May 31, 2026, 1:00 PM – 6:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-05-31T13:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "The Danse Libre troupe presents a program of historical social dances set in the elegant Regency era.",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.eventbrite.com/e/danse-libre-presents-a-regency-afternoon-tickets-1987038119505?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_61bf367cc963",
              "venue_id": "venue_hillside_club",
              "title": "Tango Practica",
              "event_time": "May 31, 2026, 7:00 PM – 10:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "An informal practice session for tango enthusiasts to hone their steps and dance together in a relaxed environment.",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "Learn more",
              "url": "https://www.hillsideclub.org/event-details/tango-practica-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_508ebc7aa7fb",
              "venue_id": "venue_poor_house_bistro",
              "title": "Jazz in the Neighborhood: Zhenia",
              "event_time": "Sun, May 31, 2026,  12:00 PM – 07:00 PM",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-05-31T12:00:00",
              "event_date": "2026-05-31",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "12pm – 3pm: Jazz in the Neighborhood featuring Zhenia – Charged Particles are an electrifying band known for fusing high-energy rock with elements of funk, soul, and blues to create a sound that’s powerful, rhythmic,…",
              "event_types": [
                "live_music",
                "jazz",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://poorhousebistro.com/events/?event=5425",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-05-18T11:30:53.265955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c1702443fa6",
              "venue_id": "venue_brava_theater",
              "title": "Questions, Not Answers",
              "event_time": "MAY 31, 2026 2PM",
              "venue_name": "Brava Theater",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Spark your curiosity with \"Questions, Not Answers: Films and Conversation,\" presented by Brava for Women in the Arts! Our thought-provoking film series, \"Meetings with Remarkable Men,\" uses compelling cinema as a powerful catalyst to explore life's big questions. Join fellow film lovers for engag...",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/remarkablemen-47w5-8c573-3jrd9-mh3km-mxjas-b8c7s-4ks3h-cs9ks",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-18T11:42:14.495739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6218bfc764b0",
              "venue_id": "venue_winters",
              "title": "MATINEE***The Famous",
              "event_time": "2026-05-31T15:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-31T15:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eeff3b3580e5",
              "venue_id": "venue_winters",
              "title": "Mokai/Third Thursday Band/R23's",
              "event_time": "2026-05-31T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-05-31T20:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_983b27753f52",
              "venue_id": "venue_presidio_theater",
              "title": "Opera Parallèle: Doubt at the Presidio Theatre",
              "event_time": "2026-05-31",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-31T19:30:00",
              "event_date": "2026-05-31",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Opera Parallèle brings a powerful operatic adaptation of the Pulitzer Prize-winning play Doubt to the Presidio Theatre stage.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/opera-parallele-doubt-at-the-presidio-theatre",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-31",
              "run_id": "run_28348a5c4fe4",
              "run_label": "Opera Parallèle: Doubt at the Presidio Theatre, May 29 – May 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bc8ceaa5972f",
              "venue_id": "venue_piedmont_center",
              "title": "In Bloom: Spring Art Exhibition",
              "event_time": "2026-05-31",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Center for Slavic Arts & Culture. Gallery hours weekends 11 AM - 2 PM.",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-05-18T11:51:02.376225Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-05-31",
              "run_id": "run_93f04bfeefb0",
              "run_label": "In Bloom: Spring Art Exhibition, May 18 – May 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c5bd469dd01",
              "venue_id": "venue_mabuhay_gardens",
              "title": "FIND YOUR FUNNY",
              "event_time": "5/31/2026 2:00 PM // CLOWN WORKSHOP",
              "venue_name": "The Mab",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Stretch your clown muscles with a seasoned facilitator of fun: Fenner Merlick!",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/mab/events/mabuhaygardens-fenner-clown-workshop-188804",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-05-18T12:01:50.625795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_68f74df61190",
              "venue_id": "venue_mabuhay_gardens",
              "title": "SYRIAN SOAP",
              "event_time": "5/31/2026 7:00 PM // COMEDY",
              "venue_name": "The Mab",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Are you your ancestor’s wildest dream—or worst nightmare? General Admission $20.",
              "event_types": [
                "theater",
                "literary"
              ],
              "price_info": "$20",
              "url": "https://www.tixr.com/groups/mab/events/mabuhaygardens-syrian-soap-188778",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-05-18T12:01:50.625795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_064a47824163",
              "venue_id": "venue_sf_conservatory",
              "title": "35th Season Finale",
              "event_time": "May 31, 2026 3:00 PM – 4:45 PM",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-05-31T15:00:00",
              "event_date": "2026-05-31",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "MAX MARCUS\nIncantations for Orchestra\n\nLUDWIG VAN BEETHOVEN\nViolin Concerto in D major, Op. 61\nAva Pakiam, violin\n\nDMITRI SHOSTAKOVICH\nSymphony No. 9",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.symphonyparnassus.org/concerts/2026/05/31/beethoven-shostakovich",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_symphony_parnassus",
                  "source_name": "Symphony Parnassus",
                  "fetched_at": "2026-05-18T12:05:28.042264Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ac17316220c",
              "venue_id": "venue_shelton_theater",
              "title": "Secret Improv Vice",
              "event_time": "MAY 31, 2026 5PM",
              "venue_name": "Shelton Theater",
              "event_start": "2026-05-31T17:00:00",
              "event_date": "2026-05-31",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Witness an Improvised Noir, set beneath the rolling San Francisco fog and along the crooked streets slick with rain and regret. Watch closely as flawed detectives, cunning dames, and shady lowlifes collide in an unpredictable plot cooked up quicker than a midnight alibi. Nobody knows who's guilty...",
              "event_types": [
                "theater",
                "dance",
                "live_music"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/secret-improv-vice_2026-05-31-17-00/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shelton_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1edede08047",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE BEE GEES TRIBUTE CONCERT",
              "event_time": "Sunday, May 31 Show: 7:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Fans can enjoy a night of disco and pop classics during this dedicated tribute to the legendary music of the Bee Gees.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-bee-gees-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bd42ff5c244a",
              "venue_id": "venue_cornerstone",
              "title": "CD Ghost",
              "event_time": "2026-05-31T04:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-05-31T04:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "CD Ghost Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/cd-ghost-182087",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c845abe54f91",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-05-31T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-05-31T19:30:00",
              "event_date": "2026-05-31",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-05-31",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e72ae2968f2c",
              "venue_id": "venue_boom_boom_room",
              "title": "Cuban Salsa Party",
              "event_time": "Sun, May 31 | Doors: 5:30 pm // Show: 7 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-05-31T17:30:00",
              "event_date": "2026-05-31",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Dance the night away to live Cuban salsa music during this high-energy party with no admission fee.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/live-cuban-salsa-party-no-cover-charge-2/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f30fc0b6209",
              "venue_id": "venue_the_knockout",
              "title": "Terraplana + Luna Ivy",
              "event_time": "5/31/2026 6:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-31T18:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Brazilian psychedelic band Terraplana performs live with local support from Luna Ivy for a night of mind-bending music.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$17",
              "url": "https://link.dice.fm/ycb2b5c9662d?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_16cd5656e4fb",
              "venue_id": "venue_the_knockout",
              "title": "Reggae Sunday: Night of the Reggae All Stars",
              "event_time": "5/31/2026 10:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-05-31T22:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "A special edition of Reggae Sunday featuring a curated selection of hits from the genre's most iconic stars.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/d64d899dfdc8?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_054e650489ed",
              "venue_id": "venue_4_star_theater",
              "title": "Chitty Chitty Bang Bang",
              "event_time": "May 31, 2026 10:00 AM – 12:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-31T10:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Bring the family for a screening of the classic musical adventure about a magical flying car. The film features iconic songs and a whimsical journey to the land of Vulgaria.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/chitty-chitty-bang-bang-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_def7f17f7c03",
              "venue_id": "venue_4_star_theater",
              "title": "Cléo from 5 to 7",
              "event_time": "May 31, 2026 1:30 PM – 3:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-31T13:30:00",
              "event_date": "2026-05-31",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Experience a masterpiece of the French New Wave that follows a singer through the streets of Paris while she awaits medical results. The film captures two pivotal hours of her life in near real-time.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/cleo-sat-rlpms",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_65f88dc082ee",
              "venue_id": "venue_4_star_theater",
              "title": "Jane B. par Agnès V.",
              "event_time": "May 31, 2026 4:00 PM – 6:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-31T16:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Agnès Varda directs this experimental biographical portrait of actress and singer Jane Birkin. The film uses various cinematic styles to explore Birkin's life and persona.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/jane-b-par-agnes-v-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e523372c5e8f",
              "venue_id": "venue_4_star_theater",
              "title": "Hell Comes to Frogtown",
              "event_time": "May 31, 2026 7:00 PM – 9:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Trash & Treasures presents a screening of this cult post-apocalyptic action film starring Roddy Piper. The movie follows a nomad tasked with rescuing fertile women from a mutant-run city.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/hell-comes-to-frogtown",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e50499f1b184",
              "venue_id": "venue_castro_theater",
              "title": "LABYRINTH",
              "event_time": "May 31, 2026 2:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-31T14:00:00",
              "event_date": "2026-05-31",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "40th Anniversary",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/labyrinth-260531",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f96dba049c41",
              "venue_id": "venue_castro_theater",
              "title": "MOULIN ROUGE!",
              "event_time": "May 31, 2026 6:30pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-05-31T18:30:00",
              "event_date": "2026-05-31",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "25th Anniversary",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/moulin-rouge-260531",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14bece86e4c1",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-05-31",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-31",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5bfeccc04b62",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-05-31",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-05-31",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f1e241a3374",
              "venue_id": "venue_el_rio",
              "title": "Mahragan San Francisco",
              "event_time": "2026-05-31T15:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-05-31T15:00:00",
              "event_date": "2026-05-31",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "A QT dance party amplifying sounds from the global south, including Dabke, SWANA Pop, Mahraganat, and Bandari. Featuring DJs Mansaf Mama, Ari B, and more.",
              "event_types": [],
              "price_info": "$15 - $25",
              "url": "https://www.tickettailor.com/events/mahragan/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9cca1d53c1d0",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "May 31, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-31-may-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4e90e975a67e",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-05-31",
              "venue_name": "Club Fugazi",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-05-31",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dd40de35785f",
              "venue_id": "venue_plough_and_stars",
              "title": "Seisiún",
              "event_time": "2026-05-31T13:00:00",
              "venue_name": "The Plough and the Stars",
              "event_start": "2026-05-31T13:00:00",
              "event_date": "2026-05-31",
              "venue_address": "116 Clement St, San Francisco, CA 94118",
              "description": "Afternoon session",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_plough_and_stars",
                  "source_name": "The Plough and the Stars",
                  "fetched_at": "2026-05-18T14:30:09.516670Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_plough_and_stars|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b198bce7fad",
              "venue_id": "venue_presidio_theater",
              "title": "Opera Parallèle: Doubt",
              "event_time": "5/31/2026, 3:00 PM",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-05-31T15:00:00",
              "event_date": "2026-05-31",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Groupmuse Night Out | Neighborhood:\nPresidio Theatre | Price:\n$20 tickets ($15 for Supermusers)",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "$20 tickets ($15 for Supermusers)",
              "url": "https://www.groupmuse.com/events/16633-presidio-theatre-presents-opera-parallele-s-doubt",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-05-18T14:36:21.402350Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9245d5db01df",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Crucial Reggae Sundays | May 31",
              "event_time": "May 31, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-05-31T16:30:00",
              "event_date": "2026-05-31",
              "venue_address": "San Francisco, CA 94118",
              "description": "Featuring DJ Guid8nce, DJ Sep, Irie Dole, Maneesh the Twister, Vinnie Esparza",
              "event_types": [
                "dj_party",
                "latin_world",
                "live_music",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/crucial-reggae-sundays-may-31/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-18T15:33:52.278478Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f11948cf631",
              "venue_id": "venue_elis_mile_high",
              "title": "Bustié, Edgar, Skoto",
              "event_time": "Sun, May 31, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Bustié, Edgar, and Skoto perform a night of alternative music at the venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/bustie-edgar-skoto",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4048df40878e",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-05-31T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-05-31T18:00:00",
              "event_date": "2026-05-31",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f4cb9e2ab69c",
              "venue_id": "venue_the_fireside",
              "title": "Sunday Sports & Drinks",
              "event_time": "2026-05-31",
              "venue_name": "The Fireside",
              "event_start": "2026-05-31",
              "event_date": "2026-05-31",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Sports, bloody marys, mimosas, buckets of beer",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_502124e1a87b",
              "venue_id": "venue_great_star_theater",
              "title": "Making Space Screening",
              "event_time": "May 31, 2026 at 2:30 PM",
              "venue_name": "Great Star Theater",
              "event_start": "2026-05-31T14:30:00",
              "event_date": "2026-05-31",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "Community screening of Making Space, a contemporary AAPI love story, followed by a live Q&A with the director and cast.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "Tickets",
              "url": "https://luma.com/o1tzcfr3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-05-18T15:52:47.667779Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_27590adae6a2",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-05-31T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-05-31T19:45:00",
              "event_date": "2026-05-31",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sun-may-31-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0c332f7a7b29",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "CONNOR KING",
              "event_time": "Sun May 31, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-05-31T19:00:00",
              "event_date": "2026-05-31",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Connor King performs an energetic stand-up set known for its relatable anecdotes and sharp comedic delivery.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/connor-king-san-francisco-california-05-31-2026/event/1C006477BA8DB515",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-05-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-01": {
          "date": "2026-06-01",
          "updated_at": "2026-05-18T16:12:43.989107Z",
          "events": [
            {
              "event_id": "evt_95b4bdf8f6f4",
              "venue_id": "venue_4_star_theater",
              "title": "Woods & Dougle Poole",
              "event_time": "Jun 1 7pm/8pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "FolkYEAH! presents an evening of live music featuring the indie folk sounds of Woods and Dougie Poole. This concert brings together two distinct voices in the contemporary folk and psych-rock scenes.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Woods",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-18T08:40:49.734396Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e00c4c1ca3ed",
              "venue_id": "venue_cornerstone",
              "title": "Kenny Mason",
              "event_time": "Jun 1 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a 7pm/8pm",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Kenny_Mason",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53054ac51f42",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Yo-Yo Ma with the San Francisco Symphony",
              "event_time": "6/1/2026 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-06-01T19:30:00",
              "event_date": "2026-06-01",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Mozart 41, Elgar CC | Gaffigan, Ma, San Francisco Symphony",
              "event_types": [
                "live_music",
                "classical",
                "workshop"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2025-26/YO-YO-MA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-07T14:07:06.403189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_25112a130d10",
              "venue_id": "venue_the_chapel",
              "title": "Aja Monet",
              "event_time": "Jun 1 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) & KALW 91.7 FM Present - R&B",
              "event_types": [
                "live_music",
                "literary"
              ],
              "price_info": "$39.59",
              "url": "http://www.foopee.com/by-band.0.html#Aja_Monet",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-18T10:24:42.800944Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dab61f45925c",
              "venue_id": "venue_cafe_du_nord",
              "title": "Kyle Gass Company",
              "event_time": "2026-06-01T20:00:00",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-01T20:00:00",
              "event_date": "2026-06-01",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents Kyle Gass Company.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Price not listed on event page",
              "url": "https://cafedunord.com/tm-event/kyle-gass-company/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b185928a45f3",
              "venue_id": "venue_the_marsh_berk",
              "title": "Monday Improv Show & Jam",
              "event_time": "2026-06-01T19:30:00",
              "venue_name": "The Marsh Berk",
              "event_start": "2026-06-01T19:30:00",
              "event_date": "2026-06-01",
              "venue_address": "2120 Allston Way, Berkeley, CA 94704",
              "description": "A narrative longform improv show followed by an improv jam, presented by Improv On Demand.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25 sliding scale",
              "url": "https://themarsh.org/monday-improv-show-jam/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_berk|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e3a930d8499c",
              "venue_id": "venue_the_bistro",
              "title": "Open Mic Night",
              "event_time": "2026-06-01T19:00:00",
              "venue_name": "The Bistro",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Weekly open mic night. Sign-ups start at 6:30 PM. Hosted by Janet Lenore and Jeff Davis.",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "Free / No Cover",
              "url": "https://bayareaopenmics.com/hayward-bistro-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d59c8d1f8fa2",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-01T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-01T14:00:00",
              "event_date": "2026-06-01",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-01",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8635ac84cfc5",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-01T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-01T20:00:00",
              "event_date": "2026-06-01",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-01",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_35b165a12dae",
              "venue_id": "venue_joe_goode_annex",
              "title": "GRAVITY X ROT Festival",
              "event_time": "2026-06-01",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-06-01",
              "event_date": "2026-06-01",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A continuation of the ROT FESTIVAL 2026 featuring experimental dance and community events.",
              "event_types": [
                "dance",
                "festival",
                "experimental",
                "community"
              ],
              "price_info": "$10 – $50",
              "url": "https://www.freshfestival.org",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d04f927b5ccf",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Pizza Monday",
              "event_time": "2026-06-01T16:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-06-01T16:00:00",
              "event_date": "2026-06-01",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Neapolitan-style pizza night.",
              "event_types": [],
              "price_info": "Varies",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f2b2f2961b00",
              "venue_id": "venue_the_saloon",
              "title": "The Bachelors",
              "event_time": "2026-06-01T21:30:00",
              "venue_name": "The Saloon",
              "event_start": "2026-06-01T21:30:00",
              "event_date": "2026-06-01",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Weekly Monday night residency featuring The Bachelors.",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover",
              "url": "https://thesaloonsf.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_077804d3399e",
              "venue_id": "venue_first_church_berkeley",
              "title": "Chanticleer: American Early Music",
              "event_time": "2026-06-01T19:30:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-01T19:30:00",
              "event_date": "2026-06-01",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "The GRAMMY® award-winning 'orchestra of voices' Chanticleer performs a program of American early music.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$20 - $71",
              "url": "https://www.cityboxoffice.com/eventperformances.asp?evt=2845",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_53653a13c359",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-06-01T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8a58ce7cc2fb",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-06-01T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-06-01T16:00:00",
              "event_date": "2026-06-01",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_855398bb8675",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bobby McFerrin: Circlesongs",
              "event_time": "2026-06-01T12:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-01T12:00:00",
              "event_date": "2026-06-01",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "A cappella circlesinging event.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$40",
              "url": "https://secure.thefreight.org/overview/15627",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b795ec30f782",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-01",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-01",
              "event_date": "2026-06-01",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-01",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9c3b1dac105d",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Piano Night at The Royal Cuckoo Organ Lounge",
              "event_time": "2026-06-01T19:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "The weekly Monday night piano series continues, featuring live music on the vintage Steinway Upright.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://northbeachlive.com/event/piano-night-at-the-royal-cuckoo-organ-lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dc311efcfa39",
              "venue_id": "venue_madrone_art_bar",
              "title": "Motown on Mondays",
              "event_time": "June 1 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "It’s only Monday if you treat it like one! DJ Gordo Cabeza and weekly guests play originals, exclusive remixes and close relatives of your favorite Motown songs. The most talked about night in town! Starting at 7pm. Doors 4pm – 2am / 21 & up w/ID $5 cover after 8pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://madroneartbar.com/event/motown-on-mondays-79-2025-12-01-2026-04-27/2026-06-01/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f32fd4e5ac4",
              "venue_id": "venue_shotgun_studios",
              "title": "The World of a Play: Continuity (Seminar Series)",
              "event_time": "2026-06-01T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-06-01T10:30:00",
              "event_date": "2026-06-01",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "The third Monday gathering of the 'Continuity' seminar series at Shotgun Studios.",
              "event_types": [],
              "price_info": "$150 for the series",
              "url": "https://shotgunplayers.org/online/article/miriams-place",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1c2ca9da3c1f",
              "venue_id": "venue_gray_area",
              "title": "Strange Anatomy: Exquisite Corpses",
              "event_time": "06/01",
              "venue_name": "Gray Area",
              "event_start": "2026-06-01",
              "event_date": "2026-06-01",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Online Workshop\nStrange Anatomy: Exquisite Corpses with Fuser Compositor and Creative Code",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/strange-anatomy-exquisite-corpses-with-fuser-compositor-and-creative-code/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33124bb44122",
              "venue_id": "venue_yoshis",
              "title": "Make Me Laugh Monday",
              "event_time": "MON 6.1 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-01T20:00:00",
              "event_date": "2026-06-01",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GET READY FOR A NIGHT OF NONSTOP LAUGHTER",
              "event_types": [
                "comedy"
              ],
              "price_info": "$40 - $50",
              "url": "https://yoshis.com/events/buy-tickets/lyrics-and-laughter-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d6f3d8e03002",
              "venue_id": "venue_hillside_club",
              "title": "Fireside Meeting: The State of Journalism in 2026",
              "event_time": "Jun 01, 2026, 7:30 PM – 9:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-06-01T19:30:00",
              "event_date": "2026-06-01",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "A community discussion focused on the current challenges and evolving landscape of the journalism industry.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.eventbrite.com/e/fireside-meeting-june-2026-registration-1988042195724?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_447e85e4ec0f",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC AT HOTEL UTAH",
              "event_time": "Mon Jun 1 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Monday night",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/Open-Mic-at-Hotel-Utah/689619?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6c5b4f690569",
              "venue_id": "venue_make_out_room",
              "title": "Clutch the Pearls",
              "event_time": "JUN 1, 2026 5PM",
              "venue_name": "Make Out Room",
              "event_start": "2026-06-01T17:00:00",
              "event_date": "2026-06-01",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "DETOUR Productions presents \"Clutch the Pearls,\" your must-see San Francisco event! Prepare for a bold, queer-centered immersive experience blending devised theater, avant-garde dance, and electrifying drag. Expect innovative storytelling and audacious artistry that pushes boundaries and celebrat...",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://sflive.art/event/clutch-the-pearls/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_live",
                  "source_name": "SF Live",
                  "fetched_at": "2026-05-18T12:18:47.387437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_make_out_room|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d32252d92a82",
              "venue_id": "venue_cornerstone",
              "title": "Pradabagshawty presents: The Five Problems Tour",
              "event_time": "2026-06-01T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-01T03:00:00",
              "event_date": "2026-06-01",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Pradabagshawty presents: The Five Problems Tour Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/pradabagshawty-presents-the-five-problems-tour-182845",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db19afc0a52b",
              "venue_id": "venue_the_knockout",
              "title": "Cult of Cinema Happy Hour",
              "event_time": "6/1/2026 7:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Celebrate the world of cult films with themed drinks and discussion during this cinematic happy hour.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/N80864ed4106?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f4aead2a37d",
              "venue_id": "venue_the_knockout",
              "title": "Krazy for Karaoke",
              "event_time": "6/1/2026 9:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-06-01T21:00:00",
              "event_date": "2026-06-01",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Step up to the mic and sing your heart out during this high-energy karaoke night at The Knockout.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/L4611cde2281?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_54f870286d0c",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-06-01T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-06-01T19:00:00",
              "event_date": "2026-06-01",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c017ba0b9550",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-01",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-01",
              "event_date": "2026-06-01",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-01",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8b9f695d514",
              "venue_id": "venue_elis_mile_high",
              "title": "The 10 Year Celebration of Blues Monday",
              "event_time": "Mon, Jun 01, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-06-01",
              "event_date": "2026-06-01",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "This special anniversary event celebrates a decade of the venue's weekly Blue Monday music series.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/the-10-year-celebration-of-blues-monday",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a252b2d4882",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-01T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-01T18:00:00",
              "event_date": "2026-06-01",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a5144ffe322f",
              "venue_id": "venue_the_fireside",
              "title": "Monday Mixology & Board Games",
              "event_time": "2026-06-01",
              "venue_name": "The Fireside",
              "event_start": "2026-06-01",
              "event_date": "2026-06-01",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Mixology behind the bar, industry discounts, mystery DJ, and board games (play ours or bring yours)",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea6c552e074a",
              "venue_id": "venue_de_young",
              "title": "Annual Donors’ Luncheon",
              "event_time": "2026-06-01 11:30 am",
              "venue_name": "De Young",
              "event_start": "2026-06-01T11:30:00",
              "event_date": "2026-06-01",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "The de Young hosts this exclusive annual event to celebrate and thank the museum's generous donor community.",
              "event_types": [
                "community"
              ],
              "price_info": "de Young",
              "url": "https://www.famsf.org/events/annual-donors-luncheon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e47a6abe596a",
              "venue_id": "venue_the_riptide",
              "title": "The Tide is High",
              "event_time": "2026-06-01T19:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-01T19:30:00",
              "event_date": "2026-06-01",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cef2b9de9f10",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "JAMES MCCANN",
              "event_time": "Mon Jun 1, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-01T19:30:00",
              "event_date": "2026-06-01",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Australian comedian James McCann brings his award-winning wit and clever observations to the Cobb's stage.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/james-mccann-san-francisco-california-06-01-2026/event/1C0064961A5AA6CD",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-02": {
          "date": "2026-06-02",
          "updated_at": "2026-05-18T15:54:50.149125Z",
          "events": [
            {
              "event_id": "evt_c127abcaf32b",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Back to the Future: The Musical",
              "event_time": "2026-06-02T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-06-02T19:30:00",
              "event_date": "2026-06-02",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Great Scott! The beloved cinematic classic is now a Broadway musical. When Marty McFly finds himself transported back to 1955, he accidentally changes the course of history.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/back-to-the-future-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-03-20T01:06:06.059535Z",
                  "strategy_used": "LLM",
                  "source_id": "v_center_for_the_performing_arts"
                },
                {
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-03-20T18:06:49.999883Z",
                  "strategy_used": "LLM",
                  "source_id": "s_san_jose_theaters"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-06-02",
              "run_id": "run_6e481fa30ca2",
              "run_label": "Back to the Future: The Musical, Jun 2 – Jun 7",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0462898ed314",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Foolish Relics",
              "event_time": "Tuesday June 2 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-02T20:00:00",
              "event_date": "2026-06-02",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 2 Foolish Relics, Sad Snack, Friendship Games a/a $13/$15 8pm/8:30pm @",
              "event_types": [
                "live_music",
                "rock",
                "latin_world"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260602.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_71ebbfc7c4a0",
              "venue_id": "venue_castro_theater",
              "title": "QVEEN HERBY",
              "event_time": "June 2, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-02T20:00:00",
              "event_date": "2026-06-02",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Jun 2 Qveen Herby, Thot Squad a/a 8pm #",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/qveen-herby-260602",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a15e727afca2",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-02",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-02",
              "event_date": "2026-06-02",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-06T11:32:02.068017Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-02",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9216a60cdd01",
              "venue_id": "venue_the_ritz",
              "title": "INFECTED RAIN + STITCHED UP HEART",
              "event_time": "2026-06-02T19:00:00-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "INFECTED RAIN\nSTITCHED UP HEART\n\n \n\nTUESDAY JUNE 2, 2026\nDoors: 7PM // All Ages // $25 Advance – $30 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance – $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/infected-rain-the-ritz-tickets/14004564",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_141964730182",
              "venue_id": "venue_the_independent",
              "title": "BIXBY",
              "event_time": "6.2 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-02T20:00:00",
              "event_date": "2026-06-02",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "a/a 7:30pm/8pm (sold out)",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/bixby/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d51e4f2be3fd",
              "venue_id": "venue_4_star_theater",
              "title": "Mia Wilson & Ny Oh",
              "event_time": "Jun 2, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-02T20:00:00",
              "event_date": "2026-06-02",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Royal Oakie presents a musical showcase featuring live performances by Mia Wilson and Ny Oh. Attendees can enjoy a night of intimate songwriting and vocal performances.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-mia-wilson-ny-oh",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-18T08:40:49.734396Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4e20fd07189a",
              "venue_id": "venue_august_hall",
              "title": "Cab, Jady, Carr",
              "event_time": "Jun 2 6:30pm/7:30pm",
              "venue_name": "August Hall",
              "event_start": "2026-06-02T18:30:00",
              "event_date": "2026-06-02",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Pop-rock band The Cab returns to the stage for their Back From The Dead tour, performing fan favorites for their San Francisco audience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$39.30",
              "url": "http://www.foopee.com/by-band.0.html#Cab",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-22T14:20:07.711604Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_84b1e8a5b93c",
              "venue_id": "venue_brick_and_mortar",
              "title": "Daisy Grenade, Vienna Vienna",
              "event_time": "Jun 2 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Daisy Grenade and Vienna Vienna take the stage at Brick and Mortar for a night of alternative music. This event features high-energy performances from both rising acts in a club setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30.57 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#Daisy_Grenade",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-04-28T11:20:48.602044Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b2037447f805",
              "venue_id": "venue_guild_theatre",
              "title": "The Psychedelic Furs",
              "event_time": "2026-06-02T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-06-02T20:00:00",
              "event_date": "2026-06-02",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Live concert at The Guild Theatre. Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$93",
              "url": "https://www.tixr.com/e/185454",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_12773ef800bd",
              "venue_id": "venue_hammer_theater",
              "title": "AMPERS&ONE: Born To Define Tour",
              "event_time": "2026-06-02T19:00:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "K-pop boy group AMPERS&ONE brings their energetic music and exciting performances to San Jose as part of their 2026 'Born To Define' tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25.23 - $277.83",
              "url": "https://hammertheatre.com/event/2026-ampersone-live-tour-born-to-define-in-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-11T13:01:09.053457Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_adc66ca57677",
              "venue_id": "venue_mountain_winery",
              "title": "Yacht Rock Revue",
              "event_time": "Jun 2 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-02T17:30:00",
              "event_date": "2026-06-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This tribute ensemble performs a smooth collection of soft rock hits from the late 70s and early 80s. Fans can expect a high-energy show filled with nostalgic classics and impeccable musicianship.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Yacht_Rock_Revue",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_48f836bfb456",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-02",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-02",
              "event_date": "2026-06-02",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-02",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8d032e91bb55",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Masks Required)",
              "event_time": "2026-06-02T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. Masks are required for this performance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_61e2c85a1bda",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-06-02T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-02T18:30:00",
              "event_date": "2026-06-02",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9bdd832b8d26",
              "venue_id": "venue_joe_goode_annex",
              "title": "GRAVITY X ROT Festival",
              "event_time": "2026-06-02",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-06-02",
              "event_date": "2026-06-02",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "Performances and immersive training as part of the 17-day ROT FESTIVAL 2026.",
              "event_types": [
                "dance",
                "festival",
                "workshop"
              ],
              "price_info": "$10 – $50",
              "url": "https://www.freshfestival.org",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b993c9e76623",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-06-02T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-06-02T21:00:00",
              "event_date": "2026-06-02",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Tuesday night swing dance event featuring live music and a drop-in basic swing lesson.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/the-woodchoppers-ball/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be11b3e42d70",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-06-02T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_70a8ba324cba",
              "venue_id": "venue_sjz_break_room",
              "title": "SJZ Break Room",
              "event_time": "2026-06-02T18:00:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-06-02T18:00:00",
              "event_date": "2026-06-02",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "Free SubZero-related program featuring a live music tech exploration event for families and kids, Progressions student performances, and Mariachi Oroazul.",
              "event_types": [],
              "price_info": "Free Admission",
              "url": "https://sanjosejazz.org/events/special-event-for-subzero-inside-the-sjz-break-room/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-05-15T20:48:12.874651Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bf972b0e3695",
              "venue_id": "venue_the_monkey_house",
              "title": "Music Community Open Mic",
              "event_time": "2026-06-02",
              "venue_name": "The Monkey House",
              "event_start": "2026-06-02",
              "event_date": "2026-06-02",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Open mic night. Two songs or ten minutes. House guitar available, and a house keyboard if requested by two or more people. Supportive musicians' scene.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Donation bucket $10-40",
              "url": "https://static.wixstatic.com/media/60be15_d8df704d1ee74f47a14c806f768b3e64~mv2.png/v1/fill/w_600%2Ch_261%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/6-2%20OM.png",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-05-15T21:31:30.195149Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6a0ebd3e1926",
              "venue_id": "venue_chase_center",
              "title": "Valkyries vs. Fire (Commissioner's Cup)",
              "event_time": "2026-06-02T19:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_805d3824fa39",
              "venue_id": "venue_white_horse",
              "title": "Comedy Q Open Mic",
              "event_time": "2026-06-02T19:30:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-06-02T19:30:00",
              "event_date": "2026-06-02",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "A monthly stand-up comedy open mic showcase featuring local queer talent, held every first Tuesday.",
              "event_types": [],
              "price_info": "Free entry",
              "url": "https://www.instagram.com/whitehorsebar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_32c03c890c22",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-06-02T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-06-02T16:00:00",
              "event_date": "2026-06-02",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d5edc9f4156a",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Karaoke Nights",
              "event_time": "2026-06-02T20:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-06-02T20:00:00",
              "event_date": "2026-06-02",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring karaoke event at Dark Horse Lounge. Listed as every Tuesday and Saturday starting at 8pm.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/karaoke-nights/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f09053600178",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekly Live Jazz & Americana",
              "event_time": "2026-06-02T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Tuesday evening live music series showcasing jazz and folk influences.",
              "event_types": [
                "live_music",
                "jazz",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_292c0f5109a8",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-02",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-02",
              "event_date": "2026-06-02",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-02",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c52be8126e33",
              "venue_id": "venue_temescal_arts_center",
              "title": "First Tuesdays Improvisation Workshop",
              "event_time": "6/02/2026 7:30 PM",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-06-02T19:30:00",
              "event_date": "2026-06-02",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "First Tuesdays Improvisation Workshop hosted by Lewis Jordan: Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Improvisation is the key. More...",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22945",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ff0989d13c31",
              "venue_id": "venue_madrone_art_bar",
              "title": "LIVE MODEL TUESDAY SKETCH",
              "event_time": "June 2 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-02T18:30:00",
              "event_date": "2026-06-02",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "LIVE MODEL TUESDAY SKETCH hosted by Sketchboard Co. $15 fee to draw the model Every Tuesday 6:30 to 8:30 PM with live music by Twango Bring your own materials No Photos Please Respect the Models",
              "event_types": [
                "live_music",
                "workshop",
                "art"
              ],
              "price_info": "$15 fee",
              "url": "https://madroneartbar.com/event/livemodelsketch-2026-06-02/2026-06-02/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a4be68fbb96",
              "venue_id": "venue_madrone_art_bar",
              "title": "Karaoke",
              "event_time": "June 2 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-02T21:30:00",
              "event_date": "2026-06-02",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "KARAOKE With host Lauren Yellow Music starts at 9:30pm",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/glitter-tears-karaoke-18-2026-02-04-2026-02-04-2026-04-07-2026-04-21/2026-06-02/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ea31edce427",
              "venue_id": "venue_mountain_winery",
              "title": "Yacht Rock Revue",
              "event_time": "Jun 2, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-02T19:30:00",
              "event_date": "2026-06-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "CANN PRESENTS | PRIMETIME",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1253272",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4577a7f73575",
              "venue_id": "venue_yoshis",
              "title": "Smooth Jazz Alley",
              "event_time": "TUE 6.2 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-02T19:30:00",
              "event_date": "2026-06-02",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "PREMIER JAZZ ENSEMBLE WITH A CONTEMPORARY BLEND OF FUNK & SOUL.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$25 - $49",
              "url": "https://yoshis.com/events/buy-tickets/smooth-jazz-alley/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e09e12e2fc85",
              "venue_id": "venue_ivy_room",
              "title": "Bandworks Showcase",
              "event_time": "Tuesday Jun 2 5:45 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-02T17:45:00",
              "event_date": "2026-06-02",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Musicians from the Bandworks program take the stage to showcase their skills and collaborative projects in a live concert setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182128",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_35b1175e91f6",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jun 2 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690199?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a7156cb5026",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-06-02T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-02T20:00:00",
              "event_date": "2026-06-02",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles, featuring live jazz performances.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_107bffd9e2b6",
              "venue_id": "venue_cornerstone",
              "title": "Kenny Mason - American BULLDAWG Tour",
              "event_time": "2026-06-02T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-02T03:00:00",
              "event_date": "2026-06-02",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Kenny Mason - American BULLDAWG Tour Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/kenny-mason-american-bulldawg-tour-176176",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ca03bfd2cb4",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Cheers, Queers!",
              "event_time": "2026-06-02",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-02",
              "event_date": "2026-06-02",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Celebration event at NCTC",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_38b1d8d5e183",
              "venue_id": "venue_the_knockout",
              "title": "Brendon B",
              "event_time": "6/2/2026 7:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-06-02T19:00:00",
              "event_date": "2026-06-02",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Brendon B takes the stage for a live musical performance at The Knockout.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$11.33",
              "url": "https://link.dice.fm/Kf7f45e1c1b6?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_442c6e5eeff2",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 02, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-02",
              "event_date": "2026-06-02",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-02-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ca824c7a3264",
              "venue_id": "venue_hammer_theater",
              "title": "Amper&One",
              "event_time": "Jun 2 2026 2 Am",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-02T02:00:00",
              "event_date": "2026-06-02",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "a/a 6pm/7pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Amper_One",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cc09b3e44e88",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-02T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-02T18:00:00",
              "event_date": "2026-06-02",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a82d9fc8befe",
              "venue_id": "venue_the_fireside",
              "title": "Live Trivia",
              "event_time": "2026-06-02T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-02T19:30:00",
              "event_date": "2026-06-02",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Live trivia at Lounge; on Zoom every second Tuesday",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a47714cd9fd",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO with Dr. Bird",
              "event_time": "2026-06-02T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-02T18:00:00",
              "event_date": "2026-06-02",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a61551548db3",
              "venue_id": "venue_the_riptide",
              "title": "Mateo Peligroso Band",
              "event_time": "2026-06-02T21:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-02T21:30:00",
              "event_date": "2026-06-02",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-03": {
          "date": "2026-06-03",
          "updated_at": "2026-05-18T16:13:34.702661Z",
          "events": [
            {
              "event_id": "evt_edd0140ad8c1",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-03",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-03",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c0fb0c9b89fb",
              "venue_id": "venue_frost_amphitheater",
              "title": "Paul Simon",
              "event_time": "Jun 3 2026 5:30pm/7pm",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-06-03T17:30:00",
              "event_date": "2026-06-03",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Stanford Live and Goldenvoice Present - A Quiet Celebration",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Paul_Simon",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T11:13:05.792545Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_frost_amphitheater",
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-04-12T12:30:51.621073Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c18a1342eae",
              "venue_id": "venue_the_independent",
              "title": "BIXBY",
              "event_time": "6.3 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "SECOND SHOW ADDED BY POPULAR DEMAND! - with Bheruty",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/bixby-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_38ea17347bbc",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "For Horses, Outer Sunset, Davia Schendel",
              "event_time": "Wednesday June 3 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Total Accord Festival Kickoff Party; punk-influenced rock; indie punk rock; indie rock singer-songwriter",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$15/$20",
              "url": "http://www.bottomofthehill.com/20260603.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f6746052b0ad",
              "venue_id": "venue_frost_amphitheater",
              "title": "Paul Simon - A Quiet Celebration",
              "event_time": "2026-06-03T19:00:00",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Pop music performance presented by Stanford Live and Goldenvoice",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/paul-simon-quiet-celebration",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_frost_amphitheater",
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-05-06T07:04:09.449554Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-06-03",
              "run_id": "run_fa06c497b3c5",
              "run_label": "Paul Simon - A Quiet Celebration, Jun 3 – Jun 4",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c8dadd145d1c",
              "venue_id": "venue_guild_theatre",
              "title": "The Psychedelic Furs",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Second night of The Psychedelic Furs at The Guild Theatre. Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$93",
              "url": "https://www.tixr.com/e/187090",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ead16d93a6c9",
              "venue_id": "venue_924_gilman",
              "title": "Dog Party, Pet Mosquito, Crescent Indigo",
              "event_time": "Jun 3 7pm/7:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages live show at 924 Gilman. Doors open at 7:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.0.html#Dog_Party",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4ea0cc223ec",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-03",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_857674e0b434",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-03T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-03T14:00:00",
              "event_date": "2026-06-03",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-03",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9948ca76c15b",
              "venue_id": "venue_brick_and_mortar",
              "title": "Seahaven, Breakup Shoes, House & Home",
              "event_time": "Jun 3 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "a/a $35.72 (under 21 plus $5) 7pm/8pm ^",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.72 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.3.html#Seahaven",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_11362a86d064",
              "venue_id": "venue_the_chapel",
              "title": "Rostam, Henry Solomon",
              "event_time": "Jun 3 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Rostam, Henry Solomon",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$39.59",
              "url": "http://www.foopee.com/by-band.2.html#Rostam",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_977ca7c01a65",
              "venue_id": "venue_ivy_room",
              "title": "Squid Saves The Planet",
              "event_time": "Jun 3 9:50pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-03T21:50:00",
              "event_date": "2026-06-03",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Squid Saves The Planet (9:50pm), Everything But The Everything, Elegant Trash, Richard Turgeon, Dead Weight, Reflector Pool, mc Patty",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 ($25 vip)",
              "url": "http://www.foopee.com/by-band.3.html#Squid_Saves_The_Planet",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_482bd737390f",
              "venue_id": "venue_the_fillmore",
              "title": "Kes",
              "event_time": "2026-06-03",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Trinidadian band Kes brings the vibrant energy of soca and Caribbean rhythms to the venue for their Roots, Rock, Soca Tour.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$48 ($129.80 vip)",
              "url": "http://www.foopee.com/by-band.1.html#Kes",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-14T10:28:31.042763Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-14T12:45:58.652193Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ea4d008f4b7",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-03",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-03",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_09c10c06f4e1",
              "venue_id": "venue_the_marsh_sf",
              "title": "The Marsh Rising: Evelyn Rose's Rosie's Brain",
              "event_time": "2026-06-03T19:30:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "A solo performance written and performed by Evelyn Rose, directed by Audrey Rumsby.",
              "event_types": [
                "theater"
              ],
              "price_info": "$15 - $25 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/rising-evelyn-rose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_aac80800986c",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox",
              "event_time": "2026-06-03T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_459a82f7554c",
              "venue_id": "venue_mr_tipples",
              "title": "Tunes for the Road Ahead, Jayla's Final SF Show",
              "event_time": "2026-06-03T20:45:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-06-03T20:45:00",
              "event_date": "2026-06-03",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "A special farewell performance by Jayla, marking her final show in San Francisco before heading on the road.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/tunes-for-the-road-ahead-jaylas-final-sf-show/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_42f4ad157d49",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-03T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-03T14:00:00",
              "event_date": "2026-06-03",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-03",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_03839452ccad",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-03",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a7c3a03eaab7",
              "venue_id": "venue_cal_academy_of_science",
              "title": "Homesick for a World Unknown with Miriam Horn",
              "event_time": "2026-06-03T19:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "An evening with author Miriam Horn celebrating her evocative new book. 21+ only.",
              "event_types": [],
              "price_info": "$15 - $25",
              "url": "https://www.calacademy.org/events/special-events/homesick-for-a-world-unknown-with-miriam-horn",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6bfb316d4ab5",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Monthly Blues & Rock Jam",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "A monthly blues and rock jam session held on the first Wednesday of the month.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9f055c9a98fd",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Wednesday queer country dancing event.",
              "event_types": [],
              "price_info": "",
              "url": "https://www.verdiclub.net/event/scuff-queer-line-dancing-two-stepping/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a693e76d3ec2",
              "venue_id": "venue_bix",
              "title": "Live Jazz: Jazz Duo",
              "event_time": "2026-06-03T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Bix presents live jazz duos every Monday through Thursday, offering a sophisticated soundtrack to your dining experience in our soaring two-story dining room.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-05-15T20:43:28.107531Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bix|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e61ccffdd8a2",
              "venue_id": "venue_rooster_t_feathers",
              "title": "New Talent Comedy Competition: Semi-Finals",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Semi-final round of Roosters' annual new talent comedy competition.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/369047",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fb818048f362",
              "venue_id": "venue_dark_horse_lounge",
              "title": "Cocktail Hour",
              "event_time": "2026-06-03T16:00:00",
              "venue_name": "Dark Horse Lounge",
              "event_start": "2026-06-03T16:00:00",
              "event_date": "2026-06-03",
              "venue_address": "24018 Hesperian Blvd, Hayward, CA 94545",
              "description": "Recurring happy hour event. Great drinks, great prices! Listed as Monday to Friday from 4pm to 7pm in Hayward.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.darkhorselounge.net/events/cocktail-hour/form",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dark_horse_lounge",
                  "source_name": "Dark Horse Lounge",
                  "fetched_at": "2026-05-16T02:16:04.484642Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dark_horse_lounge|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_524be990b933",
              "venue_id": "venue_the_freight__salvage",
              "title": "The Moth StorySLAM: American Dreams",
              "event_time": "2026-06-03T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Storytelling event presented by The Moth.",
              "event_types": [
                "literary"
              ],
              "price_info": "$22 (includes all fees)",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_752a734e03fb",
              "venue_id": "venue_f8",
              "title": "Harry Romero: Marie's Birthday Bash",
              "event_time": "2026-06-03T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-06-03T21:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "A special birthday celebration featuring house legend Harry Romero.",
              "event_types": [],
              "price_info": "Starts at $0",
              "url": "https://www.eventbrite.com/e/strut-sf-f8-present-harry-romero-maries-birthday-bash-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d359320a4881",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-03",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-03",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5dd389dbca9c",
              "venue_id": "venue_tommy_ts",
              "title": "COUSIN TIERA",
              "event_time": "2026-06-03",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e2283ead9a6c",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Wednesday night Hammond organ jazz with Chris Siebert and an all-star musical lineup.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_78c61873e3e0",
              "venue_id": "venue_madrone_art_bar",
              "title": "Local/Global with DJmaDRE and friends",
              "event_time": "June 3 @ 9:30 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-03T21:30:00",
              "event_date": "2026-06-03",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "9:30pm to 1am NO COVER An all-female crew of professional DJs who play music from the Bay Area (hip-hop/funk/soul) and global sounds (afrobeats, reggaeton, dancehall, Arab and Indian, Asian beats). Local/Global with @djmadresf and friends",
              "event_types": [
                "dj_party"
              ],
              "price_info": "NO COVER",
              "url": "https://madroneartbar.com/event/local-global-with-djmadre-and-friends/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57789e8925d7",
              "venue_id": "venue_madrone_art_bar",
              "title": "Big Brain",
              "event_time": "June 3 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-03T18:30:00",
              "event_date": "2026-06-03",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "A lecture series and party for smarties. Hosted by Big Brain 7pm-8:45pm Advance tickets available at Big Brain SF",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/jerome-clay-2-2025-12-03-2026-02-04-2026-06-03/2026-06-03/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0bca05d832b7",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Brown Bag Jazz: Pedro Pastrana",
              "event_time": "JUN 03, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Local musicians and students gather for a collaborative jazz jam session hosted at Jupiter, fostering community through live improvisation.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://concerts.jazzschool.org/free-brown-bag-jazz-hangs-pedro-pastrana-on-puerto-rican-jazz/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fb2a7067a443",
              "venue_id": "venue_black_cat",
              "title": "Fog and Concrete: Alan Jones",
              "event_time": "06/03/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n\nHailing from Colorado, Alan Jones is a formidable bassist and composer living in San Francisco. Regularly performing with a wide ranging array of the Bay’s finest, he strives to bring a sensitive and uplifting personal touch to every musical environment he inhabits. He has performed at venues and festivals such as SFJAZZ, the Monterey Future is Now Festival, the Atheneum, the Black Cat, and many more alongside leading artists such as Anthony Wilson, Lorin Benedict, Patrick Wolff, Nicole McCabe, and Veotis Latchison, as well as with his own groups.\n\nBand Lineup:\nAlan Jones, bass \nLucas Davis, trumpet\nMichael Potter, piano\nMiles Turk, drums",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11373/?date=2026-06-03",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f879bce2c199",
              "venue_id": "venue_yoshis",
              "title": "El Cerrito High School Jazz Bands",
              "event_time": "WED 6.3",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$25",
              "url": "https://yoshis.com/events/buy-tickets/el-cerrito-high-school-jazz-bands-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0296b4a4f8d",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Simon Rowe Trio",
              "event_time": "Wednesday, June 3, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keys founder, Simon Rowe, makes a rare appearance on piano with two long-time collaborators.Ron Belcher-Bass and Deszon Claiborne-drums are celebrated, bay area standouts with whom Rowe has developed  a close connection, on and off the stand.Rowe has two trio recordings as a leader,”Flamingo” with liner notes by the distinguished jazz historian, Nat Hentoff and “Live at The Hodo” from his long standing engagement at the Hotel Donaldson in Fargo, North Dakota during his tenure at Minnesota State University.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/the-simon-rowe-trio-feat-deszon-claibourne-and-ron-belcher/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1e4a909d68bc",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Keith Saunders Trio",
              "event_time": "Wednesday, June 3, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-03T21:00:00",
              "event_date": "2026-06-03",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Pianist Keith Saunders’ formative years in jazz happened in Los Angeles, and then came a quarter century making up Keith’s New York years, notably centered around the New York HardBop Quintet, an outfit he co-led which had an eight year run, touring extensively and recording four cds, two of them with Rudy Van Gelder at the controls, one with the great Mickey Roker on the drums. When not with the quintet, he was working with top musicians including Richie Cole, Frank Wess and Hank Crawford. In his work, Keith pays deep homage to Bud Powell and flows on from there.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/keith-saunders-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_690d5e566298",
              "venue_id": "venue_ivy_room",
              "title": "Bang the Bay!",
              "event_time": "Wednesday Jun 3 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-03T18:00:00",
              "event_date": "2026-06-03",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "bang the bay presents - RICHARD TURGEON + REFLECTOR POOL + MC PATTY",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182024",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d73402e1b0f0",
              "venue_id": "venue_winters",
              "title": "The Shvkes/GEN 11/Circle Of Ruin",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3db83bb12f0b",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Back to the Future – Broadway San Jose",
              "event_time": "2026-06-03",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Broadway musical adaptation of the beloved film, featuring original music by Alan Silvestri and Glen Ballard alongside songs from the movie.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/back-to-the-future-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-06-03",
              "run_id": "run_0b3776082a64",
              "run_label": "Back to the Future – Broadway San Jose, Jun 2 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d3d3a1a6ffb2",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Njioma Grevious Violin Recital",
              "event_time": "6/3/2026 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23305",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-18T13:00:17.576242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa775f174c94",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-03T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-03",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c38935a29bd",
              "venue_id": "venue_boom_boom_room",
              "title": "Zoo Band",
              "event_time": "2026-06-03T19:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-06-03T19:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "The Zoo Band performs a live set of music for the crowd with no cover charge required for entry.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/zoo-band-no-cover-charge/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b584f72822f8",
              "venue_id": "venue_boom_boom_room",
              "title": "Zoo Band",
              "event_time": "2026-06-03T21:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-06-03T21:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "The Zoo Band performs a live set of music for the crowd with no cover charge required for entry.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/zoo-band-no-cover-charge/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2e1bf8d6a9eb",
              "venue_id": "venue_ashkenaz",
              "title": "Joe Marcinek Band ft. Mark Karan",
              "event_time": "06/03/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "A Grateful Dead Night ft. Joe Marcinek, Mark Karan, Mookie Siegel, Anna Elva & A",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/180750",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_73b9c43bb275",
              "venue_id": "venue_the_knockout",
              "title": "Drink & Draw Happy Hour",
              "event_time": "6/3/2026 6:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-06-03T18:00:00",
              "event_date": "2026-06-03",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Unleash your creativity at this social event where guests are encouraged to draw while enjoying happy hour specials.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/m0cddbfb24ae?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e2defa22d7a1",
              "venue_id": "venue_the_knockout",
              "title": "Cigarettes for Breakfast + Welcome Strawberry + Luna Ivy",
              "event_time": "6/3/2026 8:00PM",
              "venue_name": "The Knockout",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "A multi-artist showcase featuring live sets from Cigarettes for Breakfast, Welcome Strawberry, and Luna Ivy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$17",
              "url": "https://link.dice.fm/j1769e7c8a3c?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-05-18T13:31:16.432067Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_76915c7ef8a6",
              "venue_id": "venue_4_star_theater",
              "title": "Quicksilver",
              "event_time": "June 3, 2026 7:30 PM – 9:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "HI NRG and Calling in Sick present a screening of the 1986 bicycle messenger drama starring Kevin Bacon. The film follows a former stockbroker who finds a new life on the streets of San Francisco.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/quicksilver-hi-nrg",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_928e527cdb62",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-06-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-03",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf71778fa738",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-06-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-03",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_10c8d8171aaf",
              "venue_id": "venue_el_rio",
              "title": "Los Train Wreck's All Star Jam",
              "event_time": "2026-06-03T20:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "A recurring live music jam session at El Rio.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://dothebay.com/events/2026/6/3/los-train-wrecks-all-star-jam",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_337626ed71cc",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 03, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-03-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c637063e3287",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-03",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-03",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2927333a8a8d",
              "venue_id": "venue_club_fox",
              "title": "Johnny Vernazza",
              "event_time": "Wednesday June 3rd",
              "venue_name": "Club Fox",
              "event_start": "2026-06-03",
              "event_date": "2026-06-03",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Wednesday June 3rdClub Fox Blues WednesdaysJOHNNY VERNAZZADoors 6:30PM /Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/club-fox-blues-wednesdays-johnny-vernazza-tickets-1988795686435?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5fd8aa012a26",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-03T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-03T18:00:00",
              "event_date": "2026-06-03",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b84eb945ca63",
              "venue_id": "venue_the_fireside",
              "title": "Singer/Songwriter Open Mic",
              "event_time": "2026-06-03T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Singer/Songwriter open mic",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ecae900803bc",
              "venue_id": "venue_the_riptide",
              "title": "Nashville Honeymoon",
              "event_time": "2026-06-03T19:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_86972699f4c6",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-06-03T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-06-03T19:45:00",
              "event_date": "2026-06-03",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/wed-jun-03-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_25ffc42e298f",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "TARA CANNISTRACI",
              "event_time": "Wed Jun 3, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-03T19:30:00",
              "event_date": "2026-06-03",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Tara Cannistraci delivers a high-energy performance rooted in her Italian-American upbringing and everyday life experiences.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/tara-cannistraci-san-francisco-california-06-03-2026/event/1C006469C1BFE2B7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_76bc44af6582",
              "venue_id": "venue_san_jose_improv",
              "title": "Bruce Jingles",
              "event_time": "Jun 3 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-06-03T20:00:00",
              "event_date": "2026-06-03",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/bruce+jingles/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-06-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-04": {
          "date": "2026-06-04",
          "updated_at": "2026-05-18T16:13:34.713590Z",
          "events": [
            {
              "event_id": "evt_190b6c4cc57c",
              "venue_id": "venue_4_star_theater",
              "title": "Programme 4",
              "event_time": "Jun 4, 2026 8:00 PM – 10:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This multidisciplinary event at the 4 Star Theater combines live music and film for 'Programme 4: Make the Scene.' The evening features appearances and performances by Rachel Lichtman, Kelley Stoltz, and Paul Myers.",
              "event_types": [
                "live_music",
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/programme-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3cd72eb9bcdd",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Sleepbomb / Hazzard's Cure / Ominess",
              "event_time": "Thursday June 4 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; psychedelic rock, post-doom metal; death metal doom sludge stoner thrash; black metal doom gothic",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260604.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-10T21:58:09.542791Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34b0a50cc55e",
              "venue_id": "venue_1015_folsom",
              "title": "TCHAMI",
              "event_time": "06/04/2026 9pm",
              "venue_name": "1015 Folsom",
              "event_start": "2026-06-04T21:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "French producer and future house pioneer Tchami brings his spiritual and bass-heavy electronic sets to the Yerba Buena Center. Fans can expect a polished performance from one of the leading figures in the global house music scene.",
              "event_types": [
                "electronic",
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/tchami/687294?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-04-11T00:52:10.604824Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-17T13:29:00.297554Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1141abb6615f",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-04",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-04",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4c97aabbd119",
              "venue_id": "venue_the_warfield",
              "title": "CLARA LA SAN",
              "event_time": "Thu, Jun 4, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Chosen Silences Tour 2026",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "GET TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1339068",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-04-28T12:57:37.834317Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_601001a1a56b",
              "venue_id": "venue_brick_and_mortar",
              "title": "ATM Danny",
              "event_time": "Jun 4 2026 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "ATM Danny takes the stage at Brick and Mortar for a live performance showcasing his unique style. This event offers an opportunity to catch the artist in a high-energy club environment.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$26.74 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#ATM_Danny",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-01T06:29:15.362316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-02T10:15:40.400701Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5a46c7de59df",
              "venue_id": "venue_rickshaw_stop",
              "title": "PrettyBoy Chance",
              "event_time": "Jun 4 2026 8pm/8:45pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-04T20:45:00",
              "event_date": "2026-06-04",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "This diverse musical showcase features the unique styles of PrettyBoy Chance, the high-energy Dirty Cello, and singer-songwriter Matt Jaffe.",
              "event_types": [
                "live_music",
                "rock",
                "latin_world"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.2.html#PrettyBoy_Chance",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a834199bd66e",
              "venue_id": "venue_frost_amphitheater",
              "title": "Paul Simon - A Quiet Celebration",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Pop music performance presented by Stanford Live and Goldenvoice",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/paul-simon-quiet-celebration",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_frost_amphitheater",
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-05-06T07:04:09.449554Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-06-04",
              "run_id": "run_fa06c497b3c5",
              "run_label": "Paul Simon - A Quiet Celebration, Jun 3 – Jun 4",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b5c18b06671e",
              "venue_id": "venue_thee_stork_club",
              "title": "Marble Eye",
              "event_time": "Jun 4 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "No Time Gig #73: record release show for Marbled Eye's new EP 'Forever,' with Sympathy Flowers, Animal Planet, and DJ Slyida B.",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$15 8pm",
              "url": "http://www.foopee.com/by-band.2.html#Marble_Eye",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-06T12:23:55.448463Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-07T14:13:04.957748Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f14b8f416f24",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-04",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c4ca9a068b6d",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-04",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43994c974e75",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-04T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-04T14:00:00",
              "event_date": "2026-06-04",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-04",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bb046b2392f",
              "venue_id": "venue_the_chapel",
              "title": "Martin Rev",
              "event_time": "Jun 4 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Martin Rev, vj Divine Enfant, Dagger Polyester, dj Omar Perez",
              "event_types": [
                "live_music",
                "electronic",
                "dj_party"
              ],
              "price_info": "$37.11",
              "url": "http://www.foopee.com/by-band.2.html#Martin_Rev",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63a85fdcb2b9",
              "venue_id": "venue_frost_amphitheater",
              "title": "Paul Simon",
              "event_time": "Jun 4 2026 5:30pm/7pm",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-06-04T17:30:00",
              "event_date": "2026-06-04",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "a/a 5:30pm/7pm #",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Paul_Simon",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-11T13:41:08.553496Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_48acaccfa7b8",
              "venue_id": "venue_swedish_american",
              "title": "Therapy Gecko",
              "event_time": "Jun 4 2026 7pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents THERAPY GECKO.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not listed on event page",
              "url": "http://www.foopee.com/by-band.3.html#Therapy_Gecko",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-11T13:45:41.648640Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord",
                  "source_name": "Cafe Du Nord",
                  "fetched_at": "2026-05-13T11:40:41.857805Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_59d9b85620ce",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-04",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-04",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c3324175ab8a",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Thu Jun 4 2026",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/e/comedy-oakland-at-the-elbo-room-thu-jun-4-2026-tickets-1988532963624",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cc2a4756e9e7",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity - MAD Night",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "A special performance for audiences aged 25 and under. Ticket includes a beer (21+) or soda, pizza, and the show.",
              "event_types": [],
              "price_info": "$15 for ages 25 and under",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cca4ebd2ee8f",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox",
              "event_time": "2026-06-04T13:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-06-04T13:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. Midday performance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d83e9d8af428",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Thursday Night Live Music",
              "event_time": "2026-06-04T18:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-04T18:00:00",
              "event_date": "2026-06-04",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Mid-week live music performances that transform dinner into a social event. Featuring local musicians playing blues and classic rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_82edb106c67c",
              "venue_id": "venue_mr_tipples",
              "title": "Jason Gillenwater Quartet",
              "event_time": "2026-06-04T20:45:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-06-04T20:45:00",
              "event_date": "2026-06-04",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Saxophonist Jason Gillenwater showcases his bop grooves and versatile performance style with a quartet featuring Armaan Mishra, Isaac Coyle, and Greg Wyser-Pratte.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/jason-gillenwater-quartet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2da6162512a2",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-04T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-04T14:00:00",
              "event_date": "2026-06-04",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-04",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_574b9c4692e8",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-04",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0b5dc9c61d47",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-06-04T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-04T18:30:00",
              "event_date": "2026-06-04",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5284106f5d93",
              "venue_id": "venue_cal_academy_of_science",
              "title": "NightLife: June 4",
              "event_time": "2026-06-04T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-06-04T18:00:00",
              "event_date": "2026-06-04",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Explore the museum after dark with cocktails, music, and 60,000 live animals. 21+ only.",
              "event_types": [],
              "price_info": "$25 - $35",
              "url": "https://www.calacademy.org/nightlife",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b5da1aa605dc",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_49232fc8aa4c",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_173cb5294c8c",
              "venue_id": "venue_alhambra_public_house",
              "title": "Trivia Night",
              "event_time": "2026-06-04T19:30:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Weekly Trivia Night! Test your knowledge and compete for prizes.",
              "event_types": [],
              "price_info": "Free",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8463dd0ba946",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Thursday Jazz Night",
              "event_time": "2026-06-04T21:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-06-04T21:00:00",
              "event_date": "2026-06-04",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Live jazz bands performing at The Lucky Horseshoe.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d4c726e57dde",
              "venue_id": "venue_pacific_film_archive",
              "title": "Bob le flambeur",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean-Pierre Melville's heist film, part of the French Noir: From the Shadows into the Light series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/bob-le-flambeur",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c3c7bf1517c3",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Thursday night Argentine Tango milonga.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/milonga-malevaje/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0246cad5872d",
              "venue_id": "venue_first_church_berkeley",
              "title": "Midday Organ Meditation",
              "event_time": "2026-06-04T12:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-04T12:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Weekly midday meditation featuring organist William Ludtke. Includes 30 minutes of silent meditation followed by 30 minutes of organ music.",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.firstchurchberkeley.org/resonance/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f5014eb97fd9",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Choral Evensong",
              "event_time": "2026-06-04T18:15:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-04T18:15:00",
              "event_date": "2026-06-04",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "Experience the award-winning AURA light show with the added resonance of a live quartet performing within the cathedral's magnificent acoustics.",
              "event_types": [],
              "price_info": "From $24.27",
              "url": "https://gracecathedral.org/events/choral-evensong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bdcf6351fa04",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: 90s Unplugged",
              "event_time": "2026-06-04T20:45:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-04T20:45:00",
              "event_date": "2026-06-04",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "Relive the hits of the 90s in a breathtaking candlelit setting performed by a string ensemble.",
              "event_types": [],
              "price_info": "From $37.26",
              "url": "https://feverup.com/en/san-jose/candlelight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_164ac0f75ba4",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Clement St Comedy",
              "event_time": "2026-06-04T20:30:00",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-06-04T20:30:00",
              "event_date": "2026-06-04",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "The weekly comedy series continues with a fresh lineup of stand-up comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free with RSVP",
              "url": "https://www.ticketweb.com/event/clement-st-comedy-neck-of-the-woods-tickets/13426343",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-15T21:27:37.548215Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b4c2f4109fe7",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Sarah Colonna",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Sarah Colonna, featuring Nancy Lee and Lester Ransom.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/136021",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-04",
              "run_id": "run_0e8b5fb3e2bd",
              "run_label": "Sarah Colonna, Jun 4 – Jun 5",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d005a26ecae4",
              "venue_id": "venue_bird_and_beckett",
              "title": "POETS! featured readers + open mic",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Jerry Ferraz and Michael Koch host a poetry reading that showcases local legends, poets passing through and folks from around the Bay.",
              "event_types": [
                "literary"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6c50e7d6b131",
              "venue_id": "venue_sfmoma",
              "title": "Andy Warhol Exposed",
              "event_time": "2026-06-04T18:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-06-04T18:00:00",
              "event_date": "2026-06-04",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Film screening",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c9417ecacb1",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: Home Away from Home",
              "event_time": "2026-06-04T18:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-04T18:00:00",
              "event_date": "2026-06-04",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Kick off Queer and Trans Asian and Pacific Islander Week with a drag show and other dazzling activities—then contemplate home off-planet guided by scientists.",
              "event_types": [
                "community",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_836356321895",
              "venue_id": "venue_exploratorium",
              "title": "Open Question: Home in Space",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Should humans live in space?",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f43f1fb3bb5f",
              "venue_id": "venue_f8",
              "title": "JSMN",
              "event_time": "2026-06-04T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-06-04T21:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Connect and Sequence present JSMN for a night of underground electronic music.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/clubs/61234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9786b552bb86",
              "venue_id": "venue_kilowatt",
              "title": "LETTUCE ROCK DJs",
              "event_time": "2026-06-04T22:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-04T22:00:00",
              "event_date": "2026-06-04",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e1ef2b74352c",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-04",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-04",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2d9eb01cca20",
              "venue_id": "venue_rootstock_arts",
              "title": "Thomas Dimuzio",
              "event_time": "2026-06-04T19:30:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Composer and sound artist Thomas Dimuzio presents a live performance utilizing electronic synthesis and signal processing. His work pushes the boundaries of experimental music and immersive sonic environments.",
              "event_types": [
                "live_music",
                "electronic",
                "experimental"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9b1c19f208e6",
              "venue_id": "venue_madarae",
              "title": "Downtown First Thursdays Official Party",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "The official after-party for San Francisco's premier street party, Downtown First Thursdays.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for details",
              "url": "https://www.eventbrite.com/o/madarae-60980005743",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-17T14:56:23.559746Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_madarae|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bf3468c24ff5",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-04T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-04",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9bf6998e77c9",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-04T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-04T14:00:00",
              "event_date": "2026-06-04",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-04",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bd5d85e86aad",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-06-04T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Live music at the Royal Cuckoo featuring the Hammond organ. No cover charge, always featuring top-tier local talent.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1b48947dfb8f",
              "venue_id": "venue_the_lab",
              "title": "Julián Delgado Lopera: Pretend You're Dead!",
              "event_time": "Thursday, June 4, 2026 7:30 PM",
              "venue_name": "The Lab",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "Buy Tickets\nDoors 7pm / Show 7:30pm\n$11.33 adv ($10 + fees) / $12 door / free or discounted for members\nRequest your member DICE Code or become a member",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://www.thelab.org/projects/2026/6/4/julin-delgado-lopera-pretend-youre-dead",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-05-18T10:14:45.425672Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5ed6bc136728",
              "venue_id": "venue_the_sound_room",
              "title": "Gabriel Schillinger-Hyman Trio",
              "event_time": "Thursday, June 4, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Gabriel Schillinger-Hyman  is a Steinway & Sons Teacher and Educational Partner and 2X performer & arranger at Carnegie Hall, Gabriel is known for showcasing a catalogue of originals and arrangements of works by Bill Evans, Chick Corea, Thelonious Monk, Duke Ellington and more, and honors the history of these master pianists with performances that are both soulful and hard-hitting. Gabriel can be found touring and/or performing in NYC with internationally renowned jazz artists including CHRISTOPHER MCBRIDE (GRAMMY-winner), LUCAS PINO (Artistic Director at Brubeck Jazz Summit), TIM GREEN (sax for Michael Bublé and GRAMMY nominee), TYREEK MCDOLE (Sarah Vaughan Competition 1st place), APRIL VARNER (Ella Fitzgerald Competition 1st place), ERENA TERAKUBO (Kenny Barron Quartet, Jon Faddis All-Star Big Band...etc), Ben Solomon (Chick Corea, Wallace Roney, Aaron Parks), Emmanuel Michael (Aaron Parks, Ambrose Akinmusire) and more. \n\nGabriel performs at jazz venues around the U.S. and is grateful to have music take him across the world, as far as Norway and Iceland. He has been honored to have performed at the French and Czech Consulates in NYC, The Metropolitan Museum of Art, and the Cooper Hewitt Smithsonian Design Museum in New York. Gabriel has established himself as a significant force in education and is recognized for combining jazz performance with storytelling, touring multiple multimedia projects including \"Invisible Jazz Giants,\" \"Jazz on the Silver Screen,\" and \"The Topography of Jazz: Revolutions in Sound Up, Down, and Around NYC\" across the country\n\nTawanda Suessbrich-Joaquim is an award-winning jazz vocalist based in Los Angeles, proudly a first-generation American with a mother from Germany and a father from Mozambique, whose artistry reflects a vibrant mix of cultural heritages. Her rapid ascent on the international stage is marked by major honors and extensive global touring, including winning the 2021 Sarah Vaughan International Jazz Vocal Competition—an accolade previously conferred on artists such as Cyrille Aimée, Jazzmeia Horn, and Samara Joy. In April 2023, she received an Outstanding Achievement Bistro Award for Jazz Vocalist following her “stunning” debut at Birdland Jazz Club in November 2022, as noted by Gerry Geddes. In 2024, she expanded her international presence with an 18-country European tour and three U.S. tours with Scott Bradlee’s Postmodern Jukebox, alongside three additional tours including a Florence debut at the Teatro Niccolini with Jeff Goldblum and the Mildred Snitzer Orchestra. Her performance experience spans major concert halls, international touring circuits, and intimate venues worldwide. As All About Jazz observed in 2022, “Tawanda seems to go from zero to belonging in the esteemed company of Veronica Swift, Cecile McLorin Salvant and Cyrille Aimée in negative time, if that could be measured (All About Jazz, 2022).”\n\nPersonnel:Gabriel Schillinger-Hyman, piano.   Tawanda Suessbrich-Joaquim, vocals. Michael Mitchell, drums.   Nico Martinez, bass\n\nTickets at The Gabriel Schillinger-Hyman Trio featuring Tawanda Suessbrich-Joaquim",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/gabriel-schillinger-hyman-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a12c74c6d4d4",
              "venue_id": "venue_shapeshifters",
              "title": "The Do-Over Music Series",
              "event_time": "6/04/2026 7:00 PM",
              "venue_name": "Shapeshifters",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "The Do-Over Music Series at Shapeshifters Cinema7pm - Eleanora (harp)8pm - Eleanora plus Kasey Knudsen, Ben Davis, Jordan Glenn and expanded cinema. More...",
              "event_types": [
                "live_music",
                "experimental",
                "film"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23038",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_762325040ba0",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Thomas Dimuzio",
              "event_time": "6/04/2026 7:30 PM",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "Thomas DimuzioThomas Dimuzio will be playing in quadraphonic sound with his Buchla 200e modular system in tandem with signal processing and his custom textural looping environment. More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23046",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_98d0dd84b947",
              "venue_id": "venue_madrone_art_bar",
              "title": "Macy Blackman",
              "event_time": "June 4 @ 6:00 pm - 8:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-04T18:00:00",
              "event_date": "2026-06-04",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "6:00pm-8:00pm Macy Blackman on the Piano No Cover New Orleans R&B Hearing Macy Blackman is like stepping into New Orleans in 1955.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/kitten-on-the-keys-3-2025-12-04/2026-06-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_956e60ac7115",
              "venue_id": "venue_the_independent",
              "title": "CLAIRE ROSINKRANZ",
              "event_time": "6.4 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "RESCHEDULED FROM 5/1/26 - MY LOVER TOUR - with Stevie Bill",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/claire-rosinkranz/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92d029d75b30",
              "venue_id": "venue_black_cat",
              "title": "Miles and Coltrane Centennial",
              "event_time": "06/04/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nFrank will celebrate the anniversary of his #1 charting album, Love Supreme Collective, while honoring the 100th birthdays of John Coltrane and Miles Davis with classics from both legends. He’ll also perform tracks from his new #1 Billboard charting album, Set Me Free, alongside beloved tunes he’s recorded with Tony Bennett and a few surprises.\n\nA constant presence on stages across the USA, Europe, and Asia, Frank frequently performs at New York's iconic Birdland Jazz Club. He has collaborated with artists like The Smashing Pumpkins, Beyoncé, and John Legend. His documentary, Sugar Jazz, directed by Colin Donner, will premiere at the Tokyo Liftoff Film Festival.\n\nFrank's recent works, including “Tokyo #9” with Jimmy Chamberlin, debuted at #1 on the Billboard Traditional Jazz Charts, while Love Supreme Collective topped the iTunes Jazz Charts. He’s also known for his collaborations with prominent artists and countless media features, including The New York Times and NPR.\n\nFrank has won numerous accolades, including an IMA award and induction into the Fox Valley Arts Hall of Fame. Despite overcoming significant adversity after a serious accident, he remains one of the most in-demand musicians today, committed to giving back through various charitable efforts.\n\nBand Lineup:\nTBD",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11374/?date=2026-06-04",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8d31f497985",
              "venue_id": "venue_yoshis",
              "title": "Lindsey Webster",
              "event_time": "THU 6.4 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "A SOULFUL JAZZ-POP POWERHOUSE WITH VELVET-SMOOTH VOCALS",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$35 - $59",
              "url": "https://yoshis.com/events/buy-tickets/lindsey-webster-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64f45dfbda5b",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Howard Wiley",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Howard Wiley presents a celebration of soul-jazz, funk, gospel, and R&B steeped in West Coast flavor, combining Wiley’s hard-driving originals with a funkified selection of classics.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/howard-wiley-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_adc42f8966b1",
              "venue_id": "venue_odc_theater",
              "title": "The Unfinished Work",
              "event_time": "6/4/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003EmMP2A0",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6e0bfa0b3916",
              "venue_id": "venue_ivy_room",
              "title": "Normal Weirds, The Sharps Removed & Send the Vektors",
              "event_time": "Thursday Jun 4 6:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-04T18:30:00",
              "event_date": "2026-06-04",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A dynamic night of local music featuring performances by Normal Weirds, The Sharps Removed, and Send the Vektors.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182254",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ef0b29c57a4",
              "venue_id": "venue_presidio_theater",
              "title": "Post to Park",
              "event_time": "Jun 4, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "This event explores the historical evolution of the Presidio as it transitioned from a military installation to a vibrant national park.",
              "event_types": [
                "community"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/post-to-park-the-presidios-21st-century-preservation-story",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0cfcfdd5493a",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Back to the Future – Broadway San Jose",
              "event_time": "2026-06-04",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Broadway musical adaptation of the beloved film, featuring original music by Alan Silvestri and Glen Ballard alongside songs from the movie.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/back-to-the-future-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-06-04",
              "run_id": "run_0b3776082a64",
              "run_label": "Back to the Future – Broadway San Jose, Jun 2 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2394682eb303",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-04T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-04T19:30:00",
              "event_date": "2026-06-04",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-04",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1746f9ae1db0",
              "venue_id": "venue_boom_boom_room",
              "title": "Sheldon Alexander Funk Jam",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Sheldon Alexander hosts an improvisational funk jam session where guests can enjoy live music for free.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/sheldon-alexander-funk-jam-no-cover-charge-2/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d365d2651ef",
              "venue_id": "venue_boom_boom_room",
              "title": "Sheldon Alexander Funk Jam",
              "event_time": "2026-06-04T21:00:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-06-04T21:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Sheldon Alexander hosts an improvisational funk jam session where guests can enjoy live music for free.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/sheldon-alexander-funk-jam-no-cover-charge-2/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b7b7ec4c7f46",
              "venue_id": "venue_4_star_theater",
              "title": "Make the Scene",
              "event_time": "June 4, 2026 8:00 PM – 10:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This multidisciplinary event blends live musical performances with curated film segments. It offers a unique sensory experience that explores the intersection of sight and sound.",
              "event_types": [
                "live_music",
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/programme-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f546a9dbf3b8",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-06-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-04",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f0dc127102a8",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-06-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-04",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb967e315e80",
              "venue_id": "venue_yerba_buena_center",
              "title": "Drag For Your LIFE!",
              "event_time": "Thursday, June 4, 2026, 7 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A celebration of drag as art, resistance, and radical imagination.",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "Free with registration",
              "url": "https://ybca.org/event/drag-for-your-life-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db9fafcb52d6",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 04, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7144588",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_815f853224d7",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-04",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-04",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a328a8b9f982",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-04T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-04T18:00:00",
              "event_date": "2026-06-04",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a1fc38573d8f",
              "venue_id": "venue_the_fireside",
              "title": "Thursday Music & Lessons",
              "event_time": "2026-06-04",
              "venue_name": "The Fireside",
              "event_start": "2026-06-04",
              "event_date": "2026-06-04",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Ukulele lessons, live rock, jazz & blues guitar, DJ house music, or all vinyl soul Depending on the week",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "dj_party",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c667389f048c",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic with Charlie Kaupp",
              "event_time": "2026-06-04T19:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1af878af0ac3",
              "venue_id": "venue_f8",
              "title": "Connect",
              "event_time": "06/04/2026 9pm-2:30am",
              "venue_name": "F8",
              "event_start": "2026-06-04T02:30:00",
              "event_date": "2026-06-04",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "bounce, hard trance, techno",
              "event_types": [
                "dj_party"
              ],
              "price_info": "free w/rsvp b4 11pm / $5-10 | 21+",
              "url": "https://ra.co/events/2412749",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_485e670b1631",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-06-04T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-06-04T19:45:00",
              "event_date": "2026-06-04",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/thu-jun-04-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_314400b224a4",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "EVOLUTION OF A SNAKE: THE SHOWGIRL EXPERIENCE",
              "event_time": "Thu Jun 4, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-04T19:00:00",
              "event_date": "2026-06-04",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "This live show combines comedy and pop culture analysis for a unique experience inspired by the popular podcast.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/evolution-of-a-snake-the-showgirl-san-francisco-california-06-04-2026/event/1C006471308B1076",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_082a44de5b8c",
              "venue_id": "venue_san_jose_improv",
              "title": "Phil Medina",
              "event_time": "Jun 4 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-06-04T20:00:00",
              "event_date": "2026-06-04",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/phil+medina/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-06-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-05": {
          "date": "2026-06-05",
          "updated_at": "2026-05-18T16:16:06.647467Z",
          "events": [
            {
              "event_id": "evt_88fdb1ae583f",
              "venue_id": "venue_bill_graham_civic",
              "title": "ALESSO",
              "event_time": "June 5, 2026 8:00 pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Global electronic dance music superstar Alesso performs a high-energy set featuring his chart-topping progressive house hits. The event showcases world-class production at this landmark San Francisco venue.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets | More Info",
              "url": "https://billgrahamcivic.com/events/alesso-260605",
              "tags": [],
              "sources": [
                {
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-03-21T14:12:37.459251Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_bill_graham_civic"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c585c410fc3",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight: Regina Morones",
              "event_time": "2026-06-05T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-06-05T10:30:00",
              "event_date": "2026-06-05",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "Coffee, cookies, conversation, interview, and group discussion with Regina Morones, Bay Area actor, educator, resident artist at SF Shakes, and company member at Oakland Theater Project. Part of Miriam’s Place / Shotgun Spotlight at Shotgun Studios.",
              "event_types": [
                "theater",
                "workshop"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/spotlight",
              "tags": [],
              "sources": [
                {
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-03-24T01:19:52.598376Z",
                  "strategy_used": "LLM",
                  "source_id": "s_shotgun_players"
                },
                {
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-03-24T09:27:33.870223Z",
                  "strategy_used": "LLM",
                  "source_id": "v_shotgun_studios"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_587f33adfc21",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Mikaela Davis / TBA / TBA",
              "event_time": "Friday June 5 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Graceland Way Tour; alt-country psychedelia; rock, country, bluegrass, roots music; ...",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "$20/$23",
              "url": "http://www.bottomofthehill.com/20260605.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_229cbd92b5bc",
              "venue_id": "venue_halcyon",
              "title": "Kloud, Rawb, Nicole Cayenne",
              "event_time": "06/5/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-05T22:00:00",
              "event_date": "2026-06-05",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "The masked electronic artist KLOUD brings a dark, cinematic, and industrial-tinged techno set to Halcyon. This performance combines heavy synthesis with a striking visual aesthetic for an immersive experience.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$26.06",
              "url": "https://link.dice.fm/kdda77afd7cd?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-04-07T09:47:54.600518Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_efe8a3101433",
              "venue_id": "venue_4_star_theater",
              "title": "Eli Winter Trio & Danny Paul jGrody Duo",
              "event_time": "Jun 5, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Talent Moat presents an evening of instrumental and experimental music featuring the Eli Winter Trio and the Danny Paul Grody Duo. The performance focuses on intricate guitar work and collaborative soundscapes.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-eli-winter-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2e323da5470f",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Juvenile, 400 Degreez Band",
              "event_time": "Jun 5 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Boiling Point Album Release Tour - with The 400 Degreez Band & Special Guests",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.1.html#Juvenile",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_15f1bbed0b5b",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-05",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-14T11:49:58.405237Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-05",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a9d5969161e5",
              "venue_id": "venue_924_gilman",
              "title": "Fight Fair",
              "event_time": "2026-06-05T19:00:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Jun 5 Fight Fair, Duck Duck Goose, Aplacewevealwaysbeen, My Precious Solitude, Wounded Deer a/a $18/$20 6pm/7pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$7 - $15",
              "url": "http://www.foopee.com/by-band.1.html#Fight_Fair",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T11:11:30.532030Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-11T11:24:31.428588Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8fc6a9f4d75",
              "venue_id": "venue_the_ritz",
              "title": "TRUE NORTH + OUT IN FRONT + PINKNOISE",
              "event_time": "2026-06-05T19:00:57-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-05T19:00:57",
              "event_date": "2026-06-05",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "TRUE NORTH / OUT IN FRONT\nPINKNOISE\n\n \n\nFRIDAY JUNE 5, 2026\nDoors: 7:00PM // All Ages // $18 Advance – $20 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18 Advance – $20 Day-of-Show",
              "url": "https://www.ticketweb.com/event/true-north-out-in-front-the-ritz-tickets/14842663",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cd78a55ea576",
              "venue_id": "venue_cornerstone",
              "title": "Doomsday",
              "event_time": "Jun 5 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Doomsday, Iron Front, Four Winds Away, Losing Streak",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.78",
              "url": "http://www.foopee.com/by-band.1.html#Doomsday",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e9886eadb261",
              "venue_id": "venue_ivy_room",
              "title": "The Helltones & Friends",
              "event_time": "Friday Jun 5 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "The Helltones bring their signature surf-soul sound to the stage for a diverse showcase featuring Mind The Chord, Lady Starbeast, and Jackie Clementine.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180402",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d009ae0d3a11",
              "venue_id": "venue_ashby_stage",
              "title": "Shotgun Spotlight",
              "event_time": "2026-06-05T10:30:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-06-05T10:30:00",
              "event_date": "2026-06-05",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Join us for coffee and cookies as we meet influential theater maker Regina Morones, resident artist at SF Shakes and company member at Oakland Theater Project. Includes interview and group discussion.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "Free",
              "url": "https://shotgunplayers.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-04-26T00:11:41.986251Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-04-30T11:34:57.759517Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_ashby_stage|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_deb25677ef27",
              "venue_id": "venue_the_fireside",
              "title": "Bananas, Diesel Dudes",
              "event_time": "Jun 5 2026 7pm",
              "venue_name": "The Fireside",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Ukulele lessons, live rock, jazz & blues guitar, DJ house music, or all vinyl soul depending on the week",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.0.html#Bananas",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-28T12:44:01.736992Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-04-28T13:07:40.763793Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b9f98a8cb9f",
              "venue_id": "venue_the_warfield",
              "title": "THE HUMAN LEAGUE",
              "event_time": "Fri, Jun 5, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Human League, Soft Cell, Alison Moyet",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1300485",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-04-28T12:57:37.834317Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f80b6c4dde90",
              "venue_id": "venue_brick_and_mortar",
              "title": "Alain Whyte Band, dj Ray Chaos",
              "event_time": "Jun 5 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "a/a $33.24 (under 21 plus $5) 8pm/9pm ^",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$33.24 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#Alain_Whyte_Band",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-02T10:43:22.363329Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-03T11:21:05.304318Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_91243a0e7747",
              "venue_id": "venue_guild_theatre",
              "title": "When Doves Cry - The Prince Tribute Band",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Guild Theatre",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Tribute concert at The Guild Theatre. Doors at 7:00 PM; show starts at 8:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35",
              "url": "https://www.tixr.com/e/181684",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-05-06T17:35:28.254446Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_guild_theatre|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_24f0ad04a37f",
              "venue_id": "venue_counterpulse",
              "title": "Block Fest: Tenderloin Arts Festival",
              "event_time": "2026-06-05T15:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-06-05T15:00:00",
              "event_date": "2026-06-05",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "A monthly neighborhood arts festival featuring free art-making activities, protest sign and button making, and community engagement in the Tenderloin.",
              "event_types": [
                "festival",
                "community",
                "electronic",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://counterpulse.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7afdd220157e",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-05",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_35ad85778a83",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-05",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02124991c66f",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-05T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-05T14:00:00",
              "event_date": "2026-06-05",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-05",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9db916507efd",
              "venue_id": "venue_the_chapel",
              "title": "Jerry's Middle Finger",
              "event_time": "Jun 5 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Jerry's Middle Finger",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jerry_s_Middle_Finger",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c35d1764bf3",
              "venue_id": "venue_mountain_winery",
              "title": "Thievery Corporation",
              "event_time": "Jun 5 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-05T17:30:00",
              "event_date": "2026-06-05",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The influential electronic duo brings their signature blend of dub, bossa nova, and trip-hop to the stage. Their live performance features a diverse collective of musicians and vocalists for a truly global sound.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Thievery_Corporation",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d1e31736edf7",
              "venue_id": "venue_sailing_goat",
              "title": "Josh Brough",
              "event_time": "Fri, Jun 05",
              "venue_name": "Sailing Goat",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Enjoy a solo performance by Josh Brough, featuring his signature blend of Americana, bluegrass, and folk influences.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/josh-brough-6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7554d4f6c195",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-05",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-05",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_552ff752cad2",
              "venue_id": "venue_the_lost_church",
              "title": "The Hot Licks: Music of Dan Hicks",
              "event_time": "2026-06-05",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Music performance celebrating the songs of Dan Hicks at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001mASS2A2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a5ad00ba83b0",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Fri Jun 5 2026",
              "event_time": "2026-06-05T19:30:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/cc/comedy-oakland-at-elbo-room-4794459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1bcf9eaf5631",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Postshow Discussion)",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. This performance is followed by a discussion guided by members of the artistic team.",
              "event_types": [
                "theater",
                "workshop"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_36e7c457cd98",
              "venue_id": "venue_mr_tipples",
              "title": "Jenny Scheinman Quintet",
              "event_time": "2026-06-05T19:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Renowned fiddle player and songwriter Jenny Scheinman presents a distinctive vision of American music, suffused with beauty and fortified by country, gospel, folk, and jazz.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/jenny-scheinman-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f5086d99cfac",
              "venue_id": "venue_mr_tipples",
              "title": "The Ayo Brame Experience",
              "event_time": "2026-06-05T22:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-06-05T22:30:00",
              "event_date": "2026-06-05",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Oakland's own Ayo Brame, a rising star on tenor and soprano saxophone, performs a soulful and expressive set influenced by jazz legends like John Coltrane.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/the-ayo-brame-experience/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_98297f8306df",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-05T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-05T14:00:00",
              "event_date": "2026-06-05",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-05",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91df95a72000",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-05",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fa5886e13bf8",
              "venue_id": "venue_ocean_ale_house",
              "title": "GamperDrums: Hop Sauce Live",
              "event_time": "2026-06-05T19:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "First Friday funk and soul with Hop Sauce featuring GamperDrums and Andius Jent on bass.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.sfgate.com/events/?_evDiscoveryPath=/event/2399998-gamperdrums-hop-sauce-live-at-ocean-s-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_aa1e31203244",
              "venue_id": "venue_joe_goode_annex",
              "title": "SOLO 2",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "An opportunity for five artists (Barb Lankamp, Abigail Hinson, Erin Yen, Ria Fifield, and monique jonath) to showcase individual contemporary dance choreography.",
              "event_types": [
                "dance"
              ],
              "price_info": "Check website for pricing",
              "url": "https://joegoode.org/event/solo-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f3038bd32a85",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Karaoke Night",
              "event_time": "2026-06-05T21:00:00",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Weekly karaoke night.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.theluckyhorseshoebar.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-05-15T18:26:44.445455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_664d2bf2bb48",
              "venue_id": "venue_masonic_hall",
              "title": "The Kid LAROI: A Perfect World Tour",
              "event_time": "2026-06-05",
              "venue_name": "Masonic Hall",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "The Kid LAROI concert",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dd2f6e039170",
              "venue_id": "venue_cry_baby",
              "title": "Life of the Party",
              "event_time": "2026-06-05T22:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-06-05T22:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "First Friday party with hip-hop, turnt-up rap, club bangers, hyphy, and more at Crybaby.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/life-of-the-party-oaklands-top-first-friday-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e48bf5ada3b8",
              "venue_id": "venue_pacific_film_archive",
              "title": "Two Prosecutors",
              "event_time": "2026-06-05T19:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "A special screening at BAMPFA.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/two-prosecutors",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9f5df5b5eb41",
              "venue_id": "venue_biscuits__blues",
              "title": "Fillmore Slim",
              "event_time": "2026-06-05",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Confirmed upcoming show at Biscuits & Blues.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260605fillmoreslim",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b83b1951cb4e",
              "venue_id": "venue_public_works",
              "title": "ARCHANGEL",
              "event_time": "06/05/2026 9pm-2:30am",
              "venue_name": "Public Works",
              "event_start": "2026-06-05T02:30:00",
              "event_date": "2026-06-05",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A collaborative event featuring ARCHANGEL from NYC.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Tickets",
              "url": "https://www.tixr.com/groups/publicsf/events/program-audio-x-queen-out-x-public-works-archangel-nyc--189451?utm_medium=venuewebsite&utm_source=publicsf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-16T00:09:28.427139Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c0715c44cf19",
              "venue_id": "venue_white_horse",
              "title": "Lil' Mx. Tip Spot Pageant",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "A competition of 'good drag gone bad' judged by baby drags. Doors open at 8 PM, pageant at 9 PM, followed by a dance party.",
              "event_types": [],
              "price_info": "$17.85",
              "url": "https://www.eventbrite.com/e/lil-mx-tip-spot-pageant-tickets-880569123456",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-05-16T00:38:32.747221Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0ca2bd0e7060",
              "venue_id": "venue_st_josephs_arts_society",
              "title": "Mercury Soul",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "St Josephs Arts Society",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1401 Howard St, San Francisco, CA 94103",
              "description": "A signature fusion of DJs, classical ensembles, and immersive visuals. Featuring DJ Masonic (Mason Bates) and DJ Justin Reed with live classical performances and wall-mapped projections.",
              "event_types": [
                "live_music",
                "classical",
                "dj_party",
                "film"
              ],
              "price_info": "$25 - $75",
              "url": "https://mercurysoul.com/events/mercury-soul-at-saint-josephs-arts-society/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_st_josephs_arts_society",
                  "source_name": "St Josephs Arts Society",
                  "fetched_at": "2026-05-16T00:40:52.568337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_st_josephs_arts_society|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9d4126f77cbb",
              "venue_id": "venue_madarae",
              "title": "Re.You",
              "event_time": "06/05/2026 9pm-3am",
              "venue_name": "Madarae",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "Marius Maier, aka Re.You, brings his 15+ years of experience in the underground electronic scene to San Francisco for a night of Afro and Melodic House.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 b4 11 w rsvp / $10-20 | 21+",
              "url": "https://posh.vip/f/6f786?t=19hz",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-17T14:56:23.559746Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_madarae|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e653ef41c69a",
              "venue_id": "venue_kilowatt",
              "title": "La Mision and Puro Perreo",
              "event_time": "06/05/2026 10pm-2am",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-05T22:00:00",
              "event_date": "2026-06-05",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "reggaeton",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$7.73 pre / $5 b4 11 / $10 | 21+",
              "url": "https://dice.fm/partner/tickets/event/bbo9ev-tumbaos-presents-la-misin-and-puro-perreo-5th-jun-kilowatt-san-francisco-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_301d51a0cf50",
              "venue_id": "venue_the_setup",
              "title": "The Setup at The Palace Theater (Speakeasy Comedy)",
              "event_time": "2026-06-05T21:00:00",
              "venue_name": "The Setup",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "An underground speakeasy comedy night in the bar of the beautiful Palace Theater, featuring a rotating lineup of elite comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$20.00",
              "url": "https://www.unation.com/event/the-setup-at-the-palace-theater-speakeasy-comedy-52345678",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-05-16T01:44:41.479756Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_setup|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0d9752ed5eb0",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Sarah Colonna",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Sarah Colonna, featuring Nancy Lee and Lester Ransom.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/136021",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-05",
              "run_id": "run_0e8b5fb3e2bd",
              "run_label": "Sarah Colonna, Jun 4 – Jun 5",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c4be62b53026",
              "venue_id": "venue_the_freight__salvage",
              "title": "Natalie & Brittany Haas",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Modern acoustic concert with livestream available.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39/$44 General Admission; $25 Livestream",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bbe3e5c15e03",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-06-05T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "San Francisco’s longest-running neighborhood jazz party!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8485fae3c76a",
              "venue_id": "venue_meyhouse",
              "title": "Charito Sings Shirley Bassey",
              "event_time": "2026-06-05T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-06-05T17:00:00",
              "event_date": "2026-06-05",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Internationally acclaimed vocalist Charito pays tribute to Shirley Bassey in an evening of jazz and timeless song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/charito-sings-shirley-bassey-fri-6-5-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_38ddebf53000",
              "venue_id": "venue_meyhouse",
              "title": "Charito Sings Shirley Bassey",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Internationally acclaimed vocalist Charito pays tribute to Shirley Bassey in an evening of jazz and timeless song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/charito-sings-shirley-bassey-fri-6-5-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2262f4cf649f",
              "venue_id": "venue_the_cats",
              "title": "Karaoke Night",
              "event_time": "2026-06-05",
              "venue_name": "The Cats",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "6:00 PM – 9:00 PM\nKaraoke Night",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/karaoke-night-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e630b003044d",
              "venue_id": "venue_the_back_room",
              "title": "Yoav Konig Quartet",
              "event_time": "Fri, Jun 5 2026, 7:30pm - 9:30pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/yoav-konig-quartet-ft-nico-colucci-michael-potter-miles-turk?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dfd6c7a8ebe0",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-06-05T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Kick off the weekend with live DJ entertainment and handcrafted specialty cocktails.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9463f351493b",
              "venue_id": "venue_the_midway",
              "title": "Botas Y Rave Block Party",
              "event_time": "2026-06-05",
              "venue_name": "The Midway",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "INDOORS & OUTDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/deorro-presents-botas-y-rave-block-party-after-party-new-date-added/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_56afb9671e3f",
              "venue_id": "venue_kilowatt",
              "title": "Litty Debungus & Phat Mark",
              "event_time": "2026-06-05T19:00:00",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b91f9d1ff744",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-05",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-05",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_22f338e883de",
              "venue_id": "venue_tommy_ts",
              "title": "RIP MICHAELS",
              "event_time": "2026-06-05 2026-06-06",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-05",
              "run_id": "run_4915f718c261",
              "run_label": "RIP MICHAELS, Jun 5 – Jun 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c7ad781ca6d",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-05T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-05",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d3c634ff3298",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-05T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-05T14:00:00",
              "event_date": "2026-06-05",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-05",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9b5649d8d9d9",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Friday night Hammond organ session with Chris Siebert and guests.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_67da4cd13fb9",
              "venue_id": "venue_the_sound_room",
              "title": "The Isaac Schwartztet",
              "event_time": "Friday, June 5, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Wayne Shorter (August 25, 1933 – March 2, 2023) was an American jazz saxophonist and composer. Shorter came to prominence in the late 1950s as a member of, and eventually primary composer for Art Blakey's Jazz Messengers. In the 1960s, he joined Miles Davis's Second Great Quintet, and then co-founded the jazz fusion band Weather Report. He recorded more than 20 albums as a bandleader. Many Shorter compositions have become jazz standards, and his music has earned worldwide recognition, critical praise, and commendation. Shorter won 12 Grammy Awards.He was acclaimed for his mastery of the soprano saxophone since switching his focus from the tenor in the late 1960s and beginning an extended reign in 1970 as DownBeat's annual poll-winner on that instrument, winning the critics' poll for 10 consecutive years and the readers' for 18. The New York Times music critic Ben Ratliff described Shorter in 2008 as \"probably jazz's greatest living small-group composer and a contender for greatest living improviser\". In 2017, he was awarded the Polar Music Prize.\n\nOakland native Isaac Schwartz brings his band of musical collaborators and lifelong Wayne fans to pay tribute to their collective hero. The night will feature Wayne's early work with the Jazz Messengers and solo recordings all the way through to the music he made with the Wayne Shorter Quartet, which pushed boundaries for the last 20 years.\n\nIsaac first heard Wayne on his seminal album, \"Speak No Evil\" and fell in love with its impressionistic yet propulsive sound. The music was sensitive yet bombastic; intuitive yet clever; cryptic yet soulful. Finally when Isaac was 16, his father took him to see Wayne live. Isaac wasn't sure if the modern music Wayne was making was really his vibe and boy was he wrong. It was the greatest show he'd ever seen and got him screaming in his seat. The intensity created by Danilo Perez, John Patitucci, and Brian Blade with Wayne at the helm was undeniable. That concert changed the direction of Isaac's life and caused him to fully invest and dedicate his life to music. Isaac is honored to get to pay tribute to his musical father and guiding light in life, Wayne Shorter. ALL HAIL WAYNE!\n\nTickets at The Isaac Schwartztet plays the Music of Wayne Shorter",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/the-isaac-schwartztet-plays-the-music-of-wayne-shorter-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_31b37cbb9f16",
              "venue_id": "venue_madrone_art_bar",
              "title": "Max Cowan",
              "event_time": "June 5 @ 9:30 pm - 1:00 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-05T21:30:00",
              "event_date": "2026-06-05",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Max Cowan takes the piano from the East Bay to New Orleans, and through every funky congregation in between. As co-leader of funk powerhouse Atta Kid, keyboardist for funk pioneer, Zigaboo Modeliste, and longtime collaborator with Otis McDonald, Max's repertoire tours the B-sides of your soul. 7-9PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$10 cover",
              "url": "https://madroneartbar.com/event/max-cowan-20-2025-12-05/2026-06-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_35b6c4f086c6",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "After Hours Tea Lounge",
              "event_time": "JUN 05, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Enjoy a relaxed Friday evening atmosphere featuring live music and tea in this new late-night lounge series at the conservatory.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/new-fridays-in-june-after-hours-tea-lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_91b23fdfa724",
              "venue_id": "venue_the_independent",
              "title": "EARLYBIRDS CLUB",
              "event_time": "6.5 6:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-05T18:00:00",
              "event_date": "2026-06-05",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/earlybirds-club-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4e0b35e47d0",
              "venue_id": "venue_mountain_winery",
              "title": "Thievery Corporation",
              "event_time": "Jun 5, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1273346",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eae5d26288f0",
              "venue_id": "venue_black_cat",
              "title": "Miles and Coltrane Centennial",
              "event_time": "06/05/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nFrank will celebrate the anniversary of his #1 charting album, Love Supreme Collective, while honoring the 100th birthdays of John Coltrane and Miles Davis with classics from both legends. He’ll also perform tracks from his new #1 Billboard charting album, Set Me Free, alongside beloved tunes he’s recorded with Tony Bennett and a few surprises.\n\nA constant presence on stages across the USA, Europe, and Asia, Frank frequently performs at New York's iconic Birdland Jazz Club. He has collaborated with artists like The Smashing Pumpkins, Beyoncé, and John Legend. His documentary, Sugar Jazz, directed by Colin Donner, will premiere at the Tokyo Liftoff Film Festival.\n\nFrank's recent works, including “Tokyo #9” with Jimmy Chamberlin, debuted at #1 on the Billboard Traditional Jazz Charts, while Love Supreme Collective topped the iTunes Jazz Charts. He’s also known for his collaborations with prominent artists and countless media features, including The New York Times and NPR.\n\nFrank has won numerous accolades, including an IMA award and induction into the Fox Valley Arts Hall of Fame. Despite overcoming significant adversity after a serious accident, he remains one of the most in-demand musicians today, committed to giving back through various charitable efforts.\n\nBand Lineup:\nTBD",
              "event_types": [],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/11375/?date=2026-06-05",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ca3610e7acf7",
              "venue_id": "venue_yoshis",
              "title": "Kevin Ross",
              "event_time": "FRI 6.5",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "R&B WITH RICH SONIC ARCHITECTURE AND TRAFFIC-STOPPING VOCALS",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$52 - $99",
              "url": "https://yoshis.com/events/buy-tickets/kevin-ross-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_549a63f2ab6d",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Jamie Davis",
              "event_time": "Friday, June 5, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Sir Michael Parkinson: BBC, iTV and chat show host describes Jamie, “A proper singer of real talent and style. He can sing the blues and ballads to the manner born and man does he swing!  Greatly recommended for any lover of great music.”",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/jamie-davis-7/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4c36556a6cfd",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Tiffany Austin",
              "event_time": "Friday, June 5, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Tiffany Austin is a vocalist, composer, educator, and Berkeley Law Juris Doctor. She has performed with luminaries such as Pharoah Sanders, Roy Ayers, John Handy, Cyrus Chestnut, and Doug Carn. Her soulful delivery and musical storytelling has brought her to stages at Birdland and Dizzy’s Den in NYC, Walt Disney Concert Hall in her native Los Angeles and the SFJAZZ Center in San Francisco. Beyond California, she has performed in Europe, Asia, and Australasia, as well as on nationally televised programming in the United States.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/tiffany-austin-7/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d20c29b5e517",
              "venue_id": "venue_odc_theater",
              "title": "The Unfinished Work",
              "event_time": "6/5/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003EmMP2A0",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a1869359580",
              "venue_id": "venue_brava_theater",
              "title": "Scissor Cinema",
              "event_time": "2026-06-05",
              "venue_name": "Brava Theater",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Brava Presents is proud to announce our very first edition of ‘Scissor Cinema: A Double Feature’! Please join us in celebrating the beginning of Pride Month on June 5th and come back June 6th where Brava will screen two iconic Sapphic films.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/scissorcinema-wmdym",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-18T11:42:14.495739Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-06-05",
              "run_id": "run_eae8aa0cc77a",
              "run_label": "Scissor Cinema: The Watermelon Woman and Saving Face, Jun 5 – Jun 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_545c0ddb9ac5",
              "venue_id": "venue_the_mighty",
              "title": "Kitty's Rave",
              "event_time": "2026-06-05T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "A high-energy EDM throwback rave featuring sounds of the 2010s.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19.66 - $31.69",
              "url": "https://dothebay.com/events/2026/6/5/kitty-s-rave-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-18T11:44:14.799981Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_mighty|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f79d6284cf2d",
              "venue_id": "venue_winters",
              "title": "MATINEE***Temper Of Sound",
              "event_time": "2026-06-05T16:00:00",
              "venue_name": "Winters",
              "event_start": "2026-06-05T16:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f6bda893dfdb",
              "venue_id": "venue_winters",
              "title": "Lazer Beam/For Horses/Phoneix Nest",
              "event_time": "2026-06-05T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-06-05T20:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_47d10b1da8cc",
              "venue_id": "venue_omca",
              "title": "Oakland Rising",
              "event_time": "2026-06-05",
              "venue_name": "OMCA",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "This Friday Night at OMCA, Oakland Rising takes over the Garden Stage with a dynamic live set rooted in the city’s cultural legacy. Known for lush harmonies, original music, and soulful reinterpretations of classics, the collective brings together some of Oakland’s most exciting emerging voices in a celebration of collaboration and community.",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "festival",
                "community"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/friday-nights-at-omca-with-oakland-rising/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9b928ac582be",
              "venue_id": "venue_presidio_theater",
              "title": "Ms. Lisa Fischer & Grand Baton",
              "event_time": "2026-06-05",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Renowned vocalist Lisa Fischer joins forces with the band Grand Baton for an evening of soulful and inventive musical arrangements.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/ms-lisa-fischer-grand-baton",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-05",
              "run_id": "run_68f11762e2a1",
              "run_label": "Ms. Lisa Fischer & Grand Baton, Jun 5 – Jun 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c5c179ef87d",
              "venue_id": "venue_act_theater",
              "title": "CONSERVATORY SHOWCASE",
              "event_time": "JUN 5–6, 2026",
              "venue_name": "ACT Theater",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Students from the theater's professional training program demonstrate their skills in this curated performance of scenes and songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/conservatory-shows/conservatory-showcase",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0a5c4af8c15a",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Back to the Future – Broadway San Jose",
              "event_time": "2026-06-05",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Broadway musical adaptation of the beloved film, featuring original music by Alan Silvestri and Glen Ballard alongside songs from the movie.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/back-to-the-future-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-06-05",
              "run_id": "run_0b3776082a64",
              "run_label": "Back to the Future – Broadway San Jose, Jun 2 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7038668048f7",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Elim Chan Conducts La Mer",
              "event_time": "6/5/2026 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23812",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-18T13:00:17.576242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_21b9cade01b2",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-05T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-05",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5bf5912acb53",
              "venue_id": "venue_dna_lounge",
              "title": "Dark Sparkle",
              "event_time": "2026-06-05",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cac6c0fc86d9",
              "venue_id": "venue_ashkenaz",
              "title": "Mark St. Mary's Louisiana Blues & Zydeco Band",
              "event_time": "06/05/2026 7:00 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-06-05T19:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Cajun/Zydeco",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/184200",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_83d491ed88a0",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-06-05",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-05",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2a05be626313",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-06-05",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-05",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee5a99f3e053",
              "venue_id": "venue_el_rio",
              "title": "A Family Affair After Dark",
              "event_time": "2026-06-05T21:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "Every 1st Friday party featuring queer 90s and 00s throwbacks.",
              "event_types": [],
              "price_info": "$5",
              "url": "https://dothebay.com/events/2026/6/5/a-family-affair-after-dark",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_075ee8b19496",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 05, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7144589",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_687e9708160f",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-05",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-05",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b95e9a216085",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Friday Happy Hour | June 5",
              "event_time": "June 05, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-06-05T16:30:00",
              "event_date": "2026-06-05",
              "venue_address": "San Francisco, CA 94118",
              "description": "Featuring Momotombo",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/friday-happy-hour-june-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-05-18T15:33:52.278478Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a07e4b4216d4",
              "venue_id": "venue_elis_mile_high",
              "title": "The Down and Rowdy R&B Club DJ Night",
              "event_time": "Fri, Jun 05, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "DJs spin a high-energy selection of rhythm and blues tracks for a rowdy night on the dance floor.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/the-down-and-rowdy-r-b-club-dj-night-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1259b30f438",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-05T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-05T18:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c44ba34bfae5",
              "venue_id": "venue_1015_folsom",
              "title": "BIG GIGANTIC (LIVE)",
              "event_time": "June 5, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/altego/691410?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c919850e2aae",
              "venue_id": "venue_august_hall",
              "title": "R&B ONLY LIVE",
              "event_time": "JUNE 05, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This world-renowned dance party celebrates the best of R&B music with a night of non-stop hits and high energy.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/rb-only-live/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-18T15:47:14.139244Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_62493b697ce1",
              "venue_id": "venue_great_star_theater",
              "title": "Airotic Soirée",
              "event_time": "June 5 - 27, 2026",
              "venue_name": "Great Star Theater",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "A bold, sensual and provocative cabaret-circus experience! After sold-out runs across the U.S. and Europe, the internationally acclaimed Airotic Soirée returns to the Great Star Theater with a show that celebrates desire, sensuality, athletic beauty, and erotic elegance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Tickets",
              "url": "https://www.eventbrite.com/e/airotic-soiree-san-francisco-tickets-1983872728736?aff=gstweb",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-05-18T15:52:47.667779Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ce0e2286c07",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Death Cab For Cutie Listening Party",
              "event_time": "June 5, 2026 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-06-05T17:00:00",
              "event_date": "2026-06-05",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Amoeba Berkeley hosts a release day listening party for Death Cab For Cutie's 11th studio album,  I Built You A Tower (via ANTI), on Friday, June 5th at 5pm!\n\t\n\tHear the full album, get some free Death Cab For Cutie stickers, and enter to win our raffle for an autographed art print. Plus, you'll get a free canvas tote bag with purchase of  I Built You A Tower on CD, vinyl, or the Indie Record Store Exclusive Teal Vinyl on June 5th, while supplies last.\n\t\n\t- This event is free/all-ages.\n\t- Stickers and tote with purchase of the album are both available only while supplies last and are one per person.\n\t- The prize will be raffled off to one lucky winner after we play the album.\n\t- Raffle tickets are free and there is no purchase necessary. One ticket per person and you must be present to win.\n\t- This is a fan event only. Death Cab For Cutie will not be in attendance.",
              "event_types": [
                "community",
                "film"
              ],
              "price_info": "free",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3129/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-05-18T15:53:38.118113Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d2f05800e37",
              "venue_id": "venue_the_riptide",
              "title": "Punk Rock and Schlock Karaoke",
              "event_time": "2026-06-05T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-05T21:00:00",
              "event_date": "2026-06-05",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a98bd26035eb",
              "venue_id": "venue_the_saloon",
              "title": "Evolv3 Drum and Bass",
              "event_time": "06/05/2026 9pm-1:30am",
              "venue_name": "The Saloon",
              "event_start": "2026-06-05T01:30:00",
              "event_date": "2026-06-05",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "drum and bass, jungle",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 | 21+",
              "url": "https://www.instagram.com/p/DYNU_19D-7u/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b4616371ca75",
              "venue_id": "venue_f8",
              "title": "Blood Rave",
              "event_time": "06/05/2026 9pm-3:30am",
              "venue_name": "F8",
              "event_start": "2026-06-05T03:30:00",
              "event_date": "2026-06-05",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "hard techno, hard dance",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17.49-28.49 | 21+",
              "url": "https://posh.vip/e/blood-rave-5",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bba1111c9628",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-06-05T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-06-05T19:45:00",
              "event_date": "2026-06-05",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/fri-jun-05-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9b89a2e2e5a0",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-06-05T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-06-05T21:45:00",
              "event_date": "2026-06-05",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/fri-jun-05-945pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b578cb36eb89",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "CRAIG CONANT",
              "event_time": "Fri Jun 5, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-05T19:30:00",
              "event_date": "2026-06-05",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Known for his distinctive voice and wild life stories, Craig Conant performs an engaging and hilarious stand-up set.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/craig-conant-san-francisco-california-06-05-2026/event/1C0064430D53F2DA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d98522b03445",
              "venue_id": "venue_san_jose_improv",
              "title": "Damon Wayans Jr.",
              "event_time": "Jun 5-7 5 shows",
              "venue_name": "San Jose Improv",
              "event_start": "2026-06-05",
              "event_date": "2026-06-05",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/damon+wayans+jr./",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fd9ef6eb9719",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Boys of Summer",
              "event_time": "June 5, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-06-05T18:00:00",
              "event_date": "2026-06-05",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "The Boys of Summer Eagles Band hail right from Southern California. They grew up there and all have Eagles blood running through their veins. They recreate some of the greatest music ever written. With well over 400 high profile shows throughout the U.S. since 2004, BOS are becoming known as the top touring Eagles Tribute band in America.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "http://www.boysofsummertribute.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-06-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-06": {
          "date": "2026-06-06",
          "updated_at": "2026-05-18T16:11:37.731184Z",
          "events": [
            {
              "event_id": "evt_83746bdd7172",
              "venue_id": "venue_california_theatre",
              "title": "Symphonic World Cup – Symphony San Jose",
              "event_time": "2026-06-06T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Symphony San Jose closes its season with a program of international composers timed to coincide with the FIFA 2026 World Cup, featuring works by Nielsen, Ginastera, and Shostakovich.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$35 to $115",
              "url": "https://www.symphonysanjose.org/concerts/symphonic-world-cup/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-03-16T20:03:20.999475Z",
                  "strategy_used": "LLM",
                  "source_id": "s_symphony_san_jose"
                },
                {
                  "source_name": "California Theatre",
                  "fetched_at": "2026-03-17T00:03:56.992029Z",
                  "strategy_used": "LLM",
                  "source_id": "v_california_theatre"
                },
                {
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-03-20T02:38:46.958570Z",
                  "strategy_used": "LLM",
                  "source_id": "s_san_jose_theaters"
                }
              ],
              "match_key": "venue_california_theatre|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c3a44c9d5f3",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Jonathan Richman",
              "event_time": "Saturday June 6 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; Rock, folk, proto-punk, garage rock",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "$30/$35",
              "url": "http://www.bottomofthehill.com/20260606.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_757fa137cbd2",
              "venue_id": "venue_ivy_room",
              "title": "Harold Ray and East Side Dynamite",
              "event_time": "Saturday Jun 6 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Harold Ray and East Side Dynamite deliver a soulful, high-octane performance alongside the bluesy sounds of This Train Don't Stop.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/177704",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_54f0b2b8fb4e",
              "venue_id": "venue_halcyon",
              "title": "HELSLOOT",
              "event_time": "06/6/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-06T22:00:00",
              "event_date": "2026-06-06",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Helsloot brings his melodic house and techno expertise to Halcyon for a night of lush soundscapes and driving beats. Known for his high-profile collaborations, he delivers a polished and emotive musical journey.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$14.06",
              "url": "https://link.dice.fm/Gaf71c694888?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-04-07T09:47:54.600518Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9579249cd89e",
              "venue_id": "venue_regency_ballroom",
              "title": "Paul Oakenfold & The Crystal Method",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Electronic music legends Paul Oakenfold and The Crystal Method team up for a night of trance and breakbeat classics. This performance celebrates the influential sounds of two pioneers in the global dance scene.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.axs.com/events/701234/paul-oakenfold-the-crystal-method-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-10T23:09:10.540565Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_71b8ff558bc0",
              "venue_id": "venue_curran_theater",
              "title": "Clue: The Movie",
              "event_time": "Sat, Jun 6, 2026",
              "venue_name": "Curran Theater",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Film - 40th Anniversary Screening",
              "event_types": [
                "film"
              ],
              "price_info": "Buy tickets for Clue: The Movie\nBuy tickets",
              "url": "https://us.atgtickets.com/events/clue/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theater",
                  "fetched_at": "2026-04-10T23:55:12.607576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_curran_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df1260a07d86",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-06",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-06",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8908a941598b",
              "venue_id": "venue_the_ritz",
              "title": "ALAIN WHYTE",
              "event_time": "2026-06-06T19:00:32-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-06T19:00:32",
              "event_date": "2026-06-06",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "ALAIN WHYTE\n\n \n\nSATURDAY JUNE 6, 2026\nDoors: 7PM // All Ages // $25 Advance –  $30 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance –  $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/alain-whyte-the-ritz-tickets/14789713",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ddbf1516a329",
              "venue_id": "venue_down_home_music",
              "title": "Chuckleberries",
              "event_time": "Jun 6 2026 2pm",
              "venue_name": "Down Home Music",
              "event_start": "2026-06-06T14:00:00",
              "event_date": "2026-06-06",
              "venue_address": "10341 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A live in-store performance by Chuckleberries, playing 'Breakfast Rock.' Part of the Down Home Music Foundation's series of free live performances.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free",
              "url": "http://www.foopee.com/by-band.0.html#Chuckleberries",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_down_home_music",
                  "source_name": "Down Home Music",
                  "fetched_at": "2026-04-13T11:39:18.865259Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_down_home_music|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db43fa6fcbd1",
              "venue_id": "venue_bill_graham_civic",
              "title": "LOUIS TOMLINSON",
              "event_time": "June 6, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "How Did We Get Here? World Tour - THE ACES",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/louis-tomlinson-250606",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bf4a610e6d76",
              "venue_id": "venue_cornerstone",
              "title": "Teen Suicide, Cloud Nothings, Pure Hex",
              "event_time": "Jun 6 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Teen Suicide, Cloud Nothings, Pure Hex",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Teen_Suicide",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e134fd80a354",
              "venue_id": "venue_mitchell_park_center",
              "title": "Emi Makabe Quartet",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "The Earthwise concert series presents a live performance by vocalist and shamisen player Emi Makabe at Mitchell Park. This outdoor event showcases her unique musical style that blends jazz with Japanese folk influences.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "From $20.00",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22990",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-04-26T00:54:45.596638Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-05-09T11:50:08.425984Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f7bffc6485ee",
              "venue_id": "venue_august_hall",
              "title": "Lil Ghost",
              "event_time": "Jun 6 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This event features a live musical performance at August Hall, showcasing the artist's signature sound in an intimate concert setting.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$60.90",
              "url": "http://www.foopee.com/by-band.2.html#Lil_Ghost",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-26T12:14:15.982295Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_917f88afad1c",
              "venue_id": "venue_the_lab",
              "title": "Weston Olencki & Ava Koohbor",
              "event_time": "Saturday, June 6, 2026 8:30 PM",
              "venue_name": "The Lab",
              "event_start": "2026-06-06T20:30:00",
              "event_date": "2026-06-06",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "Buy Tickets\nDoors 8pm / Show 8:30pm\n$17 adv / $20 door / free or discounted for members\nRequest your member DICE Code or become a member",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$17 adv / $20 door / free or discounted for members",
              "url": "https://www.thelab.org/projects/2026/6/6/weston-olencki-ava-koohbor",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-04-27T10:06:15.360036Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-27T10:08:04.792191Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b420c6319b97",
              "venue_id": "venue_castro_theater",
              "title": "HORSE MEAT DISCO",
              "event_time": "June 6, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Horse Meat Disco, CarrieOnDisco, dj M3",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Sold Out!",
              "url": "https://thecastro.com/events/horse-meat-disco-260606",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-01T01:30:49.854322Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_231b8a3baffb",
              "venue_id": "venue_brick_and_mortar",
              "title": "Racing Mount Pleasant",
              "event_time": "Jun 6 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "POPSCENE AND BRICK & MORTAR MUSIC HALL PRESENTS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30.67 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.2.html#Racing_Mount_Pleasant",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-05T10:32:36.611413Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_adaaca2e1674",
              "venue_id": "venue_the_freight__salvage",
              "title": "BOOKER T. JONES",
              "event_time": "2026-06-06T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Soul performance with premium seating available.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$49/$54 ($69/$74 premium)",
              "url": "https://secure.thefreight.org/15512/15513",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-06T05:55:19.571914Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c72e8c868d1",
              "venue_id": "venue_thee_stork_club",
              "title": "Hunx And His Punx",
              "event_time": "Jun 6 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Live show featuring Hunx and His Punx with supporting act Slippers.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 8pm",
              "url": "http://www.foopee.com/by-band.1.html#Hunx_And_His_Punx",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-06T12:23:55.448463Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-07T14:13:04.957748Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f5bd1640bb0",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-06",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_22dc62e1cff8",
              "venue_id": "venue_public_works",
              "title": "ZODIAK",
              "event_time": "06/06/2026 9pm-2am",
              "venue_name": "Public Works",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Sosyal presents a night of music and performance titled ZODIAK.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$31-43 | 21+",
              "url": "https://www.tixr.com/groups/publicsf/events/sosyal-presents-zodiak-184707",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-08T12:02:40.762036Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-09T12:30:53.673583Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_443ec3dfb06c",
              "venue_id": "venue_924_gilman",
              "title": "En-Vitro & Friends",
              "event_time": "Jun 6 6pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-06T18:00:00",
              "event_date": "2026-06-06",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Night two of Crunek Summer Fest. Lineup listed on the event page includes En-Vitro, Luna Ivy, Funds for Jimmy, Just let me go, Winnoa, and Seeyouatwork!. Doors open at 6:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.foopee.com/by-band.1.html#En_Vitro",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e2c780da659d",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-06",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8723b878d9a",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-06T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-06T14:00:00",
              "event_date": "2026-06-06",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-06",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a46382140c2d",
              "venue_id": "venue_924_gilman",
              "title": "Membership Meeting",
              "event_time": "Jun 6 4pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-06T16:00:00",
              "event_date": "2026-06-06",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Membership Meeting",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Membership_Meeting",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97555de008f5",
              "venue_id": "venue_the_bistro",
              "title": "Ensign Red, B.F.H., Sludgebucket",
              "event_time": "Jun 6 8pm",
              "venue_name": "The Bistro",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Live metal performance by Ensign Red.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.1.html#Ensign_Red",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-12T10:24:51.553618Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_bistro|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9feba83efb03",
              "venue_id": "venue_the_chapel",
              "title": "Jerry's Middle Finger",
              "event_time": "Jun 6 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Jerry's Middle Finger",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jerry_s_Middle_Finger",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b6ba895f373a",
              "venue_id": "venue_great_american_music_hall",
              "title": "LaRussell",
              "event_time": "Jun 6 2026 8pm/9pm",
              "venue_name": "Great American",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Misa James | with Misa James",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$35/$45/$50",
              "url": "http://www.foopee.com/by-band.1.html#LaRussell",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-11T13:41:08.553496Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-13T10:21:54.454351Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a23642c42768",
              "venue_id": "venue_kilowatt",
              "title": "Cuva Bimo",
              "event_time": "Jun 6 1pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-06T13:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Hotel Utah hosts an evening of indie and folk-inspired music featuring Cuva Bimo, A Murder For Crows, and Little Oil.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.0.html#Cuva_Bimo",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-05-17T14:45:06.031272Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_151cd5a6f078",
              "venue_id": "venue_the_warfield",
              "title": "Cosmic Kitten & Friends",
              "event_time": "Jun 6 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "A multi-band lineup featuring the alternative and indie rock sounds of Cosmic Kitten, Buzzed Lightbeer, Strange Men, and Fatale.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.0.html#Cosmic_Kitten",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4456db3e33a0",
              "venue_id": "venue_sailing_goat",
              "title": "Los Nadies",
              "event_time": "Sat, Jun 06",
              "venue_name": "Sailing Goat",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Experience the eclectic sounds of Los Nadies, a group that fuses Latin rhythms with rock and social consciousness.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/los-nadies-18",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f796202aa82d",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-06",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-06",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bd90e7d3353a",
              "venue_id": "venue_the_lost_church",
              "title": "The Setup",
              "event_time": "2026-06-06",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live performance event at The Lost Church San Francisco.",
              "event_types": [
                "community"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m9sR2AQ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7589118a9d7a",
              "venue_id": "venue_the_marsh_sf",
              "title": "Carole Klyce's Flight Risk",
              "event_time": "2026-06-06T17:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-06-06T17:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Written and performed by Carole Klyce, directed by Deb Fink.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/carole-klyce-flight-risk/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1147e9c667f4",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle's Takes All Kinds",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Closing night of the extended engagement of Dan Hoyle's journalistic-theater triumph.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7d0722ae9432",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Sat Jun 6 2026",
              "event_time": "2026-06-06T19:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/cc/comedy-oakland-at-elbo-room-4794459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3ac52f95a3b3",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. Matinee performance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4e1439306972",
              "venue_id": "venue_oakland_secret",
              "title": "Quartz: Queer Arts Market",
              "event_time": "2026-06-06",
              "venue_name": "Oakland Secret",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "577 5th St, Oakland, CA 94607",
              "description": "A monthly market featuring queer artists and makers. Oakland Secret is an artist-owned venue that is BIPOC and Queer friendly, promoting inclusivity and community for local creators.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Typically affordable or sliding scale",
              "url": "https://www.oaklandsecret.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_secret",
                  "source_name": "Oakland Secret",
                  "fetched_at": "2026-05-15T11:36:54.382509Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oakland_secret|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ca2a717abd1f",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Live Music: Local Blues, RnB & Soul",
              "event_time": "2026-06-06T21:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Weekly Saturday night live music series featuring the best of the Bay Area's blues and soul scene.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9401d8d2d4fc",
              "venue_id": "venue_mr_tipples",
              "title": "Tony Peebles Quintet",
              "event_time": "2026-06-06T20:30:00",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-06-06T20:30:00",
              "event_date": "2026-06-06",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Grammy-winning saxophonist Tony Peebles leads his quintet through a night of high-energy jazz and hard-bop exploration.",
              "event_types": [],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/event/tony-peebles-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-05-15T11:59:53.432594Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mr_tipples|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3104a2a2acdc",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-06T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-06T14:00:00",
              "event_date": "2026-06-06",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-06",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_53e1ef2eadfc",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-06",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_654182fb166a",
              "venue_id": "venue_joe_goode_annex",
              "title": "SOLO 2",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "The second night of SOLO 2, featuring five original contemporary dance works. Note: Contains mature themes.",
              "event_types": [
                "dance"
              ],
              "price_info": "Check website for pricing",
              "url": "https://joegoode.org/event/solo-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dd66e2a92f4d",
              "venue_id": "venue_joe_goode_annex",
              "title": "Movement for Humans",
              "event_time": "2026-06-06T10:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-06-06T10:00:00",
              "event_date": "2026-06-06",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A gentle, restorative movement class taught by Joe Goode or company members, held in-person at the Annex every first Saturday of the month.",
              "event_types": [
                "dance",
                "workshop",
                "community"
              ],
              "price_info": "Check website for pricing",
              "url": "https://joegoode.org/event/movement-for-humans/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a6518b30eb7d",
              "venue_id": "venue_alhambra_public_house",
              "title": "The Lucky Losers",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Winners of six Independent Blues Awards performing live blues and soul.",
              "event_types": [],
              "price_info": "Check website",
              "url": "https://www.sfgate.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_06a218e2130e",
              "venue_id": "venue_montgomery_theater",
              "title": "The ABBA Concert Experience",
              "event_time": "2026-06-06T19:30:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "A family-friendly tribute concert presented by West Coast Performing Arts Concerts, featuring Summer Night City performing ABBA hits with costumes and staging inspired by the original 1970s shows.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/abba-concert-experience-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9e5a6695f1d6",
              "venue_id": "venue_cry_baby",
              "title": "Lil Blood + J. Stalin",
              "event_time": "2026-06-06T18:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-06-06T18:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Live performance featuring Lil Blood and J. Stalin at Crybaby.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/lil-blood-j-stalin-live-in-oakland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8b9c863c1158",
              "venue_id": "venue_pacific_film_archive",
              "title": "Elevator to the Gallows",
              "event_time": "2026-06-06T18:30:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-06T18:30:00",
              "event_date": "2026-06-06",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Louis Malle's debut film featuring a score by Miles Davis, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/elevator-gallows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_da40fc2965e9",
              "venue_id": "venue_first_church_berkeley",
              "title": "Chanticleer & Kaleidoscope Ensemble",
              "event_time": "2026-06-06T19:30:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Berkeley Festival & Exhibition opening concert. Renaissance and Baroque gems meet spirituals and modern reflections in a collaboration celebrating vocal brilliance and diversity.",
              "event_types": [
                "live_music",
                "classical",
                "festival"
              ],
              "price_info": "Pay-What-You-Can",
              "url": "https://www.berkeleyfestival.org/calendar/2026/6/6/chanticleer-kaleidoscope-vocal-ensemble",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_192c7e6778c5",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Short Show",
              "event_time": "2026-06-06T18:45:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-06T18:45:00",
              "event_date": "2026-06-06",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A light summertime delight that bridges the time between happy hour and evening plans with fast-paced improv.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-short-show-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_65059b186579",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: Warp Speed",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised production inspired by the legendary Star Trek TV show, exploring new worlds and bold new characters.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-warp-speed-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a2cdbc1e4b0e",
              "venue_id": "venue_the_setup",
              "title": "The Setup Comedy at The Lost Church",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "The Setup",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "The Setup presents an underground speakeasy-style stand-up comedy show at The Lost Church in North Beach, one of San Francisco's most atmospheric venues.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$17.85 - $30.00",
              "url": "https://thelostchurch.org/san-francisco/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-05-16T01:44:41.479756Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_setup|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c7a6f9ca34e9",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Ryan Reiss",
              "event_time": "2026-06-06T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Ryan Reiss, featuring Nancy Lee and Lester Ransom.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135779",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-06",
              "run_id": "run_4dc25be5c27c",
              "run_label": "Ryan Reiss, Jun 6 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c041e3795c59",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-06-06T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_79369a8e7230",
              "venue_id": "venue_meyhouse",
              "title": "Charito Sings Shirley Bassey",
              "event_time": "2026-06-06T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-06-06T17:00:00",
              "event_date": "2026-06-06",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Internationally acclaimed vocalist Charito pays tribute to Shirley Bassey in an evening of jazz and timeless song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/charito-sings-shirley-bassey-sat-6-6-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_755eecf466a9",
              "venue_id": "venue_meyhouse",
              "title": "Charito Sings Shirley Bassey",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Internationally acclaimed vocalist Charito pays tribute to Shirley Bassey in an evening of jazz and timeless song.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/charito-sings-shirley-bassey-sat-6-6-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6527cd0b939b",
              "venue_id": "venue_the_starry_plough",
              "title": "Sour Widows, Still Ruins, Dalmatia",
              "event_time": "2026-06-06T19:00:00",
              "venue_name": "The Starry Plough",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "CCP presents a live showcase featuring performances by Sour Widows, Still Ruins, and Dalmatia at The Starry Plough. This concert brings together a diverse lineup of contemporary artists for an evening of live music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.05",
              "url": "https://thestarryplough.com/event/ccp-presents-sour-widows-w-still-ruins-and-dalmatia/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-16T10:44:36.419036Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34b07a6041f3",
              "venue_id": "venue_the_cats",
              "title": "Benito Rose",
              "event_time": "2026-06-06",
              "venue_name": "The Cats",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "7:00 PM – 10:00 PM\nBenito Rose",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/benito-rose-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96cc670ec53f",
              "venue_id": "venue_the_back_room",
              "title": "The Charles Wheal Band",
              "event_time": "Sat, Jun 6 2026, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/the-charles-wheal-band-june2026?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2fa7b89e5053",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-06-06T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Saturday night music and drinks at one of Polk Street's favorite neighborhood watering holes.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6fd9cf0ba425",
              "venue_id": "venue_the_midway",
              "title": "SF Queer Arts & Music Festival",
              "event_time": "2026-06-06",
              "venue_name": "The Midway",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "620 JONES ∙ OUTDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/tokimonsta-uniiqu3-sf-queer-arts-music-festival/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df9b32b992db",
              "venue_id": "venue_the_midway",
              "title": "Botas Y Rave Block Party",
              "event_time": "2026-06-06",
              "venue_name": "The Midway",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "INDOORS & OUTDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/deorro-presents-botas-y-rave-block-party-after-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9b10595c382c",
              "venue_id": "venue_the_midway",
              "title": "InntRaw",
              "event_time": "2026-06-06",
              "venue_name": "The Midway",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "GODS ∙ MONSTERS ∙ INDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/inntraw/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a21daefd9fa",
              "venue_id": "venue_the_midway",
              "title": "Spencer Brown",
              "event_time": "2026-06-06",
              "venue_name": "The Midway",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "888 GARAGE ∙ INDOORS ∙ 21+",
              "event_types": [],
              "price_info": "",
              "url": "https://themidwaysf.com/event/spencer-brown/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_220dafa14273",
              "venue_id": "venue_underground_sf",
              "title": "Room 303",
              "event_time": "2026-06-06T21:00:00",
              "venue_name": "Underground SF",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "A night of techno and hard grooves focused on high-energy dance floor movement.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for details",
              "url": "https://undergroundsf.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-05-17T14:44:11.616070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_underground_sf|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_888f06b05a90",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-06",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-06",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d5539ed91afa",
              "venue_id": "venue_rootstock_arts",
              "title": "Sougata Roy Chowdhury",
              "event_time": "2026-06-06T10:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-06T10:00:00",
              "event_date": "2026-06-06",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Start the day with the meditative sounds of a morning raga performed by sarod player Sougata Roy Chowdhury. This concert highlights the specific melodic structures intended for the early hours of the day.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06806aa14d43",
              "venue_id": "venue_tommy_ts",
              "title": "RIP MICHAELS",
              "event_time": "2026-06-06 2026-06-06",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-06",
              "run_id": "run_4915f718c261",
              "run_label": "RIP MICHAELS, Jun 5 – Jun 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa8e38b9e98c",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-06T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-06",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bdf018073d35",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-06T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-06T14:00:00",
              "event_date": "2026-06-06",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-06",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_654518d9bc00",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Saturday night jazz and soul at the Royal Cuckoo with Chris Siebert on the Hammond organ.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0a1257165a39",
              "venue_id": "venue_the_sound_room",
              "title": "Marina Crouse: My Favorite Things",
              "event_time": "Saturday, June 6, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Marina Crouse is one of the most notable talents on the San Francisco/Bay Area music scene. Her early classical training is reflected in her powerful and versatile vocal style that creates a genuine excitement in every performance. Blessed with an incredibly expressive voice early in life, Marina Crouse applies her distinctive talents to a wide range of material while delivering an emotional authenticity that consistently cuts deep.\n\nMarina is equally comfortable with the blues of Etta James, the soulful renderings of jazz by Ernestine Anderson & the music of her youth, the torch songs and boleros of Mexican canciones. Rather than present just one, she is presenting all of her favorite things!\n\nTicket at Marina Crouse: My Favorite Things",
              "event_types": [
                "live_music",
                "jazz",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/marina-crouse-my-favorite-things",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3adc6d51725f",
              "venue_id": "venue_madrone_art_bar",
              "title": "Pop Life",
              "event_time": "June 6",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Have fun with your friends at POP LIFE - the music video party. Every first Saturday of the month! Disco, Soul, Top 40 Pop Hits, Party Anthems, Hip-Hop, One Hit Wonders, Guilty Pleasures, and more $10 at the door / 9pm-1:45am / 21+ / no dress code, dress how ya like!",
              "event_types": [
                "dj_party",
                "film"
              ],
              "price_info": "$10 at the door",
              "url": "https://madroneartbar.com/event/the-pr-mj-experience-2026-02-07/2026-06-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-05-18T10:19:46.972339Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6c20c9c0e036",
              "venue_id": "venue_ccrma",
              "title": "2026: Saturday Night SLOrk!",
              "event_time": "Sat, 06/06/2026 - 7:30pm - 9:00pm",
              "venue_name": "CCRMA",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "660 Lomita Dr, Stanford, CA 94305",
              "description": "Date:  Sat, 06/06/2026 - 7:30pm - 9:00pm",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "FREE",
              "url": "https://ccrma.stanford.edu/events/2026-saturday-night-slork",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ccrma",
                  "source_name": "CCRMA",
                  "fetched_at": "2026-05-18T10:20:38.244575Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ccrma|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_68624a73801b",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Josh Jones Latin Quintet",
              "event_time": "JUN 06, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "The Josh Jones Latin Quintet performs a vibrant set that blends sophisticated jazz harmonies with high-energy Latin percussion and rhythms.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://concerts.jazzschool.org/josh-jones-latin-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_be39246b8e9c",
              "venue_id": "venue_the_independent",
              "title": "EARLYBIRDS CLUB",
              "event_time": "6.6 6:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-06T18:00:00",
              "event_date": "2026-06-06",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/earlybirds-club-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e26e9be22ed4",
              "venue_id": "venue_black_cat",
              "title": "Miles and Coltrane Centennial",
              "event_time": "06/06/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nFrank will celebrate the anniversary of his #1 charting album, Love Supreme Collective, while honoring the 100th birthdays of John Coltrane and Miles Davis with classics from both legends. He’ll also perform tracks from his new #1 Billboard charting album, Set Me Free, alongside beloved tunes he’s recorded with Tony Bennett and a few surprises.\n\nA constant presence on stages across the USA, Europe, and Asia, Frank frequently performs at New York's iconic Birdland Jazz Club. He has collaborated with artists like The Smashing Pumpkins, Beyoncé, and John Legend. His documentary, Sugar Jazz, directed by Colin Donner, will premiere at the Tokyo Liftoff Film Festival.\n\nFrank's recent works, including “Tokyo #9” with Jimmy Chamberlin, debuted at #1 on the Billboard Traditional Jazz Charts, while Love Supreme Collective topped the iTunes Jazz Charts. He’s also known for his collaborations with prominent artists and countless media features, including The New York Times and NPR.\n\nFrank has won numerous accolades, including an IMA award and induction into the Fox Valley Arts Hall of Fame. Despite overcoming significant adversity after a serious accident, he remains one of the most in-demand musicians today, committed to giving back through various charitable efforts.\n\nBand Lineup:\nTBD",
              "event_types": [],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/11375/?date=2026-06-06",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55885b93e938",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Paula West",
              "event_time": "2026-06-06T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "A true treasure of the Bay Area jazz scene, vocalist Paula West is celebrated for her rich contralto voice and deeply expressive interpretations of song.Her repertoire moves effortlessly from the Great American Songbook to inspired reinventions of music by artists like Bob Dylan, David Bowie, Lou Reed, and Johnny Cash, always delivered with nuance, emotional depth, and impeccable phrasing.West has performed in renowned venues across San Francisco and New York, including residencies at the Oak Room of the Algonquin Hotel and appearances at Jazz at Lincoln Center, SFJAZZ, Feinstein’s at the Nikko, and Yoshi’s. Her performances at the Algonquin earned three consecutive New York Magazine Nightlife Awards for Outstanding Female Jazz Vocalist.Praised by The New York Times for a voice that has “ripened into a driving expressive force,” Paula West continues to captivate audiences with performances that are both timeless and strikingly personal.Join us at Keys Jazz Bistro for an unforgettable evening with one of the great vocal stylists in jazz",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/paula-west-12/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ec86786cc59",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, June 6, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-06T22:30:00",
              "event_date": "2026-06-06",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keeping folks up past 10 pm in SF is no easy feat, but Key’s owner Simon Rowe has been showcasing the best of the Bay Area’s organ trios in his late night Saturday sets.",
              "event_types": [],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-51/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c19373e8b459",
              "venue_id": "venue_odc_theater",
              "title": "The Unfinished Work",
              "event_time": "6/6/2026 4:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-06T16:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003EmMP2A0",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f82c0be05868",
              "venue_id": "venue_odc_theater",
              "title": "The Unfinished Work",
              "event_time": "6/6/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003EmMP2A0",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8531c633b9b7",
              "venue_id": "venue_brava_theater",
              "title": "Scissor Cinema",
              "event_time": "2026-06-06",
              "venue_name": "Brava Theater",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Brava Presents is proud to announce our very first edition of ‘Scissor Cinema: A Double Feature’! Please join us in celebrating the beginning of Pride Month on June 5th and come back June 6th where Brava will screen two iconic Sapphic films.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/scissorcinema-wmdym",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-05-18T11:42:14.495739Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-06-06",
              "run_id": "run_eae8aa0cc77a",
              "run_label": "Scissor Cinema: The Watermelon Woman and Saving Face, Jun 5 – Jun 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c64205bc2d0",
              "venue_id": "venue_winters",
              "title": "Post Pacifica Pride Parade Party!",
              "event_time": "2026-06-06T12:00:00",
              "venue_name": "Winters",
              "event_start": "2026-06-06T12:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "dj_party",
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-05-18T11:45:11.999262Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_winters|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_051ff2dccb81",
              "venue_id": "venue_omca",
              "title": "Gallery Chats",
              "event_time": "2026-06-06",
              "venue_name": "OMCA",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Join us for Gallery Chats, an opportunity to chat with and ask questions of our enthusiastic and knowledgeable OMCA Facilitators.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "Admission ticket required",
              "url": "https://museumca.org/event/gallery-chats-at-omca-25/2026-06-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a28a464c1d0c",
              "venue_id": "venue_presidio_theater",
              "title": "Ms. Lisa Fischer & Grand Baton",
              "event_time": "2026-06-06",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Renowned vocalist Lisa Fischer joins forces with the band Grand Baton for an evening of soulful and inventive musical arrangements.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/ms-lisa-fischer-grand-baton",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-06",
              "run_id": "run_68f11762e2a1",
              "run_label": "Ms. Lisa Fischer & Grand Baton, Jun 5 – Jun 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc718f87652b",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Back to the Future – Broadway San Jose",
              "event_time": "2026-06-06",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Broadway musical adaptation of the beloved film, featuring original music by Alan Silvestri and Glen Ballard alongside songs from the movie.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/back-to-the-future-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-06-06",
              "run_id": "run_0b3776082a64",
              "run_label": "Back to the Future – Broadway San Jose, Jun 2 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b9e96fe9c4f3",
              "venue_id": "venue_historic_bal_theatre",
              "title": "MATT STONE THE ULTIMATE ELVIS CONCERT EXPERIENCE",
              "event_time": "Saturday, Jun 6 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Matt Stone brings the King of Rock 'n' Roll to life in this immersive tribute concert celebrating the career of Elvis Presley.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/matt-stone-the-ultimate-elvis-concert-experience/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f4bbe590416a",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Elim Chan Conducts La Mer",
              "event_time": "6/6/2026 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "BUY NOW",
              "url": "https://seats.sfsymphony.org/single/23813",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-18T13:00:17.576242Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e318d8865ffb",
              "venue_id": "venue_little_hill_lounge",
              "title": "Andrés Miguel Cervantes",
              "event_time": "2026-06-06T19:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-06T19:00:00",
              "event_date": "2026-06-06",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A special live performance featuring Andrés Miguel Cervantes, Will Sprott, and Ed Masuga.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://andrescanta.com/event/andres-miguel-cervantes-with-will-sprott-and-ed-masuga-at-little-hill/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ceb471f4b430",
              "venue_id": "venue_cornerstone",
              "title": "East Bay Eternal: Doomsday",
              "event_time": "2026-06-06T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-06T03:00:00",
              "event_date": "2026-06-06",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "CCP Presents: East Bay Eternal - Doomsday with Iron Front, Four Winds Away, and Losing Streak Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/ccp-presents-east-bay-eternal-doomsday-with-iron-front-four-winds-away-and-losing-streak-185031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_73cbbb4078eb",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-06T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-06",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f393ae32935",
              "venue_id": "venue_boom_boom_room",
              "title": "Pabsy & Airplug: Disco Funk Spectacular",
              "event_time": "Sat, Jun 06 | Doors: 8 pm // Show: 9:30 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-06-06T21:30:00",
              "event_date": "2026-06-06",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Pabsy and Airplug team up for a spectacular night of disco and funk featuring an all-star cast of musicians.",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "dj_party"
              ],
              "price_info": "",
              "url": "https://boomboomroom.com/event/pabsy-allstar-disco-funk-spectacular-w-airplug/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-05-18T13:26:10.556789Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88713abcecea",
              "venue_id": "venue_ashkenaz",
              "title": "AfroFest",
              "event_time": "06/06/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-06-06T19:30:00",
              "event_date": "2026-06-06",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Just Announced!",
              "event_types": [
                "festival",
                "latin_world"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/184201",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01e93a2425d8",
              "venue_id": "venue_4_star_theater",
              "title": "Frequency Film Festival",
              "event_time": "Jun 06, 2026 6:00pm – 11:00pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-06T18:00:00",
              "event_date": "2026-06-06",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "HydeFM presents a curated selection of films for the Frequency Film Festival. The event highlights unique cinematic voices and may include special guest appearances.",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/frequency-film-festival-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_240ccf1eab0b",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-06-06",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-06",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_37d0b0a96036",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-06-06",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-06",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7e502f904ca1",
              "venue_id": "venue_yerba_buena_center",
              "title": "Teen Death Drive",
              "event_time": "Saturday, June 6, 2026, 1 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-06T13:00:00",
              "event_date": "2026-06-06",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "See “Totally Fucked Up” (1993) and Jane Schoenbrun’s “We’re All Going to the World’s Fair” (2021)",
              "event_types": [
                "film"
              ],
              "price_info": "$20*",
              "url": "https://ybca.org/event/new-queer-cinema-x-trans-new-weird-teen-death-drive/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_928f74028016",
              "venue_id": "venue_el_rio",
              "title": "Get Busy",
              "event_time": "2026-06-06T21:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "Every first Saturday dance party featuring DJs Baysik, Cold SF, and ZMO spinning house and hip-hop.",
              "event_types": [],
              "price_info": "$5",
              "url": "https://ra.co/events/san-francisco-oakland/el-rio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-06-06",
              "run_id": "run_29004e14c14f",
              "run_label": "Get Busy, Jun 6 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ddf67563283f",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 06, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-06-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b49363c23ea",
              "venue_id": "venue_belle_cora",
              "title": "HIPSTERIA with “Tender” Tim",
              "event_time": "2026-06-06T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-06-06T18:00:00",
              "event_date": "2026-06-06",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Live jazz performance by HIPSTERIA featuring “Tender” Tim. Enjoy cool arrangements of modern pop, rock, blues, and R&B with no cover charge in a cozy outdoor setting.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://hipsteriac.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_96062b056c1b",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-06",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-06",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a31652949e0a",
              "venue_id": "venue_club_fox",
              "title": "Marcos Reyes & Friends",
              "event_time": "Saturday June 6th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Saturday June 6thLatin Rock Inc. Legacy PresentsMARCOS REYES & FRIENDSDoors 7PM / Show 8PM",
              "event_types": [
                "live_music",
                "rock",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://latinrockinclegacy.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02ee43488692",
              "venue_id": "venue_elis_mile_high",
              "title": "The Fin + supporting acts TBA",
              "event_time": "Sat, Jun 06, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-06-06",
              "event_date": "2026-06-06",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "The Fin headlines this live music showcase with additional supporting acts to be announced.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/the-fin-supporting-acts-tba",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_da80d8f07360",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-06T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-06T18:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e7ffcf56647",
              "venue_id": "venue_the_fireside",
              "title": "Saturday Night Music/DJs",
              "event_time": "2026-06-06T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-06T18:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d2a62b09b1e",
              "venue_id": "venue_de_young",
              "title": "Lowrider Culture Celebration",
              "event_time": "2026-06-06 noon–4 pm",
              "venue_name": "De Young",
              "event_start": "2026-06-06T16:00:00",
              "event_date": "2026-06-06",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "This community event celebrates the artistic and cultural significance of lowriders through displays and related programming.",
              "event_types": [
                "community",
                "festival"
              ],
              "price_info": "de Young, Free Saturdays, Free Saturdays",
              "url": "https://www.famsf.org/events/lowrider-culture-celebration",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f9eb93e4473e",
              "venue_id": "venue_de_young",
              "title": "Music by DJ Brown Angel",
              "event_time": "2026-06-06 1–4 pm",
              "venue_name": "De Young",
              "event_start": "2026-06-06T16:00:00",
              "event_date": "2026-06-06",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "DJ Brown Angel performs a live set at the museum, providing a musical atmosphere for visitors to enjoy while exploring the galleries.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "de Young, Performance, Performance",
              "url": "https://www.famsf.org/events/music-dj-brown-angel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f40d98eaea55",
              "venue_id": "venue_the_riptide",
              "title": "Skankin': Reggae Wednesdays",
              "event_time": "2026-06-06T20:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-06T20:00:00",
              "event_date": "2026-06-06",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5c99115c4956",
              "venue_id": "venue_madarae",
              "title": "Night Shift",
              "event_time": "06/06/2026 9pm",
              "venue_name": "Madarae",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "tech house, bass house, dubstep, bass music, trap, EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15-25+ | 21+",
              "url": "https://posh.vip/f/69866?t=19hz",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8deb8398fe90",
              "venue_id": "venue_dna_lounge",
              "title": "Creeds",
              "event_time": "06/06/2026 9pm-2:30am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-06T02:30:00",
              "event_date": "2026-06-06",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "hardcore, frenchcore",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15-20 pre / $25 | 21+",
              "url": "https://www.dnalounge.com/calendar/2026/06-06.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3489333c60f1",
              "venue_id": "venue_cat_club",
              "title": "Bootie Mashup",
              "event_time": "06/06/2026 9pm-2am",
              "venue_name": "Cat Club",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "pop, mashups, EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 pre | 21+",
              "url": "https://www.eventbrite.com/e/mashups-of-the-universe-bootie-mashup-tickets-1988058676017",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fea8c25aec7b",
              "venue_id": "venue_f8",
              "title": "Brto: Mayhem",
              "event_time": "06/06/2026 9pm-3am",
              "venue_name": "F8",
              "event_start": "2026-06-06T21:00:00",
              "event_date": "2026-06-06",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "hard bounce, hardstyle",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5.50 pre | 21+",
              "url": "https://ra.co/events/2431281",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f9844a2a2ed",
              "venue_id": "venue_dna_lounge",
              "title": "After Life",
              "event_time": "06/06/2026 9:30pm-2am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-06T21:30:00",
              "event_date": "2026-06-06",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "dark techno, industrial bass, darkwave, witch house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10-15 pre | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/06-06d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e3c772ff0ae1",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-06-06T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-06-06T19:45:00",
              "event_date": "2026-06-06",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sat-jun-06-745pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b5b309ab9480",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy: Stand-up Comedy",
              "event_time": "2026-06-06T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-06-06T21:45:00",
              "event_date": "2026-06-06",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "A healthy dose of live stand-up comedy featuring five to six hand-picked, experienced comedians and occasional guest drop-ins. No drink minimum. 18+ only.",
              "event_types": [],
              "price_info": "$20.00",
              "url": "https://www.cttcomedy.com/shows/sat-jun-06-945pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-05-18T16:11:36.837842Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-06-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-06-07": {
          "date": "2026-06-07",
          "updated_at": "2026-05-18T16:12:44.040011Z",
          "events": [
            {
              "event_id": "evt_3894e35f1c5c",
              "venue_id": "venue_california_theatre",
              "title": "Symphonic World Cup – Symphony San Jose",
              "event_time": "2026-06-07T14:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-06-07T14:30:00",
              "event_date": "2026-06-07",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "A program of international greats including Carl Nielsen's Helios Overture, Ginastera's Harp Concerto featuring Katherine Siochi, and Shostakovich's Symphony No. 5.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$35 to $115",
              "url": "https://www.symphonysanjose.org/concerts/symphonic-world-cup/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-03-16T20:03:20.999475Z",
                  "strategy_used": "LLM",
                  "source_id": "s_symphony_san_jose"
                },
                {
                  "source_name": "California Theatre",
                  "fetched_at": "2026-03-17T00:03:56.992029Z",
                  "strategy_used": "LLM",
                  "source_id": "v_california_theatre"
                }
              ],
              "match_key": "venue_california_theatre|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a35a6af520f",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Back to the Future: The Musical",
              "event_time": "2026-06-07 June 6 @ 2:00 PM",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-06-07T14:00:00",
              "event_date": "2026-06-07",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "The Oakland Civic Orchestra presents its season finale featuring Gerald Finzi's 'The Fall of the Leaf - Elegy for Orchestra,' Charles Villiers Stanford's 'Irish Rhapsody No. 1,' and Samuel Coleridge-Taylor's 'Symphony in A Minor.' Conducted by Music Director Martha Stoddard.",
              "event_types": [
                "theater"
              ],
              "price_info": "$38.00 - $150.00+",
              "url": "https://sanjosetheaters.org/event/back-to-the-future-the-musical/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-03-22T20:32:01.508551Z",
                  "strategy_used": "LLM",
                  "source_id": "v_center_for_the_performing_arts"
                },
                {
                  "source_id": "s_oakland_civic_orchestra",
                  "source_name": "Oakland Civic Orchestra",
                  "fetched_at": "2026-04-07T07:45:47.520304Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-06-07",
              "run_id": "run_6e481fa30ca2",
              "run_label": "Back to the Future: The Musical, Jun 2 – Jun 7",
              "showtime_index": 3,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4fe83671203c",
              "venue_id": "venue_the_independent",
              "title": "Agent Orange, Drowns",
              "event_time": "6.7 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-07T20:00:00",
              "event_date": "2026-06-07",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "The legendary punk pioneers deliver a high-energy performance blending surf rock influences with classic Southern California punk.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/agent-orange/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_037b78af986a",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Jonathan Richman",
              "event_time": "Sunday June 7 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-07T20:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 7 Jonathan Richman a/a $30/$35 8pm/9pm (sold out)",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "$30/$35",
              "url": "http://www.bottomofthehill.com/20260607.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0a5f9da403e",
              "venue_id": "venue_ivy_room",
              "title": "The Montvales & Creekbed Carter Hogan",
              "event_time": "Sunday Jun 7 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-07T18:00:00",
              "event_date": "2026-06-07",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Celebrate a night of new music with a double album release show featuring folk and Americana artists The Montvales and Creekbed Carter Hogan.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/176092",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8d6ba7c37a5",
              "venue_id": "venue_4_star_theater",
              "title": "Seshen & AroMa",
              "event_time": "Jun 7, 2026 7:30 PM – 10:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The Seshen and AroMa headline 'A Total Accord Night at the Theater,' a collaborative event showcasing a variety of musical acts. This performance brings a diverse range of electronic and soul-influenced sounds to the 4 Star Theater.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-total-accord-the-seshen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b322a29f6863",
              "venue_id": "venue_castro_theater",
              "title": "I’M WITH HER",
              "event_time": "June 7, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Sing Me Alive Tour 2026 - Jordan Tice and Joseph Terrell",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/im-with-her-260607",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cc0b8464741d",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-07",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-04-30T21:18:45.581847Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-07",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c2fa1b088c9",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-07",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-07",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c293eedc5f4",
              "venue_id": "venue_down_home_music",
              "title": "San Kazakgascar",
              "event_time": "Jun 7 2026 2pm",
              "venue_name": "Down Home Music",
              "event_start": "2026-06-07T14:00:00",
              "event_date": "2026-06-07",
              "venue_address": "10341 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Art Punk performance. This Sacramento-based band features a sound built on an art-punk, surf, drone, and psych foundation accented with Central Asian and Eastern European flavors.",
              "event_types": [
                "live_music"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.3.html#San_Kazakgascar",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_down_home_music",
                  "source_name": "Down Home Music",
                  "fetched_at": "2026-04-13T11:39:18.865259Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_down_home_music|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8d7d03abdc8",
              "venue_id": "venue_cornerstone",
              "title": "Sewerperson",
              "event_time": "Jun 7 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $28.29 7pm/8pm",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$28.29",
              "url": "http://www.foopee.com/by-band.3.html#Sewerperson",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ff9b493371b",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "ROVA + GONGWOMAN",
              "event_time": "June 7 2026  7:15pm",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-06-07T19:15:00",
              "event_date": "2026-06-07",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "Rova Saxophone Quartet presents two sets of original compositions: First, commissioned works and recent Rova compositions for the quartet, including Music for Mouths by MIYA MASAOKA, The Knot Gallery by JOHN BUTCHER, I, Norton by Gino Robair and pieces by quartet members. In the second half, Rova joins by Karen Stackpole (Gongwoman) for a set of Rova works adapted for saxophone quartet plus gongs and percussion. First streamed live in March of 2022, the works are presented to a live audience for the first time. More...",
              "event_types": [
                "experimental",
                "live_music"
              ],
              "price_info": "$20 click here to purchase advance tickets online",
              "url": "https://www.sfsound.info/#june-7-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_west_oakland_sound_series",
                  "source_name": "West Oakland Sound Series",
                  "fetched_at": "2026-05-01T14:17:59.406097Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_dresher_ensemble_studio",
                  "source_name": "Dresher Ensemble Studio",
                  "fetched_at": "2026-05-06T06:39:19.743417Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_05049c79790b",
              "venue_id": "venue_palo_alto_art_center",
              "title": "Remy LeBoeuf Quintet",
              "event_time": "2026-06-07T14:00:00",
              "venue_name": "Palo Alto Art Center",
              "event_start": "2026-06-07T14:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1313 Newell Road, Palo Alto, CA 94303",
              "description": "Earthwise welcomes Le Boeuf jazz groupOriginally from Santa Cruz, California, identical twin brothers Remy Le Boeuf & Pascal Le Boeuf—saxophone & piano respectively—moved to New York in 2004 where they established their prominent musical voices as jazz performers and composers and founded Le Boeuf Brothers. They have won GRAMMYs (Pascal in 2025, Remy in 2026) for their innovative compositional projects, which span as broadly stylistically as they do collaboratively.Their latest project, HUSH (2023), crafts an atmosphere of intimacy and solace with its innovative compositions and experimental recording techniques. More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23030",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-05-04T10:25:42.647102Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-11T10:10:30.072303Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_palo_alto_art_center|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_03abfc458414",
              "venue_id": "venue_the_freight__salvage",
              "title": "BOOKER T. JONES",
              "event_time": "2026-06-07T18:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-07T18:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Second soul performance date with premium seating available.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$49/$54 ($69/$74 premium)",
              "url": "https://secure.thefreight.org/15512/15514",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-06T05:55:19.571914Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_da0acd2d21f8",
              "venue_id": "venue_valley_center",
              "title": "Oakland Civic Orchestra: Spring Mix",
              "event_time": "2026-06-07T16:00:00",
              "venue_name": "Valley Center for Performing Arts",
              "event_start": "2026-06-07T16:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3500 Mountain Blvd, Oakland, CA 94602",
              "description": "The 34th season finale of the Oakland Civic Orchestra features a colorful array of orchestral music from three generations of composers from the Anglo-Celtic Isles. The program includes Gerald Finzi's 'The Fall of the Leaf,' Charles Villiers Stanford's 'Irish Rhapsody No. 1,' and Samuel Coleridge-Taylor's 'Symphony in A Minor.'",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$15 (Early Bird through May 15), $25 (General Admission)",
              "url": "https://www.eventbrite.com/e/oakland-civic-orchestra-presents-a-spring-mix-tradition-innovation-tickets-189900112233",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_oakland_civic_orchestra",
                  "source_name": "Oakland Civic Orchestra",
                  "fetched_at": "2026-05-06T06:49:48.100809Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-05-15T22:03:38.301037Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_valley_center|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_90efa52e99cc",
              "venue_id": "venue_rickshaw_stop",
              "title": "WHITE HILLS",
              "event_time": "Sun Jun 7 8:45PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-07T20:45:00",
              "event_date": "2026-06-07",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Psychedelic space-rock band White Hills performs a loud and immersive set with support from the band Heat.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15.00-$18.00",
              "url": "https://wl.seetickets.us/event/white-hills/689888?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-06T10:36:39.838308Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-06T12:21:21.666524Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_37f74053b650",
              "venue_id": "venue_brick_and_mortar",
              "title": "Leven Kali",
              "event_time": "Jun 7 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Leven Kali visits Brick and Mortar as part of his LK99 Tour, delivering a soulful R&B performance. The show features tracks from his latest projects in an up-close concert setting.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$35.72+ (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.2.html#Leven_Kali",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-07T11:22:45.512481Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ccfa221b1926",
              "venue_id": "venue_924_gilman",
              "title": "CSF 4: Night 3",
              "event_time": "Jun 7 6pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-07T18:00:00",
              "event_date": "2026-06-07",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Night three of Crunek Summer Fest featuring The Hayds, OSIE, Hazy Portraits, The Treedome, and Dog House; all ages. Doors open at 6:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.foopee.com/by-band.1.html#Hayds",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64d667979b1a",
              "venue_id": "venue_dna_lounge",
              "title": "WRAITH + WITCHTRAP",
              "event_time": "Jun 7 2026 7pm/7:30pm",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "With The Black Moriah, Burial Oath. All Ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22/$32",
              "url": "http://www.foopee.com/by-band.3.html#Wraith",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-09T11:57:52.448742Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-11T12:21:42.465906Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db080b8aa5b0",
              "venue_id": "venue_thee_stork_club",
              "title": "Zoe Fitzgerald Carter",
              "event_time": "Jun 7 2026 6pm/7pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-07T18:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Zoe Fitzgerald Carter, Deborah Crooks, Tori Roze And The Hot Mess",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$20 6pm/7pm",
              "url": "http://www.foopee.com/by-band.3.html#Zoe_Fitzgerald_Carter",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-09T12:01:35.616367Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-11T12:19:42.003418Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_date_3",
                  "source_name": "Foopee Date 3",
                  "fetched_at": "2026-05-13T12:33:48.844706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b68532ec3c70",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-07T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-07T20:00:00",
              "event_date": "2026-06-07",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-07",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8849e40f7809",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-07T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-07T14:00:00",
              "event_date": "2026-06-07",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-07",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a116264b5625",
              "venue_id": "venue_sailing_goat",
              "title": "Los Bahianatos",
              "event_time": "Sun, Jun 07",
              "venue_name": "Sailing Goat",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Los Bahianatos bring the festive spirit of Colombian vallenato and cumbia music to the venue for an afternoon of dancing.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/los-bahianatos-7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_04ed630544b9",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-07",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-07",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e4b85bcfd9b",
              "venue_id": "venue_the_lost_church",
              "title": "The Oldest Profession",
              "event_time": "2026-06-07",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Theatrical performance written and performed by Kaytlin Bailey at The Lost Church San Francisco.",
              "event_types": [
                "theater"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001m7AB2AY",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fa80c0d32bef",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity - Audio-Described Performance",
              "event_time": "2026-06-07T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-06-07T14:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "A performance featuring live audio description for blind or low-vision guests. A haptic tour begins at 1:00 PM.",
              "event_types": [],
              "price_info": "$40 - $80",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6753fcff3aa1",
              "venue_id": "venue_berkeley_rep",
              "title": "The Lunchbox (Masks Required)",
              "event_time": "2026-06-07T19:00:00",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "A world premiere musical adaptation of Ritesh Batra’s film. Masks are required for this matinee performance.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets $25–$135",
              "url": "https://www.berkeleyrep.org/shows/the-lunchbox/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-05-15T11:34:26.345975Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a2d6eaa8a216",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Sunday BBQ Breakfast",
              "event_time": "2026-06-07T09:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-07T09:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "A special weekend tradition featuring brisket hash, custom omelets, biscuits and gravy, and other Southern breakfast standards. Complimentary coffee is included with breakfast orders.",
              "event_types": [
                "community"
              ],
              "price_info": "Menu prices",
              "url": "https://smokingpigbbq.net/menus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_77aa604fa0d0",
              "venue_id": "venue_berkeley_piano_club",
              "title": "The Awry Ensemble",
              "event_time": "2026-06-07T12:00:00",
              "venue_name": "Berkeley Piano",
              "event_start": "2026-06-07T12:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2724 Haste St, Berkeley, CA 94704",
              "description": "As part of the Berkeley Festival and Exhibition (BFX) Fringe, The Awry Ensemble performs works by Mozart, Maddalena Sirmen, and Schubert on classical period strings and fortepiano.",
              "event_types": [],
              "price_info": "$20 suggested or pay what you can",
              "url": "https://www.amybrodomusic.com/performances",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_piano_club",
                  "source_name": "Berkeley Piano",
                  "fetched_at": "2026-05-15T12:05:22.944658Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_piano_club|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0f9a2350abd7",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-07T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-07T14:00:00",
              "event_date": "2026-06-07",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-07",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a658ce4fe02f",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-07T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-07T20:00:00",
              "event_date": "2026-06-07",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-07",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dbac7aed56f1",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Writers Salon",
              "event_time": "2026-06-07T18:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-06-07T18:00:00",
              "event_date": "2026-06-07",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "Monthly Bazaar Writers Salon literary reading series at Bazaar Cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-writers-salon-25/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3cde4f1acaab",
              "venue_id": "venue_herbst_theater",
              "title": "SF Civic Symphony: Out Of This World",
              "event_time": "2026-06-07T15:00:00",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-06-07T15:00:00",
              "event_date": "2026-06-07",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "SF Civic Symphony presents Modest Mussorgsky's Scherzo in B-flat major, Stravinsky's The Firebird, and Holst's The Planets; conducted by Paul Schrage.",
              "event_types": [],
              "price_info": "Free community concert; suggested donation $10 - $20.",
              "url": "https://www.sfcivicmusic.org/calendar/2026/4/26/sf-civic-symphony-the-planets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_francisco_civic_music",
                  "source_name": "San Francisco Civic Music",
                  "fetched_at": "2026-05-15T16:25:24.132229Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_herbst_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_24343763b81f",
              "venue_id": "venue_pacific_film_archive",
              "title": "Breathless",
              "event_time": "2026-06-07T17:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-07T17:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean-Luc Godard's New Wave masterpiece, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/breathless",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_02479618f3af",
              "venue_id": "venue_verdi_club",
              "title": "SF Daytime Social – Salsa & Bachata",
              "event_time": "2026-06-07T15:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-06-07T15:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Monthly Sunday social featuring Bachata and Salsa workshops followed by a dance party.",
              "event_types": [],
              "price_info": "$15",
              "url": "https://www.verdiclub.net/event/sf-daytime-social-salsa-bachata/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cc64124464a2",
              "venue_id": "venue_first_church_berkeley",
              "title": "Kaleidoscope & Cantata Collective",
              "event_time": "2026-06-07T16:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-07T16:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Nicholas McGegan leads Kaleidoscope Vocal Ensemble and Cantata Collective in Bach's rarely heard 1725 version of the St John Passion.",
              "event_types": [
                "live_music",
                "classical",
                "festival"
              ],
              "price_info": "Pay-What-You-Can",
              "url": "https://www.berkeleyfestival.org/calendar/2026/6/7/kaleidoscope-vocal-ensemble-cantata-collective-st-john-passion",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e7f6f373018f",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Sunday Organ Recital Series",
              "event_time": "2026-06-07T15:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-07T15:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A performance featuring one of the world's finest organists playing the 7,466-pipe Aeolian-Skinner Alexander Memorial Organ.",
              "event_types": [],
              "price_info": "Free (Suggested donation $10)",
              "url": "https://gracecathedral.org/series/organ-recital-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cd2fdfad9a54",
              "venue_id": "venue_punch_line",
              "title": "S.F. Comedy Showcase",
              "event_time": "2026-06-07T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "The S.F. Comedy Showcase features the best of the Bay Area's comedy scene, with a rotating lineup of local favorites and rising stars.",
              "event_types": [],
              "price_info": "$21.80 - $30.50",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-06-07-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0547766bdbcf",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Ryan Reiss",
              "event_time": "2026-06-07T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Ryan Reiss, featuring Nancy Lee and Lester Ransom.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135779",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-07",
              "run_id": "run_4dc25be5c27c",
              "run_label": "Ryan Reiss, Jun 6 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c87f37306d2a",
              "venue_id": "venue_bird_and_beckett",
              "title": "Next-Gen Jam",
              "event_time": "2026-06-07T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-07T17:00:00",
              "event_date": "2026-06-07",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Featuring a set by a local youth ensemble followed by a student-centric jam session on the 1st Sunday of every month.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_68ff3b78589b",
              "venue_id": "venue_sfmoma",
              "title": "MAKE! Thinking Big",
              "event_time": "2026-06-07T13:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-06-07T13:00:00",
              "event_date": "2026-06-07",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Workshop series",
              "event_types": [
                "workshop",
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d409ac6d2e0",
              "venue_id": "venue_the_back_room",
              "title": "Michael McNally & The Time Travelers",
              "event_time": "Sun, Jun 7 2026, 4pm - 6pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-06-07T16:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/michael-mcnally-and-the-time-travelers?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-05-17T11:45:17.338318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eab7bab99678",
              "venue_id": "venue_hi_lo_club",
              "title": "Sunday Night Jazz Trio",
              "event_time": "2026-06-07T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Relaxed Sunday evening jazz performances. Perfect for a low-key night out.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_189c34566fcf",
              "venue_id": "venue_public_works",
              "title": "Femme Pride",
              "event_time": "2026-06-07",
              "venue_name": "Public Works",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A celebration of Femme Pride presented by Dhoom.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://publicsf.com/events/dhoom-presents-femme-pride/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_151bc04642c8",
              "venue_id": "venue_tommy_ts",
              "title": "GIRLS NIGHT OUT",
              "event_time": "2026-06-07",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bc6a76626c50",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-07T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-07",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9eb1738a1808",
              "venue_id": "venue_city_lights_theater",
              "title": "anthropology",
              "event_time": "2026-06-07T14:00:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-07T14:00:00",
              "event_date": "2026-06-07",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A high-tech thriller by Lauren Gunderson. In her Silicon Valley home office, coder and AI expert Merril builds an AI version of her missing sister Angie. The virtual Angie offers comfort until it starts revealing unsettling truths about the disappearance.",
              "event_types": [],
              "price_info": "",
              "url": "https://cltc.org/event/anthropology/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-07",
              "run_id": "run_3fac9d015579",
              "run_label": "anthropology, May 17 – Jun 7",
              "showtime_index": 2,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8678230549cb",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Sunday Night Jazz: Lavay Smith & Chris Siebert",
              "event_time": "2026-06-07T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-07T20:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Sunday night residency featuring Lavay Smith and Chris Siebert performing jazz and blues standards.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f1b21dd72e0e",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Jason Kao Hwang's Human Rites Trio",
              "event_time": "6/07/2026 7:00 PM",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "Jason Kao Hwang's Human Rites TrioJason Kao Hwang - violin/violaKen Filiano - bassAndrew Drury - drum set More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23047",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8d97340bbd51",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "6/07/2026 7:30 PM",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Doors That Only Open in Silence (open participation, non-hierarchical workshop in free improvisation)Monthly series of improvisation research at Temescal Arts Center. Bring your instrument or come to listen. Movement and other disciplines encouraged. No advance notice needed — just show up. More...",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "free",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22970",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53bb9a1784af",
              "venue_id": "venue_make_out_room",
              "title": "Clutch The Pearls! Drag Cabaret",
              "event_time": "2026-06-07T19:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "A rotating cast of the Bay Area's hottest drag performers strut their stuff. Host: Mira.",
              "event_types": [
                "theater",
                "dj_party"
              ],
              "price_info": "$15 - $20",
              "url": "https://www.sfstation.com/clutch-the-pearls-drag-cabaret-trl-music-video-night-e4701259",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b852ab97f23b",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "The B3 Sessions: Sylvester Burks",
              "event_time": "JUN 07, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Sylvester Burks leads a free session exploring the soulful techniques and unique history of the Hammond B3 organ in jazz music.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://concerts.jazzschool.org/free-the-b3-sessions-with-sylvester-burks/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_536d15e93899",
              "venue_id": "venue_gray_area",
              "title": "Lecture Performance on the Web",
              "event_time": "06/07",
              "venue_name": "Gray Area",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Online Workshop\nLecture Performance on the Web",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/online-workshop-lecture-performance-on-the-web/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fd20269955e3",
              "venue_id": "venue_black_cat",
              "title": "Miles and Coltrane Centennial",
              "event_time": "06/07/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nFrank will celebrate the anniversary of his #1 charting album, Love Supreme Collective, while honoring the 100th birthdays of John Coltrane and Miles Davis with classics from both legends. He’ll also perform tracks from his new #1 Billboard charting album, Set Me Free, alongside beloved tunes he’s recorded with Tony Bennett and a few surprises.\n\nA constant presence on stages across the USA, Europe, and Asia, Frank frequently performs at New York's iconic Birdland Jazz Club. He has collaborated with artists like The Smashing Pumpkins, Beyoncé, and John Legend. His documentary, Sugar Jazz, directed by Colin Donner, will premiere at the Tokyo Liftoff Film Festival.\n\nFrank's recent works, including “Tokyo #9” with Jimmy Chamberlin, debuted at #1 on the Billboard Traditional Jazz Charts, while Love Supreme Collective topped the iTunes Jazz Charts. He’s also known for his collaborations with prominent artists and countless media features, including The New York Times and NPR.\n\nFrank has won numerous accolades, including an IMA award and induction into the Fox Valley Arts Hall of Fame. Despite overcoming significant adversity after a serious accident, he remains one of the most in-demand musicians today, committed to giving back through various charitable efforts.\n\nBand Lineup:\nTBD",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11374/?date=2026-06-07",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bccc5852ca0f",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Lara Louise",
              "event_time": "2026-06-07T17:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-07T17:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keys Jazz Bistro welcomes Dutch-born vocalist Lara Louise for an evening of classic songs, characterized by a soft, sultry voice blending her folk roots with French chanson, Bossa Nova, and the Great American Songbook.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/lara-louise-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4d735fec0ae",
              "venue_id": "venue_odc_theater",
              "title": "A Cappella Road Trip",
              "event_time": "6/7/2026 5:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-07T17:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003PFmv2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3aa3d2a534b2",
              "venue_id": "venue_omca",
              "title": "Architecture Walk and Talk",
              "event_time": "2026-06-07",
              "venue_name": "OMCA",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Walk through OMCA’s landmark building and gardens with members of the Council on Architecture.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/omca-architecture-walk-and-talk-6/2026-06-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_12b951ec8d64",
              "venue_id": "venue_presidio_theater",
              "title": "Marcus Shelby Jazz Orchestra: Black Ball",
              "event_time": "Jun 7, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "The Marcus Shelby Jazz Orchestra performs a musical tribute to the history and cultural impact of the Negro Leagues.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/marcus-shelby-jazz-orchestra-black-ball-the-negro-leagues-and-the-blues",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ac2109b5c9ee",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Pitbull: I'm Back Tour",
              "event_time": "Sun Jun 7, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Global superstar Pitbull brings his high-energy hits to Shoreline Amphitheatre with special guest Lil Jon for a night of party anthems.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/pitbull-im-back-with-special-guest-mountain-view-california-06-07-2026/event/1C006391FDCDE716",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2d611d3629af",
              "venue_id": "venue_cornerstone",
              "title": "TEEN SUICIDE",
              "event_time": "2026-06-07T04:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-07T04:00:00",
              "event_date": "2026-06-07",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "TEEN SUICIDE Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/teen-suicide-173894",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dd6ef24525b2",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-07T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-07",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3adec4be0b4a",
              "venue_id": "venue_4_star_theater",
              "title": "The Total Accord",
              "event_time": "Jun 07, 2026 7:30pm – 10:30pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-07T19:30:00",
              "event_date": "2026-06-07",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The theater hosts a special night of music featuring a performance by the ensemble The Total Accord. This event promises a unique acoustic experience tailored for the venue's acoustics.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-total-accord-the-seshen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_705cd6d64657",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-06-07",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-07",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b999c7ca6cd",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-06-07",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-07",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8024009016b",
              "venue_id": "venue_el_rio",
              "title": "Get Busy",
              "event_time": "2026-06-07T21:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-06-07T21:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "Every first Saturday dance party featuring DJs Baysik, Cold SF, and ZMO spinning house and hip-hop.",
              "event_types": [],
              "price_info": "$5",
              "url": "https://ra.co/events/san-francisco-oakland/el-rio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-18T13:42:36.964957Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_el_rio|2026-06-07",
              "run_id": "run_29004e14c14f",
              "run_label": "Get Busy, Jun 6 – Jun 7",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_48cd2fc37aeb",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 07, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-07-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d160d3c2decb",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-07",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-07",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de7142b601aa",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-07T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-07T18:00:00",
              "event_date": "2026-06-07",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f3a6fe065342",
              "venue_id": "venue_the_fireside",
              "title": "Sunday Sports & Drinks",
              "event_time": "2026-06-07",
              "venue_name": "The Fireside",
              "event_start": "2026-06-07",
              "event_date": "2026-06-07",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Sports, bloody marys, mimosas, buckets of beer",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d2c5a5a83451",
              "venue_id": "venue_great_star_theater",
              "title": "Free Community Movie: Chasing Amy",
              "event_time": "June 7, 2026 at 7:00 PM",
              "venue_name": "Great Star Theater",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "A free community screening of Chasing Amy presented in celebration of Pride Month.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "RSVP",
              "url": "https://www.tickettailor.com/events/greatstartheater/2200513",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-05-18T15:52:47.667779Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57b604e78cb3",
              "venue_id": "venue_the_riptide",
              "title": "90s Dance Party",
              "event_time": "2026-06-07T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-07T21:00:00",
              "event_date": "2026-06-07",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_717ed03884e1",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "CHE GUERRERO & WILLIE MACC",
              "event_time": "Sun Jun 7, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-07T19:00:00",
              "event_date": "2026-06-07",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedians Che Guerrero and Willie Macc team up for a night of stand-up featuring their individual perspectives and comedic styles.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/che-guerrero-willie-macc-san-francisco-california-06-07-2026/event/1C0064A50B7E4179",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-08": {
          "date": "2026-06-08",
          "updated_at": "2026-05-18T15:54:50.231912Z",
          "events": [
            {
              "event_id": "evt_aae37cda61d4",
              "venue_id": "venue_924_gilman",
              "title": "Destiny Bond, Gumm & More",
              "event_time": "2026-06-08T19:00:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-08T19:00:00",
              "event_date": "2026-06-08",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages show at 924 Gilman. Memberships are required to see any show held at Gilman and are available in person.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://app.showslinger.com/v4/924-gilman",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-11T00:33:59.470518Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T11:11:30.532030Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d16d860dc13b",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Witch Ripper, Lowcaster, and Disastroid",
              "event_time": "Monday June 8 2026 7:30PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-08T19:30:00",
              "event_date": "2026-06-08",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; progressive metal sludge stoner; doom metal; stoner doom grunge metal",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$20",
              "url": "http://www.bottomofthehill.com/20260608.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_24c05412053e",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-08T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-08T14:00:00",
              "event_date": "2026-06-08",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-08",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_76b32e9f8ded",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-08T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-08T20:00:00",
              "event_date": "2026-06-08",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-08",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f04466808a32",
              "venue_id": "venue_the_saloon",
              "title": "The Bachelors",
              "event_time": "2026-06-08T21:30:00",
              "venue_name": "The Saloon",
              "event_start": "2026-06-08T21:30:00",
              "event_date": "2026-06-08",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Weekly Monday night residency featuring The Bachelors.",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover",
              "url": "https://thesaloonsf.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e0f46b059f5e",
              "venue_id": "venue_first_church_berkeley",
              "title": "If Trouble Was Money",
              "event_time": "2026-06-08T19:30:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-08T19:30:00",
              "event_date": "2026-06-08",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "A historically informed cabaret reviving Broadway classics by Kern, Berlin, Gershwin, and Rodgers. Held in Unity Hall.",
              "event_types": [
                "live_music",
                "theater",
                "festival"
              ],
              "price_info": "Pay-What-You-Can",
              "url": "https://www.berkeleyfestival.org/calendar/2026/6/8/studio-for-the-early-american-musical",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_701c2427a2ac",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bobby McFerrin: Circlesongs",
              "event_time": "2026-06-08T12:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-08T12:00:00",
              "event_date": "2026-06-08",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "A cappella circlesinging event.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$40",
              "url": "https://secure.thefreight.org/overview/15627",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_147ee0ec6c58",
              "venue_id": "venue_bird_and_beckett",
              "title": "Virtual POETS! Featured readers + open mic ONLINE",
              "event_time": "2026-06-08T19:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-08T19:00:00",
              "event_date": "2026-06-08",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Kim Shuck hosts an online series with featured readers followed by an open mic.",
              "event_types": [
                "literary"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de763c2006b5",
              "venue_id": "venue_the_midway",
              "title": "Burial - Untrue",
              "event_time": "2026-06-08T21:30:00",
              "venue_name": "The Midway",
              "event_start": "2026-06-08T21:30:00",
              "event_date": "2026-06-08",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "An Envelop Immersive Listening Experience @ Midway",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02924f53547d",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-08",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-08",
              "event_date": "2026-06-08",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-08",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e059a7134f19",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Piano Night at The Royal Cuckoo Organ Lounge",
              "event_time": "2026-06-08T19:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-08T19:00:00",
              "event_date": "2026-06-08",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Monday night live piano music on the vintage Steinway Upright.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://northbeachlive.com/event/piano-night-at-the-royal-cuckoo-organ-lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b424aa3139f6",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Life Skills for Independent Musicians",
              "event_time": "JUN 08, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-06-08T19:30:00",
              "event_date": "2026-06-08",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "This free educational series offers independent musicians practical advice and essential skills for navigating the professional music industry.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Free",
              "url": "https://concerts.jazzschool.org/free-workshop-series-life-skills-for-independent-musicians-with-lisa-mezzacappa-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_364f77f365f3",
              "venue_id": "venue_shotgun_studios",
              "title": "The World of a Play: Continuity (Seminar Series)",
              "event_time": "2026-06-08T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-06-08T10:30:00",
              "event_date": "2026-06-08",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "The fourth Monday gathering of the 'Continuity' seminar series.",
              "event_types": [],
              "price_info": "$150 for the series",
              "url": "https://shotgunplayers.org/online/article/miriams-place",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3ccea03e7c1e",
              "venue_id": "venue_the_independent",
              "title": "CONWAY THE MACHINE",
              "event_time": "6.8 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-08T20:00:00",
              "event_date": "2026-06-08",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/conway-the-machine/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_764a59c92235",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC AT HOTEL UTAH",
              "event_time": "Mon Jun 8 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-08T19:00:00",
              "event_date": "2026-06-08",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Monday night",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/Open-Mic-at-Hotel-Utah/689620?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4e4b9f3a247a",
              "venue_id": "venue_geoffreys_inner_circle",
              "title": "Necy Robinson",
              "event_time": "2026-06-08",
              "venue_name": "Geoffreys Inner Circle",
              "event_start": "2026-06-08",
              "event_date": "2026-06-08",
              "venue_address": "410 14th St, Oakland, CA 94612",
              "description": "FREE HOUSE DRINK with each advanced purchased ticket!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/154294086117",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_geoffreys_inner_circle",
                  "source_name": "Geoffreys Inner Circle",
                  "fetched_at": "2026-05-18T11:48:10.924975Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_geoffreys_inner_circle|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_714424abef22",
              "venue_id": "venue_envelop_sf",
              "title": "Burial: Untrue",
              "event_time": "Monday, June 8 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-08",
              "event_date": "2026-06-08",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Experience the haunting and atmospheric electronic textures of Burial's 'Untrue' in a fully immersive setting. The spatial audio playback enhances the depth and mood of this influential dubstep album.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260608-burial-untrue-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d3773baf4f51",
              "venue_id": "venue_cornerstone",
              "title": "Sewerperson",
              "event_time": "2026-06-08T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-08T03:00:00",
              "event_date": "2026-06-08",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Sewerperson Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/sewerperson-181901",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ffb0c1cdd91",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-06-08T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-06-08T19:00:00",
              "event_date": "2026-06-08",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e6419399c0f3",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-08",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-08",
              "event_date": "2026-06-08",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-08",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab5750cf9902",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-08T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-08T18:00:00",
              "event_date": "2026-06-08",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_48a7244d2bc0",
              "venue_id": "venue_the_fireside",
              "title": "Monday Mixology & Board Games",
              "event_time": "2026-06-08",
              "venue_name": "The Fireside",
              "event_start": "2026-06-08",
              "event_date": "2026-06-08",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Mixology behind the bar, industry discounts, mystery DJ, and board games (play ours or bring yours)",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_78238e64031d",
              "venue_id": "venue_de_young",
              "title": "The Etruscans Access Day",
              "event_time": "2026-06-08 9:30 am–2:30 pm",
              "venue_name": "De Young",
              "event_start": "2026-06-08T09:30:00",
              "event_date": "2026-06-08",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "This event offers dedicated hours and specialized resources for visitors with disabilities to experience 'The Etruscans' exhibition.",
              "event_types": [
                "community",
                "art"
              ],
              "price_info": "Legion of Honor, Access, Access",
              "url": "https://www.famsf.org/events/etruscans-access-day",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2507ce939040",
              "venue_id": "venue_the_riptide",
              "title": "DJ Damon 80s Night",
              "event_time": "2026-06-08T21:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-08T21:30:00",
              "event_date": "2026-06-08",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-09": {
          "date": "2026-06-09",
          "updated_at": "2026-05-18T15:54:50.236898Z",
          "events": [
            {
              "event_id": "evt_1d4efb187127",
              "venue_id": "venue_the_independent",
              "title": "Searows, Mori",
              "event_time": "6.9 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-09T20:00:00",
              "event_date": "2026-06-09",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Singer-songwriter Alec Duckart brings his intimate indie-folk project to the stage for a night of emotive storytelling.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/searows/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4bcc6d93958",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Jeff Rosenstock / Star 99",
              "event_time": "Tuesday June 9 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-09T20:00:00",
              "event_date": "2026-06-09",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 9 Jeff Rosenstock a/a $10/$25 ($50 2 day pass) 8pm/9pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10/$25 ($50 2 day pass)",
              "url": "http://www.bottomofthehill.com/20260609.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_95acc662d70b",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-09",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-09",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ad2e36f6252",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-09",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-09",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_166e18049653",
              "venue_id": "venue_august_hall",
              "title": "The Church: The Singles 1980-2025",
              "event_time": "Jun 9 6pm/7pm",
              "venue_name": "August Hall",
              "event_start": "2026-06-09T18:00:00",
              "event_date": "2026-06-09",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Australian psychedelic rock legends The Church perform a career-spanning set featuring their singles released between 1980 and 2025.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$55.67",
              "url": "http://www.foopee.com/by-band.0.html#Church",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-28T12:42:23.830301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-04-28T13:04:38.229453Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ac9d693098a",
              "venue_id": "venue_brick_and_mortar",
              "title": "BLEOOD — PROTAGONIST TOUR",
              "event_time": "Jun 9 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-09T19:00:00",
              "event_date": "2026-06-09",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Bleood brings the Protagonist Tour to Brick and Mortar for a live musical showcase. This performance highlights the artist's latest work and creative vision for fans and newcomers alike.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$5",
              "url": "http://www.foopee.com/by-band.0.html#Bleood",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-07T16:12:29.385038Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-09T10:35:50.946450Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_242bf9b71d03",
              "venue_id": "venue_cafe_du_nord",
              "title": "Syd Taylor",
              "event_time": "Jun 9 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-09T20:00:00",
              "event_date": "2026-06-09",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Syd_Taylor",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_721610db8e2a",
              "venue_id": "venue_great_american_music_hall",
              "title": "Tigers Jaw, Bleary Eyed, Pool Kids",
              "event_time": "Jun 9 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-06-09T19:00:00",
              "event_date": "2026-06-09",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Bleary Eyed, Pool Kids | with Bleary Eyed, Pool Kids",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27/$30",
              "url": "http://www.foopee.com/by-band.3.html#Tigers_Jaw",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-13T12:36:31.853883Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-14T10:25:54.614064Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b160013d94b",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-09",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-09",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f199c661d6bd",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity - Sound Bath and Beyond",
              "event_time": "2026-06-09T19:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-06-09T19:00:00",
              "event_date": "2026-06-09",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "A special community event held during the run of 'Continuity'.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9d880ef387b1",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-06-09T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-09T18:30:00",
              "event_date": "2026-06-09",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_619025283f7c",
              "venue_id": "venue_cal_academy_of_science",
              "title": "Chen Institute Brain & Mind Lecture",
              "event_time": "2026-06-09T19:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-06-09T19:00:00",
              "event_date": "2026-06-09",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "An immersive lecture in Morrison Planetarium exploring brain science and mind health.",
              "event_types": [],
              "price_info": "$15 - $25",
              "url": "https://www.calacademy.org/events/special-events/chen-institute-brain-mind-lecture",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a5af8fc3fc40",
              "venue_id": "venue_cry_baby",
              "title": "ChRocktikal",
              "event_time": "2026-06-09T18:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-06-09T18:00:00",
              "event_date": "2026-06-09",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "North American tour stop for Korean rock band ChRocktikal in support of their first full-length album.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://crybaby.live/tm-event/chrocktikal-the-1st-world-tour-crtk-the-beginning/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0cc3f5bd788f",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-06-09T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-06-09T21:00:00",
              "event_date": "2026-06-09",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Tuesday night swing dance event featuring live music and a drop-in basic swing lesson.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/the-woodchoppers-ball/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_519bdad6ee40",
              "venue_id": "venue_first_church_berkeley",
              "title": "Gamelan Sekar Jaya",
              "event_time": "2026-06-09T17:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-09T17:00:00",
              "event_date": "2026-06-09",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "A performance of traditional Balinese Gamelan Angklung music. Held in Unity Hall.",
              "event_types": [
                "live_music",
                "latin_world",
                "festival"
              ],
              "price_info": "Pay-What-You-Can",
              "url": "https://www.berkeleyfestival.org/calendar/2026/6/9/gamelan-sekar-jaya-gamelan-angklung",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ef507899e3cd",
              "venue_id": "venue_first_church_berkeley",
              "title": "Voices of Music: Dowland 400",
              "event_time": "2026-06-09T19:30:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-09T19:30:00",
              "event_date": "2026-06-09",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Voices of Music celebrates the 400th anniversary of John Dowland with a program of works for viol consort.",
              "event_types": [
                "live_music",
                "classical",
                "festival"
              ],
              "price_info": "Pay-What-You-Can",
              "url": "https://www.berkeleyfestival.org/calendar/2026/6/9/voices-of-music-voice-of-the-viol-dowland-400",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be9f7d759be8",
              "venue_id": "venue_punch_line",
              "title": "Joe Klocek & Friends",
              "event_time": "2026-06-09T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-09T19:30:00",
              "event_date": "2026-06-09",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Joe Klocek brings his friends for a night of hilarious stand-up comedy at the iconic Punch Line.",
              "event_types": [],
              "price_info": "Starting from $20",
              "url": "https://www.punchlinecomedyclub.com/EventDetail?tmeventid=G5vjZ91Xp_7p",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_325b5e73d8cc",
              "venue_id": "venue_the_freight__salvage",
              "title": "Whose Live Anyway?",
              "event_time": "2026-06-09T19:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-09T19:30:00",
              "event_date": "2026-06-09",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Rental event comedy/improv show at The Freight.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$119 Premium Admission; $79 General Admission",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6bbf305b2e67",
              "venue_id": "venue_scopo_divino",
              "title": "Winemaker Dinner with St. Francis Winery",
              "event_time": "2026-06-09T17:30:00",
              "venue_name": "Scopo Divino",
              "event_start": "2026-06-09T17:30:00",
              "event_date": "2026-06-09",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "A special 3-course wine dinner featuring 4 wines from St. Francis Winery with award-winning winemaker Katie Madigan and Chef Erik Hopfinger.",
              "event_types": [
                "community"
              ],
              "price_info": "$83 (plus fees and taxes)",
              "url": "https://www.scopodivino.com/events/winemaker-dinner-st-francis",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scopo_divino",
                  "source_name": "Scopo Divino",
                  "fetched_at": "2026-05-16T11:10:22.174562Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_scopo_divino|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_39f26d407a1a",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekly Live Jazz & Americana",
              "event_time": "2026-06-09T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-09T19:00:00",
              "event_date": "2026-06-09",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Live music every Tuesday featuring jazz and Americana acts. Free admission.",
              "event_types": [
                "live_music",
                "jazz",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8ac74296ce3f",
              "venue_id": "venue_the_midway",
              "title": "Frank Ocean - Channel ORANGE",
              "event_time": "2026-06-09T21:30:00",
              "venue_name": "The Midway",
              "event_start": "2026-06-09T21:30:00",
              "event_date": "2026-06-09",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "An Envelop Immersive Listening Experience @ Midway",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_120c832ecd69",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-09",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-09",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_214fd4f33caf",
              "venue_id": "venue_rootstock_arts",
              "title": "The Supplicants",
              "event_time": "2026-06-09T19:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-09T19:00:00",
              "event_date": "2026-06-09",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "The Supplicants bring together four distinct musical voices for an evening of improvisational jazz and experimental sounds. The quartet explores complex rhythms and collaborative textures in a live setting.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_966a5134812d",
              "venue_id": "venue_herbst_theater",
              "title": "SF Contemporary Music Players",
              "event_time": "6/09/2026 7:30 PM",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-06-09T19:30:00",
              "event_date": "2026-06-09",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "San Francisco Contemporary Music Players: ARTZenter Institute Emerging Composer Program IIISF Contemporary Music Players continues its partnership with ARTZenter Institute's Emerging Composer Grant Program, presenting world premiere performances of 4 new compositions for chamber orchestra at Herbst Theatre. More...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=22809",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_herbst_theater|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a93d18cebf68",
              "venue_id": "venue_shotgun_studios",
              "title": "Let's Break It Down: Continuity",
              "event_time": "2026-06-09",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "A curated experience and moderated discussion designed to offer a deeper dive into the subject matter of 'Continuity', featuring a sound bath created by the production's sound designer.",
              "event_types": [],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ad1909b13337",
              "venue_id": "venue_gray_area",
              "title": "Techno Improvisation",
              "event_time": "06/09",
              "venue_name": "Gray Area",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "In-Person Workshop\nTechno Improvisation with Beat DJ",
              "event_types": [
                "workshop",
                "dj_party"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/in-person-workshop-techno-improvisation-with-beat-dj/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e283f1920e2",
              "venue_id": "venue_ivy_room",
              "title": "Bandworks Showcase",
              "event_time": "Tuesday Jun 9 6:15 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-09T18:15:00",
              "event_date": "2026-06-09",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Musicians from the Bandworks program take the stage to showcase their skills and collaborative projects in a live concert setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182129",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_400173e25246",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jun 9 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-09T19:00:00",
              "event_date": "2026-06-09",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690200?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_281794d1f98a",
              "venue_id": "venue_envelop_sf",
              "title": "Frank Ocean: Channel ORANGE",
              "event_time": "Tuesday, June 9 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Hear the soulful and innovative sounds of Frank Ocean's 'Channel ORANGE' reimagined for spatial audio. This session offers a deep, 3D listening experience of the acclaimed R&B album.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260609-frank-ocean-channel-orange-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c238c015b0c7",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-06-09T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-09T20:00:00",
              "event_date": "2026-06-09",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_50c7273ff969",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 09, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-09",
              "event_date": "2026-06-09",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-09-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0d668b2c467e",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-09T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-09T18:00:00",
              "event_date": "2026-06-09",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_358efd73cddf",
              "venue_id": "venue_the_fireside",
              "title": "Live Trivia",
              "event_time": "2026-06-09T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-09T19:30:00",
              "event_date": "2026-06-09",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Live trivia at Lounge; on Zoom every second Tuesday",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf11797156c6",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO with Dr. Bird",
              "event_time": "2026-06-09T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-09T18:00:00",
              "event_date": "2026-06-09",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_79c922978e04",
              "venue_id": "venue_the_riptide",
              "title": "Middle Dog",
              "event_time": "2026-06-09T21:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-09T21:30:00",
              "event_date": "2026-06-09",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-10": {
          "date": "2026-06-10",
          "updated_at": "2026-05-18T16:13:34.744106Z",
          "events": [
            {
              "event_id": "evt_e12795c42209",
              "venue_id": "venue_the_independent",
              "title": "Searows, Mori",
              "event_time": "6.10 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Singer-songwriter Alec Duckart brings his intimate indie-folk project to the stage for a night of emotive storytelling.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/searows-second-show-added-by-popular-demand/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d223eb6f89e1",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Jeff Rosenstock / Star 99",
              "event_time": "Wednesday June 10 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 10 Jeff Rosenstock a/a $10/$25 ($50 2 day pass) 8pm/9pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10/$25 ($50 2 day pass)",
              "url": "http://www.bottomofthehill.com/20260610.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_639bfedb1dc0",
              "venue_id": "venue_masonic_hall",
              "title": "Belle & Sebastian",
              "event_time": "Jun 10 2026 7pm/8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-06-10T19:00:00",
              "event_date": "2026-06-10",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Scottish indie pop group Belle & Sebastian perform their debut album 'Tigermilk' in its entirety along with a selection of their greatest hits. This special show offers fans a nostalgic look back at the band's early career.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/belle-sebastian-tigermilk-classic-songs-san-francisco-california-06-10-2026/event/1C00630CB0E51311",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-10T23:21:11.204082Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_795350720d51",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-10",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-10",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bdf0d748a7a0",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-10",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-10",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_99da21d2d2fb",
              "venue_id": "venue_san_jose_civic",
              "title": "The Rose",
              "event_time": "2026-06-10T20:00:00-07:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "South Korean indie-rock band The Rose brings their unique blend of K-pop and rock to the stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/the-rose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-04-16T09:21:18.371953Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-18T09:17:31.621254Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_364ac5b92cdc",
              "venue_id": "venue_cornerstone",
              "title": "Mihali",
              "event_time": "Jun 10 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-10T19:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Mihali",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f4eaee4213ce",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-10T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-10",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_075792f4cbe2",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-10T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-10T14:00:00",
              "event_date": "2026-06-10",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-10",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce82dcb89d2f",
              "venue_id": "venue_mabuhay_gardens",
              "title": "BANG THE BAY",
              "event_time": "2026-06-10T18:30:00",
              "venue_name": "The Mab",
              "event_start": "2026-06-10T18:30:00",
              "event_date": "2026-06-10",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "This multi-band bill features a high-energy mix of punk and rock from Infirmities, Young Barons, Pussy Toupee, and Torpedo Wharf.",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.1.html#Infirmities",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-05-11T11:09:28.874452Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b4f4eec43e54",
              "venue_id": "venue_cafe_du_nord",
              "title": "Grooblen, Heavens Club, Al Harper, Tucheetta",
              "event_time": "Jun 10 7pm/8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-10T19:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "$18/$20 7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "$18/$20",
              "url": "http://www.foopee.com/by-band.1.html#Grooblen",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d933fdc41110",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-10",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-10",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e15194c6ae7",
              "venue_id": "venue_the_lost_church",
              "title": "San Miguel Fraser & Singing the Bones",
              "event_time": "2026-06-10",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance with opener Singing the Bones at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001mA5j2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f53cdc76f7a2",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-10T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-10T14:00:00",
              "event_date": "2026-06-10",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-10",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f1254541f934",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-10T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-10",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_21dff7239679",
              "venue_id": "venue_ocean_ale_house",
              "title": "The Laugh Boat: Local Brews & Free Comedy",
              "event_time": "2026-06-10T19:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-06-10T19:00:00",
              "event_date": "2026-06-10",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Monthly comedy showcase every second Wednesday featuring local and touring stand-up comedians.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://sf.funcheap.com/laugh-boat-local-brews-free-comedy-sf/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_909d1e4d6dac",
              "venue_id": "venue_pacific_film_archive",
              "title": "The Rules of the Game",
              "event_time": "2026-06-10T19:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-10T19:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean Renoir's classic satire of the French upper class, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/rules-game",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_795412f22cfb",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-06-10T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Wednesday queer country dancing event.",
              "event_types": [],
              "price_info": "",
              "url": "https://www.verdiclub.net/event/scuff-queer-line-dancing-two-stepping/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d7a3aa25378e",
              "venue_id": "venue_oasis",
              "title": "Built This City: An SF Pride Variety Spectacular",
              "event_time": "2026-06-10T18:00:00",
              "venue_name": "Oasis",
              "event_start": "2026-06-10T18:00:00",
              "event_date": "2026-06-10",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "An SF Pride variety spectacular presented by Oasis Arts at the historic Castro Theatre, featuring a lineup of iconic Bay Area performers.",
              "event_types": [
                "theater",
                "community",
                "festival"
              ],
              "price_info": "$45",
              "url": "https://allevents.in/san%20francisco/built-this-city-an-sf-pride-variety-spectacular/80002678901234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-05-15T20:27:54.675119Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ba65f9e594e8",
              "venue_id": "venue_biscuits__blues",
              "title": "Minor Gold",
              "event_time": "2026-06-10",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Confirmed upcoming show at Biscuits & Blues.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260610minorgold",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3b3b4d0097a0",
              "venue_id": "venue_punch_line",
              "title": "Helen Hong",
              "event_time": "2026-06-10T20:00:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Helen Hong is a comedian, actor, and host known for her sharp wit and appearances on NPR's 'Wait Wait... Don't Tell Me!'",
              "event_types": [],
              "price_info": "$27.65 - $42.50",
              "url": "https://www.ticketmaster.com/helen-hong-san-francisco-california-06-10-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1018f54dce62",
              "venue_id": "venue_rooster_t_feathers",
              "title": "New Talent Comedy Competition: Finals",
              "event_time": "2026-06-10T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Finals of Roosters' annual new talent comedy competition.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/350913",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_31909d8302b0",
              "venue_id": "venue_noe_valley_ministry",
              "title": "Sonia",
              "event_time": "2026-06-10",
              "venue_name": "Noe Valley Ministry",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "1021 Sanchez St, San Francisco, CA 94114",
              "description": "Coming up performance by Sonia.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_noe_valley_ministry",
                  "source_name": "Noe Valley Ministry",
                  "fetched_at": "2026-05-16T10:31:53.626819Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_noe_valley_ministry|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_525ae0c83197",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-10",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-10",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_428627bf8696",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Chris Siebert & Friends (Hammond Organ)",
              "event_time": "2026-06-10T20:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Mid-week live music featuring the Hammond organ and the best jazz players in town sitting in.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free (No cover charge)",
              "url": "https://www.facebook.com/people/The-Royal-Cuckoo-Organ-Lounge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-05-18T10:13:02.761079Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_60e8d4d4b40c",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Brown Bag Jazz: Cal Music Grads",
              "event_time": "JUN 10, 2026",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-06-10T19:30:00",
              "event_date": "2026-06-10",
              "venue_address": "2040 Addison St, Berkeley, CA 94704",
              "description": "Recent music graduates from UC Berkeley share their professional insights and experiences from the field in this free community discussion.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://concerts.jazzschool.org/free-brown-bag-jazz-hangs-cal-music-grads-report-from-the-field-grace-basom-on-practicing-free-improvisation/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-05-18T10:22:35.448185Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5b06cf4f5c01",
              "venue_id": "venue_black_cat",
              "title": "Kazemde George",
              "event_time": "06/10/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-10T19:00:00",
              "event_date": "2026-06-10",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00\n\nBrooklyn-based saxophonist Kazemde George, a rising star in modern improvised music, creates unique musical landscapes by blending different traditions from within the African diaspora, from Bebop to Rumba, Bossa Nova, Hip Hop, and more. With his Harvard neurobiology background and New England Conservatory jazz mastery, George’s innovative compositions and profound musicianship have established him as one of today’s most exciting and intellectually compelling artists. He is joined by Giulio Xavier and Miles Turk to explore the chord-less tenor trio sound with songs from his recent release 'Ocean Passage'.\n\nBand Lineup:\nKazemde George, Saxophone\nGiulio Xavier Cetto, Bass\nMiles Turk, Drums",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11495/?date=2026-06-10",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8291fe96b5d",
              "venue_id": "venue_yoshis",
              "title": "Juju's Burlesque",
              "event_time": "WED 6.10 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-10T19:30:00",
              "event_date": "2026-06-10",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "OAKLAND’S FIRST BLACK BURLESQUE MUSICAL",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "$45 - $80",
              "url": "https://yoshis.com/events/buy-tickets/juju-s-burlesque-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_03a65ebabdf2",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Michael O’Neill Quartet feat. Frank Martin",
              "event_time": "2026-06-10T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-10T19:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "The Keys shows will be the continuation of a new collaboration for Frank and Michael. They were co-members of a jazz-fusion band known as Solstice for many years. Since that time, their career paths have diverged. Frank has enjoyed a remarkable career performing with such great artists as Patti Austin, Angela Bofill; Carnegie Hall appearances with Sting, James Taylor, Elton John; Record producer/arranger for Al Jarreau, Turtle Island String Quartet, Joey DeFrancesco, Tuck & Patti; performed/recorded with John McLaughlin, Joe Farrell, Dizzy Gillespie, Larry Coryell, Herbie Hancock, Stanley Jordan, Stevie Wonder, Airto, Dianne Reeves, Patrice Rushen and Richard Bona. Michael on the other hand has enjoyed working extensively in the Bay area jazz scene including a13 year engagement at the Ritz-Carlton in Half Moon Bay. Frank and Michael will be accompanied by master musicians Dan Robbins on bass and Deszon Claiborne on drums. They will feature compositions and arrangements by both Frank and Michael.",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/michael-oneill-quartet-feat-frank-martin-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e6a0027a402b",
              "venue_id": "venue_hillside_club",
              "title": "Say Cheese!",
              "event_time": "Jun 10, 2026, 6:00 PM – 9:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-06-10T18:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "A social gathering at the Hillside Club centered around culinary appreciation or themed photography.",
              "event_types": [
                "community"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.eventbrite.com/e/1988746784167?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a305b2b743b1",
              "venue_id": "venue_ivy_room",
              "title": "Bandworks Showcase",
              "event_time": "Wednesday Jun 10 6:15 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-10T18:15:00",
              "event_date": "2026-06-10",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Musicians from the Bandworks program take the stage to showcase their skills and collaborative projects in a live concert setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182130",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cb6ad2a78355",
              "venue_id": "venue_cornerstone",
              "title": "Jhariah Trust Ceremony Tour",
              "event_time": "2026-06-10T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-10T03:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Jhariah Trust Ceremony Tour Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/jhariah-trust-ceremony-tour-186358",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06d3135471b3",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-10T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-10T19:30:00",
              "event_date": "2026-06-10",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-10",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_35a4c4314fbb",
              "venue_id": "venue_ashkenaz",
              "title": "2nd Wednesday Balkan Folk Dance",
              "event_time": "06/10/2026 6:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-06-10T18:30:00",
              "event_date": "2026-06-10",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "An Ashkenaz Tradition Since 1973",
              "event_types": [
                "live_music",
                "latin_world",
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/183855",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_39f9034150c0",
              "venue_id": "venue_4_star_theater",
              "title": "Fogcutter Film Series: La Bamba",
              "event_time": "Jun 10, 2026 6:00pm –  9:30pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-10T18:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The Fogcutter Film Series continues with a screening of the Ritchie Valens biopic 'La Bamba.' The event is hosted by special guests and celebrates the legacy of the early rock and roll star.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/fogcutter-film-series-volume-22-la-bamba",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49df5437a9a3",
              "venue_id": "venue_castro_theater",
              "title": "BUILT THIS CITY: AN SF PRIDE VARIETY SPECTACULAR",
              "event_time": "June 10, 2026 7:45pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-10T19:45:00",
              "event_date": "2026-06-10",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "SF Pride & Peaches Christ Productions present",
              "event_types": [
                "festival",
                "theater",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/peaches-pride-260610",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_740173c1500a",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-06-10",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-10",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_09872f03b829",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-06-10",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-10",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22da590888e8",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 10, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-10-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb5a93f946f2",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-10",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-10",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_76572cdd69d2",
              "venue_id": "venue_swedish_american",
              "title": "Flawed Mangoes",
              "event_time": "Jun 10 2026 8pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Flawed Mangoes",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Flawed_Mangoes",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7fcc752eb984",
              "venue_id": "venue_magic_theatre",
              "title": "A Trojan Woman",
              "event_time": "2026-06-10",
              "venue_name": "Magic Theatre",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Stop The Wind Theatricals presents a Trojan Woman by Sara Farrington. Directed by Meghan Finn.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_magic_theatre",
                  "source_name": "Magic Theatre",
                  "fetched_at": "2026-05-18T15:35:30.578557Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_magic_theatre|2026-06-10",
              "run_id": "run_cb94c356bdd1",
              "run_label": "A Trojan Woman, Jun 10 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_12b293822219",
              "venue_id": "venue_club_fox",
              "title": "Mike Osborn Band",
              "event_time": "Wednesday June 10th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-10",
              "event_date": "2026-06-10",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Wednesday June 10thClub Fox Blues WednesdaysMIKE OSBORN BANDDoors 6:30PM /Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/club-fox-blues-wednesdays-mike-osborn-band-tickets-1988796056542?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_38b2334df9c9",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-10T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-10T18:00:00",
              "event_date": "2026-06-10",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53f0741d172d",
              "venue_id": "venue_the_fireside",
              "title": "Singer/Songwriter Open Mic",
              "event_time": "2026-06-10T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-10T19:30:00",
              "event_date": "2026-06-10",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Singer/Songwriter open mic",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f57b02a8c307",
              "venue_id": "venue_the_riptide",
              "title": "The Jamie Duncan Trio",
              "event_time": "2026-06-10T19:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-10T19:30:00",
              "event_date": "2026-06-10",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f94ff3ab6b53",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "COBB'S COMEDY SHOWCASE",
              "event_time": "Wed Jun 10, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-10T19:30:00",
              "event_date": "2026-06-10",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "This event highlights a variety of rising stars and established talent from the vibrant local comedy scene.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/cobbs-comedy-showcase-san-francisco-california-06-10-2026/event/1C00648E1C6299B3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a276be4e16d0",
              "venue_id": "venue_san_jose_improv",
              "title": "Fiona Cauley & Ahren Belisle",
              "event_time": "Jun 10 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-06-10T20:00:00",
              "event_date": "2026-06-10",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/event/fiona+cauley+%26+ahren+belisle/14162804/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-06-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-11": {
          "date": "2026-06-11",
          "updated_at": "2026-05-18T16:13:34.753174Z",
          "events": [
            {
              "event_id": "evt_50cd95855920",
              "venue_id": "venue_the_independent",
              "title": "MR TOUT LE MONDE",
              "event_time": "6.11 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Electronic artist Mr. Tout Le Monde brings his melodic and danceable soundscapes to the venue. The show features a mix of synth-driven tracks and upbeat rhythms characteristic of his modern production style.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/mr-tout-le-monde/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-03-27T03:03:31.297144Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-03-27T06:44:15.890021Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_00040225e34a",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Moon Walker / Pretoria / Super Cassette",
              "event_time": "Thursday June 11 2026 7:00PM doors -- music at 7 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Moon Walker's Wasteland Country Tour; presents...; garage rock glam rock; ndie rock; bedroom-power-pop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260611.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92e9a4d5d296",
              "venue_id": "venue_masonic_hall",
              "title": "Belle & Sebastian",
              "event_time": "Jun 11 2026 7pm/8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "This ticket option provides access to both nights of Belle & Sebastian's special residency at the Masonic Hall. Attendees can experience full performances of two iconic albums plus additional classic tracks over two consecutive evenings.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/belle-sebastian-if-youre-feeling-sinister-san-francisco-california-06-11-2026/event/1C00630CB1151327",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-10T23:21:11.204082Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6803a629d92d",
              "venue_id": "venue_bimbos_365",
              "title": "Naomi Scott",
              "event_time": "June 11 - Show: 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents F.I.G Tour | All Ages",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/naomi-scott/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-04-10T23:23:07.323100Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_23a216ac2529",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-11",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-11",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_52fe4933a526",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-11",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-11",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_431b529c6be5",
              "venue_id": "venue_san_jose_civic",
              "title": "Ringo Starr & His All Starr Band",
              "event_time": "2026-06-11T20:00:00-07:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Legendary Beatle Ringo Starr returns to the stage with his All Starr Band, featuring Steve Lukather, Colin Hay, Warren Ham, Hamish Stuart, Gregg Bissonette, and Buck Johnson.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Tickets are on sale as of November 21.",
              "url": "https://sanjosetheaters.org/event/ringo-starr-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-04-13T03:41:00.620051Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1e10469c90aa",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Bruce Hornsby & The Noisemakers",
              "event_time": "Jun 11 2026 8pm",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Experience a night of virtuosic piano playing and genre-blending rock as Bruce Hornsby & The Noisemakers perform at JAX Vineyards. The evening promises a mix of classic hits and improvisational jazz and bluegrass influences.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "See website for details",
              "url": "http://www.foopee.com/by-band.0.html#Bruce_Hornsby___The_Noisemakers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-13T07:45:14.545259Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-04-13T13:43:34.486945Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_46d0cf6e0c78",
              "venue_id": "venue_cornerstone",
              "title": "Lila Ike",
              "event_time": "Jun 11 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a 7pm/8pm",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Lila_Ike",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_93dc4cd5f7d3",
              "venue_id": "venue_ivy_room",
              "title": "Never Come Down",
              "event_time": "Thursday Jun 11 7:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Portland-based bluegrass outfit Never Come Down brings their polished string band arrangements and vocal harmonies to the venue.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/179604",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e074aa4c8a71",
              "venue_id": "venue_ccrma",
              "title": "Architecture of Shadow",
              "event_time": "Thu, 06/11/2026 - 7:30pm - 8:30pm",
              "venue_name": "CCRMA",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "660 Lomita Dr, Stanford, CA 94305",
              "description": "Leila Abdul-Rauf draws you into a cinematic sound world that explores the darkest corners of the psyche, conceptually delving into the deep vastness of the psyche of woman: wild, ugly, vulnerable, and powerful. On this evening, Leila will showcase pieces throughout her vast catalogue, from the more improvisational and textural ambience of her earlier work to the more rhythmic and vocally-driven intensity of her recent albums.\n\nFREE and Open to All  |  In Person + Livestream",
              "event_types": [
                "live_music",
                "electronic",
                "experimental"
              ],
              "price_info": "FREE",
              "url": "https://ccrma.stanford.edu/events/leila-abdul-rauf-architecture-of-shadow",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ccrma",
                  "source_name": "CCRMA",
                  "fetched_at": "2026-04-26T00:33:01.734389Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-04-27T10:08:04.792191Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ccrma|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_25227d06cc64",
              "venue_id": "venue_rickshaw_stop",
              "title": "Brijean, Mild Universe, dj Nobe",
              "event_time": "Jun 11 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Indie-pop duo Brijean brings their tropical, danceable grooves to the stage with support from Mild Universe and DJ Nobe.",
              "event_types": [
                "live_music",
                "electronic",
                "dj_party"
              ],
              "price_info": "$30 7pm/8pm",
              "url": "http://www.foopee.com/by-band.0.html#Brijean",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33a30f06db80",
              "venue_id": "venue_thee_stork_club",
              "title": "The Heeters, Wren and Juniper Ingber",
              "event_time": "Jun 11 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Live show featuring The Heeters and Wren and Juniper Ingber.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 8pm",
              "url": "http://www.foopee.com/by-band.1.html#Heeters",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-06T12:23:55.448463Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-07T14:13:04.957748Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1cfec6e91c49",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-11",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4a540928d4fa",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-11",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ea66d714bd2",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-11T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-11T14:00:00",
              "event_date": "2026-06-11",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-11",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_059b3fe7bfd2",
              "venue_id": "venue_cafe_du_nord",
              "title": "Camp Blue, Famous Friend, Floats",
              "event_time": "Jun 11 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Camp_Blue",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e78ba72c7daa",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-11",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-11",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e341c5e4635",
              "venue_id": "venue_the_lost_church",
              "title": "You’re Going to Die",
              "event_time": "2026-06-11",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live performance event at The Lost Church San Francisco.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001mAcR2AU",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_00512dbbeed4",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Thu Jun 11 2026",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/cc/comedy-oakland-at-elbo-room-4794459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c8c9974af37",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Thursday Night Live Music",
              "event_time": "2026-06-11T18:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-11T18:00:00",
              "event_date": "2026-06-11",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Mid-week live music performances that transform dinner into a social event. Featuring local musicians playing blues and classic rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ccf0640a66a9",
              "venue_id": "venue_berkeley_piano_club",
              "title": "Musings",
              "event_time": "2026-06-11T14:00:00",
              "venue_name": "Berkeley Piano",
              "event_start": "2026-06-11T14:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2724 Haste St, Berkeley, CA 94704",
              "description": "Gail D. Hernández Rosa presents 'Musings,' an immersive concert reimagining baroque music through folk traditions, contemporary sounds, and electronic textures, featuring works by Purcell and Bach.",
              "event_types": [],
              "price_info": "Check ticket price on event page",
              "url": "https://www.eventbrite.com/e/musings-in-concert-tickets-123456789",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_piano_club",
                  "source_name": "Berkeley Piano",
                  "fetched_at": "2026-05-15T12:05:22.944658Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_piano_club|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_286201b9952d",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-11T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-11T14:00:00",
              "event_date": "2026-06-11",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-11",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_101293ca01d1",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-11",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a7cefb047669",
              "venue_id": "venue_hotel_mac",
              "title": "AOPR Meetup at The Mac",
              "event_time": "2026-06-11T16:00:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-11T16:00:00",
              "event_date": "2026-06-11",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "A monthly gathering of the Arts of Point Richmond (AOPR) members and guests in the Hotel Mac piano bar. A casual no-host get-together to discuss art, life, and community.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.artsofpointrichmond.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_360e6d845cb5",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-06-11T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-11T18:30:00",
              "event_date": "2026-06-11",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c5ddd65e9668",
              "venue_id": "venue_cal_academy_of_science",
              "title": "NightLife: June 11",
              "event_time": "2026-06-11T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-06-11T18:00:00",
              "event_date": "2026-06-11",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Weekly 21+ event featuring DJs, outdoor bars, and late-night access to all exhibits.",
              "event_types": [],
              "price_info": "$25 - $35",
              "url": "https://www.calacademy.org/nightlife",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_39a5922c17cf",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-06-11T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_14586d6d89df",
              "venue_id": "venue_ocean_ale_house",
              "title": "Monthly Blues Jam",
              "event_time": "2026-06-11T18:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-06-11T18:00:00",
              "event_date": "2026-06-11",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Monthly blues jam session featuring house band Up Jumped the Devil. Open to guest performers.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.amityrosemusic.com/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_974efafa50c3",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_885bd02e475c",
              "venue_id": "venue_alhambra_public_house",
              "title": "Trivia Night",
              "event_time": "2026-06-11T19:30:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Weekly Trivia Night! Test your knowledge and compete for prizes.",
              "event_types": [],
              "price_info": "Free",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4c847829c591",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "Weekly Thursday night Argentine Tango milonga.",
              "event_types": [],
              "price_info": "$20",
              "url": "https://www.verdiclub.net/event/milonga-malevaje/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-05-15T20:16:36.315701Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_verdi_club|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1563dc120905",
              "venue_id": "venue_first_church_berkeley",
              "title": "Exhibition & Marketplace",
              "event_time": "2026-06-11T12:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-11T12:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Weekly midday meditation featuring organist William Ludtke. Includes 30 minutes of silent meditation followed by 30 minutes of organ music.",
              "event_types": [
                "art",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://www.berkeleyfestival.org/exhibition-marketplace",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-11",
              "run_id": "run_b0577f97cd12",
              "run_label": "BFX 2026: Exhibition & Marketplace, Jun 11 – Jun 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_032a00d49fd6",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Choral Evensong",
              "event_time": "2026-06-11T17:30:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-11T17:30:00",
              "event_date": "2026-06-11",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "The Grace Cathedral Choir of Men and Boys performs traditional Anglican liturgy in this mid-week evening service.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://gracecathedral.org/events/choral-evensong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f7ab89458594",
              "venue_id": "venue_punch_line",
              "title": "Helen Hong",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Helen Hong is a comedian, actor, and host known for her sharp wit and appearances on NPR's 'Wait Wait... Don't Tell Me!'",
              "event_types": [],
              "price_info": "$27.65 - $42.50",
              "url": "https://www.ticketmaster.com/helen-hong-san-francisco-california-06-11-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bc1647629a82",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Gina Brillon",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Special event stand-up comedy show with Gina Brillon, featuring Chris Grullon and Iain Langlands.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/130749",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-11",
              "run_id": "run_b4b9a0d3d51b",
              "run_label": "Gina Brillon, Jun 11 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_639076c9119e",
              "venue_id": "venue_the_freight__salvage",
              "title": "Musical Story Time",
              "event_time": "2026-06-11T10:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-11T10:30:00",
              "event_date": "2026-06-11",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Rental event musical story time with the Berkeley Public Library Story Time Band.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "FREE",
              "url": "https://berkeleypubliclibrary.libnet.info/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_619371bd400a",
              "venue_id": "venue_the_freight__salvage",
              "title": "Third World: A Tribute to Cat Coore",
              "event_time": "2026-06-11T20:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Reggae concert with dance floor / standing area open.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$44/$49",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f47215544b52",
              "venue_id": "venue_peacock_lounge",
              "title": "Bob Ostertag",
              "event_time": "6/11/2026 8:00 PM",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "Bob OstertagA criminally-rare live set from San Francisco's very own brigand of sound captured by handmade and virtual synths, samplers and a multivalent mind.https://bobostertag.bandcamp.com/musicAntimatter & Jacob Felix HeuleHeule performs a sonic anti-aliasing in real time through micro percussion and electronics whereas Antimatter summons sound from way down the block, a seeming far off source captured through a minimal materialism revealing flow variances all the way to the PG&E substation.https://www.youtube.com/watch?v=3sM3N8E2VwYPhilip PerkinsWith an ear as broad as it is precisely focused, he coined the term \"environmental observations\" and became widely sought for ballet, opera, film, music engineering, recording outside the studio, editing, and mastering work. Yet chances to hear his most personal solo work performed live have been exceedingly rare.http://www.philper.com/Anti-EarAnti-Ear is right this very minute corkscrewing toward our Peacocked chickencoup for a hard deck-landing. Tonight, our species having flown one more coup-d'etat must hatch again liplessly from the dark downy bosom of his synth, if ever we hope to hear beyond life's flappings.http://www.stin-g.com/anti-ear.htm | https://youtube.com/watch?v=dTZMHDCISS8 More...",
              "event_types": [
                "live_music",
                "electronic",
                "experimental"
              ],
              "price_info": "$5 - $15 (No one turned away for lack of funds)",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23024",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-16T10:18:29.846571Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-17T13:59:15.666196Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_45e7311d5825",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-11T18:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-11T18:00:00",
              "event_date": "2026-06-11",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "What does it take to live in space … and who else might be out there? Find out at the opening of our summer exhibition Life in Space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-11",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8bdcaafd6556",
              "venue_id": "venue_greek_theatre",
              "title": "JAMES BLAKE",
              "event_time": "June 11, 2026 7:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Grammy Award-winning musician and producer James Blake performs hits and new music from his album 'Trying Times'.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/james-blake-260611",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-17T14:14:15.324242Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba3057158f3e",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-11T18:30:00",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-11T18:30:00",
              "event_date": "2026-06-11",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-11",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a013239d1ed5",
              "venue_id": "venue_rootstock_arts",
              "title": "Spruce Ritual: Karishma Sharma",
              "event_time": "2026-06-11T19:30:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Karishma Sharma presents a captivating dance performance that blends the precision of traditional Kathak with contemporary movement. This ritualistic piece explores storytelling through fluid motion and percussive footwork.",
              "event_types": [
                "live_music",
                "indian_classical",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bb0e41a9292",
              "venue_id": "venue_tommy_ts",
              "title": "T SPRINGS",
              "event_time": "2026-06-11",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.tommyts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_699c1d96c469",
              "venue_id": "venue_the_sound_room",
              "title": "Nathan Nakadegawa-Lee & Kaz George Group",
              "event_time": "Thursday, June 11, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "An evening of original and arranged compositions with stylistic influences from jazz, blues, and free improvisation.\n\nNathan Nakadegawa-Lee - saxophone\n\nKaz George\n\nIsaac Coyle - bass\n\nMiles Turk - drums\n\nBorn and raised in Oakland, California, saxophonist, clarinetist, and composer Nathan Nakadegawa-Lee embodies a striking mix of sounds deriving from improvised, vocal, blues, and jazz traditions. He is a graduate of The New School’s Jazz and Contemporary Music program, where he studied with luminaries such as Melissa Aldana, Darius Jones, Tivon Pennicott, David Glasser, Or Bareket, Jon Irabagon, Anat Cohen, Joshua Rubin, and Ismail Lumaneovsky. In Oakland, Nathan has taught at Oakland Summer Music, Oakland Public Conservatory, and his alma mater Claremont Middle School, providing music education at no cost to middle schoolers.\n\nAs a performer, Nathan has appeared alongside generational artists such as Billy Martin, Faye Carol, Azure McCall, Selendis Sebastian Alexander Johnson, and Lesley Mok. He has performed internationally in Tokyo, and the Bern Jazz Festival in Switzerland, in the Bay Area at Yoshi’s Oakland, and The Sound Room, and NYC at Dizzy’s Jazz Club, The Stone, and Le Poisson Rouge. A big supporter of community organizing, Nathan hosts eclectic house shows and Improv Nights, and continues to compose, improvise, and perform in New York City and the Bay Area.\n\nKazemde George is an African American Jazz saxophonist, composer, and educator based in Brooklyn, NY. Raised by Caribbean parents in Berkeley, California, Kaz has been playing Saxophone, Piano and Percussion in a wide range of musical styles from an early age.\n\nKazemde attended college in Boston where he completed the Harvard/New England Conservatory (NEC) Joint program, receiving his Bachelors in Neurobiology (Harvard) and his Masters in Jazz Composition (NEC). At NEC, Kazemde studied with Miguel Zenón, Jerry Bergonzi, Jason Moran, Cecil McBee, Donny McCaslin, Danilo Pérez, and John McNeil. In 2012, he received Harvard’s George Peabody Gardener Fellowship to study traditional music in La Habana, Cuba for ten months. Through his travels, Kaz has expanded his focus from Hip-Hop and Jazz to include the full spectrum of musical styles which blossomed from the African Diaspora, including Afro-Cuban, Afro-Caribbean, Afro-Brazilian, and African-American traditions. As he sees it, the study of these musical styles serves as a way to regain cultural histories that were lost through the processes of African-American Slavery.\n\nToday, his focus is aligned towards music, but Kazemde is also a biologist at heart, and his quest to understand this wide breadth of styles is driven by an analytical mind with a scientific approach.\n\nIsaac Coyle is a bassist, composer, and educator residing in the San Francisco Bay Area. Since graduating from the Berklee College of music in 2023, Isaac has become one of the top call bassists in the Bay Area jazz scene. In addition he is also a frequent collaborator in Terri Lyne Carrington’s New Standards band, performing throughout the country.\n\nRaised in Oakland and immersed in the Bay Area’s vibrant music community, drummer Miles Turk seeks to follow the tradition in appreciating the cultural importance of blues, bebop, jazz, etc. along with shining a light on his own musical influences coming from R&B, Hip-Hop, Funk, & many more.\n\nTickets at Nathan Nakadegawa-Lee & Kaz George Group",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/nathan-nakadegawa-lee-amp-kaz-george-group",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d6e429a3169",
              "venue_id": "venue_mr_tipples",
              "title": "Peter Horvath Group",
              "event_time": "6/11/2026 7:00 PM",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "OFFSITE: Peter Horvath Group + Jazzschool Advanced High School Jazz Workshop7pm – The Jazzschool Advanced High School Jazz Workshop8:45pm – Peter Horvath Group More...",
              "event_types": [
                "live_music",
                "jazz",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23045",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ef197559747",
              "venue_id": "venue_black_cat",
              "title": "Veotis Latchison",
              "event_time": "06/11/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nVeotis Latchison is an innovative songwriter, producer, and vocalist from Oakland, California. His artistic expression is deeply influenced by a mix of hip hop, R&B, soul, and jazz, drawing inspiration from artists like James Brown, D’Angelo, Donny Hathaway, Big yuki, Robert Glasper etc. widely known as a strong spirited Vocalist Veotis plays extensively throughout the bay and beyond. His original music is best described as “Epic story tellings of a young man trying for better”. Incorporating colorful and expansive  melodies with poetry comparable to Nat king Cole, Cy Colman and Biggie Smalls. \n\nBand Lineup:\nVeotis Latchison, vocals\nMichael Potter, piano \nJC Grady, drums \nNico Colucci, sax",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11376/?date=2026-06-11",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5420d6f5629c",
              "venue_id": "venue_yoshis",
              "title": "Kim Waters",
              "event_time": "THU 6.11 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "CHART-TOPPING AND MULTI-PLATINUM-SELLING SAXOPHONIST",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$40 - $79",
              "url": "https://yoshis.com/events/buy-tickets/kim-waters-8/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_975687809b3a",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Fog City Swing",
              "event_time": "2026-06-11T19:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Ladies and Gentlemen, introducing Fog City Swing! The bay area’s newest and hottest jazz and swing band featuring an electrifying three horn front line, stellar crooning vocals, and a swing till you drop rhythm section. Enjoy an evening of swing, hard bop, and even some classic pop favorites performed only the way they can! This seven piece ensemble will transport you to the 1940’s and beyond, it is truly the world’s smallest big band!",
              "event_types": [],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/fog-city-swing-8/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8577776e9af",
              "venue_id": "venue_omca",
              "title": "Mildred Howard: Poetics of Memory",
              "event_time": "2026-06-11",
              "venue_name": "OMCA",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "You’re invited to the Member Opening for OMCA’s newest exhbition! Mildred Howard: Poetics of Memory is the first major museum exhibition to celebrate the work of beloved Bay Area artist Mildred Howard. Spanning Howard’s five-decade practice, Poetics of Memory brings together her renowned collages, found-object sculptures, and immersive installations that explore memory, identity, and the African American experience.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Free for Members",
              "url": "https://museumca.org/event/member-preview-hours-mildred-howard/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc774ad39b8c",
              "venue_id": "venue_act_theater",
              "title": "DAILY STOIC LIVE",
              "event_time": "JUN 11, 2026 at 7PM",
              "venue_name": "ACT Theater",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "This live presentation explores the practical applications of Stoic philosophy for navigating the challenges of modern life.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/limited-engagements/daily-stoic-live",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33c8b8fbc7fc",
              "venue_id": "venue_cornerstone",
              "title": "Mihali",
              "event_time": "2026-06-11T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-11T03:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Mihali Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/mihali-177755",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4aa5d55bb069",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-11T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-11",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_010204bfffdf",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-11",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-11",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f5e8cf2593d2",
              "venue_id": "venue_ashkenaz",
              "title": "Iko Ya Ya",
              "event_time": "06/11/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Cajun/Zydeco 'Swamp n' Roll'",
              "event_types": [
                "live_music",
                "latin_world",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/183869",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f55718db64c1",
              "venue_id": "venue_4_star_theater",
              "title": "Mojohand, Barfight, Henry Plotnick Trio",
              "event_time": "Jun 11, 2026 8:00pm – 11:00pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This triple-bill concert features live sets from Mojohand, Barfight, and the Henry Plotnick Trio. It offers a diverse range of musical styles from local and touring acts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-mojohand",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0dd6a1bb6156",
              "venue_id": "venue_yerba_buena_center",
              "title": "Diedrick Brackens: gather tender night",
              "event_time": "2026-06-11",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The artist’s first solo exhibition in the Bay Area.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/diedrick-brackens-gather-tender-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-11",
              "run_id": "run_f30fe18c78b9",
              "run_label": "Diedrick Brackens: gather tender night, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0ff28f27f68",
              "venue_id": "venue_yerba_buena_center",
              "title": "Conjuring Power",
              "event_time": "2026-06-11",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A multimedia exhibition exploring the resilient beauty, cultural richness, and fierce resistance of Bay Area queer and trans communities.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/conjuring-power-roots-futures-of-queer-trans-movements/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-06-11",
              "run_id": "run_26097aeb8504",
              "run_label": "Conjuring Power: Roots & Futures of Queer & Trans Movements, Mar 13 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c833d8a41509",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 11, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-11-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c556d592fb1d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-11",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-11",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b128308811ff",
              "venue_id": "venue_sf_eagle",
              "title": "No Captains, Pupils Punk, and more",
              "event_time": "Jun 11 2026 8:30pm",
              "venue_name": "SF Eagle",
              "event_start": "2026-06-11T20:30:00",
              "event_date": "2026-06-11",
              "venue_address": "398 12th St, San Francisco, CA 94103",
              "description": "21+ $10 8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.2.html#No_Captains",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_eagle|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_683c24e27e6d",
              "venue_id": "venue_greek_theatre",
              "title": "James Blake",
              "event_time": "Jun 11 2026 5:30pm/7pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-06-11T17:30:00",
              "event_date": "2026-06-11",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a 5:30pm/7pm #",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#James_Blake",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_abcb80a399a4",
              "venue_id": "venue_kilowatt",
              "title": "Quintron & Miss Pussycat",
              "event_time": "Jun 11 8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "This unique show features the organ-driven rock and puppetry of Quintron & Miss Pussycat with Diesel Dudes and Replica Watch.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.72",
              "url": "http://www.foopee.com/by-band.2.html#Quintron",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ad87cffe5524",
              "venue_id": "venue_magic_theatre",
              "title": "A Trojan Woman",
              "event_time": "2026-06-11",
              "venue_name": "Magic Theatre",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Stop The Wind Theatricals presents a Trojan Woman by Sara Farrington. Directed by Meghan Finn.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_magic_theatre",
                  "source_name": "Magic Theatre",
                  "fetched_at": "2026-05-18T15:35:30.578557Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_magic_theatre|2026-06-11",
              "run_id": "run_cb94c356bdd1",
              "run_label": "A Trojan Woman, Jun 10 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_59a2c851c274",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-11T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-11T18:00:00",
              "event_date": "2026-06-11",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b250d3cc7689",
              "venue_id": "venue_the_fireside",
              "title": "Thursday Music & Lessons",
              "event_time": "2026-06-11",
              "venue_name": "The Fireside",
              "event_start": "2026-06-11",
              "event_date": "2026-06-11",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Ukulele lessons, live rock, jazz & blues guitar, DJ house music, or all vinyl soul Depending on the week",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "dj_party",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_37dd1be9046c",
              "venue_id": "venue_de_young",
              "title": "Late Night Editions: The Etruscans",
              "event_time": "2026-06-11 6–10 pm",
              "venue_name": "De Young",
              "event_start": "2026-06-11T22:00:00",
              "event_date": "2026-06-11",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Visitors can enjoy an evening of special programming and after-hours access to the museum's exhibition on Etruscan civilization.",
              "event_types": [
                "community",
                "art"
              ],
              "price_info": "Legion of Honor, Party, Party",
              "url": "https://www.famsf.org/events/late-night-editions-etruscans",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db77bc6fc30a",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic with Charlie Kaupp",
              "event_time": "2026-06-11T19:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-11T19:00:00",
              "event_date": "2026-06-11",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ecc0bf76e0ce",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "Funny Women with Kat",
              "event_time": "Thu Jun 11, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-11T19:30:00",
              "event_date": "2026-06-11",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Hosted by Kat, this showcase features a talented lineup of female comedians delivering a night of premier stand-up.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/really-funny-comedians-who-happen-to-san-francisco-california-06-11-2026/event/1C0064A50D6742B8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c130fa428228",
              "venue_id": "venue_san_jose_improv",
              "title": "Jamie Lissow",
              "event_time": "Jun 11 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-06-11T20:00:00",
              "event_date": "2026-06-11",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/jamie+lissow/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-06-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-12": {
          "date": "2026-06-12",
          "updated_at": "2026-05-18T16:16:06.664902Z",
          "events": [
            {
              "event_id": "evt_b5e748a492d4",
              "venue_id": "venue_the_fillmore",
              "title": "Toadies: The Charmer Tour",
              "event_time": "Fri Jun 12, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Alternative rock mainstays Toadies perform at The Fillmore as part of their \"The Charmer Tour,\" featuring hits from their extensive discography.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/toadies-the-charmer-tour-san-francisco-california-06-12-2026/event/1C00644A9D019124",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-06T07:30:02.358221Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e1488b7becfa",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Lip Critic / Flatwounds / Bejalvin",
              "event_time": "Friday June 12 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; electronic punk; alternative metal \\ pseudo neo-grunge; hardcore hyperpop jazz",
              "event_types": [
                "live_music",
                "rock",
                "electronic",
                "jazz"
              ],
              "price_info": "$18/$20",
              "url": "http://www.bottomofthehill.com/20260612.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_46ddf99d603a",
              "venue_id": "venue_bimbos_365",
              "title": "Tiny Desk Contest On the Road 2026",
              "event_time": "June 12 - Show: 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Jun 12 Tiny Desk Contest on the Road a/a 7pm/8pm",
              "event_types": [
                "live_music",
                "festival"
              ],
              "price_info": "SOLD OUT",
              "url": "https://bimbos365club.com/tm-event/tiny-desk-contest-on-the-road-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-04-10T23:23:07.323100Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e4afafb2e784",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-12",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-12",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ff4cc01a8dc",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-12",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-12",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4a021b087eba",
              "venue_id": "venue_the_ritz",
              "title": "NERD HALEN",
              "event_time": "2026-06-12T20:00:01-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-12T20:00:01",
              "event_date": "2026-06-12",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "NERD HALEN\n\n \n\nFRIDAY JUNE 12, 2026\nDoors: 8PM // All Ages // $20 Advance – $25 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 Advance – $25 Day-of-Show",
              "url": "https://www.ticketweb.com/event/nerd-halen-the-ritz-tickets/14739113",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9fd044f21273",
              "venue_id": "venue_cow_palace",
              "title": "Gryffin, Lost Frequencies",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Live Gryffin concert at Cow Palace. Event notes list June 12 & 13 with 7 PM doors and 8 PM show; this detail page is for June 12. 18+ event.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Tickets start at $85.00",
              "url": "http://www.foopee.com/by-band.1.html#Gryffin",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-04-13T13:45:46.436980Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-28T12:42:23.830301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cow_palace|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee8eb502dacf",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Kristin Key",
              "event_time": "Jun 12 2026 7pm/8pm",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-06-12T19:00:00",
              "event_date": "2026-06-12",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Comedian Kristin Key brings her unique blend of musical comedy and rapid-fire wit to the vineyard for an evening of laughter. Her performance features clever original songs and relatable storytelling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "See website for details",
              "url": "http://www.foopee.com/by-band.1.html#Kristin_Key",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-13T07:45:14.545259Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-04-13T13:43:34.486945Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ea37a51fe86",
              "venue_id": "venue_cornerstone",
              "title": "Troy Doherty",
              "event_time": "Jun 12 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-12T19:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $33.43 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33.43",
              "url": "http://www.foopee.com/by-band.3.html#Troy_Doherty",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_213812aef926",
              "venue_id": "venue_rickshaw_stop",
              "title": "Dorian Electra",
              "event_time": "Jun 12 2026 8pm/9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Electra $37.14 ($115.32 vip)",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$115.32 vip) 8pm/9pm",
              "url": "http://www.foopee.com/by-band.1.html#Dorian_Electra",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ff6a5a423b7",
              "venue_id": "venue_the_independent",
              "title": "RAVE JESUS",
              "event_time": "6.12 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "house, christian EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/rave-jesus/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-06T10:24:49.808742Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-07T17:12:50.228845Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_672e0a77cb01",
              "venue_id": "venue_thee_stork_club",
              "title": "Valley Wolf",
              "event_time": "Jun 12 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Show featuring Valley Wolf, Philthy Dronez, El Pecado de Juana, and DJ Lizzy al Toque.",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$20 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Valley_Wolf",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-06T12:23:55.448463Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-07T14:13:04.957748Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cdc34ae84c8a",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-12",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dc3b7132d47e",
              "venue_id": "venue_924_gilman",
              "title": "Bitchfit & Friends",
              "event_time": "Jun 12 6:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-12T18:30:00",
              "event_date": "2026-06-12",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages summer fest show at 924 Gilman. Doors open at 6:30 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.0.html#Bitchfit",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_270b8d181424",
              "venue_id": "venue_brick_and_mortar",
              "title": "By Storm, Corridos Ketamina",
              "event_time": "Jun 12 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "By Storm brings the \"My Ghost Go Ghost Tour\" to Brick and Mortar for an evening of live music. This performance showcases the group's evolving sound and energetic live show.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$29.54 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#By_Storm",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-11T10:59:43.944763Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a3590bfc9d11",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Dogwater, Loco Tranquilo, Integra Pink",
              "event_time": "Jun 12 7:30pm/8pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "Experience a showcase of emerging talent featuring the unique sounds of Dogwater, Loco Tranquilo, and Integra Pink.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12",
              "url": "http://www.foopee.com/by-band.1.html#Dogwater",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-09T11:59:15.073609Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-05-11T13:05:02.106536Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb06f143d488",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-12",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_69a27e0d558d",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-12T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-12T14:00:00",
              "event_date": "2026-06-12",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-12",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f855e6ef428",
              "venue_id": "venue_cafe_du_nord",
              "title": "Leah Kate",
              "event_time": "Jun 12 9pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "9pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Leah_Kate",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_274587334649",
              "venue_id": "venue_the_chapel",
              "title": "Don Carlos, Floratura, dj Irie Dole",
              "event_time": "Jun 12 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$55.67 8pm/9pm (was feb 19th)",
              "event_types": [
                "live_music",
                "latin_world",
                "dj_party"
              ],
              "price_info": "$55.67",
              "url": "http://www.foopee.com/by-band.0.html#Don_Carlos",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0548097058c6",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-12",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-12",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53beeaa1dd0e",
              "venue_id": "venue_the_lost_church",
              "title": "Lucy Clearwater & Gillian Grogan",
              "event_time": "2026-06-12",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance featuring Lucy Clearwater with special guest Gillian Grogan at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001mAha2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_15450a73d645",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Fri Jun 12 2026",
              "event_time": "2026-06-12T19:30:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show presented by Comedy Oakland at Elbo Room Jack London.",
              "event_types": [],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/cc/comedy-oakland-at-elbo-room-4794459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-05-15T10:30:47.169299Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9e5356af1af2",
              "venue_id": "venue_berkeley_piano_club",
              "title": "By George! A Handel Celebration",
              "event_time": "2026-06-12T10:30:00",
              "venue_name": "Berkeley Piano",
              "event_start": "2026-06-12T10:30:00",
              "event_date": "2026-06-12",
              "venue_address": "2724 Haste St, Berkeley, CA 94704",
              "description": "A mid-morning repast of musical delights by Georg Frideric Handel, featuring the Bertamo Trio with guest contralto Karen Clark and guest violinist Cynthia Keiko Black. Part of the BFX Fringe Series.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.bertamo.com/upcoming-performances",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_piano_club",
                  "source_name": "Berkeley Piano",
                  "fetched_at": "2026-05-15T12:05:22.944658Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_berkeley_piano_club|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c6859d46fa6c",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-12T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-12T14:00:00",
              "event_date": "2026-06-12",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-12",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fff5e0890d13",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-12",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_500b120e5a47",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-12",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-12",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d56e3fec4019",
              "venue_id": "venue_alhambra_public_house",
              "title": "Michelle Lambert Concert",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Live concert performance by Michelle Lambert.",
              "event_types": [],
              "price_info": "Check website",
              "url": "https://www.shazam.com/concert/michelle-lambert-redwood-city-alhambra-irish-house-20260612",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8e19be150a45",
              "venue_id": "venue_cry_baby",
              "title": "Baby Slaps",
              "event_time": "2026-06-12T22:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-06-12T22:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Rap, R&B, hip-hop, and club-bangers party; artists and patio takeover TBD.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Limited free RSVP available.",
              "url": "https://crybaby.live/tm-event/baby-slaps-oaklands-top-turn-up-function-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_759eba09ed90",
              "venue_id": "venue_first_church_berkeley",
              "title": "Exhibition & Marketplace",
              "event_time": "2026-06-12T12:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-12T12:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "A three-day showcase of rare instruments, books, and accessories for early music. Free and open to the public.",
              "event_types": [
                "art",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://www.berkeleyfestival.org/exhibition-marketplace",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-12",
              "run_id": "run_b0577f97cd12",
              "run_label": "BFX 2026: Exhibition & Marketplace, Jun 11 – Jun 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8f22f476de51",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "AURA at Grace Cathedral (with Live Quartet)",
              "event_time": "2026-06-12T18:15:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-12T18:15:00",
              "event_date": "2026-06-12",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A mesmerizing 45-minute journey of light and sound, featuring 360-degree projections and a live quartet.",
              "event_types": [],
              "price_info": "From $24.27",
              "url": "https://auragracecathedral.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ce0b2cb486a0",
              "venue_id": "venue_the_monarch",
              "title": "Distant Matter",
              "event_time": "2026-06-12T22:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-06-12T22:00:00",
              "event_date": "2026-06-12",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Electronic music event featuring Distant Matter.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/e/distant-matter-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-05-15T20:42:15.861775Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monarch|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4c14e4482d35",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: Neo-Soul Favorites",
              "event_time": "2026-06-12T18:30:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-12T18:30:00",
              "event_date": "2026-06-12",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "A multi-sensory musical experience featuring neo-soul favorites under the gentle glow of candlelight.",
              "event_types": [],
              "price_info": "From $37.80",
              "url": "https://feverup.com/en/san-jose/candlelight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6bb8177bd6ff",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: The Best of Joe Hisaishi",
              "event_time": "2026-06-12T20:45:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-12T20:45:00",
              "event_date": "2026-06-12",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "Experience the music of legendary composer Joe Hisaishi, known for his work with Studio Ghibli, in a candlelit concert.",
              "event_types": [],
              "price_info": "From $37.26",
              "url": "https://feverup.com/en/san-jose/candlelight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_28da0d9ec6d1",
              "venue_id": "venue_biscuits__blues",
              "title": "J.C. Smith Band",
              "event_time": "2026-06-12T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-12T18:30:00",
              "event_date": "2026-06-12",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Bay Area blues dynamo J.C. Smith, an award-winning guitarist and singer with an electrifying Gibson 335 sound and a passionate, soulful presence.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260612jcsmithband",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8213b26737d9",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Annual Backyard Cookout",
              "event_time": "2026-06-12T18:30:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-06-12T18:30:00",
              "event_date": "2026-06-12",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Summer kickoff cookout behind the church with burgers, veggie burgers, and a potluck of sides and beverages.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://mailchi.mp/b5773b963445/gathered-17313107",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-16T01:02:23.851080Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d5d0089841be",
              "venue_id": "venue_the_setup",
              "title": "The Setup at The Palace Theater (Speakeasy Comedy)",
              "event_time": "2026-06-12T21:00:00",
              "venue_name": "The Setup",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "Speakeasy-style comedy with sharp stand-up and surprise lineups in an intimate room where every seat is close to the laughs.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$20.00",
              "url": "https://www.unation.com/event/the-setup-at-the-palace-theater-speakeasy-comedy-52345678",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-05-16T01:44:41.479756Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_setup|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a6ea40d07772",
              "venue_id": "venue_punch_line",
              "title": "Helen Hong",
              "event_time": "2026-06-12T21:45:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-12T21:45:00",
              "event_date": "2026-06-12",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Helen Hong is a comedian, actor, and host known for her sharp wit and appearances on NPR's 'Wait Wait... Don't Tell Me!'",
              "event_types": [],
              "price_info": "$27.65 - $42.50",
              "url": "https://www.ticketmaster.com/helen-hong-san-francisco-california-06-12-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_04ff078fc7da",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Gina Brillon",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Special event stand-up comedy show with Gina Brillon, featuring Chris Grullon and Iain Langlands.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/130749",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-12",
              "run_id": "run_b4b9a0d3d51b",
              "run_label": "Gina Brillon, Jun 11 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8c2a527cb028",
              "venue_id": "venue_the_freight__salvage",
              "title": "Oakland Interfaith Gospel Choir",
              "event_time": "2026-06-12T19:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Gospel concert celebrating Juneteenth.",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "community"
              ],
              "price_info": "$39/$44",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e0517c185570",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-06-12T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "San Francisco’s longest-running neighborhood jazz party!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f6ff26279893",
              "venue_id": "venue_center_for_new_music",
              "title": "Kra Pao",
              "event_time": "Jun 12",
              "venue_name": "Center for New Music",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "This event at the Center for New Music features a performance of contemporary or experimental music. Attendees can expect an innovative sonic experience characteristic of the venue's avant-garde programming.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/kra-pao/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-05-16T10:27:19.919834Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a723fa0fc4df",
              "venue_id": "venue_cafe_borrone",
              "title": "Clint Baker & The All Stars",
              "event_time": "2026-06-12T18:00:00",
              "venue_name": "Cafe Borrone",
              "event_start": "2026-06-12T18:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1010 El Camino Real, Menlo Park, CA 94025",
              "description": "Live music performance",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.cafeborrone.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_borrone",
                  "source_name": "Cafe Borrone",
                  "fetched_at": "2026-05-16T10:32:43.331718Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_cafe_borrone|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55f1f6433d6f",
              "venue_id": "venue_meyhouse",
              "title": "Anthony Wonsey: Sobriety Sessions",
              "event_time": "2026-06-12T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-06-12T17:00:00",
              "event_date": "2026-06-12",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Anthony Wonsey Quartet performs 'Sobriety Sessions' at Meyhouse Jazz.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/anthony-wonsey-quartet-sobriety-sessions-fri-6-12-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4905473ed04e",
              "venue_id": "venue_meyhouse",
              "title": "Anthony Wonsey: Sobriety Sessions",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Anthony Wonsey Quartet performs 'Sobriety Sessions' at Meyhouse Jazz.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/anthony-wonsey-quartet-sobriety-sessions-fri-6-12-8-pm-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_51667a69f5b7",
              "venue_id": "venue_gray_area",
              "title": "Visible Cloaks: Paradessence",
              "event_time": "2026-06-12T19:30:00",
              "venue_name": "Gray Area",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Visible Cloaks: ParadessenceExperience Paradessence, the latest from Visible Cloak, a shimmering journey of emergence and illusion unfolding in a luminous, hyperreal nocturne. More...",
              "event_types": [
                "electronic",
                "live_music",
                "experimental"
              ],
              "price_info": "Check website for details",
              "url": "https://grayarea.org/event/visible-cloaks-paradessence/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-17T10:21:44.258811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_recombinant",
                  "source_name": "Recombinant",
                  "fetched_at": "2026-05-17T15:06:25.362807Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_52396a9c38c3",
              "venue_id": "venue_the_cats",
              "title": "Stainless",
              "event_time": "2026-06-12",
              "venue_name": "The Cats",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "7:00 PM – 10:00 PM\nStainless",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/stainless-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c818ae3c2676",
              "venue_id": "venue_peacock_lounge",
              "title": "Booksmith presents: Andrew Sean Greer / Villa Coco",
              "event_time": "2026-06-12T19:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-06-12T19:00:00",
              "event_date": "2026-06-12",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "Pulitzer Prize-winning author Andrew Sean Greer celebrates the hometown launch of his new novel, Villa Coco. The event includes a reading and discussion.",
              "event_types": [],
              "price_info": "From $20.00",
              "url": "https://www.booksmith.com/event/andrew-sean-greer-villa-coco",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1e95637c1487",
              "venue_id": "venue_halcyon",
              "title": "GENE FARRIS",
              "event_time": "06/12/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-12T22:00:00",
              "event_date": "2026-06-12",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Chicago house legend Gene Farris returns to Halcyon to deliver a masterclass in groovy, high-energy dance music.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/Z957d7a0befd?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-05-17T11:52:23.715555Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d5fc5c136d22",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-12",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-12",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ae42c38b0d6",
              "venue_id": "venue_f8",
              "title": "Piezo, Ma Sha + Sobolik",
              "event_time": "2026-06-12T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "A night of experimental and club music featuring Piezo, Ma Sha, Sobolik, and more.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/clubs/61234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9987f6db275f",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-06-12T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Friday night DJ performance. Enjoy a wide selection of spirits and rotating California beers on tap.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_51b340b02d26",
              "venue_id": "venue_the_midway",
              "title": "Lana Del Rey - NFR",
              "event_time": "2026-06-12T16:30:00",
              "venue_name": "The Midway",
              "event_start": "2026-06-12T16:30:00",
              "event_date": "2026-06-12",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "An Envelop Immersive Listening Experience @ Midway",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-17T14:35:59.839526Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a832c10af63",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-12",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-12",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf2afba56486",
              "venue_id": "venue_madarae",
              "title": "YASHII",
              "event_time": "2026-06-12T21:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "A live performance by YASHII at Madarae's intimate nightclub setting.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Check website for details",
              "url": "https://www.eventbrite.com/o/madarae-60980005743",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-17T14:56:23.559746Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_madarae|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4d02275eeb80",
              "venue_id": "venue_tommy_ts",
              "title": "CHICO BEAN",
              "event_time": "2026-06-12 2026-06-13",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-12",
              "run_id": "run_9bf5a6db2148",
              "run_label": "CHICO BEAN, Jun 12 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8f26be8b7ff",
              "venue_id": "venue_the_sound_room",
              "title": "Jazz Mafia: Music of Prince",
              "event_time": "Friday, June 12, 2026 6:00 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-12T18:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Oakland’s powerhouse collective Jazz Mafia dives deep into the purple catalog for a special tribute to the music of PRINCE. From slow-burning ballads to high-octane funk anthems, this show reimagines Prince’s iconic songs through the lens of jazz, soul, and hip-hop. Led by composer/trombonist Adam Theis and featuring the electrifying vocals of Kate Lamont, the ensemble brings fresh arrangements and deep grooves to this timeless repertoire.\n\nTickets at The Jazz Mafia Celebrate the Music of Prince 6P show",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/the-jazz-mafia-celebrate-the-music-of-prince-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a64af6314279",
              "venue_id": "venue_the_sound_room",
              "title": "Jazz Mafia: Music of Prince",
              "event_time": "Friday, June 12, 2026 9:00 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Oakland’s powerhouse collective Jazz Mafia dives deep into the purple catalog for a special tribute to the music of PRINCE. From slow-burning ballads to high-octane funk anthems, this show reimagines Prince’s iconic songs through the lens of jazz, soul, and hip-hop. Led by composer/trombonist Adam Theis and featuring the electrifying vocals of Kate Lamont, the ensemble brings fresh arrangements and deep grooves to this timeless repertoire.\n\nTickets at The Jazz Mafia Celebrate the Music of Prince 9P Show",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/the-jazz-mafia-celebrate-the-music-of-prince-9p-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a32303ca08d",
              "venue_id": "venue_make_out_room",
              "title": "VINYLISSIMO",
              "event_time": "2026-06-12T22:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-06-12T22:00:00",
              "event_date": "2026-06-12",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "Vinyl-only DJ night featuring Nino Msk.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://ra.co/events/2026-06-12",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b1c3a0a5190e",
              "venue_id": "venue_mountain_winery",
              "title": "Brit Floyd",
              "event_time": "Jun 12, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Palladium Entertainment Presents | Celebrating the very best of The Wall + Greatest Hits",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1253284",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dba24407513e",
              "venue_id": "venue_black_cat",
              "title": "Greg Abate Quartet",
              "event_time": "06/12/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-12T19:00:00",
              "event_date": "2026-06-12",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nGreg Abate is an American jazz saxophonist, flutist, and composer known for his fiery bebop and hard-bop style. A Berklee-trained musician, he performed early in his career with Ray Charles and later with the Artie Shaw Orchestra under Dick Johnson. Over decades of international touring and recording, Abate has built a reputation as one of the leading modern interpreters of the bebop tradition.\n\nLegendary saxophonist Phil Woods praised him, saying: “Greg Abate is one of the most exciting saxophonists around today... a hard-driving player who swings like mad.”\n\nHis accolades include induction into the Rhode Island Music Hall of Fame (2016), multiple appearances on the JazzWeek Chart, and longstanding recognition as a respected performer, recording artist, and educator.\n\nGreg is in the top 5 Alto Saxophonists in the Downbeat Readers Poll. Greg has an impressive discography in clouding playing on his records such as Phil Woods, Kenny Barron, Claudio Roditi, Billy Hart, Kenny Washington, George Mraz, Rufus Reid, Hilton Ruiz, James Williams, Richie Cole, Ray Drummond, Ben Riley and many others! \n\nJoined by Ben Stolorow on piano, Okon Essiet on bass, and Sylvia Cuenca on drums, get ready for an incredible weekend of jazz! \n\nBand Lineup:\nGreg Abate, saxophone\nBen Stolorow, piano\nOkon Essiet, bass\nSylvia Cuenca, drums",
              "event_types": [],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/11377/?date=2026-06-12",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_74dd5302971a",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "“Emily Day & Cosmo Alleycats”",
              "event_time": "Friday, June 12, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-12T19:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Cosmo Alleycats presents “Old Sweet Songs”, a show celebrating enduring melodies, a bygone style of songwriting, and original songs that contend for placement in the Great American Canon.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/emily-day-cosmo-alleycats-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5c132d47976e",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Ritmo y Voz: Afro-Cuban Jazz Ignited",
              "event_time": "Friday, June 12, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Immerse yourself in the electrifying world of “Ritmo y Voz”, where the deep-rooted traditions of Afro-Cuban jazz meet the power of dynamic vocals. This high-energy performance features an all-star lineup, including guitarist Kai Lyons, percussion master Ernesto, bassist Mazar, and the incomparable Einar Leliebre Nuñez, whose fiery rhythms and soaring voice bring the soul of Santiago de Cuba to life. Drawing from the rich traditions of Rumba, Timba, Changüí, and Batá, the group weaves a tapestry of sound that pulses with history, spirit, and innovation. Their collective experience includes collaborations with legendary artists like Omar Sosa, John Santos, and other torchbearers of the Afro-Cuban and Latin jazz traditions.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/ritmo-y-voz-afro-cuban-jazz-ignited-16/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f67fa31f4ab9",
              "venue_id": "venue_odc_theater",
              "title": "Community Showcase",
              "event_time": "6/12/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003QAhx2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_28e4262e4a0b",
              "venue_id": "venue_ivy_room",
              "title": "Ryan MacNeill and the Big Deal",
              "event_time": "Friday Jun 12 6:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-12T18:30:00",
              "event_date": "2026-06-12",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Ryan MacNeill and the Big Deal perform live at the Ivy Room with supporting sets from Pabsy and Mad Archaic.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/184152",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8521215c595",
              "venue_id": "venue_the_mighty",
              "title": "BTS Night",
              "event_time": "2026-06-12T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "A dedicated dance party celebrating the music of BTS.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starts at $19.66",
              "url": "https://dothebay.com/events/2026/6/12/bts-night-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-18T11:44:14.799981Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_mighty|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7196a83bc713",
              "venue_id": "venue_omca",
              "title": "Kim Nalley Band",
              "event_time": "2026-06-12",
              "venue_name": "OMCA",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Friday Night at OMCA comes alive during the opening week of OMCA’s latest Special Exhibition, Mildred Howard: Poetics of Memory, with a lineup inspired by the artist’s deep connections to music, movement, cultural memory, and public engagement. On the Garden Stage, the Kim Nalley Band delivers powerhouse vocals that blend jazz, blues, and soul. Known for captivating audiences from intimate clubs to global concert halls, Nalley brings warmth, wit, and commanding presence to every performance.",
              "event_types": [
                "live_music",
                "jazz",
                "festival",
                "community"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/friday-nights-at-omca-with-kim-nalley-band/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7bd061cb33c9",
              "venue_id": "venue_envelop_sf",
              "title": "Lana Del Rey: NFR",
              "event_time": "Friday, June 12 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Listen to Lana Del Rey's critically acclaimed album 'Norman Fucking Rockwell!' in a high-definition spatial audio environment. The immersive soundscape brings out the cinematic quality of her songwriting.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260612-lana-del-rey-nfr-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d22b8a13c269",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE SANTANA TRIBUTE CONCERT",
              "event_time": "Friday, Jun 12 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This live performance celebrates the Latin rock fusion and legendary guitar mastery of Carlos Santana.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-santana-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0bb48eff9a92",
              "venue_id": "venue_little_hill_lounge",
              "title": "Brian Mello & Jill Olson",
              "event_time": "2026-06-12T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-12T20:00:00",
              "event_date": "2026-06-12",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Brian Mello performs his songs with a full band including Peter Craft, David Knupp, Russell Tillitt, and Sandra Mello. Jill Olson opens the night with new material.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://allevents.in/el-cerrito/brian-mello-and-jill-olson/80002654321098",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b866248c8925",
              "venue_id": "venue_cornerstone",
              "title": "Lila Iké",
              "event_time": "2026-06-12T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-12T03:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Lila Iké Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/lila-ik--175878",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_653c1755ad99",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-12T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-12",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_373ddfae683a",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-12",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-12",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e91adf9277d6",
              "venue_id": "venue_dna_lounge",
              "title": "Mortified Morti-Pride",
              "event_time": "2026-06-12",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Every 2nd Friday.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dcd6eb652691",
              "venue_id": "venue_ashkenaz",
              "title": "Eric Thompson & Dead Roots Revival",
              "event_time": "06/12/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Just Announced!",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/178784",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-05-18T13:30:25.047632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_28c67f895f7a",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 12, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-12-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cb08d135d6ae",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-12",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-12",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_56a8761de8e8",
              "venue_id": "venue_kilowatt",
              "title": "Yea-Ming And The Rumors, Silverware",
              "event_time": "Jun 12 6:30pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-12T18:30:00",
              "event_date": "2026-06-12",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Rumors, Silverware, Rhymies free",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.3.html#Yea_Ming_And_The_Rumors",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a478033e7b9e",
              "venue_id": "venue_make_out_room",
              "title": "Highwind, Fuzz Attack, Night Fighters",
              "event_time": "Jun 12 6pm",
              "venue_name": "Make Out Room",
              "event_start": "2026-06-12T18:00:00",
              "event_date": "2026-06-12",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "A packed night of music and DJ sets featuring Highwind, Fuzz Attack, Night Fighters, and Imprint Design.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Highwind",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_make_out_room|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_854d84dda37a",
              "venue_id": "venue_mountain_winery",
              "title": "Brit Floyd",
              "event_time": "Jun 12 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-12T17:30:00",
              "event_date": "2026-06-12",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Widely regarded as the world's greatest Pink Floyd tribute show, this performance features a stunning light display and faithful recreations of iconic tracks. The production captures the scale and atmosphere of the original band's legendary tours.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Brit_Floyd",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e05330bc3532",
              "venue_id": "venue_magic_theatre",
              "title": "A Trojan Woman",
              "event_time": "2026-06-12",
              "venue_name": "Magic Theatre",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Stop The Wind Theatricals presents a Trojan Woman by Sara Farrington. Directed by Meghan Finn.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_magic_theatre",
                  "source_name": "Magic Theatre",
                  "fetched_at": "2026-05-18T15:35:30.578557Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_magic_theatre|2026-06-12",
              "run_id": "run_cb94c356bdd1",
              "run_label": "A Trojan Woman, Jun 10 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22eedc18fed8",
              "venue_id": "venue_elis_mile_high",
              "title": "Phantom Hound, Oxide, Dread Spire, Low Cross",
              "event_time": "Fri, Jun 12, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "A heavy lineup of bands including Phantom Hound, Oxide, Dread Spire, and Low Cross perform live.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/phantom-hound-oxide-dread-spire-low-cross",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d21ebf49d97a",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-12T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-12T18:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_17a8c063e98e",
              "venue_id": "venue_1015_folsom",
              "title": "SIDEQUEST",
              "event_time": "June 12, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "SIGN UP | Bottle Service",
              "url": "https://laylo.com/1015sf/MujH9B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d4a1001b2c7d",
              "venue_id": "venue_the_fireside",
              "title": "Friday Night Music/DJs",
              "event_time": "2026-06-12T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-12T18:00:00",
              "event_date": "2026-06-12",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_72622fc3f9bf",
              "venue_id": "venue_the_riptide",
              "title": "Punk Rock and Schlock Karaoke",
              "event_time": "2026-06-12T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-12T21:00:00",
              "event_date": "2026-06-12",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee711edfec18",
              "venue_id": "venue_the_midway",
              "title": "Trinix",
              "event_time": "06/12/2026 2pm-8pm",
              "venue_name": "The Midway",
              "event_start": "2026-06-12T14:00:00",
              "event_date": "2026-06-12",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "future bass, pop EDM",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$22-27 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/trinix-174754",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5d177afdc764",
              "venue_id": "venue_dna_lounge",
              "title": "Sorry For Party Rocking",
              "event_time": "06/12/2026 9:30pm-2:30am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-12T21:30:00",
              "event_date": "2026-06-12",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "big room house, electro house, pop EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12-17 pre / $25 | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/06-12.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_760e5ef8987b",
              "venue_id": "venue_make_out_room",
              "title": "Vinylissimo",
              "event_time": "06/12/2026 10pm-1:50am",
              "venue_name": "Make Out Room",
              "event_start": "2026-06-12T01:50:00",
              "event_date": "2026-06-12",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "italo house global grooves",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 pre / $10 | 21+",
              "url": "https://ra.co/events/2439350",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_make_out_room|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e3971eb0669",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "RON FUNCHES",
              "event_time": "Fri Jun 12, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-12T19:30:00",
              "event_date": "2026-06-12",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Ron Funches brings his lovable personality and unique, soft-spoken comedic style to the stage for an evening of positive vibes and laughs.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/ron-funches-san-francisco-california-06-12-2026/event/1C0064526E476A48",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_523d598cbc88",
              "venue_id": "venue_san_jose_improv",
              "title": "Frankie Quinones",
              "event_time": "Jun 12-13 4 shows",
              "venue_name": "San Jose Improv",
              "event_start": "2026-06-12",
              "event_date": "2026-06-12",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://sanjose.improv.com/sanjose/comic/frankie+quinones/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-05-18T16:13:29.977042Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49cf3bb0c1ca",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Shades of Blue",
              "event_time": "June 12, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-06-12T18:00:00",
              "event_date": "2026-06-12",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "with ART on the Square\n\n\nShades of Blue pays homage to many of the greatest blues artists and their best-known songs. Expect to hear mashups of songs like Robert Johnson's version of \"Crossroads\" and the decidedly more rock version from Cream. Hear a heartfelt medley of the Three Kings (BB, Albert, and Freddie) and their respective hits. Along the way you will hear legendary, iconic blues tunes and classics. There is no other band or group presenting a show like this one. If you are a fan of the genre or not you will certainly want to see Shades of Blue- Great American Rockin' Blues Revival",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "art"
              ],
              "price_info": "Free",
              "url": "https://shadesofblue.net/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-06-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-13": {
          "date": "2026-06-13",
          "updated_at": "2026-05-18T16:00:41.654996Z",
          "events": [
            {
              "event_id": "evt_106f6d02c9be",
              "venue_id": "venue_noe_valley_ministry",
              "title": "Chamber Music Afternoon",
              "event_time": "2026-06-13T15:00:00",
              "venue_name": "Noe Valley Ministry",
              "event_start": "2026-06-13T15:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1021 Sanchez St, San Francisco, CA 94114",
              "description": "Chamber music program featuring Mozart's Sonata for Two Pianos, Jason Gibbs's Experiments in Consilience, Gordon Jacob's Swansea Town, Miriam Hyde's Trio for Piano, Flute, Clarinet, and Brahms's Piano Trio in C major, Op. 87.",
              "event_types": [
                "other"
              ],
              "price_info": "Free (Suggested donation $10 - $20)",
              "url": "https://www.sfcivicmusic.org/concerts/2026/6/13/an-afternoon-of-chamber-music",
              "tags": [],
              "sources": [
                {
                  "source_name": "San Francisco Civic Music",
                  "fetched_at": "2026-03-19T20:48:52.792371Z",
                  "strategy_used": "LLM",
                  "source_id": "s_san_francisco_civic_music"
                },
                {
                  "source_name": "Noe Valley Ministry",
                  "fetched_at": "2026-03-20T00:36:06.152949Z",
                  "strategy_used": "LLM",
                  "source_id": "v_noe_valley_ministry"
                }
              ],
              "match_key": "venue_noe_valley_ministry|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ad2850762db",
              "venue_id": "venue_regency_ballroom",
              "title": "Vtss A/V Tour",
              "event_time": "06/13/2026 8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Techno producer and DJ VTSS brings her hard-hitting, industrial-influenced electronic sounds to the vineyard. Her set promises a fast-paced and uncompromising musical experience for dance music enthusiasts.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "18+",
              "url": "https://www.axs.com/events/1350768/vtss-tickets",
              "tags": [],
              "sources": [
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-03-22T20:35:17.832222Z",
                  "strategy_used": "LLM",
                  "source_id": "v_regency_ballroom"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c3abf25b6eec",
              "venue_id": "venue_the_mighty",
              "title": "Takuya Nakamura",
              "event_time": "2026-06-13T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "Experimental and avant-garde musician Takuya Nakamura performs a hybrid set, joined by local standout Tomu DJ. This event is presented by Vitamin1000 and DJ Dials, known for stimulating multimedia experiences and cutting-edge electronic music.",
              "event_types": [
                "experimental",
                "live_music"
              ],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/events/1873141",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_vitamin1000",
                  "source_name": "Vitamin1000",
                  "fetched_at": "2026-03-31T11:58:57.936202Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-04-01T08:35:45.836643Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b4e874f1999f",
              "venue_id": "venue_bimbos_365",
              "title": "Sistas Who Kill: Back From the Dead",
              "event_time": "June 13 - Show: 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Jun 13 Sistas Who Kill 21+ $46.36 7pm/8pm (fully seated)",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/sistas-who-kill-back-from-the-dead/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-04-07T09:45:45.537698Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c3576bb2c21",
              "venue_id": "venue_castro_theater",
              "title": "Crane Wives, Yasmin Williams",
              "event_time": "June 13, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Jun 13 Crane Wives, Yasmin Williams a/a $41+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-crane-wives-act-260613",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2235190d5f67",
              "venue_id": "venue_down_home_music",
              "title": "Goat Family",
              "event_time": "2026-06-13T14:00:00",
              "venue_name": "Down Home Music",
              "event_start": "2026-06-13T14:00:00",
              "event_date": "2026-06-13",
              "venue_address": "10341 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A live in-store performance by Goat Family, featuring jug band music. Part of the Down Home Music Foundation's series of free live performances.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Free",
              "url": "http://www.foopee.com/by-band.1.html#Goat_Family",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_down_home_music",
                  "source_name": "Down Home Music",
                  "fetched_at": "2026-04-07T10:21:26.547615Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_down_home_music|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc1c2cad8bc2",
              "venue_id": "venue_greek_theatre",
              "title": "Bob Dylan & Lucinda Williams",
              "event_time": "June 13, 2026 7:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "The legendary Bob Dylan continues his long-running tour with an intimate performance at the Greek Theatre.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/bob-dylan-260613",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6364605cb8b6",
              "venue_id": "venue_masonic_hall",
              "title": "Jim Gaffigan: Everything is Wonderful!",
              "event_time": "Jun 13 2026 7pm/8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Acclaimed comedian Jim Gaffigan brings his \"Everything is Wonderful!\" tour to the stage for an evening of clean, observational humor. Known for his jokes about fatherhood and food, Gaffigan delivers a relatable and hilarious performance for all ages.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/jim-gaffigan-everything-is-wonderful-san-francisco-california-06-13-2026/event/1C00635CDBC3AC08",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-10T23:21:11.204082Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e45547d45d1e",
              "venue_id": "venue_curran_theater",
              "title": "San Francisco Gay Men's Chorus",
              "event_time": "Sat, Jun 13, 2026",
              "venue_name": "Curran Theater",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "The historic vocal ensemble presents a powerful performance celebrating community and LGBTQ+ identity through song. This concert at the Orpheum Theatre features a diverse repertoire ranging from classical pieces to contemporary pop.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Buy tickets for San Francisco Gay Men's Chorus\nBuy tickets",
              "url": "https://us.atgtickets.com/events/sfgmc-dolly/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theater",
                  "fetched_at": "2026-04-10T23:55:12.607576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_curran_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c6cea9553a1d",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-13",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-13",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_900b7c419ad1",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-13",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-13",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e930dacbcdb3",
              "venue_id": "venue_the_ritz",
              "title": "ELIJAH SCOTT",
              "event_time": "2026-06-13T19:00:45-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-13T19:00:45",
              "event_date": "2026-06-13",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "ELIJAH SCOTT\n\n \n\nSATURDAY JUNE 13, 2026\nDoors: 7PM // All Ages // $25 Advance –  $28 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance –  $28 Day-of-Show",
              "url": "https://www.ticketweb.com/event/elijah-scott-the-ritz-tickets/14796063",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_46121510974b",
              "venue_id": "venue_cow_palace",
              "title": "Gryffin, Lost Frequencies",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "A behind-the-scenes docu-series sharing the stories and efforts of the Cow Palace staff as they produce iconic events at the historic venue.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Tickets start at $118.00",
              "url": "http://www.foopee.com/by-band.1.html#Gryffin",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-04-13T13:45:46.436980Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-28T12:42:23.830301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cow_palace|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2cb5d4b7f06a",
              "venue_id": "venue_the_independent",
              "title": "Elujay, Lovey, Sunday",
              "event_time": "6.13 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "TOTAL ACCORD FEST 2026 - with Lovey, SundaY",
              "event_types": [
                "live_music",
                "hiphop_rap",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/elujay/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e202ffafac04",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Neil Hamburger and Sir Richard Bishop",
              "event_time": "Saturday June 13 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; pop-country songwriter \\ comedy; experimental avant-garde folk",
              "event_types": [
                "live_music",
                "folk",
                "comedy",
                "experimental"
              ],
              "price_info": "$35 $41.81 in advance [35 face value +6.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260613.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8ec4fcbb701",
              "venue_id": "venue_cornerstone",
              "title": "Witch Club Satan",
              "event_time": "Jun 13 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $33.43 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33.43",
              "url": "http://www.foopee.com/by-band.3.html#Witch_Club_Satan",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ebb9c9cc4a4",
              "venue_id": "venue_halcyon",
              "title": "Miyuki, Jawba, Stellaria",
              "event_time": "06/13/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-13T22:00:00",
              "event_date": "2026-06-13",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Trance and progressive artist MIYUKI brings her uplifting melodies and high-energy performance to the Halcyon dance floor.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19",
              "url": "https://link.dice.fm/U668dd4a2041?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-04-28T12:03:17.867272Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_933346ec9816",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Summer Chamber Concert",
              "event_time": "2026-06-13T19:30:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-06-13T19:30:00",
              "event_date": "2026-06-13",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Philharmonic musicians and friends perform in wind, string, and brass ensembles in the beautiful acoustics of First Lutheran Church.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "General/Senior: $25; Youth (<26 yrs)/Student: $10",
              "url": "https://www.paphil.org/performances/2026/6/13/summer-chamber-concert",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_palo_alto_philharmonic",
                  "source_name": "Palo Alto Philharmonic",
                  "fetched_at": "2026-04-30T19:10:27.444389Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-01T11:42:01.779267Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_86ab7b63d66f",
              "venue_id": "venue_rickshaw_stop",
              "title": "Jason Tygner",
              "event_time": "Jun 13 2026 8pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Electronic artist Jason Tygner performs a set of melodic and atmospheric tracks in a live club environment.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 8pm/8pm",
              "url": "http://www.foopee.com/by-band.1.html#Jason_Tygner",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_630cd34bdd6c",
              "venue_id": "venue_san_jose_civic",
              "title": "Natalia Lafourcade - Cancionera Tour",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Acclaimed Mexican artist Natalia Lafourcade performs an intimate show featuring new arrangements of her classic hits and songs from her album Cancionera.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$65.00 - $150.00",
              "url": "https://sanjosetheaters.org/event/natalia-lafourcade/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-06T12:30:00.068194Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee7cdc98b927",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-13",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b804394f4c0f",
              "venue_id": "venue_924_gilman",
              "title": "Doll Heads & Friends",
              "event_time": "Jun 13 6pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-13T18:00:00",
              "event_date": "2026-06-13",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages summer fest show at 924 Gilman. Doors open at 6:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "http://www.foopee.com/by-band.1.html#Doll_Heads",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6e6ce9eeacda",
              "venue_id": "venue_brick_and_mortar",
              "title": "Little Image",
              "event_time": "Jun 13 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "$27.58 (under 21 plus 5) 8pm/9pm ^",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.58 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.2.html#Little_Image",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-11T10:59:43.944763Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7cfe3957195c",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-13",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b0b13aad46fc",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-13T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-13T14:00:00",
              "event_date": "2026-06-13",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-13",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9146a2b10951",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Tristan Cappel",
              "event_time": "2026-06-13T16:30:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-06-13T16:30:00",
              "event_date": "2026-06-13",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "Live performance by Tristan Cappel at Wyldflowr Arts.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Check website for tickets",
              "url": "https://www.shazam.com/concert/tristan-cappel-oakland-wyldflowr-arts-17482595",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_750e3dc7c7d8",
              "venue_id": "venue_the_chapel",
              "title": "Thee Marloes, Thee Heart Tones",
              "event_time": "Jun 13 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "8pm/9pm",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Thee_Marloes",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7b21b3fb1c2a",
              "venue_id": "venue_madarae",
              "title": "TAKIRU (INDIE-DANCE & DISCO) AT MADARAE",
              "event_time": "2026-06-13T21:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "Underground legend TAKIRU brings a night of Indie Dance and Disco to Madarae. Expect a deep, melodic, and groovy experience.",
              "event_types": [],
              "price_info": "Free before 11pm with RSVP",
              "url": "https://www.eventbrite.com/e/takiru-indie-dance-disco-at-madarae-san-francisco-tickets-884897467497",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-13T13:11:14.181208Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7e17d80976e1",
              "venue_id": "venue_sailing_goat",
              "title": "Banda Sin Nombre",
              "event_time": "Sat, Jun 13",
              "venue_name": "Sailing Goat",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Discover the unique sounds of Banda Sin Nombre, a multi-instrumental ensemble performing a diverse mix of folk and world music.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/banda-sin-nombre-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30e4c9bb3036",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-13",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-13",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f0e7a06ad714",
              "venue_id": "venue_great_american_music_hall",
              "title": "Monolord, Mizmor",
              "event_time": "Jun 13 2026 8pm/9pm",
              "venue_name": "Great American",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "2026 US West Coast Tour with Mizmor.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.50/$30",
              "url": "http://www.foopee.com/by-band.2.html#Monolord",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_422480739272",
              "venue_id": "venue_the_marsh_sf",
              "title": "Carole Klyce's Flight Risk",
              "event_time": "2026-06-13T17:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-06-13T17:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Written and performed by Carole Klyce, directed by Deb Fink.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/carole-klyce-flight-risk/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_90e5cebf7090",
              "venue_id": "venue_roccapulco",
              "title": "ADOLESCENTES ORQUESTA",
              "event_time": "2026-06-13T21:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "The legendary Venezuelan salsa group Adolescentes Orquesta brings their romantic salsa baul hits to the Yerba Buena Center. Audiences can enjoy a night of classic tropical rhythms and high-energy dance performances.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "From $45.81",
              "url": "https://www.tickeri.com/events/adolescentes-orquesta-in-san-francisco",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-17T13:29:00.297554Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roccapulco|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fe764b993608",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Live Music: Local Blues, RnB & Soul",
              "event_time": "2026-06-13T21:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Weekly Saturday night live music series featuring the best of the Bay Area's blues and soul scene.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d740cb88afa0",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-13T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-13T14:00:00",
              "event_date": "2026-06-13",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-13",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e49e55671207",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-13",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d9d06c407ba1",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-13",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-13",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c008c8b38840",
              "venue_id": "venue_montgomery_theater",
              "title": "Anarkali",
              "event_time": "2026-06-13T18:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-06-13T18:00:00",
              "event_date": "2026-06-13",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "A comedic reimagining of the tale of Shehzada Salim and Anarkali, blending Mughal-era romance, political satire, and commentary on mental illness in South Asian communities.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/anarkali-a-comedy-koohi-goth-fundraiser/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d13266a96688",
              "venue_id": "venue_the_saloon",
              "title": "Delta Wires",
              "event_time": "2026-06-13T21:30:00",
              "venue_name": "The Saloon",
              "event_start": "2026-06-13T21:30:00",
              "event_date": "2026-06-13",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Big, high-energy harmonica and horns blues band from the Oakland/San Francisco area.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Tickets at the door",
              "url": "https://deltawires.com/event/the-saloon-june-13-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f75e86a5f2de",
              "venue_id": "venue_pacific_film_archive",
              "title": "Le doulos",
              "event_time": "2026-06-13T16:30:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-13T16:30:00",
              "event_date": "2026-06-13",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean-Pierre Melville's underworld thriller, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/le-doulos",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8f0b5f01a870",
              "venue_id": "venue_first_church_berkeley",
              "title": "Exhibition & Marketplace",
              "event_time": "2026-06-13T12:00:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-06-13T12:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "A three-day showcase of rare instruments, books, and accessories for early music. Free and open to the public.",
              "event_types": [
                "art",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://www.berkeleyfestival.org/exhibition-marketplace",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-06-13",
              "run_id": "run_b0577f97cd12",
              "run_label": "BFX 2026: Exhibition & Marketplace, Jun 11 – Jun 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4922b73337bb",
              "venue_id": "venue_dance_mission",
              "title": "It Takes a Village",
              "event_time": "2026-06-13T19:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Watermelon Connections presents an evening of poetry, music, dance, and theater in solidarity with families in Gaza, with all donations going directly to families there.",
              "event_types": [],
              "price_info": "$30-300 suggestion donation",
              "url": "https://dancemissiontheater.org/2026/04/22/june-13-it-takes-a-village-benefit-performance-for-families-of-gaza/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_653fd4505997",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Short Show",
              "event_time": "2026-06-13T18:45:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-13T18:45:00",
              "event_date": "2026-06-13",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A light summertime delight that bridges the time between happy hour and evening plans with fast-paced improv.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-short-show-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_59493418d118",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: Warp Speed",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised production inspired by the legendary Star Trek TV show, exploring new worlds and bold new characters.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-warp-speed-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_84ab2b2b5d68",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "The Sunline",
              "event_time": "2026-06-13T19:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "The Sunline live in concert at the Palace of Fine Arts.",
              "event_types": [
                "live_music"
              ],
              "price_info": "See website for pricing",
              "url": "https://eventcartel.com/events/the-sunline-in-san-francisco-tickets-8945/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91f3dca402a4",
              "venue_id": "venue_biscuits__blues",
              "title": "Jill Dineen & The Carmen Ratti Band",
              "event_time": "2026-06-13T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-13T18:30:00",
              "event_date": "2026-06-13",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Award-winning blues band delivering electrifying live shows with soulful vocals, powerful guitar, and modern blues energy.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260613jilldineen-thecarmenrattiband",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5fd51c0c217f",
              "venue_id": "venue_punch_line",
              "title": "Helen Hong",
              "event_time": "2026-06-13T21:15:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-13T21:15:00",
              "event_date": "2026-06-13",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Helen Hong is a comedian, actor, and host known for her sharp wit and appearances on NPR's 'Wait Wait... Don't Tell Me!'",
              "event_types": [],
              "price_info": "$27.65 - $42.50",
              "url": "https://www.ticketmaster.com/helen-hong-san-francisco-california-06-13-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2376a07e61c2",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Gina Brillon",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Special event stand-up comedy show with Gina Brillon, featuring Chris Grullon and Iain Langlands.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/130749",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-13",
              "run_id": "run_b4b9a0d3d51b",
              "run_label": "Gina Brillon, Jun 11 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fb8827ea1ad0",
              "venue_id": "venue_the_freight__salvage",
              "title": "The Story Time Band",
              "event_time": "2026-06-13T10:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-13T10:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Rental event story time performance.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "https://paybee.io/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_73b96e31d83b",
              "venue_id": "venue_the_freight__salvage",
              "title": "Billie Holiday Project",
              "event_time": "2026-06-13T19:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-06-13T19:30:00",
              "event_date": "2026-06-13",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Rental event tribute performance featuring Stella Heath.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$64 Premium Admission; $44 General Admission",
              "url": "https://secure.thefreight.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-16T10:15:41.294360Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_11530c628113",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-06-13T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-13T19:30:00",
              "event_date": "2026-06-13",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23053",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_65c54188184b",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "Songlines: Anne Pajunen",
              "event_time": "2026-06-13",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "A performance lecture for the Songlines series featuring Anne Pajunen, exploring experimental music and performance art.",
              "event_types": [
                "live_music",
                "experimental",
                "workshop",
                "literary"
              ],
              "price_info": "Check website for pricing",
              "url": "https://performingarts.mills.edu/event-detail.php?id=376729613",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-05-16T10:24:39.949015Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7c169ecb91e2",
              "venue_id": "venue_center_for_new_music",
              "title": "Jun 13:",
              "event_time": "Jun 13",
              "venue_name": "Center for New Music",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "This date features a scheduled performance of contemporary and experimental music at the Center for New Music. The program highlights the venue's commitment to showcasing innovative works and new musical voices.",
              "event_types": [
                "other"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/87624/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-05-16T10:27:19.919834Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f569698645e",
              "venue_id": "venue_meyhouse",
              "title": "Anthony Wonsey: Sobriety Sessions",
              "event_time": "2026-06-13T17:00:00",
              "venue_name": "Meyhouse Speakeasy",
              "event_start": "2026-06-13T17:00:00",
              "event_date": "2026-06-13",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Anthony Wonsey Quartet performs 'Sobriety Sessions' at Meyhouse Jazz.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Price not clearly visible on event page",
              "url": "https://www.meyhousejazz.com/event-details/anthony-wonsey-quartet-sobriety-sessions-sat-6-13-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Speakeasy",
                  "fetched_at": "2026-05-16T10:40:15.260123Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_meyhouse|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ff217c0c339e",
              "venue_id": "venue_the_cats",
              "title": "Jazz Rock Revue",
              "event_time": "2026-06-13",
              "venue_name": "The Cats",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "7:00 PM – 10:00 PM\nJazz Rock Revue",
              "event_types": [
                "live_music",
                "jazz",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/jazz-rock-revue-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1c4ae580081",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-13T11:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-13T11:00:00",
              "event_date": "2026-06-13",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Meet astronomers, discover extraplanetary sounds, and create your own alien—celebrate space science at this weekend festival.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-13",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_09dd4e15b7cf",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-06-13T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Saturday night DJ set. A meeting place for locals and visitors alike in Lower Nob Hill.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c6db319812a",
              "venue_id": "venue_public_works",
              "title": "MEMBA",
              "event_time": "2026-06-13T21:30:00",
              "venue_name": "Public Works",
              "event_start": "2026-06-13T21:30:00",
              "event_date": "2026-06-13",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Electronic duo MEMBA performs live at Public Works.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://publicsf.com/events/memba-at-public-works/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_411b342e26c4",
              "venue_id": "venue_sap_center",
              "title": "Fight Night V",
              "event_time": "2026-06-13T17:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-06-13T17:00:00",
              "event_date": "2026-06-13",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "at Tech CU Arena",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_08eae31bbb87",
              "venue_id": "venue_sap_center",
              "title": "El Coyote & Chuy Lizárraga",
              "event_time": "2026-06-13T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Capibaras Tour",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ad4ddf522483",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-13",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-13",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e4a8a5ad46a7",
              "venue_id": "venue_tommy_ts",
              "title": "CHICO BEAN",
              "event_time": "2026-06-13 2026-06-13",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-13",
              "run_id": "run_9bf5a6db2148",
              "run_label": "CHICO BEAN, Jun 12 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5ef84c6956c3",
              "venue_id": "venue_the_sound_room",
              "title": "Mark Hummel Band",
              "event_time": "Saturday, June 13, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-13T19:30:00",
              "event_date": "2026-06-13",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Mark Hummel is a Grammy-nominated blues harmonica master, vocalist, and producer with a career spanning over five decades. A key force in the modern West Coast blues sound, he’s known for his explosive harmonica style, soulful vocals, and high-energy live shows. From leading the Blues Survivors to producing his acclaimed *Blues Harmonica Blowout* series, Hummel continues to honor classic blues traditions while keeping the music powerfully alive.\n\nPlaying with Mark is long-time collaborator Steve Freund (guitar), who has worked with a who’s who of blues legends, including Sunnyland Slim, James Cotton, Koko Taylor, Lonnie Brooks, Luther Allison, Otis Rush, Bo Diddley, Big Walter, Snooky Pryor, Floyd Jones, Eddie Taylor, Lee Jackson, Hubert Sumlin, Pinetop Perkins, and San Francisco’s own Boz Scaggs.\n\nKarl Sevareid, Blues Bass Legend, known for his work with Jimmy Witherspoon, Robben Ford, the Ford Blues Band, Charlie Musselwhite, and countless West Coast blues greats as well as playing alongside Eric Clapton & The Rolling Stones.\n\nPaul Revelli, a consummate drummer with diverse skills, a passion for playing and listening to all genres of music, and his intuition as the consummate sideman are evidenced by the artists he has performed and/or recorded with, including: ​B.B. King, Elvis Costello, Nick , Sammy Hagar, Joan Baez, Moby, Bonnie Raitt, Boz Scaggs, Huey Lewis, Clarence Clemmons, SugarPie DeSanto, and more.\n\nTickets at Mark Hummel Band",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/mark-hummel-band",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8bb33671802a",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Raffi Garabedian",
              "event_time": "6/13/2026 2:00 PM",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-06-13T14:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "Raffi Garabedian More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23048",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_29f444289cd6",
              "venue_id": "venue_mountain_winery",
              "title": "Brit Floyd",
              "event_time": "Jun 13, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-13T19:30:00",
              "event_date": "2026-06-13",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Palladium Entertainment Presents | Celebrating Dark Side of the Moon + Greatest Hits",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1253282",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4462c82e02b5",
              "venue_id": "venue_black_cat",
              "title": "Greg Abate Quartet",
              "event_time": "06/13/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60 \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:30 show: Bar @ 6:00, Doors @ 8:45\n\nGreg Abate is an American jazz saxophonist, flutist, and composer known for his fiery bebop and hard-bop style. A Berklee-trained musician, he performed early in his career with Ray Charles and later with the Artie Shaw Orchestra under Dick Johnson. Over decades of international touring and recording, Abate has built a reputation as one of the leading modern interpreters of the bebop tradition.\n\nLegendary saxophonist Phil Woods praised him, saying: “Greg Abate is one of the most exciting saxophonists around today... a hard-driving player who swings like mad.”\n\nHis accolades include induction into the Rhode Island Music Hall of Fame (2016), multiple appearances on the JazzWeek Chart, and longstanding recognition as a respected performer, recording artist, and educator.\n\nGreg is in the top 5 Alto Saxophonists in the Downbeat Readers Poll. Greg has an impressive discography in clouding playing on his records such as Phil Woods, Kenny Barron, Claudio Roditi, Billy Hart, Kenny Washington, George Mraz, Rufus Reid, Hilton Ruiz, James Williams, Richie Cole, Ray Drummond, Ben Riley and many others! \n\nJoined by Ben Stolorow on piano, Okon Essiet on bass, and Sylvia Cuenca on drums, get ready for an incredible weekend of jazz! \n\nBand Lineup:\nGreg Abate, saxophone\nBen Stolorow, piano\nOkon Essiet, bass\nSylvia Cuenca, drums",
              "event_types": [],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/11377/?date=2026-06-13",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a6f8befd292f",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Clairdee Sings Gershwin, Porter, and Berlin",
              "event_time": "Saturday, June 13, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Join us for an evening celebrating the music of Gershwin, Porter, and Berlin—three iconic composers who shaped Broadway, Hollywood, and the core repertoire of jazz standards.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/clairdee-sings-gershwin-porter-and-berlin-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30ee4cc40d00",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Anthony Paule Soul Orchestra",
              "event_time": "Saturday, June 13, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Based out of San Francisco, California The Anthony Paule Soul Orchestra, was founded in 2007, by guitarist/songwriter Anthony Paule. Inspired by authentic Soul and Blues recordings of the ‘60s and ‘70s, this dramatic horn driven extravagant act took shape. Known for having great, authentic singers, APSO invites newest member, the incomparable vocalist Willy Jordan into the organization. Having worked with Elvin Bishop’s Big Fun Trio (which garnered him two Grammy Award nominations), John Lee Hooker among others, Willy holds court from a throne previously occupied by Wee Willie Walker, Frank Bey, and Terrie Odabi. Jordan’s commanding vocals and unpretentious stage presence, give audiences an honest, fresh, heartfelt experience.",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/the-anthony-paule-soul-orchestra-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_464382496877",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, June 13, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-13T22:30:00",
              "event_date": "2026-06-13",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keeping folks up past 10 pm in SF is no easy feat, but Key’s owner Simon Rowe has been showcasing the best of the Bay Area’s organ trios in his late night Saturday sets.",
              "event_types": [],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-52/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8eb8eb245c34",
              "venue_id": "venue_odc_theater",
              "title": "Community Showcase",
              "event_time": "6/13/2026 5:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-13T17:30:00",
              "event_date": "2026-06-13",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003QAhx2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_29599669d513",
              "venue_id": "venue_odc_theater",
              "title": "Community Showcase",
              "event_time": "6/13/2026 8:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003QAhx2AG",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96bf7a1a75ba",
              "venue_id": "venue_ivy_room",
              "title": "The Gold Souls & Floratura",
              "event_time": "Saturday Jun 13 7:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-13T19:30:00",
              "event_date": "2026-06-13",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "winter williams presents",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/183469",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_72e8e0eca734",
              "venue_id": "venue_omca",
              "title": "Gallery Chats",
              "event_time": "2026-06-13",
              "venue_name": "OMCA",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Join us for Gallery Chats, an opportunity to chat with and ask questions of our enthusiastic and knowledgeable OMCA Facilitators.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "Admission ticket required",
              "url": "https://museumca.org/event/gallery-chats-at-omca-25/2026-06-13/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-05-18T11:46:02.685910Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_omca|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b80a27fab4cf",
              "venue_id": "venue_historic_bal_theatre",
              "title": "MOTOWN MARVIN GAYE TRIBUTE CONCERT",
              "event_time": "Saturday, Jun 13 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-06-13T20:00:00",
              "event_date": "2026-06-13",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "A soulful tribute concert honoring the life and smooth Motown hits of the legendary Marvin Gaye.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-marvin-gaye-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a17da6bc211",
              "venue_id": "venue_cornerstone",
              "title": "Troy Doherty",
              "event_time": "2026-06-13T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-13T03:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Troy Doherty Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/troy-doherty-167455",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dfe86592ed43",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-13T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-13T19:30:00",
              "event_date": "2026-06-13",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-13",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_591d997b8c0f",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-13",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-13",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c821a741cd1",
              "venue_id": "venue_thee_stork_club",
              "title": "The Juice, Brother Dan & Friends",
              "event_time": "2026-06-13T21:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Live show featuring The Juice, Brother Dan, Lifesize Caleb, and The Grouch DJ.",
              "event_types": [],
              "price_info": "Price not listed",
              "url": "https://wl.seetickets.us/event/the-juice-brother-dan-lifesize-caleb-the-grouch-dj/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-18T13:25:21.339846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2a1fd2127103",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 13, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-13-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_75aad4d14060",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-13",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-13",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d496a57905c9",
              "venue_id": "venue_guild_theatre",
              "title": "Dogs In A Pile",
              "event_time": "Jun 13 2026 7pm/8pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "a/a (under 18 with parent) $46+ 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$46+",
              "url": "http://www.foopee.com/by-band.0.html#Dogs_In_A_Pile",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f5f969513d4c",
              "venue_id": "venue_mountain_winery",
              "title": "Brit Floyd",
              "event_time": "Jun 13 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-13T17:30:00",
              "event_date": "2026-06-13",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Widely regarded as the world's greatest Pink Floyd tribute show, this performance features a stunning light display and faithful recreations of iconic tracks. The production captures the scale and atmosphere of the original band's legendary tours.",
              "event_types": [
                "other"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Brit_Floyd",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc9f9e2f747a",
              "venue_id": "venue_magic_theatre",
              "title": "A Trojan Woman",
              "event_time": "2026-06-13",
              "venue_name": "Magic Theatre",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Stop The Wind Theatricals presents a Trojan Woman by Sara Farrington. Directed by Meghan Finn.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_magic_theatre",
                  "source_name": "Magic Theatre",
                  "fetched_at": "2026-05-18T15:35:30.578557Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_magic_theatre|2026-06-13",
              "run_id": "run_cb94c356bdd1",
              "run_label": "A Trojan Woman, Jun 10 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6738888e87ec",
              "venue_id": "venue_club_fox",
              "title": "Falling Together in Its Entirety",
              "event_time": "Saturday June 13th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Saturday June 13thAdvent Horizon PresentsFALLING TOGETHER IN ITS ENTIRETYDoors 8PM / Show 9PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/advent-horizon-tickets-1987965506344?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e61b00f876dd",
              "venue_id": "venue_fox_theater_rwc",
              "title": "IN BETWEEN",
              "event_time": "June 13, 2026",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "IN BETWEEN featuring KZ Tandingan and TJ Monterde",
              "event_types": [
                "live_music"
              ],
              "price_info": "GET TICKETS",
              "url": "https://foxrwc.showare.com/eventperformances.asp?evt=407",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2580846026a6",
              "venue_id": "venue_elis_mile_high",
              "title": "CLOSED FOR PRIVATE EVENT",
              "event_time": "Sat, Jun 13, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "The venue is closed to the general public for a scheduled private function.",
              "event_types": [
                "community"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/closed-for-private-event-7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1229ac6ddd3b",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-13T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-13T18:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1eb6efb5bea6",
              "venue_id": "venue_levis_stadium",
              "title": "FIFA WORLD CUP | QATAR VS. SWITZERLAND",
              "event_time": "Jun 13, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-06-13",
              "event_date": "2026-06-13",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Qatar faces Switzerland in a group stage match of the FIFA World Cup at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKET PACKAGE",
              "url": "https://levisstadium.com/event/fifa-world-cup-group-stage-2026-06-13/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2def12f4a220",
              "venue_id": "venue_the_fireside",
              "title": "Saturday Night Music/DJs",
              "event_time": "2026-06-13T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-13T18:00:00",
              "event_date": "2026-06-13",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1205ed987c2e",
              "venue_id": "venue_rhythmix",
              "title": "Unity Fest",
              "event_time": "Saturday, June 13, 2026 12:00 pm to 5:00 pm",
              "venue_name": "Rhythmix",
              "event_start": "2026-06-13T12:00:00",
              "event_date": "2026-06-13",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Celebrate the vibrant cultures and performing art traditions of Africa and the African Diaspora in a free, family-friendly festival at Chochenyo Park.\n\n \n\nExplore a kaleidoscopic array of music, dance, drumming, hands-on arts activities, food and more! Enjoy youth activities with Art of the African Diaspora, Prescott Circus, and ARPD, along with a pre-festival class by Fua Dia Kongo. Tae Poetically Divine will emcee an afternoon of performances by Alphabet Rockers, Duniya Dance & Drum Company, Mbira dzaSoko, Michele’s Soul Line Dance, Mufaro weDzimbahwe and NKAN.",
              "event_types": [
                "live_music",
                "latin_world",
                "dance",
                "festival",
                "community"
              ],
              "price_info": "Free | Please RSVP",
              "url": "https://www.rhythmix.org/events/unity-fest-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-05-18T15:50:35.869963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rhythmix|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ed20a922889",
              "venue_id": "venue_the_riptide",
              "title": "Trivia with Scott Armstrong",
              "event_time": "2026-06-13T19:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-13T19:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_74ec967e62fb",
              "venue_id": "venue_the_riptide",
              "title": "Skankin': Reggae Wednesdays",
              "event_time": "2026-06-13T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-13T21:00:00",
              "event_date": "2026-06-13",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-14": {
          "date": "2026-06-14",
          "updated_at": "2026-05-18T16:12:44.090953Z",
          "events": [
            {
              "event_id": "evt_54121c24b089",
              "venue_id": "venue_the_independent",
              "title": "EM Beihold, Janani K. Jha",
              "event_time": "6.14 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Pop singer-songwriter Em Beihold performs her catchy, chart-topping hits known for their witty and relatable lyrics.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/em-beihold/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_869a5b0d5b05",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Dwarves",
              "event_time": "Sunday June 14 2026 7:30PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-14T19:30:00",
              "event_date": "2026-06-14",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; ALL AGES; punk garage; garage punk; punk; spinning '60s-'80s garage, surf, & punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 $30.81 in advance [25 face value + 5.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260614.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f72cf111441",
              "venue_id": "venue_greek_theatre",
              "title": "Bob Dylan & Lucinda Williams",
              "event_time": "June 14, 2026 6:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-06-14T18:30:00",
              "event_date": "2026-06-14",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "A second evening with the Nobel Prize-winning songwriter Bob Dylan at UC Berkeley.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/bob-dylan-260614",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9144e5463908",
              "venue_id": "venue_masonic_hall",
              "title": "Jim Gaffigan: Everything is Wonderful!",
              "event_time": "Jun 14 2026 6pm/7pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-06-14T18:00:00",
              "event_date": "2026-06-14",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Acclaimed comedian Jim Gaffigan brings his \"Everything is Wonderful!\" tour to the stage for an evening of clean, observational humor. Known for his jokes about fatherhood and food, Gaffigan delivers a relatable and hilarious performance for all ages.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/jim-gaffigan-everything-is-wonderful-san-francisco-california-06-14-2026/event/1C00635CDBC6AC0D",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-10T23:21:11.204082Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3fd9a4d6a288",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-14",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-14",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f6b958cb87a9",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-14",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-14",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_04cd61b57035",
              "venue_id": "venue_down_home_music",
              "title": "The Seagulls",
              "event_time": "Jun 14 2026 2pm",
              "venue_name": "Down Home Music",
              "event_start": "2026-06-14T14:00:00",
              "event_date": "2026-06-14",
              "venue_address": "10341 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A live in-store performance by The Seagulls, featuring garage rock. Part of the Down Home Music Foundation's series of free live performances.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "http://www.foopee.com/by-band.3.html#Seagulls",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_down_home_music",
                  "source_name": "Down Home Music",
                  "fetched_at": "2026-04-13T11:39:18.865259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_down_home_music|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_151c24bb3af2",
              "venue_id": "venue_4_star_theater",
              "title": "Penelope Trappes",
              "event_time": "Jun 14, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Vocalist and musician Penelope Trappes performs her atmospheric and experimental compositions live at the 4 Star Theater. This concert offers a chance to experience her haunting soundscapes in a historic theater environment.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-penelope-trappes",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-18T08:40:49.734396Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2519bac759af",
              "venue_id": "venue_rickshaw_stop",
              "title": "Messthetics",
              "event_time": "Jun 14 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-14T19:00:00",
              "event_date": "2026-06-14",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Instrumental trio The Messthetics joins forces with jazz saxophonist James Brandon Lewis for an evening of experimental and improvisational music.",
              "event_types": [
                "live_music",
                "jazz",
                "rock"
              ],
              "price_info": "$25 7pm/8pm",
              "url": "http://www.foopee.com/by-band.2.html#Messthetics",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f3806a8778ba",
              "venue_id": "venue_the_box_shop",
              "title": "Muralfest Open House",
              "event_time": "2026-06-14T12:00:00",
              "venue_name": "The Box Shop",
              "event_start": "2026-06-14T12:00:00",
              "event_date": "2026-06-14",
              "venue_address": "951 Hudson Ave, San Francisco, CA 94124",
              "description": "Muralfest 2026 open house celebrating the muralists whose work has filled The Box Shop, highlighting the venue’s large collection of mural art.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://boxshopsf.org/events/june",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_box_shop",
                  "source_name": "The Box Shop",
                  "fetched_at": "2026-05-09T22:08:02.106912Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_box_shop|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8e988150141d",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-14T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-14",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf2405f22356",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-14T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-14T14:00:00",
              "event_date": "2026-06-14",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-14",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1a2fed3ef6d6",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Wyld Jam",
              "event_time": "2026-06-14T13:00:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-06-14T13:00:00",
              "event_date": "2026-06-14",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "A community jam session hosted by Tiffany Austin (vocals) and Nora Free (saxophone). All levels welcome.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Check website for tickets",
              "url": "https://wyldflowrarts.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e1acd9f38962",
              "venue_id": "venue_sailing_goat",
              "title": "Sweet Sally",
              "event_time": "Sun, Jun 14",
              "venue_name": "Sailing Goat",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Listen to the harmonious folk and bluegrass tunes of Sweet Sally, a talented acoustic ensemble performing live at Sailing Goat.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.sailinggoatrestaurant.com/event-details/sweet-sally-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-05-14T10:57:14.322775Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sailing_goat|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dedbb3f756f7",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-14",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-14",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_07c63d16f66e",
              "venue_id": "venue_the_lost_church",
              "title": "Lily Vakili & Matt Herrero",
              "event_time": "2026-06-14",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Matinée live music performance featuring Lily Vakili with Matt Herrero at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001mBCf2AM",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c2348e91b0eb",
              "venue_id": "venue_great_american_music_hall",
              "title": "Pete & BAs, Delivery Boys",
              "event_time": "Jun 14 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-06-14T19:00:00",
              "event_date": "2026-06-14",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Pete & Bas Save America with Delivery Boys.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$34/$38 ($109 vip)",
              "url": "http://www.foopee.com/by-band.2.html#Pete___BAs",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c986a0f6b0e1",
              "venue_id": "venue_the_marsh_berk",
              "title": "The Writing Cabaret with Rebecca Fisher",
              "event_time": "2026-06-14",
              "venue_name": "The Marsh Berk",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "2120 Allston Way, Berkeley, CA 94704",
              "description": "A community of writers gathered for engaging prompts, live music, and opportunities to share work.",
              "event_types": [
                "theater",
                "live_music",
                "community",
                "literary"
              ],
              "price_info": "Check website for pricing",
              "url": "https://themarsh.org/the-writing-cabaret/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_berk|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d36a60f198b5",
              "venue_id": "venue_temescal_arts_center",
              "title": "Shapeshifters Cinema",
              "event_time": "2026-06-14T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Monthly Shapeshifters Cinema screening at Temescal Arts Center.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_20fce1eb8cf8",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Sunday BBQ Breakfast",
              "event_time": "2026-06-14T09:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-14T09:00:00",
              "event_date": "2026-06-14",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "A special weekend tradition featuring brisket hash, custom omelets, biscuits and gravy, and other Southern breakfast standards. Complimentary coffee is included with breakfast orders.",
              "event_types": [
                "community"
              ],
              "price_info": "Menu prices",
              "url": "https://smokingpigbbq.net/menus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d49f8fd943b4",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-14T14:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-14T14:00:00",
              "event_date": "2026-06-14",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-14",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_78c0a27f4152",
              "venue_id": "venue_z_space",
              "title": "Becoming a Man",
              "event_time": "2026-06-14T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-14",
              "run_id": "run_82e6dbe58c4f",
              "run_label": "Becoming a Man, May 28 – Jun 14",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_133131834611",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Golden Gate Park Band: Trombonology!",
              "event_time": "2026-06-14T13:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-06-14T13:00:00",
              "event_date": "2026-06-14",
              "venue_address": "San Francisco, CA 94118",
              "description": "A performance by the historic Golden Gate Park Band featuring trombone-focused arrangements.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://sfrecpark.org/1570/Golden-Gate-Bandshell-Concerts",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-15T15:15:23.116577Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_823061c857e8",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-14",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-14",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1cdfa3c992b6",
              "venue_id": "venue_hammer_theater",
              "title": "San Francisco Brass Band: Realms & Galaxies",
              "event_time": "2026-06-14T15:00:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-14T15:00:00",
              "event_date": "2026-06-14",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "The award-winning British-style brass band performs a program exploring epic worlds and cosmic adventures, including selections from The Lord of the Rings.",
              "event_types": [],
              "price_info": "N/A",
              "url": "https://hammertheatre.com/event/san-francisco-brass-band-realms-galaxies/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a5b5ad7d3298",
              "venue_id": "venue_dance_mission",
              "title": "Brown Thumbs",
              "event_time": "2026-06-14T21:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-14T21:00:00",
              "event_date": "2026-06-14",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Presented as part of USAAF 2026, this event explores intertwined Punjabi and Mexican immigrant histories in California through a panel, performances, and community art activation.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/24/june-14-brown-thumbs-exploring-punjabi-x-mexican-land-solidarity/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b0a2089b95d8",
              "venue_id": "venue_biscuits__blues",
              "title": "Shane Dwight",
              "event_time": "2026-06-14T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-14T18:30:00",
              "event_date": "2026-06-14",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Shane Dwight, the critically acclaimed blues maverick, unleashes a raw, soul-stirring performance that lures you in from the first chord.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260614shanedwight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c95714808e9b",
              "venue_id": "venue_punch_line",
              "title": "S.F. Comedy Showcase",
              "event_time": "2026-06-14T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-14T19:30:00",
              "event_date": "2026-06-14",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "The S.F. Comedy Showcase features the best of the Bay Area's comedy scene, with a rotating lineup of local favorites and rising stars.",
              "event_types": [],
              "price_info": "$21.80 - $30.50",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-06-14-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_77cee719288d",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Gina Brillon",
              "event_time": "2026-06-14T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Special event stand-up comedy show with Gina Brillon, featuring Chris Grullon and Iain Langlands.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/130749",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-14",
              "run_id": "run_b4b9a0d3d51b",
              "run_label": "Gina Brillon, Jun 11 – Jun 14",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_30fae4f5a0f4",
              "venue_id": "venue_bird_and_beckett",
              "title": "Joe Goldmark and Americana outfits",
              "event_time": "2026-06-14T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-14T17:00:00",
              "event_date": "2026-06-14",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Classic/outlaw/honky tonk country bands led by pedal steel guitar player Joe Goldmark, and occasional other Americana outfits on the 2nd Sunday in even-numbered months.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_714efdaaa60c",
              "venue_id": "venue_the_cats",
              "title": "Joe Ferrara",
              "event_time": "2026-06-14",
              "venue_name": "The Cats",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "5:30 PM – 8:30 PM\nJoe Ferrara",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/joe-ferrara/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-05-17T10:25:21.348513Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9861433fefef",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-14T11:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-14T11:00:00",
              "event_date": "2026-06-14",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Meet astronomers, discover extraplanetary sounds, and create your own alien—celebrate space science at this weekend festival.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-14",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8de8c0b0b954",
              "venue_id": "venue_hi_lo_club",
              "title": "Sunday Night Jazz Trio",
              "event_time": "2026-06-14T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-14T19:00:00",
              "event_date": "2026-06-14",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Classic Sunday night jazz trio. No cover, 21+ only.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f1e4f417d35a",
              "venue_id": "venue_san_jose_civic",
              "title": "Natalia Lafourcade - Cancionera Tour",
              "event_time": "2026-06-14T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Second night of Natalia Lafourcade's performance at the San Jose Civic.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$122 - $916+",
              "url": "https://www.axs.com/events/543213/natalia-lafourcade-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_739f89e93c2f",
              "venue_id": "venue_tommy_ts",
              "title": "CHICO BEAN",
              "event_time": "2026-06-14 2026-06-13",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-14",
              "run_id": "run_9bf5a6db2148",
              "run_label": "CHICO BEAN, Jun 12 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aa821017799c",
              "venue_id": "venue_city_lights_theater",
              "title": "Lights Up! 2026",
              "event_time": "2026-06-14T17:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-06-14T17:30:00",
              "event_date": "2026-06-14",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "City Lights' annual festival of new plays featuring dynamic staged readings and a maker fair. This year's plays include 'Breadcrumbs, Honey, & Bone' by Lauren Doyle and 'The Great Gatsby' adapted by Kit Wilder. Doors and maker fair open at 1 p.m.",
              "event_types": [],
              "price_info": "$20 general, $10 students",
              "url": "https://cltc.org/event/lights-up-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b6414ca622bf",
              "venue_id": "venue_dalas_nest",
              "title": "The Keller Sisters ft. Terry Hiatt",
              "event_time": "2026-06-14T15:30:00",
              "venue_name": "Dala's Nest",
              "event_start": "2026-06-14T15:30:00",
              "event_date": "2026-06-14",
              "venue_address": "Menlo Park, CA",
              "description": "Fresh Blood-Harmony Americana",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dalas_nest",
                  "source_name": "Dala's Nest",
                  "fetched_at": "2026-05-18T10:13:54.412437Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dalas_nest|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e398565d663",
              "venue_id": "venue_bird_and_beckett",
              "title": "Beth Custer / Will Bernard / Ken Emerson",
              "event_time": "6/14/2026 7:30 PM",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-14T19:30:00",
              "event_date": "2026-06-14",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Beth Custer / Will Bernard / Ken Emerson More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23054",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c456f20fa7b1",
              "venue_id": "venue_mountain_winery",
              "title": "Dana Carvey & David Spade",
              "event_time": "Jun 14, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1364338",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d60a0a5c37ef",
              "venue_id": "venue_black_cat",
              "title": "Greg Abate Quartet",
              "event_time": "06/14/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-14T19:00:00",
              "event_date": "2026-06-14",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n9:15 show: Bar @ 6:00, Doors @ 8:30\n\nGreg Abate is an American jazz saxophonist, flutist, and composer known for his fiery bebop and hard-bop style. A Berklee-trained musician, he performed early in his career with Ray Charles and later with the Artie Shaw Orchestra under Dick Johnson. Over decades of international touring and recording, Abate has built a reputation as one of the leading modern interpreters of the bebop tradition.\n\nLegendary saxophonist Phil Woods praised him, saying: “Greg Abate is one of the most exciting saxophonists around today... a hard-driving player who swings like mad.”\n\nHis accolades include induction into the Rhode Island Music Hall of Fame (2016), multiple appearances on the JazzWeek Chart, and longstanding recognition as a respected performer, recording artist, and educator.\n\nGreg is in the top 5 Alto Saxophonists in the Downbeat Readers Poll. Greg has an impressive discography in clouding playing on his records such as Phil Woods, Kenny Barron, Claudio Roditi, Billy Hart, Kenny Washington, George Mraz, Rufus Reid, Hilton Ruiz, James Williams, Richie Cole, Ray Drummond, Ben Riley and many others! \n\nJoined by Ben Stolorow on piano, Okon Essiet on bass, and Sylvia Cuenca on drums, get ready for an incredible weekend of jazz! \n\nBand Lineup:\nGreg Abate, saxophone\nBen Stolorow, piano\nOkon Essiet, bass\nSylvia Cuenca, drums",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11378/?date=2026-06-14",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_71100f4208b2",
              "venue_id": "venue_yoshis",
              "title": "Mac Mall",
              "event_time": "SUN 6.14",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-14T19:30:00",
              "event_date": "2026-06-14",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "50TH BIRTHDAY BASH",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$59 - $75",
              "url": "https://yoshis.com/events/buy-tickets/mac-mall-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_217d66ea8c98",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Suzanna Smith",
              "event_time": "2026-06-14T17:00:00",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-06-14T17:00:00",
              "event_date": "2026-06-14",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "A tempting board of different “choccies” (Aussie for Chocolate) from our friends at Z Cioccolato, who are world famous for their fudge right here in North Beach!",
              "event_types": [],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/suzanna-smith-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-05-18T11:22:56.780708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2e71d6298ca7",
              "venue_id": "venue_ivy_room",
              "title": "King of Kings Reggae",
              "event_time": "Sunday Jun 14 8:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "The Ivy Room hosts a night dedicated to reggae rhythms and positive vibes as King of Kings returns to the stage.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/184182",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e4a72695671c",
              "venue_id": "venue_geoffreys_inner_circle",
              "title": "Handful of Keys Masterclass",
              "event_time": "2026-06-14 2026-06-17",
              "venue_name": "Geoffreys Inner Circle",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "410 14th St, Oakland, CA 94612",
              "description": "",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_geoffreys_inner_circle",
                  "source_name": "Geoffreys Inner Circle",
                  "fetched_at": "2026-05-18T11:48:10.924975Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_geoffreys_inner_circle|2026-06-14",
              "run_id": "run_1b89f9c1314d",
              "run_label": "PRESENTING THE 'HANDFUL OF KEYS' MASTERCLASS SERIES, Jun 10 – Jun 25",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_533faeba0867",
              "venue_id": "venue_bach_dds",
              "title": "Jane Monheit",
              "event_time": "2026-06-14T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-06-14T16:30:00",
              "event_date": "2026-06-14",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "Celebrated jazz and adult contemporary vocalist Jane Monheit brings her radiant tone and finely shaded phrasing to the Bach. She is renowned for her deep affinity for the Great American Songbook and Brazilian musical traditions.",
              "event_types": [],
              "price_info": "Check website for ticket prices",
              "url": "https://dothebay.com/events/2026/6/14/the-bach-dancing-dynamite-society-presents-jane-monheit",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8f1bfeb9f485",
              "venue_id": "venue_cornerstone",
              "title": "Witch Club Satan",
              "event_time": "2026-06-14T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-14T03:00:00",
              "event_date": "2026-06-14",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Witch Club Satan Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/witch-club-satan-173878",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0c480f954dfc",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Hedwig and the Angry Inch",
              "event_time": "2026-06-14T19:30:00",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-14T19:30:00",
              "event_date": "2026-06-14",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Text by John Cameron Mitchell, Music & Lyrics by Stephen Trask, Directed by Chris Morrell",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-14",
              "run_id": "run_24702a083720",
              "run_label": "Hedwig and the Angry Inch, May 20 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b5d81460df08",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-14",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-14",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c39505723f3f",
              "venue_id": "venue_dna_lounge",
              "title": "Unholy Sabbath Gürschach",
              "event_time": "2026-06-14T18:00:00",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-14T18:00:00",
              "event_date": "2026-06-14",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Absolutely Nothing Album Release Show with Nox Sinister, Barbarian, Tormenter. All Ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-18T13:27:36.078826Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e031e0282a2",
              "venue_id": "venue_castro_theater",
              "title": "BROADWAY BARES",
              "event_time": "June 14, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-14T20:00:00",
              "event_date": "2026-06-14",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Stripstation 9: Press Start To Strip",
              "event_types": [
                "theater",
                "dance",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/broadway-bares-260614",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4b37edbeb9e",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 14, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-14-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49eab3cc1158",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-14",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-14",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_50dd40676882",
              "venue_id": "venue_mountain_winery",
              "title": "Dana Carvey & David Spade",
              "event_time": "Jun 14 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-14T18:00:00",
              "event_date": "2026-06-14",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Two legendary Saturday Night Live alumni team up for a night of hilarious stand-up comedy and observational humor. This performance showcases the unique comedic chemistry and iconic impressions that made both performers household names.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Dana_Carvey___David_Spade",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a06691f08a19",
              "venue_id": "venue_stern_grove",
              "title": "Peter Cat Recording Co.",
              "event_time": "Jun 14 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-06-14T14:00:00",
              "event_date": "2026-06-14",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Peter Cat Recording Co., Marinero",
              "event_types": [
                "live_music",
                "latin_world",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Peter_Cat_Recording_Co_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e6d60eaf6a88",
              "venue_id": "venue_magic_theatre",
              "title": "A Trojan Woman",
              "event_time": "2026-06-14",
              "venue_name": "Magic Theatre",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Stop The Wind Theatricals presents a Trojan Woman by Sara Farrington. Directed by Meghan Finn.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_magic_theatre",
                  "source_name": "Magic Theatre",
                  "fetched_at": "2026-05-18T15:35:30.578557Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_magic_theatre|2026-06-14",
              "run_id": "run_cb94c356bdd1",
              "run_label": "A Trojan Woman, Jun 10 – Jun 14",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_40c2065de35e",
              "venue_id": "venue_club_fox",
              "title": "Oh Sheep Standup Show",
              "event_time": "Sunday June 14th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Sunday June 14thBay Area Chinese Feminism StandupOH SHEEP STANDUP SHOW “RIGHT EAR”DOORS 1:30PM / SHOW 2PM",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.zeffy.com/en-US/ticketing/dd774f84-710b-4704-8ef5-a12bd5090fb7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_348f496128be",
              "venue_id": "venue_elis_mile_high",
              "title": "Lividity, Burt Bacharach, Hemotoxin, Mutate",
              "event_time": "Sun, Jun 14, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "This event features a diverse and heavy lineup of musical performances including Lividity and Hemotoxin.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/lividity-burt-bacharach-hemotoxin-mutate",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa4a2b8d5324",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-14T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-14T18:00:00",
              "event_date": "2026-06-14",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19569a60a86a",
              "venue_id": "venue_the_fireside",
              "title": "Sunday Sports & Drinks",
              "event_time": "2026-06-14",
              "venue_name": "The Fireside",
              "event_start": "2026-06-14",
              "event_date": "2026-06-14",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Sports, bloody marys, mimosas, buckets of beer",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_530e2447fa9f",
              "venue_id": "venue_the_riptide",
              "title": "DJ Sgt. Die Wies",
              "event_time": "2026-06-14T20:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-14T20:30:00",
              "event_date": "2026-06-14",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4eea076399dd",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "DRAG-UP COMEDY",
              "event_time": "Sun Jun 14, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-14T19:00:00",
              "event_date": "2026-06-14",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "This vibrant event merges the worlds of drag performance and stand-up comedy for a hilarious and high-energy variety show.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/dragup-comedy-san-francisco-california-06-14-2026/event/1C006471371F145B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-15": {
          "date": "2026-06-15",
          "updated_at": "2026-05-18T15:58:43.740966Z",
          "events": [
            {
              "event_id": "evt_4b143eae34f0",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Autocollants",
              "event_time": "Monday June 15 2026 7:30PM doors -- music at 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-15T19:30:00",
              "event_date": "2026-06-15",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 15 Autocollants, Rob & Jay, Devoted Fans a/a $13/$15 7:30pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260615.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55a0b9210b92",
              "venue_id": "venue_regency_ballroom",
              "title": "Jane Remover",
              "event_time": "2026-06-15T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-15T20:00:00",
              "event_date": "2026-06-15",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Experimental pop and electronic artists Jane Remover and Dazegxd showcase their innovative sounds at JAX Vineyards. The performance highlights the cutting edge of modern digital music and hyperpop production.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "http://www.foopee.com/by-band.1.html#Jane_Remover",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-26T10:50:55.888679Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_634c6b2aa140",
              "venue_id": "venue_oakland_secret",
              "title": "Griffin Brown",
              "event_time": "2026-06-15T19:00:00",
              "venue_name": "Oakland Secret",
              "event_start": "2026-06-15T19:00:00",
              "event_date": "2026-06-15",
              "venue_address": "577 5th St, Oakland, CA 94607",
              "description": "Live music performance by Griffin Brown at Oakland Secret.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.shazam.com/concert/griffin-brown-oakland-oakland-secret-jun-15-2026-7-00-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_secret",
                  "source_name": "Oakland Secret",
                  "fetched_at": "2026-05-15T11:36:54.382509Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oakland_secret|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_deaee190124c",
              "venue_id": "venue_the_saloon",
              "title": "The Bachelors",
              "event_time": "2026-06-15T21:30:00",
              "venue_name": "The Saloon",
              "event_start": "2026-06-15T21:30:00",
              "event_date": "2026-06-15",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Weekly Monday night residency featuring The Bachelors.",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover",
              "url": "https://thesaloonsf.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_89a9976e6251",
              "venue_id": "venue_punch_line",
              "title": "Arj Barker",
              "event_time": "2026-06-15T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-15T19:30:00",
              "event_date": "2026-06-15",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Arj Barker is an American stand-up comedian who has developed a massive following worldwide, known for his clever observations and unique delivery.",
              "event_types": [],
              "price_info": "Starting from $43",
              "url": "https://www.ticketmaster.com/arj-barker-san-francisco-california-06-15-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4740c76547d9",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-15",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-15",
              "event_date": "2026-06-15",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-15",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0d83d8a37e0e",
              "venue_id": "venue_shotgun_studios",
              "title": "The World of a Play: Continuity (Seminar Series)",
              "event_time": "2026-06-15T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-06-15T10:30:00",
              "event_date": "2026-06-15",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "The fifth Monday gathering of the 'Continuity' seminar series.",
              "event_types": [],
              "price_info": "$150 for the series",
              "url": "https://shotgunplayers.org/online/article/miriams-place",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7fec84a1cd13",
              "venue_id": "venue_yoshis",
              "title": "Joey Alexander",
              "event_time": "MON 6.15 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-15T19:30:00",
              "event_date": "2026-06-15",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "PRODIGIOUS TALENT AND A LEADING FIGURE IN MODERN JAZZ",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$49 - $89",
              "url": "https://yoshis.com/events/buy-tickets/joey-alexander-5/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_af2276d7f16a",
              "venue_id": "venue_odc_theater",
              "title": "Community Mixer",
              "event_time": "6/15/2026 5:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-06-15T17:30:00",
              "event_date": "2026-06-15",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000003csyX2AQ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_69645b0a9a08",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC AT HOTEL UTAH",
              "event_time": "Mon Jun 15 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-15T19:00:00",
              "event_date": "2026-06-15",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Monday night",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/Open-Mic-at-Hotel-Utah/689621?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3aed47b0d0d6",
              "venue_id": "venue_envelop_sf",
              "title": "Radiohead: OK Computer",
              "event_time": "Monday, June 15 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-15",
              "event_date": "2026-06-15",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Experience the complex layers and experimental sounds of Radiohead's 'OK Computer' through Envelop's 32-speaker system. This spatial audio session provides a fresh perspective on the landmark alternative rock album.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260615-radiohead-ok-computer-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4790c683dc82",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-06-15T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-06-15T19:00:00",
              "event_date": "2026-06-15",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1e1d92a90988",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-15",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-15",
              "event_date": "2026-06-15",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-15",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e98b3b3da527",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-15T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-15T18:00:00",
              "event_date": "2026-06-15",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0d5149ff17b9",
              "venue_id": "venue_the_fireside",
              "title": "Monday Mixology & Board Games",
              "event_time": "2026-06-15",
              "venue_name": "The Fireside",
              "event_start": "2026-06-15",
              "event_date": "2026-06-15",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Mixology behind the bar, industry discounts, mystery DJ, and board games (play ours or bring yours)",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0dd5560d0f78",
              "venue_id": "venue_de_young",
              "title": "Legacy Society Lecture + Tea",
              "event_time": "2026-06-15 2–4 pm",
              "venue_name": "De Young",
              "event_start": "2026-06-15T16:00:00",
              "event_date": "2026-06-15",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "This private event for Legacy Society members features an educational lecture followed by a formal tea service.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "Legion of Honor, Talk, Talk",
              "url": "https://www.famsf.org/events/legacy-society-lecture-tea-etruscans",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba60ab43ec16",
              "venue_id": "venue_the_riptide",
              "title": "Hotbuns Honky-Tonk Burlesque",
              "event_time": "2026-06-15T15:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-15T15:00:00",
              "event_date": "2026-06-15",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2186dcc9c286",
              "venue_id": "venue_the_riptide",
              "title": "DJ Lance",
              "event_time": "2026-06-15T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-15T21:00:00",
              "event_date": "2026-06-15",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-16": {
          "date": "2026-06-16",
          "updated_at": "2026-05-18T15:58:43.744873Z",
          "events": [
            {
              "event_id": "evt_80f80e946d99",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Messer Chups",
              "event_time": "Tuesday June 16 2026 8:00PM doors -- music at 9:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-16T20:00:00",
              "event_date": "2026-06-16",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; rock'n'roll rockabily surf; punk surf rock garage; surf; spinning '60s-'80s garage, surf, & punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260616.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e070b313739",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-16",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-16",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a07baf0330a5",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-16",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-16",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7312d2e00e07",
              "venue_id": "venue_regency_ballroom",
              "title": "Jane Remover",
              "event_time": "2026-06-16T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-16T20:00:00",
              "event_date": "2026-06-16",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Experimental pop and electronic artists Jane Remover and Dazegxd showcase their innovative sounds at JAX Vineyards. The performance highlights the cutting edge of modern digital music and hyperpop production.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "http://www.foopee.com/by-band.1.html#Jane_Remover",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-26T10:50:55.888679Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d543abe3cd0b",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Herb Alpert & The Tijuana Brass",
              "event_time": "Jun 16 2026 7:30pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-06-16T19:30:00",
              "event_date": "2026-06-16",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Grammy winner Herb Alpert and his Tijuana Brass celebrate the 60th anniversary of 'Whipped Cream & Other Delights' with a night of classic hits. (Note: SF Symphony does not appear).",
              "event_types": [
                "latin_world",
                "live_music"
              ],
              "price_info": "$49-$145",
              "url": "http://www.foopee.com/by-band.1.html#Herb_Alpert___The_Tijuana_Brass",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-02T10:44:50.704516Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-05-03T11:44:41.612997Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53600d9c9595",
              "venue_id": "venue_little_hill_lounge",
              "title": "Lisa Mezzacappa Unlikely Covers Band",
              "event_time": "2026-06-16T20:30:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-16T20:30:00",
              "event_date": "2026-06-16",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Lisa Mezzacappa leads the Unlikely Covers Band featuring Aaron Bennett, Mark Clifford, Brett Carson, and Eric Garland.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Check website for details",
              "url": "https://www.bayimproviser.com/CalendarEvent.aspx?event_id=20260616",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-05T10:49:03.970156Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-06T06:16:22.143035Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43a4ebf3dbda",
              "venue_id": "venue_brick_and_mortar",
              "title": "Seedhe Maut",
              "event_time": "Jun 16 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-16T20:00:00",
              "event_date": "2026-06-16",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "$43.96 (under 21 plus 5) 8pm/9pm ^",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$43.96 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.3.html#Seedhe_Maut",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-14T11:00:59.950109Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_460493014039",
              "venue_id": "venue_the_chapel",
              "title": "Asgeir",
              "event_time": "Jun 16 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-16T19:00:00",
              "event_date": "2026-06-16",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Asgeir",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cc087f617576",
              "venue_id": "venue_the_fillmore",
              "title": "Corbyn Besson and Soulidified",
              "event_time": "2026-06-16",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-16T20:00:00",
              "event_date": "2026-06-16",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Pop artist Corbyn Besson joins forces with Soulidified for a night of contemporary pop music on The Pop'n Out Tour.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$46.50",
              "url": "http://www.foopee.com/by-band.0.html#Corbyn_Besson",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-14T10:28:31.042763Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14ad5f81afd8",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-16",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-16",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d3fc9d7911a9",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-06-16T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-16T18:30:00",
              "event_date": "2026-06-16",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c171f0f7b543",
              "venue_id": "venue_the_monkey_house",
              "title": "Music Community Open Mic",
              "event_time": "2026-06-16",
              "venue_name": "The Monkey House",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Open mic night. Two songs or ten minutes. House guitar available, and a house keyboard if requested by two or more people. Supportive musicians' scene.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Donation bucket $10-40",
              "url": "https://static.wixstatic.com/media/60be15_8597b21045a047fc804bfe36acca11b9~mv2.png/v1/fill/w_600%2Ch_261%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/6-16.png",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-05-15T21:31:30.195149Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_283a164975d4",
              "venue_id": "venue_punch_line",
              "title": "Comedy Allstars",
              "event_time": "2026-06-16T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-16T19:30:00",
              "event_date": "2026-06-16",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "A showcase of top-tier comedians performing their best sets at San Francisco's longest-running comedy club.",
              "event_types": [],
              "price_info": "Starting from $20",
              "url": "https://www.punchlinecomedyclub.com/EventDetail?tmeventid=G5vjZ91Xp_7p",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_86b0174ad7ab",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-16",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-16",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_440119d21d2f",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekly Live Jazz & Americana",
              "event_time": "2026-06-16T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-16T19:00:00",
              "event_date": "2026-06-16",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Tuesday night live music featuring local jazz and Americana artists.",
              "event_types": [
                "live_music",
                "jazz",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3a25371be008",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-16",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-16",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_774b9a1d0c20",
              "venue_id": "venue_the_uc_theatre",
              "title": "J Boog",
              "event_time": "Jun 16 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-06-16T20:00:00",
              "event_date": "2026-06-16",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS $37.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/j-boog-16-jun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-18T10:50:56.913208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1dd58687d09b",
              "venue_id": "venue_ivy_room",
              "title": "Ethan Buckner, Scott Elliott Ferreter & Hats Off",
              "event_time": "Tuesday Jun 16 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-16T19:00:00",
              "event_date": "2026-06-16",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "An intimate evening of live music featuring singer-songwriters Ethan Buckner, Scott Elliott Ferreter, and Hats Off.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/181691",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_441d21fa417c",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jun 16 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-16T19:00:00",
              "event_date": "2026-06-16",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690201?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_62a80b447352",
              "venue_id": "venue_envelop_sf",
              "title": "Pink Floyd: The Dark Side of the Moon",
              "event_time": "Tuesday, June 16 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Journey through Pink Floyd's legendary album 'The Dark Side of the Moon' in a completely immersive 3D sound environment. This event utilizes spatial audio to envelop the audience in the band's psychedelic masterpiece.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260616-pink-floyd-dark-side-of-the-moon-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_474082bb8fbd",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-06-16T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-16T20:00:00",
              "event_date": "2026-06-16",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b79b52b8d5eb",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 16, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7144595",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49a176467495",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-16T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-16T18:00:00",
              "event_date": "2026-06-16",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4254e7d981ed",
              "venue_id": "venue_levis_stadium",
              "title": "FIFA WORLD CUP | AUSTRIA VS. JORDAN",
              "event_time": "Jun 16, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-06-16",
              "event_date": "2026-06-16",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Austria takes on Jordan in this international soccer matchup as part of the FIFA World Cup tournament.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKET PACKAGE",
              "url": "https://levisstadium.com/event/fifa-world-cup-group-stage-2026-06-16/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f7139679e576",
              "venue_id": "venue_the_fireside",
              "title": "Live Trivia",
              "event_time": "2026-06-16T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-16T19:30:00",
              "event_date": "2026-06-16",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Live trivia at Lounge; on Zoom every second Tuesday",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f20f89b6587f",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO with Jean",
              "event_time": "2026-06-16T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-16T18:00:00",
              "event_date": "2026-06-16",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c012ead3931",
              "venue_id": "venue_the_riptide",
              "title": "Vince Charming",
              "event_time": "2026-06-16T21:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-16T21:30:00",
              "event_date": "2026-06-16",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-17": {
          "date": "2026-06-17",
          "updated_at": "2026-05-18T15:54:50.316291Z",
          "events": [
            {
              "event_id": "evt_79df3693cf06",
              "venue_id": "venue_the_fillmore",
              "title": "The Lemon Twigs",
              "event_time": "Wed Jun 17, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Brothers Brian and Michael D'Addario bring their retro-inspired power pop and intricate harmonies to The Fillmore for a nostalgic live set.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-lemon-twigs-san-francisco-california-06-17-2026/event/1C0064429B7682C8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-06T07:30:02.358221Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b79969ddc5d",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville Encounter",
              "event_time": "2026-06-17",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-17",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6130ec195b45",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-17",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-17",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a40b2da94b9",
              "venue_id": "venue_the_ritz",
              "title": "SEEDHE MAUT",
              "event_time": "2026-06-17T19:00:13-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-17T19:00:13",
              "event_date": "2026-06-17",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "SEEDHE MAUT\n\n \n\nTUESDAY JUNE 17, 2026\nDoors: 7PM // 21+ // $27 Advance – $32 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$27 Advance – $32 Day-of-Show",
              "url": "https://www.ticketweb.com/event/seedhe-maut-the-ritz-tickets/14829233",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e07055e55bc3",
              "venue_id": "venue_brick_and_mortar",
              "title": "Wallie The Sensei",
              "event_time": "Jun 17 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Join Omigeli for an evening of live music and performance at this popular local venue.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$29.54 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.3.html#Wallie_The_Sensei",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-13T22:10:27.537631Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-04-15T20:11:25.460394Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_82f8d7ca281b",
              "venue_id": "venue_the_independent",
              "title": "CHOKER",
              "event_time": "6.17 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Artist Choker performs a live set, blending elements of R&B, soul, and experimental pop in an intimate setting.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/choker/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e488f1b83f5f",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "TsuShiMaMiRe, Catnip, and Friends",
              "event_time": "Wednesday June 17 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; electric, punk, ska, surf, funk; garage rock; garage rock lo-fi pop-punk; spinning Japanese ShowaPop and modern indie j-pop",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk",
                "dj_party"
              ],
              "price_info": "$15/$20",
              "url": "http://www.bottomofthehill.com/20260617.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33929f7d8fda",
              "venue_id": "venue_cornerstone",
              "title": "Sadie Jean",
              "event_time": "Jun 17 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $29 ($139 vip) 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$29 ($139 vip)",
              "url": "http://www.foopee.com/by-band.3.html#Sadie_Jean",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a305363533fe",
              "venue_id": "venue_rickshaw_stop",
              "title": "Led Zeppelin Tribute",
              "event_time": "Jun 17 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "This tribute act brings the iconic discography of Led Zeppelin to life with a faithful live performance of classic rock hits.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 7pm/8pm",
              "url": "http://www.foopee.com/by-band.3.html#Zep",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7e6a3254e56e",
              "venue_id": "venue_the_lab",
              "title": "Wendy Eisenberg, More Eaze & Jas Stade",
              "event_time": "Wednesday, June 17, 2026 8:00 PM",
              "venue_name": "The Lab",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "Buy Tickets\nDoors 7pm / Show 8pm\n$23 adv / $25 door / free or discounted for members\nRequest your member DICE Code or become a member",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$23 adv / $25 door / free or discounted for members",
              "url": "https://www.thelab.org/projects/2026/6/17/wendy-eisenberg-more-eaze-jas-stade",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-05-03T10:04:45.239939Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-03T10:06:33.472645Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea09bda4eefa",
              "venue_id": "venue_thee_stork_club",
              "title": "Problems",
              "event_time": "Jun 17 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "PROBLEMS, the one-person electronic project led by Darren Keen, with Woe and Your Leader.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 8pm",
              "url": "http://www.foopee.com/by-band.2.html#Problems",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-06T12:23:55.448463Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-07T14:13:04.957748Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49f9f6f9668d",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-17T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-17",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9af7a2aa40a8",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-17T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-17T14:00:00",
              "event_date": "2026-06-17",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-17",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5c6bc20e83e9",
              "venue_id": "venue_the_chapel",
              "title": "Jesca Hoop",
              "event_time": "Jun 17 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$45.77 7pm/8pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$45.77",
              "url": "http://www.foopee.com/by-band.1.html#Jesca_Hoop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb004884fe74",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-17",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-17",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_efabb7c89b13",
              "venue_id": "venue_pacific_film_archive",
              "title": "Le samouraï",
              "event_time": "2026-06-17T19:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Alain Delon stars as a hitman in Jean-Pierre Melville's stylized noir, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/le-samourai",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f87407f58a8d",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Women’s Group",
              "event_time": "2026-06-17T10:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-06-17T10:00:00",
              "event_date": "2026-06-17",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Monthly fellowship gathering for women, usually held on Zoom.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://flcpa.org/womens-group/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-16T01:02:23.851080Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_718a01c8c329",
              "venue_id": "venue_punch_line",
              "title": "Kevin Camia",
              "event_time": "2026-06-17T20:00:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Kevin Camia is a stand-up comedian known for his dry wit and unique perspective on life.",
              "event_types": [],
              "price_info": "Starting from $20",
              "url": "https://www.punchlinecomedyclub.com/EventDetail?tmeventid=G5vjZ91Xp_7p",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_77c70f09ad35",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Comedy Showcase",
              "event_time": "2026-06-17T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-17T20:00:00",
              "event_date": "2026-06-17",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Roosters Comedy Showcase featuring stand-up performers in the club's regular showcase format.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/365828",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7b697b5aa7d8",
              "venue_id": "venue_noe_valley_ministry",
              "title": "Cascada de Flores",
              "event_time": "2026-06-17",
              "venue_name": "Noe Valley Ministry",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "1021 Sanchez St, San Francisco, CA 94114",
              "description": "Coming up performance by Cascada de Flores.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_noe_valley_ministry",
                  "source_name": "Noe Valley Ministry",
                  "fetched_at": "2026-05-16T10:31:53.626819Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_noe_valley_ministry|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_659704c4f3b9",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-17",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-17",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22457df41f17",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-17",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-17",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1cdfe22e1e75",
              "venue_id": "venue_rootstock_arts",
              "title": "Space is the Place",
              "event_time": "2026-06-17T19:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Rootstock Arts hosts a screening of this iconic Afrofuturist film starring jazz legend Sun Ra. The movie combines social commentary with science fiction and a powerful avant-garde soundtrack.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8cf08606ec75",
              "venue_id": "venue_the_sound_room",
              "title": "Pretty Good Stories",
              "event_time": "Wednesday, June 17, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-17T19:30:00",
              "event_date": "2026-06-17",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "In the mood for a good true story? How about five? Look no further.\n\nPretty Good Stories is… …stand-up for artsy people …entertaining oversharing …deep dives into moments that shape our lives, both small and large …all coupled with some live music to smooth the edges.\n\nPlease join us as we bring you true-life stories from guests, and ourselves, as well as original songs from Jon Smear. It’s a packed show, and we’re looking forward to it.\n\nAt Pretty Good Stories, Hosts Beau Ryder Davis and Tom Darci bring you a selection of the best storytellers from the Bay Area and beyond to present true stories in longer form. Come sink in to these stories that make you laugh, cry, and feel connection to all that makes us human. Plus, there’s music.\n\nTickets at  Pretty Good Stories",
              "event_types": [
                "literary",
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/pretty-good-stories-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_195153a0d1dd",
              "venue_id": "venue_mountain_winery",
              "title": "J Boog",
              "event_time": "Jun 17, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-17T19:30:00",
              "event_date": "2026-06-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1377971",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3785514aa272",
              "venue_id": "venue_black_cat",
              "title": "Richard Benitez III",
              "event_time": "06/17/2026 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50  \n(price includes $5.50 processing and ticketing fee)   \n\n7:00 show: Doors @ 6:00  \n\nGrowing up around the music in the streets of San Francisco and Oakland, Richard III grew a deep appreciation for the art of improvised music. Starting on trumpet from the age of 7, Richard now performs with Bay Area legends and groups such as Souls of Mischief, Goapele, P-Lo, Ruby Ibarra, Steve Turre, Faye Carol, Marcus Shelby and many others from all over the world including Jill Scott, Jazzmeia Horn and Jason Moran. Taking the knowledge acquired from the many peers and mentors in his life, Richard now strives to give back to those before him by intertwining the roots of the music he was taught.\n\nBand Lineup: \nRichard III, trumpet\nIsaac Coyle, bass\nKevin Person Jr, piano/keys\nJaycie Grady, drums\nJoshua Carter, vocals",
              "event_types": [],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/11379/?date=2026-06-17",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-05-18T11:08:08.304388Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0d19c07767d4",
              "venue_id": "venue_hillside_club",
              "title": "Documentary Film: The 9 Lives of Barbara Dane",
              "event_time": "Jun 17, 2026, 7:00 PM – 9:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "A screening of the documentary film that explores the remarkable life and career of singer and activist Barbara Dane.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.eventbrite.com/e/1988746120181?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8cbe9ab88826",
              "venue_id": "venue_ivy_room",
              "title": "Bang the Bay!",
              "event_time": "Wednesday Jun 17 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-17T18:00:00",
              "event_date": "2026-06-17",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "bang the bay presents - SWITCH CROOKS + EXPERT PIE + TIME SPAN + MC PATTY",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182029",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d90c86fcdb9",
              "venue_id": "venue_envelop_sf",
              "title": "Tame Impala: Currents",
              "event_time": "Wednesday, June 17 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Immerse yourself in the lush, psychedelic pop production of Tame Impala's 'Currents' using Envelop's spatial audio technology. The session highlights the album's intricate synthesizers and rhythmic layers.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260617-tame-impala-currents-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5993afd39b1f",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-17",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-17",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a31109b6b72",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 17, 2026 5:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-17T17:00:00",
              "event_date": "2026-06-17",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Frameline From the Beginning: It's All Coming Back to Me Now, Lady Champagne",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline-260617",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d34511231069",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 17, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7144596",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f34d7f6f694",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-17",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-17",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_00c5c3bf3e25",
              "venue_id": "venue_ivy_room",
              "title": "Poor Luckies, Ultrafiend X & More",
              "event_time": "Jun 17 10:20pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-17T22:20:00",
              "event_date": "2026-06-17",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A multi-band showcase featuring sets by Poor Luckies, Ultrafiend X, and Half Rotten Goddess.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 ($25 vip)",
              "url": "http://www.foopee.com/by-band.2.html#Poor_Luckies",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_145a5700c061",
              "venue_id": "venue_kilowatt",
              "title": "Weekend Youth, Grey Dugan",
              "event_time": "Jun 17 7pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-17T19:00:00",
              "event_date": "2026-06-17",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Dugan, Bendrethegiant free",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.3.html#Weekend_Youth",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_78d307af4068",
              "venue_id": "venue_mountain_winery",
              "title": "J Boog",
              "event_time": "Jun 17 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-17T17:30:00",
              "event_date": "2026-06-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The reggae singer-songwriter blends R&B and island rhythms for a soulful and uplifting musical experience. His performance highlights his smooth vocals and positive lyrical messages.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#J_Boog",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9fb62e4a0588",
              "venue_id": "venue_club_fox",
              "title": "The Daniel Castro Band",
              "event_time": "Wednesday June 17th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-17",
              "event_date": "2026-06-17",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Wednesday June 17thClub Fox Blues WednesdaysTHE DANIEL CASTRO BANDDoors 6:30PM /Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/club-fox-blues-wednesdays-the-daniel-castro-band-tickets-1988874038789?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49669371a4cb",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-17T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-17T18:00:00",
              "event_date": "2026-06-17",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a032acbbddab",
              "venue_id": "venue_the_fireside",
              "title": "Singer/Songwriter Open Mic",
              "event_time": "2026-06-17T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-17T19:30:00",
              "event_date": "2026-06-17",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Singer/Songwriter open mic",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a7a317ef646",
              "venue_id": "venue_amoeba_music_sf",
              "title": "ShrapKnel",
              "event_time": "June 17, 2026 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-06-17T17:00:00",
              "event_date": "2026-06-17",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "ShrapKnel, the hip hop duo of Curly Castro and PremRock, returns to Amoeba Berkeley for a live performance and album signing Wednesday, June 17th at 5pm! They will be joined on stage by special guest Controller 7!\n\nThe performance is free & all-ages. To attend the signing, purchase any album from The Triple Steel Beam Collection in-store at Amoeba Berkeley on 6/17.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "free",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3122/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-05-18T15:53:38.118113Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_412cd02bb7c3",
              "venue_id": "venue_the_riptide",
              "title": "Surf Monster and Friends",
              "event_time": "2026-06-17T19:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-17T19:30:00",
              "event_date": "2026-06-17",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-18": {
          "date": "2026-06-18",
          "updated_at": "2026-05-18T16:12:44.101619Z",
          "events": [
            {
              "event_id": "evt_9da20272aba9",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Every Move A Picture",
              "event_time": "Thursday June 18 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 18 Every Move A Picture, Applesaucer, Fake Your Own Death a/a $15/$18 8pm/8:30pm",
              "event_types": [
                "live_music",
                "rock",
                "electronic"
              ],
              "price_info": "$15/$18",
              "url": "http://www.bottomofthehill.com/20260618.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_85d7129b57d3",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-18",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-18",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f00769e9a530",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-18",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-18",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_25d3e900f970",
              "venue_id": "venue_the_fillmore",
              "title": "Alex Isley - When The City Sleeps",
              "event_time": "Thu Jun 18, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "R&B singer and producer Alex Isley performs soulful tracks from her project When The City Sleeps in an intimate live setting.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/alex-isley-when-the-city-sleeps-san-francisco-california-06-18-2026/event/1C00646D8522795E",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-12T10:16:35.511879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-13T02:31:44.810465Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7b4a1a2b5ae8",
              "venue_id": "venue_regency_ballroom",
              "title": "Shordie Shordie, Poiison",
              "event_time": "2026-06-18T19:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-18T19:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Rapper Shordie Shordie brings his melodic hip-hop style and catchy hooks to the stage, accompanied by Poiison. The event features a blend of contemporary rap energy and vibrant live performances.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.3.html#Shordie_Shordie",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-16T09:13:42.764342Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-30T23:11:50.885369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf26581b7bfe",
              "venue_id": "venue_rickshaw_stop",
              "title": "MESTIZO BEAT / SUN HOP FAT",
              "event_time": "Thu Jun 18 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-18T21:00:00",
              "event_date": "2026-06-18",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "A vibrant night of global rhythms featuring the funk and afrobeat sounds of Mestizo Beat and Sun Hop Fat with dj Izzy Wise.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$20.00-$25.00",
              "url": "https://wl.seetickets.us/event/mestizo-beat-sun-hop-fat/688737?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-22T11:22:51.337557Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-22T13:54:47.365481Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f499a1d03e5",
              "venue_id": "venue_ivy_room",
              "title": "Rob Leines",
              "event_time": "Thursday Jun 18 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-18T19:00:00",
              "event_date": "2026-06-18",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Rob Leines brings his gritty blend of country and southern rock to the stage with support from Shelby Cobra and the Mustangs.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/178887",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8613b8a1cb6e",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "HONNE - 10 YEAR ANNIVERSARY TOUR",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Electronic soul duo HONNE celebrates a decade of music with their 10 Year Anniversary Tour.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "https://palaceoffinearts.org/event/honne/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-01T04:17:57.114403Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_80080e28e4d5",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-18",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_319d1d33e6d5",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-18",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_370f90cf88c2",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-18T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-18T14:00:00",
              "event_date": "2026-06-18",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-18",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_287e6cb0191a",
              "venue_id": "venue_brick_and_mortar",
              "title": "BUNII — THE LONELY TOUR",
              "event_time": "Jun 18 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-18T19:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Join artist Bunii for a live musical performance at Brick and Mortar during the San Francisco stop of The Lonely Tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$48 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#Bunii",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-14T11:00:59.950109Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a37afb3fbdf",
              "venue_id": "venue_cafe_du_nord",
              "title": "Fai Laci",
              "event_time": "Jun 18 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Fai_Laci",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0190cc6073a",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-18",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-18",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f2064788b1f2",
              "venue_id": "venue_the_lost_church",
              "title": "Hayden Johnson: Piss Queen",
              "event_time": "2026-06-18",
              "venue_name": "The Lost Church",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "Live performance by Hayden Johnson at The Lost Church San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Price not available on the accessible event listing.",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket?eid=a1YVN000001mB7N2AU",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-05-14T12:18:52.273925Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_lost_church|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e60b23fdf86d",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity - ASL-Interpreted Performance",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "A performance of 'Continuity' featuring American Sign Language interpretation.",
              "event_types": [],
              "price_info": "$40 - $80",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6575d2d12165",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Thursday Night Live Music",
              "event_time": "2026-06-18T18:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-18T18:00:00",
              "event_date": "2026-06-18",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Mid-week live music performances that transform dinner into a social event. Featuring local musicians playing blues and classic rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_93366782b870",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-06-18T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-18T18:30:00",
              "event_date": "2026-06-18",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_231003f035b4",
              "venue_id": "venue_cal_academy_of_science",
              "title": "kNightLife: Renaissance Faire",
              "event_time": "2026-06-18T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-06-18T18:00:00",
              "event_date": "2026-06-18",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Don your finest garb for a night of revelry, drink, and merriment with a scientific twist. 21+ only.",
              "event_types": [],
              "price_info": "$25 - $35",
              "url": "https://www.calacademy.org/nightlife/knightlife-renaissance-faire",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e4ce6401c997",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-06-18T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-06-18T19:00:00",
              "event_date": "2026-06-18",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_23aefaf132cb",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_66ae7c02bc4f",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-18",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-18",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_018cd5bce600",
              "venue_id": "venue_alhambra_public_house",
              "title": "Trivia Night",
              "event_time": "2026-06-18T19:30:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-06-18T19:30:00",
              "event_date": "2026-06-18",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Weekly Trivia Night! Test your knowledge and compete for prizes.",
              "event_types": [],
              "price_info": "Free",
              "url": "http://alhambra-irish-house.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-05-15T17:36:18.050171Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7bc2fcbd970b",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Choral Evensong",
              "event_time": "2026-06-18T17:30:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-18T17:30:00",
              "event_date": "2026-06-18",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A meditative service of music and prayer held in the soaring nave of Grace Cathedral.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://gracecathedral.org/events/choral-evensong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cc9c65193c25",
              "venue_id": "venue_public_works",
              "title": "Hernan Cattaneo 360 Experience",
              "event_time": "Thu, Jun 18 •  9:00 PM",
              "venue_name": "Public Works",
              "event_start": "2026-06-18T21:00:00",
              "event_date": "2026-06-18",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Progressive house maestro Hernan Cattaneo performs an immersive all-night set as part of the SET event series at The Great Northern. The 360-degree experience offers fans a unique, intimate perspective of the Sudbeat label founder's legendary mixing.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Tickets",
              "url": "https://www.tixr.com/groups/publicsf/events/set-with-hernan-cattaneo-sudbeat-360-experience-all-night-long-180227?utm_medium=venuewebsite&utm_source=publicsf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-16T00:09:28.427139Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-05-17T13:29:00.297554Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14b10008ff54",
              "venue_id": "venue_punch_line",
              "title": "Kevin Camia",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Kevin Camia is a stand-up comedian known for his dry wit and unique perspective on life.",
              "event_types": [],
              "price_info": "Starting from $20",
              "url": "https://www.punchlinecomedyclub.com/EventDetail?tmeventid=G5vjZ91Xp_7p",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5df5eaa5014f",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Dave Burleigh",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Dave Burleigh, featuring Ashley Monique and Tony Zavala.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/136024",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-18",
              "run_id": "run_76b028b06423",
              "run_label": "Dave Burleigh, Jun 18 – Jun 21",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2cfbf3951f5d",
              "venue_id": "venue_bird_and_beckett",
              "title": "Walker Talks",
              "event_time": "2026-06-18T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-18T19:30:00",
              "event_date": "2026-06-18",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Walker Brents III investigations into topics literary, mythological and otherwise.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fbfdce90d85c",
              "venue_id": "venue_peacock_lounge",
              "title": "Third Thursday Jazz Night",
              "event_time": "2026-06-18T20:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-06-18T20:00:00",
              "event_date": "2026-06-18",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "A recurring jazz music performance featuring local and touring jazz musicians in an intimate setting.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c605617e3263",
              "venue_id": "venue_sfmoma",
              "title": "Rooftop Radio: French Electro Pop",
              "event_time": "2026-06-18T17:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-06-18T17:00:00",
              "event_date": "2026-06-18",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Festival event",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_063d24c9d9b3",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-18",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-18",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7e48a4c34a34",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: Unplug and Play",
              "event_time": "2026-06-18T18:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-18T18:00:00",
              "event_date": "2026-06-18",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Find your community at After Dark: play science trivia, laugh out loud, and connect deeply.",
              "event_types": [
                "sports",
                "comedy",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b596b57e7d9e",
              "venue_id": "venue_f8",
              "title": "IN THE CLOUDS EP Release Party",
              "event_time": "2026-06-18T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-06-18T21:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "EP release party featuring jaag (US), Mood Ring, and Camillionaire.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/clubs/61234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4a6fce5ddcc5",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-18",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-18",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_966cc4f083d9",
              "venue_id": "venue_rootstock_arts",
              "title": "Secret Sidewalk",
              "event_time": "2026-06-18T19:30:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-18T19:30:00",
              "event_date": "2026-06-18",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "The experimental ensemble Secret Sidewalk performs a set that blends hip-hop influences with jazz and ambient textures. Their sound is characterized by atmospheric production and live instrumental improvisation.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5dfeb8a4accc",
              "venue_id": "venue_the_sound_room",
              "title": "Guilhem Fourty Quartet",
              "event_time": "Thursday, June 18, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-18T19:30:00",
              "event_date": "2026-06-18",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "The Toulouse, France native, Guilhem Fourty, now based in NYC, has built a profile that combines headline billing, top-tier festival work, and a string of awards that mark him as a leading artist of his cohort.\n\nGuilhem Fourty is not only a drummer who keeps impeccable time. He is a leader shaping sound and structure, moving with ease from neighborhood clubs to the largest jazz festival in the world, and from civic concerts to international tours. In a crowded field, that breadth—and the depth behind it—marks him as a major artist on the rise.\n\nJoining Guilhem will be Brahm Sasner (piano), Aidan McCarthy (Bass), and Jonah Hieb (Trumpet).\n\nTickets at Guilhem Fourty Quartet",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/guilhem-fourty-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e13e18a9092",
              "venue_id": "venue_make_out_room",
              "title": "Cold Cuts",
              "event_time": "2026-06-18T21:00:00",
              "venue_name": "Make Out Room",
              "event_start": "2026-06-18T21:00:00",
              "event_date": "2026-06-18",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "DJ night at the Make Out Room.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for pricing",
              "url": "https://dothebay.com/events/2026/6/18/cold-cuts-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_make_out_room",
                  "source_name": "Make Out Room",
                  "fetched_at": "2026-05-18T10:18:53.986134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_make_out_room|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b92aa03566a3",
              "venue_id": "venue_mountain_winery",
              "title": "Kenny G",
              "event_time": "Jun 18, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-18T19:30:00",
              "event_date": "2026-06-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "An Evening With",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1383122",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9183fe1d9a1a",
              "venue_id": "venue_hillside_club",
              "title": "Majel Connery and Felix Fan Live in Concert",
              "event_time": "Jun 18, 2026, 7:00 PM – 9:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-06-18T19:00:00",
              "event_date": "2026-06-18",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Vocalist Majel Connery and cellist Felix Fan perform a collaborative live concert featuring contemporary musical works.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.eventbrite.com/e/majel-connery-and-felix-fan-live-in-concert-tickets-1988528466172?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2607ac8e2028",
              "venue_id": "venue_cornerstone",
              "title": "Sadie Jean",
              "event_time": "2026-06-18T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-18T03:00:00",
              "event_date": "2026-06-18",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Sadie Jean Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/sadie-jean-183750",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d6589924352f",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-18",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-18",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e08f28fcd271",
              "venue_id": "venue_thee_stork_club",
              "title": "T-Slur Thursday 6/18",
              "event_time": "2026-06-18T21:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-18T21:00:00",
              "event_date": "2026-06-18",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "DJ/Dance night featuring DJ Boy Princess, Le Femme Papi, and Sucia.",
              "event_types": [],
              "price_info": "Price not listed",
              "url": "https://wl.seetickets.us/event/fuego-w-dj-boy-princess-le-femme-papi-sucia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-05-18T13:25:21.339846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_623874a26e98",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 18, 2026 3:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-18T15:00:00",
              "event_date": "2026-06-18",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Time Warp, Girls Like Girls, Desert Hearts",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline50-260618",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eff9908d3405",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 18, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7144597",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba2b9ac5d1eb",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-18",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-18",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_288e5209a7a5",
              "venue_id": "venue_mountain_winery",
              "title": "Kenny G",
              "event_time": "Jun 18 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-18T17:30:00",
              "event_date": "2026-06-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The world-renowned saxophonist performs his signature smooth jazz hits that have made him a global instrumental icon. Audiences can enjoy a night of melodic mastery and classic contemporary jazz.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Kenny_G",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b060e7f9e1cf",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-18T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-18T18:00:00",
              "event_date": "2026-06-18",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea5fed6c64ab",
              "venue_id": "venue_1015_folsom",
              "title": "THROTTLE: CONRAD TAYLOR",
              "event_time": "June 18, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS | Bottle Service",
              "url": "https://ra.co/events/2417443",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d7be090b721c",
              "venue_id": "venue_the_fireside",
              "title": "Thursday Music & Lessons",
              "event_time": "2026-06-18",
              "venue_name": "The Fireside",
              "event_start": "2026-06-18",
              "event_date": "2026-06-18",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Ukulele lessons, live rock, jazz & blues guitar, DJ house music, or all vinyl soul Depending on the week",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "rnb_soul_funk",
                "dj_party",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ab3cd5507c5",
              "venue_id": "venue_great_star_theater",
              "title": "San Francisco Squares: The Pride Edition",
              "event_time": "June 18, 2026 at 7:00 PM",
              "venue_name": "Great Star Theater",
              "event_start": "2026-06-18T19:00:00",
              "event_date": "2026-06-18",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "A Pride-themed live game night hosted by Sister Roma featuring Center Square Bruce Vilanch and San Francisco celebrities competing in games to benefit local charities.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "Tickets",
              "url": "https://www.tickettailor.com/events/greatstartheater/2168988",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-05-18T15:52:47.667779Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bd9b5cc3e9b3",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic with Charlie Kaupp",
              "event_time": "2026-06-18T19:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-18T19:00:00",
              "event_date": "2026-06-18",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63f5252779f5",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "HEATED RIVALRY COMEDY SHOW",
              "event_time": "Thu Jun 18, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-18T19:30:00",
              "event_date": "2026-06-18",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedians face off or riff on competitive themes in this high-stakes, laughter-filled performance.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/heated-rivalry-comedy-show-san-francisco-california-06-18-2026/event/1C006477BC02B76B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-19": {
          "date": "2026-06-19",
          "updated_at": "2026-05-18T16:16:06.679616Z",
          "events": [
            {
              "event_id": "evt_f97f67f652c1",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Igor & the Red Elvises",
              "event_time": "Friday June 19 2026 7:00PM doors -- music at 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-19T19:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 19 Igor & The Red Elvises (two sets), Dead Sailor Girls 21+ $20 7pm/8pm",
              "event_types": [
                "live_music",
                "rock",
                "literary"
              ],
              "price_info": "$20 $25.31 in advance [20 face value + 5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260619.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf62cd02a9c1",
              "venue_id": "venue_fox_theatre_oak",
              "title": "DaBoyDame & Friends",
              "event_time": "June 19, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-06-19T20:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "undefined with Keyshia Cole, Plies, and special guests",
              "event_types": [
                "live_music",
                "hiphop_rap",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://thefoxoakland.com/events/daboydame-260619",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-10T22:08:41.754031Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9789400539b0",
              "venue_id": "venue_curran_theater",
              "title": "Airplane! Live",
              "event_time": "Fri, Jun 19, 2026",
              "venue_name": "Curran Theater",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Film - With Julie Hagerty and Robert Hays",
              "event_types": [
                "film",
                "theater"
              ],
              "price_info": "Buy tickets for Airplane! Live\nBuy tickets",
              "url": "https://us.atgtickets.com/events/airplane-live/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theater",
                  "fetched_at": "2026-04-10T23:55:12.607576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_curran_theater|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d891d38e95c7",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-19",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-19",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_61b3ba35cdae",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-19",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-19",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f09f0ba6d29",
              "venue_id": "venue_mabuhay_gardens",
              "title": "FENTANYL RECORD RELEASE",
              "event_time": "2026-06-19 DOORS 7PM",
              "venue_name": "The Mab",
              "event_start": "2026-06-19T19:00:00",
              "event_date": "2026-06-19",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "San Francisco hardcore punk. Record release show for their latest album.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "JUN 19 // DOORS 7PM // ALL AGES",
              "url": "https://www.tixr.com/groups/mab/events/mabuhaygardens-fentanyl-record-release-show-183422",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-04-13T01:44:28.466244Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-13T07:45:14.545259Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c2fbee5ed61a",
              "venue_id": "venue_the_independent",
              "title": "NOVULENT",
              "event_time": "6.19 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "VOL. 3 THE FINAL ALBUM TOUR - with Babyteeth",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/novulent/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e4f21af3ee2",
              "venue_id": "venue_elis_mile_high",
              "title": "Vorlust, Persekutor & Graveripper",
              "event_time": "Jun 19 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Ennis Booking brings a night of black and thrash metal to Eli's Mile High featuring Vorlust and Persekutor. Graveripper joins the high-energy lineup for a night of aggressive live music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18/$20",
              "url": "http://www.foopee.com/by-band.3.html#Vorlus",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-19T10:14:52.720655Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-04-19T10:26:24.900227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1a3e13ed0d02",
              "venue_id": "venue_cornerstone",
              "title": "Rare Occasions, Girl Tones",
              "event_time": "Jun 19 2026 6:30pm/7:30pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-19T18:30:00",
              "event_date": "2026-06-19",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $28.81 6:30pm/7:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$28.81",
              "url": "http://www.foopee.com/by-band.2.html#Rare_Occasions",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6e3782305f73",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "HONNE - 10 YEAR ANNIVERSARY TOUR (Day 2)",
              "event_time": "2026-06-19T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-06-19T20:00:00",
              "event_date": "2026-06-19",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Electronic music duo HONNE celebrates a decade of music with their anniversary tour.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "https://palaceoffinearts.org/event/honne/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-01T04:17:57.114403Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_39f4c2020ef9",
              "venue_id": "venue_rickshaw_stop",
              "title": "Family Not A Group",
              "event_time": "Jun 19 2026 8pm/9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-19T20:00:00",
              "event_date": "2026-06-19",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Family Not A Group, Jammy, MaiahBae",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$20 8pm/9pm",
              "url": "http://www.foopee.com/by-band.1.html#Family_Not_A_Group",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6cdc723326a8",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Emilio Solla & Antonio Lizana",
              "event_time": "2026-06-19T17:30:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-06-19T17:30:00",
              "event_date": "2026-06-19",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Latin GRAMMY winner Emilio Solla and flamenco-jazz vocalist/saxophonist Antonio Lizana perform music from their collaborative album 'El Siempre Mar,' blending Argentine folk and jazz.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "$25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/concerts/2026/6/19/emilio-solla-antonio-lizana",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-05-06T18:09:28.971011Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_09924ee115d0",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-19T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-19T20:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-19",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7ce1a31716e0",
              "venue_id": "venue_1015_folsom",
              "title": "Aluna: Noir Fever",
              "event_time": "06/19/2026 10pm",
              "venue_name": "1015 Folsom",
              "event_start": "2026-06-19T22:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "NOIR FEVER",
              "event_types": [
                "dj_party"
              ],
              "price_info": "SIGN UP | Bottle Service",
              "url": "https://laylo.com/1015sf/6FJoQq",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-07T16:30:07.357520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-07T17:12:50.228845Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53baf0c965fb",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-19T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-19T20:00:00",
              "event_date": "2026-06-19",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-19",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3883039ffe07",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-19T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-19T14:00:00",
              "event_date": "2026-06-19",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-19",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4828828c18bf",
              "venue_id": "venue_cafe_du_nord",
              "title": "Olive Jones",
              "event_time": "Jun 19 9pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "9pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Olive_Jones",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9150c3956b8a",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-19",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-19",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49fa0e7371e7",
              "venue_id": "venue_great_american_music_hall",
              "title": "Miko Marks, Mia Pixley Quartet",
              "event_time": "Jun 19 2026 6:30pm/7:30pm",
              "venue_name": "Great American",
              "event_start": "2026-06-19T18:30:00",
              "event_date": "2026-06-19",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "A Juneteenth Celebration with Miko Marks featuring Mia Pixley Quartet.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$77 ($89 seated)",
              "url": "http://www.foopee.com/by-band.2.html#Miko_Marks",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e3e98e8b91d2",
              "venue_id": "venue_z_space",
              "title": "25th Anniversary Fresh Meat Festival",
              "event_time": "2026-06-19T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-19T20:00:00",
              "event_date": "2026-06-19",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-19",
              "run_id": "run_9d603655b6e6",
              "run_label": "25th Anniversary Fresh Meat Festival, Jun 19 – Jun 21",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2fa66e4e0f84",
              "venue_id": "venue_z_space",
              "title": "25th Anniversary Fresh Meat Festival",
              "event_time": "2026-06-19T15:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-19T15:00:00",
              "event_date": "2026-06-19",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-19",
              "run_id": "run_9d603655b6e6",
              "run_label": "25th Anniversary Fresh Meat Festival, Jun 19 – Jun 21",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_437426c06fca",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-19",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-19",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_24e59ef1f26f",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "AURA at Grace Cathedral (with Live Quartet)",
              "event_time": "2026-06-19T18:15:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-19T18:15:00",
              "event_date": "2026-06-19",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "The Gothic architecture of Grace Cathedral is illuminated by state-of-the-art projections accompanied by a live quartet.",
              "event_types": [],
              "price_info": "From $24.27",
              "url": "https://auragracecathedral.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2e3a2b0ec912",
              "venue_id": "venue_dance_mission",
              "title": "Mission in the Mix",
              "event_time": "2026-06-19 2026-06-20T20:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Micaya presents a multidisciplinary Bay Area performance series centering community, artistry, and cultural exchange at Dance Mission Theater.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/28/june-19-28-mission-in-the-mix/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-19",
              "run_id": "run_e5a7006ecdef",
              "run_label": "Mission in the Mix, Jun 19 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_39e40e104f5d",
              "venue_id": "venue_biscuits__blues",
              "title": "Harvey Mandel",
              "event_time": "2026-06-19T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-19T18:30:00",
              "event_date": "2026-06-19",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Legendary guitarist for The Rolling Stones, Canned Heat, John Mayall, and more, appearing live at Biscuits & Blues.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260619harveymandel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fc33b2cf9181",
              "venue_id": "venue_public_works",
              "title": "Queen Out Juneteenth",
              "event_time": "06/19/2026 9pm",
              "venue_name": "Public Works",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A Juneteenth celebration featuring SadBoi, Memphy, and more.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$16-40 | 21+",
              "url": "https://shotgun.live/events/queen-out-juneteenth?utm_source=19-hz",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e8fec7311c67",
              "venue_id": "venue_the_setup",
              "title": "The Setup at The Palace Theater (Speakeasy Comedy)",
              "event_time": "2026-06-19T21:00:00",
              "venue_name": "The Setup",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "Intimate speakeasy comedy featuring comedians seen on HBO, Netflix, and Comedy Central at the Palace Theater's underground bar.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$20.00",
              "url": "https://www.unation.com/event/the-setup-at-the-palace-theater-speakeasy-comedy-52345678",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-05-16T01:44:41.479756Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_setup|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_37b69c23c1cb",
              "venue_id": "venue_punch_line",
              "title": "Kevin Camia",
              "event_time": "2026-06-19T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-19T19:30:00",
              "event_date": "2026-06-19",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Kevin Camia is a stand-up comedian known for his dry wit and unique perspective on life.",
              "event_types": [],
              "price_info": "Starting from $20",
              "url": "https://www.punchlinecomedyclub.com/EventDetail?tmeventid=G5vjZ91Xp_7p",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8338e3350989",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Dave Burleigh",
              "event_time": "2026-06-19T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-19T20:00:00",
              "event_date": "2026-06-19",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Dave Burleigh, featuring Ashley Monique and Tony Zavala.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/136024",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-19",
              "run_id": "run_76b028b06423",
              "run_label": "Dave Burleigh, Jun 18 – Jun 21",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_537826cd7d0b",
              "venue_id": "venue_bird_and_beckett",
              "title": "Scott Foster",
              "event_time": "2026-06-19T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-19T19:30:00",
              "event_date": "2026-06-19",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Guitarist Scott Foster brings in an ever-evolving cast of musicians on the 3rd Friday of each and every month.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9d2fe2617a83",
              "venue_id": "venue_halcyon",
              "title": "ZAC",
              "event_time": "06/19/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-19T22:00:00",
              "event_date": "2026-06-19",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Progressive house artist ZAC brings his melodic and driving soundscapes to Halcyon for an evocative night of electronic music.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/m2d8c3c0cac9?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-05-17T11:52:23.715555Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06c33e17d4d9",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-19",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-19",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06887a559d77",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-06-19T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Friday night DJ entertainment. Handcrafted cocktails and a welcoming neighborhood atmosphere.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4bb23d37f423",
              "venue_id": "venue_sap_center",
              "title": "Shakira",
              "event_time": "2026-06-19",
              "venue_name": "SAP Center",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Las Mujeres Ya No Lloran World Tour 2026",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-06-19",
              "run_id": "run_465afbe9ff59",
              "run_label": "Shakira, Jun 19 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f80ab87f0613",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-19",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-19",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_03e142a70007",
              "venue_id": "venue_tommy_ts",
              "title": "LEWIS BELT",
              "event_time": "2026-06-19 2026-06-20",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-19",
              "run_id": "run_1aaefb4017ee",
              "run_label": "LEWIS BELT, Jun 19 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f17a24c9293c",
              "venue_id": "venue_the_sound_room",
              "title": "Novos Caminhos",
              "event_time": "Friday, June 19, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-19T19:30:00",
              "event_date": "2026-06-19",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Novos Caminhos is the meeting of two leading voices in Brazilian instrumental music: Ian Coury (10-string mandolin) and Igor Souza (7-string guitar). United by their love of choro and samba, they blend technical mastery and creativity to honor tradition while reimagining it for new audiences. Born from an instant musical connection, their collaboration offers original compositions and inventive interpretations of Brazilian classics, with improvisation and modern arrangements that echo global jazz influences.\n\nNovos Caminhos is more than a show, it’s an artistic manifesto celebrating the continuity and evolution of Brazil’s rich musical heritage, inviting listeners on a journey through roots and possibilities that bridge generations and cultures. Their performances aim to deliver a live experience that is deeply Brazilian yet open to the world, captivating diverse audiences from traditional fans to those eager for new sounds.\n\nBy 12, Ian Coury had already performed with Brazilian choro legends Armandinho and Hamilton de Holanda. Now 23, he is a leading virtuoso of the 10-string mandolin, redefining choro and instrumental music. He has performed with Paquito D’Rivera, Claudio Roditi, and Toninho Horta, earning awards such as “Best Instrumentalist” at the National FM Radio Festival (2020).\n\nA Brasília native, Ian began playing mandolin at 8 and later attended Berklee College of Music on a full scholarship, receiving the String Department Award. He has taught workshops at Harvard, MIT, and the University of Colorado Boulder and launched the first online Brazilian mandolin course in the U.S. on Peghead Nation.\n\nIan has performed at NAMM and received accolades from Brazil’s House of Representatives. He continues pushing the mandolin's boundaries, captivating international audiences with his technical mastery and innovative style.\n\nAt 24, Igor Souza is a talented musician, arranger, producer, and educator from Rio de Janeiro. He began playing at six and holds bachelor’s and master’s degrees in music education from UNIRIO. Known as the “7-String Guitar Phenomenon of Brazil,” Igor has taught over 900 students and performed in five European countries and across Brazil. He has toured with Xande de Pilares on the “Xande Canta Caetano” tour, performed in Rio’s Carnival with top samba schools since 2016, and worked with Grammy-winning artist Esperanza Spalding. A sought-after studio musician, he has contributed to TV Globo soundtracks, including the iconic Globeleza theme. In 2025, he released his debut album with Saulo Fernandes on Japan’s Pyramid Label, and in 2026 he will release Novos Caminhos, a collaborative project with mandolinist Ian Coury, showcasing his versatility in choro, samba, and Brazilian instrumental music.\n\nTickets at Novos Caminhos: Leading Voices in Brazilian Music",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/novos-caminhos-leading-voices-in-brazilian-music",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e1e625b5400c",
              "venue_id": "venue_mountain_winery",
              "title": "The Fab Four: The Ultimate Tribute",
              "event_time": "Jun 19, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-19T19:30:00",
              "event_date": "2026-06-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "USA Meets The Beatles!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259252",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ebf91fa55d63",
              "venue_id": "venue_paramount_theatre",
              "title": "FRUITVALE STATION",
              "event_time": "June 19, 2026 7:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-06-19T19:00:00",
              "event_date": "2026-06-19",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Rated R - not suitable for young audiences",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/fruitvale-station",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ac7908e2847",
              "venue_id": "venue_ivy_room",
              "title": "Whisper to Thunder & Box of Pearls",
              "event_time": "Friday Jun 19 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-19T19:00:00",
              "event_date": "2026-06-19",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - BOX OF PEARLS (JANIS JOPLIN TRIBUTE)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/184170",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_069c5bcdacd6",
              "venue_id": "venue_the_mighty",
              "title": "Road To Kausmic",
              "event_time": "2026-06-19T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "A collaborative showcase featuring JKIND, Emanate, ALMAS, and HIDRA.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/events/1894566",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-18T11:44:14.799981Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_mighty|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_569e1ade5aa3",
              "venue_id": "venue_brick_and_mortar",
              "title": "CHASE ICON",
              "event_time": "Fri 6.19 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "BRICK & MORTAR MUSIC HALL + POPSCENE PRESENTS",
              "event_types": [
                "live_music"
              ],
              "price_info": "$27.58",
              "url": "https://www.brickandmortarmusic.com/tm-event/chase-icon/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_93ece9751446",
              "venue_id": "venue_envelop_sf",
              "title": "Jamie xx: In Colour",
              "event_time": "Friday, June 19 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Enjoy a dance-focused listening session featuring the vibrant electronic tracks of Jamie xx's 'In Colour.' The immersive sound system creates a high-energy, three-dimensional club environment.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260619-jamie-xx-in-colour-dance",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c966c50767c9",
              "venue_id": "venue_little_hill_lounge",
              "title": "Tony Jay",
              "event_time": "2026-06-19T19:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-19T19:00:00",
              "event_date": "2026-06-19",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Live musical performance by Tony Jay at Little Hill Lounge.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.shazam.com/concert/tony-jay-el-cerrito-little-hill-lounge-16788228",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b12b0238cc34",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-19",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-19",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4fd998f1a21",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 19, 2026 1:30pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-19T13:30:00",
              "event_date": "2026-06-19",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Paris Is Burning, A Conversation with Coleman Domingo, I Want Your Sex, Our Effed Up World",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline50-260619",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_182cef4986df",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 19, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-19-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_789239fe72f1",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-19",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-19",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_80dad601f119",
              "venue_id": "venue_kilowatt",
              "title": "Smoking Popes & Alien Boy",
              "event_time": "Jun 19 7pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-19T19:00:00",
              "event_date": "2026-06-19",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Pop-punk veterans Smoking Popes perform live with support from Alien Boy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$31.93",
              "url": "http://www.foopee.com/by-band.3.html#Smoking_Popes",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_242f57babd3c",
              "venue_id": "venue_mountain_winery",
              "title": "The Fab Four",
              "event_time": "Jun 19 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-19T17:30:00",
              "event_date": "2026-06-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This acclaimed tribute band meticulously recreates the look, sound, and stage presence of The Beatles. Their performance spans the entirety of the Fab Four's career, from early hits to their experimental studio era.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Fab_Four",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae44a87fe31b",
              "venue_id": "venue_the_ritz",
              "title": "Satori vs. Death Guild",
              "event_time": "2026-06-19T21:00:30-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-19T21:00:30",
              "event_date": "2026-06-19",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "SATORI VS DEATH GUILD: GOTH, INDUSTRIAL, DARKWAVE DANCE NIGHT\nwith DJ BIT\nDJ DECAY\nMELTING GIRL\nFRIDAY JUNE 19, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 Advance – $15 Day-of-Show",
              "url": "https://www.ticketweb.com/event/satori-vs-death-guild-goth-the-ritz-tickets/14877463",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-18T15:41:10.895193Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_98529b0936b1",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-19T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-19T18:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64d2d18c71e5",
              "venue_id": "venue_levis_stadium",
              "title": "FIFA WORLD CUP | TURKEY VS. PARAGUAY",
              "event_time": "Jun 19, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-06-19",
              "event_date": "2026-06-19",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Turkey and Paraguay compete on the pitch in this FIFA World Cup fixture held at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKET PACKAGE",
              "url": "https://levisstadium.com/event/fifa-world-cup-group-stage-2026-06-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee2fb993fbd6",
              "venue_id": "venue_the_fireside",
              "title": "Friday Night Music/DJs",
              "event_time": "2026-06-19T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-19T18:00:00",
              "event_date": "2026-06-19",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8e654a8b88fb",
              "venue_id": "venue_the_riptide",
              "title": "Punk Rock and Schlock Karaoke",
              "event_time": "2026-06-19T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-19T21:00:00",
              "event_date": "2026-06-19",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_08e23f341833",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "THE SKLAR BROTHERS",
              "event_time": "Fri Jun 19, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-19T19:30:00",
              "event_date": "2026-06-19",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Identical twins Randy and Jason Sklar deliver their signature synchronized delivery and sports-infused observational comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-sklar-brothers-san-francisco-california-06-19-2026/event/1C00646CC49FF4A5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b962d6efc0ad",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "KINFOLK COMEDY: JUNETEENTH JOKE JAM",
              "event_time": "Fri Jun 19, 2026 10:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-19T22:00:00",
              "event_date": "2026-06-19",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "This special holiday showcase celebrates Juneteenth with a lineup of talented Black comedians sharing their best material.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/kinfolk-comedy-juneteenth-joke-jam-san-francisco-california-06-19-2026/event/1C00647139F51510",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_17478e6ebe22",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Patton Leatha",
              "event_time": "June 19, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-06-19T18:00:00",
              "event_date": "2026-06-19",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "Duane Patton, alongside his band, \"Patton Leatha\", work to bring premier live shows. From sultry slow jams, to turning up the funk, this band can do it all. Playing music from the Motown era, R&B, old-school hits and even current top 40 they will certainly entertain.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://duanepatton.wordpress.com/bio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-06-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-20": {
          "date": "2026-06-20",
          "updated_at": "2026-05-18T15:58:43.771732Z",
          "events": [
            {
              "event_id": "evt_9e4761bc46f8",
              "venue_id": "venue_audio",
              "title": "RAGIE BAN",
              "event_time": "2026-06-20T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-06-20T21:30:00",
              "event_date": "2026-06-20",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Artist Ragie Ban takes the stage at the Castro Theater for a live electronic music performance. The event offers a focused showcase of the artist's specific musical style and production.",
              "event_types": [
                "dj_party",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "https://audiosf.com/event/ragie-ban/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Audio",
                  "fetched_at": "2026-03-21T09:14:24.015374Z",
                  "strategy_used": "LLM",
                  "source_id": "v_audio"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                }
              ],
              "match_key": "venue_audio|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b5cca9ddc987",
              "venue_id": "venue_the_independent",
              "title": "MAMAS GUN",
              "event_time": "6.20 Show: 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-20T21:00:00",
              "event_date": "2026-06-20",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "UK-based soul and funk band Mamas Gun brings their sophisticated arrangements and soulful grooves to the Hotel Utah stage.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/mamas-gun/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_31d5112fb987",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Christian Mistress",
              "event_time": "Friday June 20 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 20 Christian Mistress, Lord Weird Slough Feg, Funeral Chant 21+ $20 8pm/8:30pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 $25.31 in advance [20 face value + 5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260620.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_28e0e956abd8",
              "venue_id": "venue_ivy_room",
              "title": "Octavian Winters & None Shall Remain",
              "event_time": "Saturday Jun 20 8:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "An evening of post-punk and darkwave sounds featuring Octavian Winters, Nome Shall Remain, Strange Cities, and Agness.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/170856",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_27b12bf8ce00",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-20",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-14T11:49:58.405237Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-20",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9389e6887c6b",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-20",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-20",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1cd450842a3c",
              "venue_id": "venue_down_home_music",
              "title": "Flowers For Angela",
              "event_time": "Jun 20 2026 2pm",
              "venue_name": "Down Home Music",
              "event_start": "2026-06-20T14:00:00",
              "event_date": "2026-06-20",
              "venue_address": "10341 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A live in-store performance featuring Alt Rock band Flowers For Angela.",
              "event_types": [
                "live_music"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.1.html#Flowers_For_Angela",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_down_home_music",
                  "source_name": "Down Home Music",
                  "fetched_at": "2026-04-13T11:39:18.865259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_down_home_music|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49004be80b9c",
              "venue_id": "venue_regency_ballroom",
              "title": "Ibrahim Maalouf",
              "event_time": "2026-06-20T19:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-20T19:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Acclaimed trumpeter and composer Ibrahim Maalouf performs his sophisticated fusion of jazz, world music, and classical influences. His virtuosic playing creates a multicultural musical journey at JAX Vineyards.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.1.html#Ibrahim_Maalouf",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-16T09:13:42.764342Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-30T23:11:50.885369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ce98a4b0d2c",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Buju Banton & Stephen Marley",
              "event_time": "June 20, 2026 7:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-06-20T19:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Roots and Rhymes Tour - DJ Splackavelli",
              "event_types": [
                "live_music",
                "latin_world",
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thefoxoakland.com/events/buju-banton-and-stephen-marley-260620",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-18T07:48:06.867851Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a246baf7d6e4",
              "venue_id": "venue_cornerstone",
              "title": "Chum (tribute)",
              "event_time": "Jun 20 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a 8pm/9pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Chum",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9fae0b6a3a15",
              "venue_id": "venue_chase_center",
              "title": "Diljit Dosanjh: Aura World Tour",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Diljit Dosanjh brings his Aura World Tour to Chase Center for two consecutive nights.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Tickets from $125",
              "url": "https://www.chasecenter.com/events/diljit-dosanjh-20260620",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1a5cd8c3e482",
              "venue_id": "venue_halcyon",
              "title": "JAY LUMEN",
              "event_time": "06/20/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-20T22:00:00",
              "event_date": "2026-06-20",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Techno heavyweight Jay Lumen takes control of the booth at Halcyon for a night of powerful and driving underground beats.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/N2258406a029?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-04-28T12:03:17.867272Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8909de20742d",
              "venue_id": "venue_old_first_concerts",
              "title": "KITKA – Songs for the Summer Solstice",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Songs for the Summer Solstice from Balkan, Baltic, Caucasian, and Slavic lands featuring the ravishing textures of the women's voices, unearthly cadences, and angular rhythms.",
              "event_types": [
                "live_music",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.oldfirstconcerts.org/performance/kitka-songs-for-the-summer-solstice/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-05-07T10:32:26.729121Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ac941cd4e499",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-20",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b49e0575d58d",
              "venue_id": "venue_924_gilman",
              "title": "Ashes At Last & Friends",
              "event_time": "Jun 20 6:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-20T18:30:00",
              "event_date": "2026-06-20",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages live show at 924 Gilman. Doors open at 6:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12",
              "url": "http://www.foopee.com/by-band.0.html#Ashes_At_Last",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b14bf2b86851",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-20",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_679058d70180",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-20T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-20T14:00:00",
              "event_date": "2026-06-20",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-20",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_503723d9c0c1",
              "venue_id": "venue_the_ritz",
              "title": "The Emo Night Tour",
              "event_time": "2026-06-20T20:00:18-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-20T20:00:18",
              "event_date": "2026-06-20",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "A themed dance party celebrating the best of emo and pop-punk music from the 2000s to the present day.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20 Advance – $25",
              "url": "https://www.ticketweb.com/event/the-emo-night-tour-the-ritz-tickets/14894993",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ca1bbb0158e",
              "venue_id": "venue_924_gilman",
              "title": "Membership Meeting",
              "event_time": "Jun 20 4pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-06-20T16:00:00",
              "event_date": "2026-06-20",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "4pm",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Membership_Meeting",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d5093fe1a684",
              "venue_id": "venue_the_chapel",
              "title": "Dengue Fever",
              "event_time": "Jun 20 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$48.25 8pm/9pm",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$48.25",
              "url": "http://www.foopee.com/by-band.0.html#Dengue_Fever",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f538d21399f6",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-20",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-20",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f2172c30db3",
              "venue_id": "venue_the_marsh_sf",
              "title": "Carole Klyce's Flight Risk",
              "event_time": "2026-06-20T17:00:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-06-20T17:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Final performance of Carole Klyce's solo show 'Flight Risk'.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $35 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/carole-klyce-flight-risk/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ad2cf34b3129",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Live Music: Local Blues, RnB & Soul",
              "event_time": "2026-06-20T21:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-20T21:00:00",
              "event_date": "2026-06-20",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Weekly Saturday night live music series featuring the best of the Bay Area's blues and soul scene.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_67852dbe76a5",
              "venue_id": "venue_z_space",
              "title": "25th Anniversary Fresh Meat Festival",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-20",
              "run_id": "run_9d603655b6e6",
              "run_label": "25th Anniversary Fresh Meat Festival, Jun 19 – Jun 21",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a3d936c4bbb5",
              "venue_id": "venue_z_space",
              "title": "25th Anniversary Fresh Meat Festival",
              "event_time": "2026-06-20T15:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-20T15:00:00",
              "event_date": "2026-06-20",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-20",
              "run_id": "run_9d603655b6e6",
              "run_label": "25th Anniversary Fresh Meat Festival, Jun 19 – Jun 21",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_353272185362",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-20",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-20",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_857fb8fc8f00",
              "venue_id": "venue_cry_baby",
              "title": "Guttermouth",
              "event_time": "2026-06-20T18:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-06-20T18:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Live punk show at Crybaby featuring Guttermouth with Cryptilians, Grimedog, and local support.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://crybaby.live/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9dc654fe3e44",
              "venue_id": "venue_pacific_film_archive",
              "title": "Le cercle rouge",
              "event_time": "2026-06-20T19:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-20T19:00:00",
              "event_date": "2026-06-20",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "A heist film by Jean-Pierre Melville, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/le-cercle-rouge",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2b0a11f0e725",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "TILT: Midnight Sun",
              "event_time": "2026-06-20T19:30:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-20T19:30:00",
              "event_date": "2026-06-20",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A summer solstice concert featuring vocal soloists, virtuoso strings, and piano, tracing a journey from night through dawn to the radiant fullness of summer.",
              "event_types": [],
              "price_info": "$40.00 - $250.00",
              "url": "https://gracecathedral.org/events/tilt-midnight-sun/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f075734e886d",
              "venue_id": "venue_hammer_theater",
              "title": "Creative Culture Dance Academy: Embrace",
              "event_time": "2026-06-20T12:30:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-20T12:30:00",
              "event_date": "2026-06-20",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "A dance showcase presented by the Creative Culture Dance Academy.",
              "event_types": [],
              "price_info": "N/A",
              "url": "https://hammertheatre.com/events-list/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2e1070f6e772",
              "venue_id": "venue_dance_mission",
              "title": "Mission in the Mix",
              "event_time": "2026-06-20 2026-06-20T20:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Micaya presents a multidisciplinary Bay Area performance series centering community, artistry, and cultural exchange at Dance Mission Theater.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/28/june-19-28-mission-in-the-mix/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-20",
              "run_id": "run_e5a7006ecdef",
              "run_label": "Mission in the Mix, Jun 19 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_572ddc0d1376",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Short Show",
              "event_time": "2026-06-20T18:45:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-20T18:45:00",
              "event_date": "2026-06-20",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A light summertime delight that bridges the time between happy hour and evening plans with fast-paced improv.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-short-show-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ebed6c4f016c",
              "venue_id": "venue_bayfront_theater",
              "title": "Whodunnit?",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised murder mystery where even the actors don't know who the killer is until the final scene.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-whodunnit-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b8013457fbf1",
              "venue_id": "venue_the_monkey_house",
              "title": "Maurice Tani",
              "event_time": "2026-06-20",
              "venue_name": "The Monkey House",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Performance by Bay Area songwriter Maurice Tani, noted for his compelling baritone voice and extensive catalog blending country classicism with Great American Songbook influences.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Sliding scale donation $20-40 (unless otherwise noted)",
              "url": "https://static.wixstatic.com/media/60be15_63ec85c620584909ae193e4261e8b4be~mv2.png/v1/fill/w_600%2Ch_231%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/6-20%20Maurice.png",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-05-15T21:31:30.195149Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf0c4619f4ce",
              "venue_id": "venue_biscuits__blues",
              "title": "The Delgado Brothers",
              "event_time": "2026-06-20T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-20T18:30:00",
              "event_date": "2026-06-20",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "East L.A. blues, roots rock, Americana, and Latin soul—The Delgado Brothers bring heart, groove, and timeless fire.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260620thedelgadobrothers",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3f2895aa2943",
              "venue_id": "venue_oracle_park",
              "title": "Fuerza Regida | Saturday, June 20",
              "event_time": "June 20",
              "venue_name": "Oracle Park",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "24 Willie Mays Plaza, San Francisco, CA 94107",
              "description": "Fuerza Regida is bringing the This Is Our Dream Tour to Oracle Park on June 20, 2026.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.mlb.com/giants/tickets/events/concerts/fuerza-regida",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oracle_park",
                  "source_name": "Oracle Park",
                  "fetched_at": "2026-05-16T01:34:07.013359Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oracle_park|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5f21f29bae4",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Dave Burleigh",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Dave Burleigh, featuring Ashley Monique and Tony Zavala.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/136024",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-20",
              "run_id": "run_76b028b06423",
              "run_label": "Dave Burleigh, Jun 18 – Jun 21",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f53a3bde18a3",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-06-20T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-20T19:30:00",
              "event_date": "2026-06-20",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b768d8dc6b1",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-20",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-20",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_94fffdc6b6c7",
              "venue_id": "venue_hi_lo_club",
              "title": "Weekend DJ Set",
              "event_time": "2026-06-20T21:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-06-20T21:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "Saturday night DJ set. Experience the 'Hi-Brow meets Lo-Brow' vibe of the Hi-Lo Club.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.hilosf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-05-17T12:31:36.924262Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_41d0910ad557",
              "venue_id": "venue_public_works",
              "title": "Out & Abt Pride",
              "event_time": "2026-06-20",
              "venue_name": "Public Works",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A Pride celebration event at Public Works.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://publicsf.com/events/out-abt-sf-pride/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a76eefc9c292",
              "venue_id": "venue_sap_center",
              "title": "Shakira",
              "event_time": "2026-06-20",
              "venue_name": "SAP Center",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Las Mujeres Ya No Lloran World Tour 2026",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-06-20",
              "run_id": "run_465afbe9ff59",
              "run_label": "Shakira, Jun 19 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ddd41f0c9b8",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-20",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-20",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_555c47597b89",
              "venue_id": "venue_rootstock_arts",
              "title": "Bay United Artists Collective",
              "event_time": "2026-06-20T19:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-20T19:00:00",
              "event_date": "2026-06-20",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "This session focuses on the professional and creative growth of local artists through collaborative workshops. It provides a supportive environment for members of the collective to refine their craft and share resources.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53bbb5e33850",
              "venue_id": "venue_tommy_ts",
              "title": "LEWIS BELT",
              "event_time": "2026-06-20 2026-06-20",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-20",
              "run_id": "run_1aaefb4017ee",
              "run_label": "LEWIS BELT, Jun 19 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c9c87bfc6016",
              "venue_id": "venue_the_sound_room",
              "title": "Brad Leali Quartet ft. Carla Helmbrecht",
              "event_time": "Saturday, June 20, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-20T19:30:00",
              "event_date": "2026-06-20",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "OH MY THIS IS GOOD! We featured this band last Fall and are SO excited to have them back!\n\nThe sensitive and sophisticated vocal stylings of Carla Helmbrecht are the perfect complement to the soulful, blues- and swing-influenced style of the Brad Leali ensemble. Not only do they explore classic jazz standards and original materials, but they are able to infuse historical and modern components to their unique arrangements. This dynamic duo will be backed by a world class trio.\n\nWith a unique style and sound, which echoes the influences of his past, Brad Leali is one of the most notable saxophonists of current times. Leali toured and recorded with numerous jazz greats, including several years with the Harry Connick, Jr. Orchestra and with the Count Basie Orchestra. Leali was a standing member of the Kennedy Center Honors Band and performed for President Obama’s inaugural celebration. Brad has had a long-time endorsement with Keilwerth Saxophones and D’Addario Reeds. Currently the professor of jazz saxophone at UNT, Brad continues to perform domestically and abroad, including touring with Lyle Lovett & His Large Band.\n\n“Saxophonist Brad Leali was among the most soulful and exciting I’ve heard recently.” – New York Times\n\n\nGrammy-nominated singer/song-writer, Carla Helmbrecht, began her love affair with music at the age of eight.By age 13, she was singing professionally and continued her musical studies through high school and college. Early influences included Ella Fitzgerald, Sarah Vaughan, Julie London, Shirley Horn, Nancy Wilson, and Blossom Dearie. Her dual career in music and Speech Pathology has given her a unique understanding of the balance between vocal efficiency and expression in this fragile instrument – the voice. Her recording ONE FOR MY BABY earned a prominent position on Gavin’s Jazz Chart, while BE COOL BE KIND debuted as “the most added jazz record on radio in the nation” and received three Grammy nominations. Carla is a featured artist on numerous other recordings, television and major motion picture films. She lives in San Francisco and tours nationally and internationally.\n\n“… imaginative…poetic and sophisticated…She’s hip without being frenetic, laid-back without sounding haphazard, and best of all, the lady swings without sweating…the lyric writer’s best friend.” -Harvey Siders, JazzTimes\n\n“She exudes warmth in spades…An unusually gifted vocalist, impeccable phrasing…steeped in a swinging jazz sensibility that reminds me of Mel Torme….” -Carol Archer, R & R Magazine\n\nTickets at Brad Leali Quartet featuring Carla Helmbrecht",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/brad-leali-quartet-featuring-carla-helmbrecht-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e4ed6cf50440",
              "venue_id": "venue_mountain_winery",
              "title": "Matteo Bocelli",
              "event_time": "Jun 20, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-20T19:30:00",
              "event_date": "2026-06-20",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1253287",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b2cf0b9d60b5",
              "venue_id": "venue_yoshis",
              "title": "The Manhattans feat. Gerald Alston",
              "event_time": "SAT 6.20",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-20T19:30:00",
              "event_date": "2026-06-20",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "CLASSIC R&B VOCAL GROUP",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$56 - $99",
              "url": "https://yoshis.com/events/buy-tickets/the-manhattan-s-feat-gerald-alston/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_52b76e165ded",
              "venue_id": "venue_hillside_club",
              "title": "California Fine Arts Exhibition",
              "event_time": "Jun 20, 2026, 10:00 AM – 5:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-06-20T10:00:00",
              "event_date": "2026-06-20",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "A curated showcase featuring a diverse range of fine art pieces created by talented artists from across California.",
              "event_types": [
                "art"
              ],
              "price_info": "Learn more",
              "url": "https://www.hillsideclub.org/event-details/california-fine-arts-exhibition",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f964c33fb1fe",
              "venue_id": "venue_brick_and_mortar",
              "title": "EMO VS. POP-PUNK",
              "event_time": "Sat 6.20 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-20T21:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "This themed event at Brick and Mortar features a battle of genres, playing the best hits from the emo and pop-punk eras.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$27.06 - $161.38",
              "url": "https://www.brickandmortarmusic.com/tm-event/emo-vs-pop-punk-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aef2387141e8",
              "venue_id": "venue_presidio_theater",
              "title": "Stewart Copeland: Have I Said Too Much?",
              "event_time": "Jun 20, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-20T19:30:00",
              "event_date": "2026-06-20",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Stewart Copeland, world famous drummer, founder of The Police--the most successful rock band of the 1980’s--composer of film scores, video games, and operas, multi Grammy winner and Rock and Roll Hall of Famer, writer and filmmaker, appears in his first American spoken-word tour, to talk about it all in his usual funny, intelligent, sharp and unique way. An evening of conversation with photos, videos, and Q&A about his incredible life as a performer, musician, entertainer, and writer.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/stewart-copeland-have-i-said-too-much-the-police-hollywood-and-other-adventures",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6bd8b9da747a",
              "venue_id": "venue_act_theater",
              "title": "IDOL WORSHIP",
              "event_time": "JUN 20, 2026",
              "venue_name": "ACT Theater",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "This theatrical production examines the nature of fame and the intense devotion directed toward public figures and cultural icons.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/limited-engagements/idol-worship",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e94dec9ee6b1",
              "venue_id": "venue_envelop_sf",
              "title": "Promises: Floating Points & Pharoah Sanders",
              "event_time": "Saturday, June 20 2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "Experience the collaborative album 'Promises' by Floating Points, Pharoah Sanders, and the London Symphony Orchestra in spatial audio. This session highlights the delicate interplay between jazz, electronic, and classical elements.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260620-floating-points-sanders-lso-promises-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-05-18T12:49:27.757517Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ef10321fae3",
              "venue_id": "venue_historic_bal_theatre",
              "title": "4 LADS FROM LIVERPOOL",
              "event_time": "Saturday, Jun 20 Show: 7:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-06-20T19:00:00",
              "event_date": "2026-06-20",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This tribute show captures the magic and music of The Beatles, recreating the energy of the band that changed music history.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/4-lads-from-liverpool/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_52c751c6e536",
              "venue_id": "venue_cornerstone",
              "title": "The Rare Occasions",
              "event_time": "2026-06-20T02:30:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-20T02:30:00",
              "event_date": "2026-06-20",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "The Rare Occasions Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/the-rare-occasions-185622",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92e429a5a749",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Pride Cabaret 2026",
              "event_time": "2026-06-20",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Includes The Wheelin’ Wagoners’ Rootin’ Tootin’ Hoedown Hootenanny Jamboree and Fauxnique. So Relevant",
              "event_types": [],
              "price_info": "",
              "url": "https://nctcsf.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-05-18T13:15:05.591235Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-06-20",
              "run_id": "run_1b791008da97",
              "run_label": "Pride Cabaret 2026, Jun 11 – Jun 20",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_99e7cfcc9c3d",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 20, 2026 10:30am",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-20T10:30:00",
              "event_date": "2026-06-20",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Homegrown Shorts, The Hockey Player, Jaripeo, The Brittney Griner Story, Bound",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline-260620-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e1acd9764e3c",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 20, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-20-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_04d5b7737461",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-20",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-20",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e4e05618b07e",
              "venue_id": "venue_kilowatt",
              "title": "Smoking Popes & Alien Boy",
              "event_time": "Jun 20 7pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-06-20T19:00:00",
              "event_date": "2026-06-20",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Pop-punk veterans Smoking Popes perform live with support from Alien Boy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$31.93",
              "url": "http://www.foopee.com/by-band.3.html#Smoking_Popes",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_211f910a7cb8",
              "venue_id": "venue_mountain_winery",
              "title": "Matteo Bocelli",
              "event_time": "Jun 20 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-20T17:30:00",
              "event_date": "2026-06-20",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The talented tenor performs a selection of classical crossovers and contemporary pop songs showcasing his powerful vocal range. As the son of Andrea Bocelli, he brings a sophisticated and emotive presence to the stage.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Matteo_Bocelli",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d2ada5863ad",
              "venue_id": "venue_club_fox",
              "title": "Olas Perdidas",
              "event_time": "Saturday June 20th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Saturday June 20thOLAS PERDIDASDoors 7:30PM / Show 8:30PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tickets.worldclassmusic.live/events/wcml/2165046?utm_medium=paid&utm_id=120243346476080343&utm_content=120245782416870343&utm_term=120245782157330343&utm_campaign=120243346476080343&fbclid=IwY2xjawRgVzhleHRuA2FlbQEwAGFkaWQBqzNZerzPx3NydGMGYXBwX2lkEDIyMjAzOTE3ODgyMDA4OTIAAR7xgXS2LHH4sCUIWU0RwDe2np3DWWLWMAZ4UGkY9VmbQ0WPqhheqF9ZrebuRQ_aem_yORGzNMXlrmNmF1e_v3hvw&utm_source=facebook&campaign_id=120243346476080343&ad_id=120245782416870343",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_803a0dd2faed",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-20T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-20T18:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c0a709c6828d",
              "venue_id": "venue_august_hall",
              "title": "BOP TO THE TOP",
              "event_time": "JUNE 20, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-06-20",
              "event_date": "2026-06-20",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "A high-energy dance party dedicated to the best hits from Disney Channel and 2000s pop culture.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/bop-to-the-top/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-18T15:47:14.139244Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3fc2f7b787ac",
              "venue_id": "venue_the_fireside",
              "title": "Saturday Night Music/DJs",
              "event_time": "2026-06-20T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-20T18:00:00",
              "event_date": "2026-06-20",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b48ef92f6b2",
              "venue_id": "venue_the_riptide",
              "title": "Skankin' with DJ Sep",
              "event_time": "2026-06-20T20:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-20T20:00:00",
              "event_date": "2026-06-20",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7715c205e000",
              "venue_id": "venue_cow_palace",
              "title": "Ube Festival 2026",
              "event_time": "2026-06-20T10:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-06-20T10:00:00",
              "event_date": "2026-06-20",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "A full day of Filipino culture, flavor, and community featuring top food vendors, live entertainment, and local makers in a 'Purple Takeover'.",
              "event_types": [],
              "price_info": "Tickets start at $5 (Early Bird)",
              "url": "https://www.cowpalace.com/events/2026/ube-festival-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5a4f2ded1307",
              "venue_id": "venue_dna_lounge",
              "title": "Devin Wild, Keltek, Mandy",
              "event_time": "06/20/2026 9pm-2:30am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-06-20T02:30:00",
              "event_date": "2026-06-20",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "hard dance, hardstyle, hard techno",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20-30 pre / $35 | 21+",
              "url": "https://www.dnalounge.com/calendar/2026/06-20.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-06-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-21": {
          "date": "2026-06-21",
          "updated_at": "2026-05-18T15:58:43.783149Z",
          "events": [
            {
              "event_id": "evt_7bd582af41ad",
              "venue_id": "venue_masonic_hall",
              "title": "Metric, Broken Social Scene, Stars",
              "event_time": "Jun 21 2026 6pm/7pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-06-21T18:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Live 105 presents a powerhouse lineup of Canadian indie rock featuring Metric, Broken Social Scene, and Stars. This collaborative tour brings together three influential bands for an unforgettable night of music and emotion.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/live-105-all-the-feelings-tour-san-francisco-california-06-21-2026/event/1C00643CB75E7715",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-10T23:21:11.204082Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8745fd31bc14",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "The Barber of Seville",
              "event_time": "2026-06-21",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A jack-of-all trades, the wily barber Figaro has a scheme for anything. Moved by the troubles of two young lovers, Figaro pulls out his bag of tricks to aid them. See Rossini’s exuberant comedy in this flamenco-inspired production, featuring some of the most joyful music in all of opera.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-04-30T21:18:45.581847Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-21",
              "run_id": "run_589581677ac3",
              "run_label": "The Barber of Seville, May 28 – Jun 21",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_59f48e6ccd88",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-21",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-21",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e186e21ff839",
              "venue_id": "venue_regency_ballroom",
              "title": "Our Lady Peace, Verve Pipe",
              "event_time": "2026-06-21T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-21T20:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Alternative rock mainstays Our Lady Peace and The Verve Pipe team up for a night of 90s-inspired hits at the vineyard. Fans can enjoy a nostalgic evening of radio favorites and powerful rock performances.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.2.html#Our_Lady_Peace",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-13T04:13:31.972558Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e465890f7228",
              "venue_id": "venue_ivy_room",
              "title": "DeSoto Reds",
              "event_time": "Sunday Jun 21 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-21T18:00:00",
              "event_date": "2026-06-21",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "DeSoto Reds celebrate the launch of their new record with a night of indie rock supported by The Letterwriters and Not Yetis.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180403",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ade63d9e7c9",
              "venue_id": "venue_chase_center",
              "title": "Diljit Dosanjh: Aura World Tour",
              "event_time": "2026-06-21T20:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-06-21T20:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Diljit Dosanjh performs the second night of his Aura World Tour at Chase Center.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.chasecenter.com/events/diljit-dosanjh-20260621",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1671be3b40e7",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Half Past Two, Chudson, Voluntary Hazing",
              "event_time": "Sunday June 21 2026 7:00PM doors -- music at 7 :50PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-21T19:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; ska punk; ska punk; pop-punk ska",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260621.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4af22cc81aa9",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "America in Rhythm & Rhapsody",
              "event_time": "2026-06-21T15:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-06-21T15:00:00",
              "event_date": "2026-06-21",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "This musical performance at the Center for the Performing Arts celebrates American heritage through a selection of rhythmic and symphonic works. The program features iconic compositions that define the nation's unique sound and cultural history.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_philharmonic",
                  "source_name": "Bay Philharmonic",
                  "fetched_at": "2026-05-06T08:24:46.892146Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a166562cf993",
              "venue_id": "venue_old_first_concerts",
              "title": "Jason Sia, piano",
              "event_time": "2026-06-21T16:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-06-21T16:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Pianist Jason Sia presents a captivating program spanning French impressionism, Romantic lyricism, and 20th-century virtuosity, with works by Arambulo, Debussy, Chopin, Ravel, and Wild/Gershwin.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.oldfirstconcerts.org/performance/jason-sia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-05-07T10:32:26.729121Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ba654228a419",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-21T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-21T20:00:00",
              "event_date": "2026-06-21",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-21",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_802304e492ea",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-21T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-21T14:00:00",
              "event_date": "2026-06-21",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-21",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ed80e42ad49c",
              "venue_id": "venue_musicians_union_hall",
              "title": "SIMM Series: Experimental and Improvised Music",
              "event_time": "2026-06-21T19:30:00",
              "venue_name": "Musicians Union Hall",
              "event_start": "2026-06-21T19:30:00",
              "event_date": "2026-06-21",
              "venue_address": "116 9th St, San Francisco, CA 94103",
              "description": "A monthly Sunday series at the Musicians Union Hall dedicated to original and improvised music, featuring local and visiting experimental artists.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$10 - $25 sliding scale",
              "url": "http://www.outsound.org/simm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_musicians_union_hall",
                  "source_name": "Musicians Union Hall",
                  "fetched_at": "2026-05-11T12:01:45.357016Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_musicians_union_hall|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c0a61d75a58c",
              "venue_id": "venue_el_rio",
              "title": "Daytime Realness",
              "event_time": "2026-06-21T14:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-06-21T14:00:00",
              "event_date": "2026-06-21",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "The legendary outdoor drag and dance party featuring guest DJ Kim Anh and a host of drag performers.",
              "event_types": [
                "dj_party",
                "theater",
                "community"
              ],
              "price_info": "$20",
              "url": "https://ra.co/events/1888888",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-05-11T12:41:16.871816Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_el_rio|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb5fc52f8da2",
              "venue_id": "venue_bing_concert_hall",
              "title": "Indian Jazz Journey",
              "event_time": "2026-06-21T19:00:00",
              "venue_name": "Bing Hall",
              "event_start": "2026-06-21T19:00:00",
              "event_date": "2026-06-21",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "Stanford Jazz Workshop presents a unique fusion performance blending Indian classical music with jazz traditions, featuring vocalist Mahesh Kale and saxophonist George Brooks. This concert explores the intersection of Eastern and Western musical styles through improvisation and rhythmic complexity.",
              "event_types": [],
              "price_info": "Ticketed",
              "url": "https://events.stanford.edu/events/sjw-presents-indian-jazz-journey-ft-mahesh-kale-george-brooks",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_south_india_fine_arts_sifa",
                  "source_name": "South India Fine Arts (SIFA)",
                  "fetched_at": "2026-05-12T11:11:58.573509Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-05-13T10:20:02.406593Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_95d4d0661a2d",
              "venue_id": "venue_brick_and_mortar",
              "title": "Bayou",
              "event_time": "Jun 21 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-21T19:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Enjoy a live concert by Bayou as they showcase their latest music at this intimate San Francisco venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$5",
              "url": "http://www.foopee.com/by-band.0.html#Bayou",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-17T10:53:32.921048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6e26e7c76e2b",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-21",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-21",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d109e0419f1",
              "venue_id": "venue_great_american_music_hall",
              "title": "Ak'chamel & Friends",
              "event_time": "Jun 21 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-06-21T19:00:00",
              "event_date": "2026-06-21",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Ak’chamel with Rubber o Cement, Violet Thrones, and Derek Monypeny.",
              "event_types": [
                "live_music",
                "rock",
                "experimental"
              ],
              "price_info": "$24/$26",
              "url": "http://www.foopee.com/by-band.0.html#Ak_chamel",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5218c5535178",
              "venue_id": "venue_ashby_stage",
              "title": "Continuity - Masked-Audience Performance",
              "event_time": "2026-06-21T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-06-21T14:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "A performance where all audience members and staff are required to wear masks inside the theater.",
              "event_types": [],
              "price_info": "$40 - $80",
              "url": "https://shotgunplayers.org/online/article/continuity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0f968f42ee1a",
              "venue_id": "venue_temescal_arts_center",
              "title": "Dabke With Us!",
              "event_time": "2026-06-21T11:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-06-21T11:00:00",
              "event_date": "2026-06-21",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Free Palestinian folk dance workshop at Temescal Arts Center, taught by TAC Resident Artist Wael Buhaissy and members of Palestinian Dabke: Aljuthoor of the Arab Shatat. No experience necessary.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fe5c888180a1",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "2026-06-21T19:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-06-21T19:00:00",
              "event_date": "2026-06-21",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Open participation improvisation workshop hosted by Jacob Felix Heule for musicians and dancers of all levels; listen and/or play. Doors at 7, over by 10.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_49451861e9b7",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Sunday BBQ Breakfast",
              "event_time": "2026-06-21T09:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-21T09:00:00",
              "event_date": "2026-06-21",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "A special weekend tradition featuring brisket hash, custom omelets, biscuits and gravy, and other Southern breakfast standards. Complimentary coffee is included with breakfast orders.",
              "event_types": [
                "community"
              ],
              "price_info": "Menu prices",
              "url": "https://smokingpigbbq.net/menus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ecdd6c18d1ef",
              "venue_id": "venue_z_space",
              "title": "25th Anniversary Fresh Meat Festival",
              "event_time": "2026-06-21T20:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-21T20:00:00",
              "event_date": "2026-06-21",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-21",
              "run_id": "run_9d603655b6e6",
              "run_label": "25th Anniversary Fresh Meat Festival, Jun 19 – Jun 21",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b9b68a2b9647",
              "venue_id": "venue_z_space",
              "title": "25th Anniversary Fresh Meat Festival",
              "event_time": "2026-06-21T15:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-06-21T15:00:00",
              "event_date": "2026-06-21",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-06-21",
              "run_id": "run_9d603655b6e6",
              "run_label": "25th Anniversary Fresh Meat Festival, Jun 19 – Jun 21",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_26c67c6f1c9d",
              "venue_id": "venue_herbst_theater",
              "title": "Mozart to Mendelssohn",
              "event_time": "2026-06-21T15:00:00",
              "venue_name": "Herbst Theatre",
              "event_start": "2026-06-21T15:00:00",
              "event_date": "2026-06-21",
              "venue_address": "401 Van Ness Ave, San Francisco, CA 94102",
              "description": "Mozart to Mendelssohn presents Górecki's Symphony No. 3 \"Symphony of Sorrowful Songs\" with soprano Marnie Breckenridge, plus Chopin's Fantasy on Polish Airs and Revolutionary Etude, featuring pianist Daniel Glover; conducted by John Kendall Bailey.",
              "event_types": [],
              "price_info": "Free community concert; suggested donation $10 - $20.",
              "url": "https://www.sfcivicmusic.org/calendar/2025/9/28/mozart-to-mendelssohn-chopin-amp-goreckis-symphony-no-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_francisco_civic_music",
                  "source_name": "San Francisco Civic Music",
                  "fetched_at": "2026-05-15T16:25:24.132229Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_herbst_theater|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8228f226eceb",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-21",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-21",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ba5d8a157e21",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Morris Dancing at Grace Cathedral",
              "event_time": "2026-06-21T12:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-21T12:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A lively performance by Berkeley, Deer Creek, and Goat Hill Morris dancers following the morning services.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://bacds.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf33c1b603eb",
              "venue_id": "venue_dance_mission",
              "title": "Mission in the Mix",
              "event_time": "2026-06-21 2026-06-20T20:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Micaya presents a multidisciplinary Bay Area performance series centering community, artistry, and cultural exchange at Dance Mission Theater.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/28/june-19-28-mission-in-the-mix/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-21",
              "run_id": "run_e5a7006ecdef",
              "run_label": "Mission in the Mix, Jun 19 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_660bdf07ec57",
              "venue_id": "venue_punch_line",
              "title": "S.F. Comedy Showcase",
              "event_time": "2026-06-21T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-21T19:30:00",
              "event_date": "2026-06-21",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "The S.F. Comedy Showcase features the best of the Bay Area's comedy scene, with a rotating lineup of local favorites and rising stars.",
              "event_types": [],
              "price_info": "$21.80 - $30.50",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-06-21-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c5ee70d48d69",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Dave Burleigh",
              "event_time": "2026-06-21T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-21T20:00:00",
              "event_date": "2026-06-21",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Dave Burleigh, featuring Ashley Monique and Tony Zavala.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/136024",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-21",
              "run_id": "run_76b028b06423",
              "run_label": "Dave Burleigh, Jun 18 – Jun 21",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_55194b1f4034",
              "venue_id": "venue_bird_and_beckett",
              "title": "Tony Johnson Quartet",
              "event_time": "2026-06-21T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-21T17:00:00",
              "event_date": "2026-06-21",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Drummer Tony Johnson's Quartet or the 230 Jones Street Literary Jazz Band on the 3rd Sunday in even-numbered months.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a82be7aa4aa2",
              "venue_id": "venue_sfmoma",
              "title": "MAKE! Drawing with Instructions",
              "event_time": "2026-06-21T11:00:00",
              "venue_name": "SFMoma",
              "event_start": "2026-06-21T11:00:00",
              "event_date": "2026-06-21",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Workshop series",
              "event_types": [
                "workshop",
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-05-17T10:51:47.086162Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sfmoma|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49e0bcba52d9",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-21",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-21",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0a5fa573f7fa",
              "venue_id": "venue_the_chapel",
              "title": "Garden of Memory",
              "event_time": "2026-06-21T17:00:00",
              "venue_name": "The Chapel",
              "event_start": "2026-06-21T17:00:00",
              "event_date": "2026-06-21",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "The annual Walk-Through Concert - Garden of Memory at Chapel of the Chimes returns again to celebrate the summer solstice.This will sell out, so please try to buy tickets Herehttps://gardenofmemory.com/ More...",
              "event_types": [],
              "price_info": "Check ticket price on event",
              "url": "https://www.eventbrite.com/e/garden-of-memory-at-chapel-of-the-chimes-june-21-2026-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-05-17T13:36:19.706287Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a298ffb634f9",
              "venue_id": "venue_shapeshifters",
              "title": "Revelations of Divine Love",
              "event_time": "Sunday, June 21, 2026 2pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-06-21T14:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "Admission: $15 (discount for members)",
              "url": "https://buytickets.at/shapeshifterscinema/2202635",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-05-18T10:46:48.460857Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_083727d4eddd",
              "venue_id": "venue_yoshis",
              "title": "3TOB",
              "event_time": "SUN 6.21",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-21T19:30:00",
              "event_date": "2026-06-21",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "FATHER’S DAY CELEBRATION WITH BAY AREA’S ORIGINAL 3T BAND & WEST COAST LEGENDS OF R&B",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$50 - $75",
              "url": "https://yoshis.com/events/buy-tickets/3tob-elijah-baker-feat-jubu-smith-amir-kalif/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63cde0b0f9f2",
              "venue_id": "venue_hillside_club",
              "title": "California Fine Arts Exhibition",
              "event_time": "Jun 21, 2026, 10:00 AM – 5:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-06-21T10:00:00",
              "event_date": "2026-06-21",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "A curated showcase featuring a diverse range of fine art pieces created by talented artists from across California.",
              "event_types": [
                "art"
              ],
              "price_info": "Learn more",
              "url": "https://www.hillsideclub.org/event-details/california-fine-arts-exhibition-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0345a3e5358b",
              "venue_id": "venue_geoffreys_inner_circle",
              "title": "Handful of Keys Masterclass",
              "event_time": "2026-06-21 2026-06-17",
              "venue_name": "Geoffreys Inner Circle",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "410 14th St, Oakland, CA 94612",
              "description": "",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_geoffreys_inner_circle",
                  "source_name": "Geoffreys Inner Circle",
                  "fetched_at": "2026-05-18T11:48:10.924975Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_geoffreys_inner_circle|2026-06-21",
              "run_id": "run_1b89f9c1314d",
              "run_label": "PRESENTING THE 'HANDFUL OF KEYS' MASTERCLASS SERIES, Jun 10 – Jun 25",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c9803e67d5dd",
              "venue_id": "venue_bach_dds",
              "title": "John Santos Sextet",
              "event_time": "2026-06-21T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-06-21T16:30:00",
              "event_date": "2026-06-21",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "Multi-Grammy nominee John Santos and his stellar Sextet perform an afternoon of Afro-Latin Jazz, shedding light on the historical and cultural significance of the genre through original arrangements and compositions.",
              "event_types": [],
              "price_info": "Check website for ticket prices",
              "url": "https://dothebay.com/events/2026/6/21/the-bach-dancing-dynamite-society-presents-john-santos-sextet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_efa16a64dbb2",
              "venue_id": "venue_mabuhay_gardens",
              "title": "BACHATA IN NORTH BEACH",
              "event_time": "6/21/2026 6PM – 11PM // LESSONS & DANCE",
              "venue_name": "The Mab",
              "event_start": "2026-06-21T18:00:00",
              "event_date": "2026-06-21",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Latin lounge meets social club. Salsa & Bachata lessons. No partner needed. $15 presale / $25 door.",
              "event_types": [
                "workshop",
                "community",
                "latin_world"
              ],
              "price_info": "$15",
              "url": "https://www.eventbrite.com/e/bachata-in-north-beach-tickets-1983831659898",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-05-18T12:01:50.625795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_659ea8bc0041",
              "venue_id": "venue_cornerstone",
              "title": "Chum - A Tribute to Phish",
              "event_time": "2026-06-21T04:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-21T04:00:00",
              "event_date": "2026-06-21",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Chum - A Tribute to Phish Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/chum-a-tribute-to-phish-185043",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bcbd7c9150dc",
              "venue_id": "venue_4_star_theater",
              "title": "City of Lost Souls",
              "event_time": "Jun 21, 2026 7:30pm –  9:30pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-21T19:30:00",
              "event_date": "2026-06-21",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Media Meltdown Movie Night presents a screening of the 1983 punk-influenced film 'City of Lost Souls.' Set in Berlin, the movie features a cast of underground performers and musicians.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/media-meltdown-movie-madhouse",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66e48d663220",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 21, 2026 10:30am",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-21T10:30:00",
              "event_date": "2026-06-21",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Fun in Shorts, Downtown, Public Access, Drunken Noodles, Madfabulous",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline-260621",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_810ea26f7f79",
              "venue_id": "venue_orpheum_theater",
              "title": "THE PHANTOM OF THE OPERA",
              "event_time": "Jun 21, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Experience the legendary tale of romance and mystery in this long-running musical masterpiece set at the Paris Opera House.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/the-phantom-of-the-opera-21-june-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4637558f6ab7",
              "venue_id": "venue_belle_cora",
              "title": "HIPSTERIA with “Tender” Tim",
              "event_time": "2026-06-21T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-06-21T18:00:00",
              "event_date": "2026-06-21",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Live jazz performance by HIPSTERIA featuring “Tender” Tim. Enjoy cool arrangements of modern pop, rock, blues, and R&B with no cover charge in a cozy outdoor setting.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://hipsteriac.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4d1b20f37e56",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-21",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-21",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e2f418eb4ef8",
              "venue_id": "venue_stern_grove",
              "title": "Bomba Estereo",
              "event_time": "Jun 21 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-06-21T14:00:00",
              "event_date": "2026-06-21",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Bomba Estereo, La Misa Negra",
              "event_types": [
                "live_music",
                "rock",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Bomba_Estereo",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_20a1508b0405",
              "venue_id": "venue_thee_stork_club",
              "title": "Healers",
              "event_time": "Jun 21 2026 7pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-21T19:00:00",
              "event_date": "2026-06-21",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Healers, Holy Locust",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "$12 7pm",
              "url": "http://www.foopee.com/by-band.1.html#Healers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_454922a60a2c",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-21T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-21T18:00:00",
              "event_date": "2026-06-21",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f2d786837c76",
              "venue_id": "venue_the_fireside",
              "title": "Sunday Sports & Drinks",
              "event_time": "2026-06-21",
              "venue_name": "The Fireside",
              "event_start": "2026-06-21",
              "event_date": "2026-06-21",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Sports, bloody marys, mimosas, buckets of beer",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f26861d9ba4",
              "venue_id": "venue_the_riptide",
              "title": "Comedy Night",
              "event_time": "2026-06-21T20:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-21T20:00:00",
              "event_date": "2026-06-21",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-22": {
          "date": "2026-06-22",
          "updated_at": "2026-05-18T15:54:50.363661Z",
          "events": [
            {
              "event_id": "evt_3f44c747641f",
              "venue_id": "venue_masonic_hall",
              "title": "Metric, Broken Social Scene, Stars",
              "event_time": "Jun 22 2026 6pm/7pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-06-22T18:00:00",
              "event_date": "2026-06-22",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Live 105 presents a powerhouse lineup of Canadian indie rock featuring Metric, Broken Social Scene, and Stars. This collaborative tour brings together three influential bands for an unforgettable night of music and emotion.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/live-105-all-the-feelings-tour-san-francisco-california-06-22-2026/event/1C00643CB75A770C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-10T23:21:11.204082Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_357cb7a93671",
              "venue_id": "venue_cafe_du_nord",
              "title": "Domani",
              "event_time": "Jun 22 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-22T20:00:00",
              "event_date": "2026-06-22",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Domani",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42aae2d16c1f",
              "venue_id": "venue_ashby_stage",
              "title": "The Gull",
              "event_time": "2026-06-22",
              "venue_name": "Ashby Stage",
              "event_start": "2026-06-22T19:00:00",
              "event_date": "2026-06-22",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-15T10:07:28.597797Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_ashby_stage|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f06a8021c9ca",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Egemen Sanli in Concert",
              "event_time": "2026-06-22T19:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-22T19:00:00",
              "event_date": "2026-06-22",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A world music performance by multi-instrumentalist Egemen Sanli in the historic setting of Grace Cathedral.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.shazam.com/concert/egemen-sanli-san-francisco-grace-cathedral-17151241",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_59a2f6b8010f",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-22",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-22",
              "event_date": "2026-06-22",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-22",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_44a179583277",
              "venue_id": "venue_shotgun_studios",
              "title": "The World of a Play: Continuity (Seminar Series)",
              "event_time": "2026-06-22T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-06-22T10:30:00",
              "event_date": "2026-06-22",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "The final Monday gathering of the 'Continuity' seminar series.",
              "event_types": [],
              "price_info": "$150 for the series",
              "url": "https://shotgunplayers.org/online/article/miriams-place",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_546487593bb8",
              "venue_id": "venue_yoshis",
              "title": "The String Queens",
              "event_time": "MON 6.22 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-22T19:30:00",
              "event_date": "2026-06-22",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "DYNAMIC TRIO WITH AN AUTHENTIC, SOULFUL, AND ORCHESTRAL SOUND",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$44 - $89",
              "url": "https://yoshis.com/events/buy-tickets/string-queens/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_baf7e6bebf6a",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC AT HOTEL UTAH",
              "event_time": "Mon Jun 22 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-22T19:00:00",
              "event_date": "2026-06-22",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Monday night",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/Open-Mic-at-Hotel-Utah/689622?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_48adaef46ab0",
              "venue_id": "venue_cornerstone",
              "title": "Camping In Alaska",
              "event_time": "2026-06-22T03:00:00.000Z",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-22T03:00:00",
              "event_date": "2026-06-22",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Camping In Alaska Tickets at Cornerstone in Berkeley by Cornerstone Berkeley",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/camping-in-alaska-186359",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-05-18T13:02:25.388733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_894796d1382a",
              "venue_id": "venue_4_star_theater",
              "title": "Car Culture, r. image",
              "event_time": "Jun 22, 2026 8:00pm – 11:00pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-06-22T20:00:00",
              "event_date": "2026-06-22",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Car Culture and r. image perform live at the 4 Star Theater in a concert presented by Throwin' Bo's.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-car-culture",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cc435962ffeb",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-06-22T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-06-22T19:00:00",
              "event_date": "2026-06-22",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_63f440ec3e5e",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-22",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-22",
              "event_date": "2026-06-22",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-22",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f1c7e9dc1dd",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-22T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-22T18:00:00",
              "event_date": "2026-06-22",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1db6733e8cee",
              "venue_id": "venue_levis_stadium",
              "title": "FIFA WORLD CUP | JORDAN VS. ALGERIA",
              "event_time": "Jun 22, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-06-22",
              "event_date": "2026-06-22",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Jordan meets Algeria in a highly anticipated FIFA World Cup soccer match.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKET PACKAGE",
              "url": "https://levisstadium.com/event/fifa-world-cup-group-stage-2026-06-22/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fde44fdb0bb8",
              "venue_id": "venue_the_fireside",
              "title": "Monday Mixology & Board Games",
              "event_time": "2026-06-22",
              "venue_name": "The Fireside",
              "event_start": "2026-06-22",
              "event_date": "2026-06-22",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Mixology behind the bar, industry discounts, mystery DJ, and board games (play ours or bring yours)",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce6dd1044ff9",
              "venue_id": "venue_the_riptide",
              "title": "DJ Roby",
              "event_time": "2026-06-22T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-22T21:00:00",
              "event_date": "2026-06-22",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-23": {
          "date": "2026-06-23",
          "updated_at": "2026-05-18T15:54:50.367200Z",
          "events": [
            {
              "event_id": "evt_c0e0fe1d153b",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-23",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-23",
              "event_date": "2026-06-23",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-23",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f9b73b891e6",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Kid Cudi: The Rebel Ragers Tour",
              "event_time": "2026-06-23T17:30:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-06-23T17:30:00",
              "event_date": "2026-06-23",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Kid Cudi headlines the Shoreline stage for his 2026 Rebel Ragers Tour, showcasing his influential blend of hip-hop and alternative sounds. This tour promises an immersive live experience featuring tracks from across his acclaimed discography.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/kid-cudi-presents-the-rebel-ragers-mountain-view-california-06-23-2026/event/1C00642FBC2C1305",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_942899df2595",
              "venue_id": "venue_bill_graham_civic",
              "title": "MADISON BEER",
              "event_time": "June 23, 2026 7:30pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-06-23T19:30:00",
              "event_date": "2026-06-23",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "the locket tour - THỦY\nLULU SIMON",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/madison-beer-260623",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43855b35f9ba",
              "venue_id": "venue_the_uc_theatre",
              "title": "Bôa",
              "event_time": "Jun 23 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-06-23T20:00:00",
              "event_date": "2026-06-23",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Boa",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$32.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/boa-23-jun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f1db9da6a9b",
              "venue_id": "venue_august_hall",
              "title": "Kings Kaleidoscove",
              "event_time": "Jun 23 2026 7pm",
              "venue_name": "August Hall",
              "event_start": "2026-06-23T19:00:00",
              "event_date": "2026-06-23",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Alternative faith-based band Kings Kaleidoscope brings their Credo Spirit Tour to August Hall for an evening of experimental orchestral rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$44.88",
              "url": "http://www.foopee.com/by-band.1.html#Kings_Kaleidoscove",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-01T06:29:15.362316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-01T10:29:45.526579Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4a72f76db9dd",
              "venue_id": "venue_cafe_du_nord",
              "title": "Jena Malone, Wet World",
              "event_time": "Jun 23 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-06-23T20:00:00",
              "event_date": "2026-06-23",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jena_Malone",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_11a4e7bf2371",
              "venue_id": "venue_the_chapel",
              "title": "Gia Margaret",
              "event_time": "Jun 23 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-06-23T19:00:00",
              "event_date": "2026-06-23",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "433.40 7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Gia_Margaret",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4e4d8cf347d2",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-23",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-23",
              "event_date": "2026-06-23",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-23",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_23a5f0ba04bb",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-06-23T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-23T18:30:00",
              "event_date": "2026-06-23",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a8d9d41c50f5",
              "venue_id": "venue_punch_line",
              "title": "Comedy Allstars",
              "event_time": "2026-06-23T19:30:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-23T19:30:00",
              "event_date": "2026-06-23",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "A showcase of top-tier comedians performing their best sets at San Francisco's longest-running comedy club.",
              "event_types": [],
              "price_info": "Starting from $20",
              "url": "https://www.punchlinecomedyclub.com/EventDetail?tmeventid=G5vjZ91Xp_7p",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8efcd41cb43f",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-23",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-23",
              "event_date": "2026-06-23",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-23",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ed4f31f61b85",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-23",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-23",
              "event_date": "2026-06-23",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-23",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_618d78aeefce",
              "venue_id": "venue_yoshis",
              "title": "Fran Boogie: Karaoke Night",
              "event_time": "TUE 6.23 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-23T19:30:00",
              "event_date": "2026-06-23",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SING YOUR HEART OUT ON THE YOSHI'S STAGE!",
              "event_types": [
                "community"
              ],
              "price_info": "$20",
              "url": "https://yoshis.com/events/buy-tickets/fran-boogie-karaoke-night/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e7d6954871b5",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Dream Arenas, Glass Girl & Dalmatia",
              "event_time": "Tuesday June 23 2026 7:30PM doors -- music at 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-23T19:30:00",
              "event_date": "2026-06-23",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; indie pop; indie pop; soft grunge, shoegaze",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260623.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0a06171f5208",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jun 23 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-23T19:00:00",
              "event_date": "2026-06-23",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690202?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_53a5fa467662",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-06-23T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-23T20:00:00",
              "event_date": "2026-06-23",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cf9cc9f9512c",
              "venue_id": "venue_the_knockout",
              "title": "Scam Likely, Sneer, Spectre, Raze",
              "event_time": "Jun 23 7:30pm",
              "venue_name": "The Knockout",
              "event_start": "2026-06-23T19:30:00",
              "event_date": "2026-06-23",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "Likely, Sneer, Spectre, Raze $15",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.3.html#Scam_Likely",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5fa76e41d6b8",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-23T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-23T18:00:00",
              "event_date": "2026-06-23",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fbe3e5898c16",
              "venue_id": "venue_the_fireside",
              "title": "Live Trivia",
              "event_time": "2026-06-23T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-23T19:30:00",
              "event_date": "2026-06-23",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Live trivia at Lounge; on Zoom every second Tuesday",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8f8564cb73c",
              "venue_id": "venue_the_riptide",
              "title": "Mission Hill",
              "event_time": "2026-06-23T09:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-23T09:30:00",
              "event_date": "2026-06-23",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_658c4e3b983e",
              "venue_id": "venue_the_riptide",
              "title": "O69 Bingo",
              "event_time": "2026-06-23T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-23T18:00:00",
              "event_date": "2026-06-23",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-24": {
          "date": "2026-06-24",
          "updated_at": "2026-05-18T16:12:44.121852Z",
          "events": [
            {
              "event_id": "evt_d62d07da6112",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-24",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-24",
              "event_date": "2026-06-24",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-24",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_45fc91ca9b3c",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Benny La Mar, Laurin Hunter, Max Fees",
              "event_time": "Wednesday June 24 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-24T20:00:00",
              "event_date": "2026-06-24",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; folk, Americana; folk, americana, rock, pop; folk,Americana, electronica",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 $19.81 in advance [15 face value +4.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260624.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bff193e8859",
              "venue_id": "venue_cornerstone",
              "title": "Khemmis",
              "event_time": "Jun 24 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-24T19:00:00",
              "event_date": "2026-06-24",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $34.99 7pm/8pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34.99",
              "url": "http://www.foopee.com/by-band.1.html#Khemmis",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f16b8c8db07d",
              "venue_id": "venue_the_warfield",
              "title": "THE KEVIN LANGUE SHOW: LIVE!",
              "event_time": "Wed, Jun 24, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-06-24T20:00:00",
              "event_date": "2026-06-24",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Kevin Langue Show",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1346846",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-04-28T12:57:37.834317Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9cf9004a4433",
              "venue_id": "venue_rickshaw_stop",
              "title": "Solya, Tele Novella",
              "event_time": "Jun 24 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-24T19:00:00",
              "event_date": "2026-06-24",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Novella $22/$26 ($67 vip)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$67 vip) 7pm/8pm",
              "url": "http://www.foopee.com/by-band.3.html#Solya",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e2386441e20",
              "venue_id": "venue_castro_theater",
              "title": "Alok (comedian)",
              "event_time": "June 24, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-24T19:00:00",
              "event_date": "2026-06-24",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "New Comedy Show",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/alok-260624",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0eb81bd79a5d",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-24T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-24T20:00:00",
              "event_date": "2026-06-24",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-24",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57593962dc63",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-24T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-24T14:00:00",
              "event_date": "2026-06-24",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-24",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4d27e4e8aecf",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-24",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-24",
              "event_date": "2026-06-24",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-24",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_446774dcea59",
              "venue_id": "venue_great_american_music_hall",
              "title": "Heavenly, Chime School, Swansea Sound",
              "event_time": "Jun 24 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-06-24T19:00:00",
              "event_date": "2026-06-24",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Heavenly with Chime School and Swansea Sound.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35/$39",
              "url": "http://www.foopee.com/by-band.1.html#Heavenly",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_381a5088501a",
              "venue_id": "venue_montgomery_theater",
              "title": "Pinocchio – CMT Mainstage",
              "event_time": "2026-06-24T19:00:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-06-24T19:00:00",
              "event_date": "2026-06-24",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "A family musical based on Carlo Collodi’s classic tale, using inventive puppetry to tell the story of Pinocchio, Geppetto, and the journey toward becoming a real boy.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/pinocchio-cmt/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18c81f04118c",
              "venue_id": "venue_cry_baby",
              "title": "Skillibeng",
              "event_time": "2026-06-24T19:00:00",
              "venue_name": "Cry Baby",
              "event_start": "2026-06-24T19:00:00",
              "event_date": "2026-06-24",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Skillibeng live in Oakland at Crybaby as part of the Badman She Love Tour 2026.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://crybaby.live/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_35969fad64f2",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Comedy Showcase",
              "event_time": "2026-06-24T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-24T20:00:00",
              "event_date": "2026-06-24",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Roosters Comedy Showcase featuring stand-up performers in the club's regular showcase format.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/365831",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_19e575aa7adb",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-24",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-24",
              "event_date": "2026-06-24",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-24",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_162e2c2697a8",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-24",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-24",
              "event_date": "2026-06-24",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-24",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_67c7ea09a2c8",
              "venue_id": "venue_the_sound_room",
              "title": "Carl Lockett: Guitar Master Class",
              "event_time": "Wednesday, June 24, 2026 6:00 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-24T18:00:00",
              "event_date": "2026-06-24",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Whether you're a guitarist, instrumentalist, vocalist, enthusiast, or simply seeking to deepen your knowledge and appreciation of great music, this masterclass series is a priceless opportunity to learn directly from some of the greats of our time. Sign up for one or all and garner the diverse wealth of knowledge and experience these legends will be sharing. Open to all ages and levels of experience.\n\nThis month the featured artist is Carl Lockett. Carl grew up as a musical child prodigy. His interest in music began with him behind the drums. He later learned to play the guitar and began his career as a professional guitarist at age 14, playing around the Bay Area. He has continued to work professionally for the past forty years with highly distinguished acts including The Edwin Hawkins Singers, Chuck Mangione, Randy Crawford, Jimmy Smith, Joey DeFrancesco, Tammy Terrell, Esther Phillips, The Platters, The Ink Spots, Big Mama Thornton, Jackie Wilson, Papa John Creach, Brook Benton, Dakota Staten, Bill Summers, David Ruffin, and many others. He has performed in diverse settings ranging from an organ trio that included Jimmy McGriff and Jimmy Smith to sitting in for Jerry Garcia. He has played the 1980 Winter Olympics, the North Sea, Montreux, Monterey jazz festivals and all three Blue Note clubs in Japan. So impressive is his playing that he was offered a sponsorship by guitar techs at Heritage Guitar Factory in Kalamazoo, Michigan, who’d witnessed one of his performances.\n\nTickets at Boss Guitar Master Class: Carl Lockett",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/boss-guitar-master-class-carl-lockett",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aa27dbda5eb7",
              "venue_id": "venue_mr_tipples",
              "title": "Beth Schenck Quartet",
              "event_time": "6/24/2026 7:00 PM",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-06-24T19:00:00",
              "event_date": "2026-06-24",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Beth Schenck QuartetSets at 7:00 and 8:45 More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23061",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb77c0f23d5f",
              "venue_id": "venue_yoshis",
              "title": "Alvon Johnson",
              "event_time": "WED 6.24 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-24T19:30:00",
              "event_date": "2026-06-24",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "INTERNATIONALLY ACCLAIMED GUITARIST, VOCALIST, AND ENTERTAINER",
              "event_types": [
                "live_music"
              ],
              "price_info": "$29 - $49",
              "url": "https://yoshis.com/events/buy-tickets/alvon-johnson-3/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f35f134c5edf",
              "venue_id": "venue_brick_and_mortar",
              "title": "SEA WOLF (SOLO)",
              "event_time": "Wed 6.24 Show: 8:30PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-24T20:30:00",
              "event_date": "2026-06-24",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "BRICK & MORTAR MUSIC HALL PRESENTS",
              "event_types": [
                "live_music"
              ],
              "price_info": "$27.58",
              "url": "https://www.brickandmortarmusic.com/tm-event/sea-wolf-solo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43933bc163ed",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-24",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-24",
              "event_date": "2026-06-24",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-24",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_efdcbb22c3ac",
              "venue_id": "venue_club_fox",
              "title": "Dennis Dove’s Birthday Lollapalooza",
              "event_time": "Wednesday June 24th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-24",
              "event_date": "2026-06-24",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Wednesday June 24thClub Fox Blues WednesdaysDENNIS DOVE’S BIRTHDAY LOLLAPALOOZADoors 6:30PM /Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/club-fox-blues-wednesdays-dennis-doves-birthday-lollapalooza-tickets-1988875268467?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e76ec3ba19d",
              "venue_id": "venue_quarter_note",
              "title": "Karaoke",
              "event_time": "2026-06-24T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-24T18:00:00",
              "event_date": "2026-06-24",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Mon, Tue & Wed : Karaoke. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d7562b6f3049",
              "venue_id": "venue_the_fireside",
              "title": "Singer/Songwriter Open Mic",
              "event_time": "2026-06-24T19:30:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-24T19:30:00",
              "event_date": "2026-06-24",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Singer/Songwriter open mic",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_824b94c9c60b",
              "venue_id": "venue_the_riptide",
              "title": "Tides & Tunes Sessions",
              "event_time": "2026-06-24T19:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-24T19:30:00",
              "event_date": "2026-06-24",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ac132622aed",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "JAY MEWES",
              "event_time": "Wed Jun 24, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-24T19:30:00",
              "event_date": "2026-06-24",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Best known as \"Jay\" from the View Askewniverse, Jason Mewes shares hilarious stories from his life and career in this stand-up appearance.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/jay-mewes-san-francisco-california-06-24-2026/event/1C006495C23D7179",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-25": {
          "date": "2026-06-25",
          "updated_at": "2026-05-18T16:12:44.127540Z",
          "events": [
            {
              "event_id": "evt_ccb141d58f0f",
              "venue_id": "venue_mvcpa",
              "title": "SIX: TEEN EDITION",
              "event_time": "2026-06-25T19:30:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-06-25T19:30:00",
              "event_date": "2026-06-25",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "From Tudor queens to pop icons, the six wives of Henry VIII remix five hundred years of historical heartbreak into a contemporary pop musical. PYT’s teen edition features an expanded cast including backup singers and dancers of all gender identities.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://pytnet.org/upcoming-shows/six-teen-edition/",
              "tags": [],
              "sources": [
                {
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-03-24T15:02:42.947500Z",
                  "strategy_used": "LLM",
                  "source_id": "v_mvcpa"
                },
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-03-25T03:02:22.813190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-06-25",
              "run_id": "run_516ac8fc5f6e",
              "run_label": "Peninsula Youth Theatre: SIX: TEEN EDITION, Jun 25 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97f454552dfa",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-25",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-25",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_68b41c76fe05",
              "venue_id": "venue_the_independent",
              "title": "OUT & LOUD",
              "event_time": "6.25 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "A high-energy local showcase featuring a diverse lineup of rock and indie bands including Fell Swoop and Thrown-Out Bones.",
              "event_types": [
                "live_music",
                "rock",
                "community",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/out-loud/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e036081c7227",
              "venue_id": "venue_chase_center",
              "title": "A$AP Rocky: Don't Be Dumb Tour",
              "event_time": "2026-06-25T19:30:00",
              "venue_name": "Chase Center",
              "event_start": "2026-06-25T19:30:00",
              "event_date": "2026-06-25",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "A$AP Rocky performs live at Chase Center as part of his Don't Be Dumb World Tour.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.chasecenter.com/events/asap-rocky-20260625",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9dcaa5a1c945",
              "venue_id": "venue_the_uc_theatre",
              "title": "Rx Bandits: And The Battle Begun",
              "event_time": "Jun 25 7:30 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-06-25T19:30:00",
              "event_date": "2026-06-25",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Facing New York, Maps & Atlases",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$37.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/rx-bandits-and-the-battle-begun-20th-anniversary-tour-25-jun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b3699ce9614e",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-25T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-25",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_50e6ec942b39",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-25T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-25",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_362153b58bf1",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-25T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-25T14:00:00",
              "event_date": "2026-06-25",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-25",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06428a996f11",
              "venue_id": "venue_the_fillmore",
              "title": "Rhiannon Giddens",
              "event_time": "2026-06-25",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Multi-instrumentalist and singer Rhiannon Giddens showcases her blend of folk, blues, and Americana at this live performance.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$59.50",
              "url": "http://www.foopee.com/by-band.2.html#Rhiannon_Giddens",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-14T10:28:31.042763Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8fad768104aa",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-25",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-25",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2ffaebc0a434",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Thursday Night Live Music",
              "event_time": "2026-06-25T18:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-25T18:00:00",
              "event_date": "2026-06-25",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Mid-week live music performances that transform dinner into a social event. Featuring local musicians playing blues and classic rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1bd6914f95f8",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-06-25T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-25T18:30:00",
              "event_date": "2026-06-25",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_20fa256e81ed",
              "venue_id": "venue_cal_academy_of_science",
              "title": "PRIDE NightLife",
              "event_time": "2026-06-25T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-06-25T18:00:00",
              "event_date": "2026-06-25",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Celebrate PRIDE at the Academy with a night of science, music, and community. 21+ only.",
              "event_types": [],
              "price_info": "$25 - $35",
              "url": "https://www.calacademy.org/nightlife/pride-nightlife",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-05-15T14:23:15.946320Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b15597b890ed",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-06-25T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-06-25T19:00:00",
              "event_date": "2026-06-25",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ddae9cb8df43",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-06-25T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_011d9909ae29",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-25",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-25",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9f818f042afd",
              "venue_id": "venue_montgomery_theater",
              "title": "Pinocchio",
              "event_time": "2026-06-25 2026-06-25T19:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "A family musical based on Carlo Collodi’s classic tale, using inventive puppetry to tell the story of Pinocchio, Geppetto, and the journey toward becoming a real boy.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/pinocchio-cmt-junior-talents/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-06-25",
              "run_id": "run_5f2192b63cdb",
              "run_label": "Pinocchio, Jun 24 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_65e79aa65030",
              "venue_id": "venue_pacific_film_archive",
              "title": "West Coast Estonian Days: Roll",
              "event_time": "2026-06-25T19:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-25T19:00:00",
              "event_date": "2026-06-25",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "A special screening as part of the West Coast Estonian Days.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/west-coast-estonian-days-roll",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a543da1799f0",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Choral Evensong",
              "event_time": "2026-06-25T17:30:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-25T17:30:00",
              "event_date": "2026-06-25",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A weekly choral service featuring the cathedral's renowned choir and historic pipe organ.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://gracecathedral.org/events/choral-evensong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9aef21f4d2eb",
              "venue_id": "venue_stay_gold_deli",
              "title": "Big Leap Pride",
              "event_time": "2026-06-25T19:00:00",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-06-25T19:00:00",
              "event_date": "2026-06-25",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Big Leap Collective presents a Pride event featuring tsktsk, Ultraviolet Communication, and Medscool.",
              "event_types": [],
              "price_info": "$10",
              "url": "https://www.bigleapcollective.org/events/2026/6/25/big-leap-pride-stay-gold-deli",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-15T23:29:51.094583Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_67327ed35faa",
              "venue_id": "venue_underground_sf",
              "title": "Fixed Gloss",
              "event_time": "06/25/2026 9pm",
              "venue_name": "Underground SF",
              "event_start": "2026-06-25T21:00:00",
              "event_date": "2026-06-25",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "The launch of Fixed Gloss at Underground SF for Pride month. Featuring DJs Datam0sh3r, Moonpie, and Alice Stribling playing cheeky, throbby electro and flirty sounds.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 | 21+",
              "url": "https://www.instagram.com/fixedgloss/p/DYFtbs3vjDR/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-05-17T14:44:11.616070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_underground_sf|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b6c739f59a93",
              "venue_id": "venue_punch_line",
              "title": "Zach Noe Towers",
              "event_time": "2026-06-25T20:00:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Zach Noe Towers is a comedian and actor known for his bold, hilarious, and often provocative stand-up.",
              "event_types": [],
              "price_info": "$32.05 - $45.80",
              "url": "https://www.ticketmaster.com/zach-noe-towers-san-francisco-california-06-25-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1eaeff253d1d",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Aaron Foster: Mostly Jokes",
              "event_time": "2026-06-25T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show from Aaron Foster.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/372241",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_77f7bde6c5a8",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-25",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-25",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a739ec21ed33",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: Pride",
              "event_time": "2026-06-25T18:00:00",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-25T18:00:00",
              "event_date": "2026-06-25",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Celebrate Pride with sci-fi representation, fun activities, and a thought-provoking exhibition about space.",
              "event_types": [
                "community",
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e261e51362b5",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-25",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-25",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e8bc202a632d",
              "venue_id": "venue_rootstock_arts",
              "title": "Nathan Clevenger Trio + 2",
              "event_time": "2026-06-25T19:30:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-25T19:30:00",
              "event_date": "2026-06-25",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Composer Nathan Clevenger leads an expanded ensemble in a performance of intricate, modern jazz compositions. The evening features guest artists Danishta Rivero and Kasey Knudsen contributing unique vocal and instrumental layers.",
              "event_types": [
                "live_music",
                "jazz",
                "experimental"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_00f5a7dffd33",
              "venue_id": "venue_the_sound_room",
              "title": "Jules Leyhe & The Family Jules",
              "event_time": "Thursday, June 25, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-25T19:30:00",
              "event_date": "2026-06-25",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Jules Leyhe is one of the world’s foremost blues slide-guitar players—so much so that even Premier Guitar magazine called his music “the best blues slide licks since Derek Trucks, maybe even Duane Allman.”\n\nLeyhe has performed/ recorded alongside some of the industry’s heavyweights including Buddy Guy, Jimmie Vaughan, Chris Cain, Charlie Musselwhite, Fantastic Negrito and Wyatt Flores\n\nFor this event he brings a top-notch band featuring Ian McArldle on piano, Isaac Schwartz on drums and renowned bassist Matt Roades.\n\nTickets at Jules Leyhe & The Family Jules",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/jules-leyhe-amp-the-family-jules-5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b301383edc9",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "David Tudor Tribute",
              "event_time": "6/25/2026 7:30 PM",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-06-25T19:30:00",
              "event_date": "2026-06-25",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "Click to make donation David Tudor is, perhaps, most famously known as part and principal interpreter of the New York School—John Cage, Morton Feldman, Earle Brown, and Christian Wolff. This two-day concert celebrates Tudor's 100th Birthday as well as Composers Inside Electronics 50th Anniversary. Reformed in 1996 for Tudor’s memorial service, current members of Composers Inside Electronics include John Driscoll, Phil Edelstein, Tom Hamilton, Matt Rogalsky, and Doug Van Nort. More...",
              "event_types": [
                "live_music",
                "experimental",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23023",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_68ae7dc12fb8",
              "venue_id": "venue_yoshis",
              "title": "80s Kids",
              "event_time": "THU 6.25 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "A 1980S SYNTHPOP JOYRIDE",
              "event_types": [
                "dj_party"
              ],
              "price_info": "ADV$30 / DOS$35 / PSEE$75",
              "url": "https://yoshis.com/events/buy-tickets/80s-kids/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bdef656f5aa1",
              "venue_id": "venue_hillside_club",
              "title": "Dance Night!",
              "event_time": "Jun 25, 2026, 7:00 PM – 10:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-06-25T19:00:00",
              "event_date": "2026-06-25",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "An energetic social event inviting guests to the Hillside Club for an evening of music and dancing.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Learn more",
              "url": "https://www.hillsideclub.org/event-details/dance-night-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_397a0f2d968c",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Dark Meta Railroad, Plaster & Freak Nature Puppets",
              "event_time": "Thursday June 25 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; vaporwave/experimental rock; punk; comedy and puppetry",
              "event_types": [
                "live_music",
                "rock",
                "experimental",
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260625.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d2a1fde162ac",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 25, 2026 12:30pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-25T12:30:00",
              "event_date": "2026-06-25",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Caravaggio, Maddie's Secret, Trial of Hein, Barbara Forever",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline-260625-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c8816917fc58",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-25",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-25",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f90b7b000bfc",
              "venue_id": "venue_el_rio",
              "title": "Swell Foop, Sab Star, Shime, Xtranos",
              "event_time": "Jun 25 2026 8pm",
              "venue_name": "El Rio",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "21+ $10-$20 8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10-$20",
              "url": "http://www.foopee.com/by-band.3.html#Swell_Foop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_el_rio|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ebd0f1cb2fd",
              "venue_id": "venue_thee_stork_club",
              "title": "Whine",
              "event_time": "Jun 25 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-25T20:00:00",
              "event_date": "2026-06-25",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Whine, Etch, Sunny Bear Forest",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Whine",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_423e37ff1b52",
              "venue_id": "venue_club_fox",
              "title": "The Funky Cha!",
              "event_time": "Thursday June 25th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Thursday June 25thTHE FUNKY CHA! SOUL & REGGAEDoors 6:30PM / Show 7PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/the-funky-cha-soul-reggae-tickets-1989053592840?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e2473fb9a28",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-25T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-25T18:00:00",
              "event_date": "2026-06-25",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_330b5dad366f",
              "venue_id": "venue_levis_stadium",
              "title": "FIFA WORLD CUP | PARAGUAY VS. AUSTRALIA",
              "event_time": "Jun 25, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Paraguay and Australia face off in this international soccer competition during the FIFA World Cup.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKET PACKAGE",
              "url": "https://levisstadium.com/event/fifa-world-cup-group-stage/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_547d530a68c2",
              "venue_id": "venue_the_fireside",
              "title": "Thursday Music & Lessons",
              "event_time": "2026-06-25",
              "venue_name": "The Fireside",
              "event_start": "2026-06-25",
              "event_date": "2026-06-25",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Ukulele lessons, live rock, jazz & blues guitar, DJ house music, or all vinyl soul Depending on the week",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "rnb_soul_funk",
                "dj_party",
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0203a571e965",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic with Charlie Kaupp",
              "event_time": "2026-06-25T19:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-25T19:00:00",
              "event_date": "2026-06-25",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fedd60c10eb6",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "RAFI BASTOS",
              "event_time": "Thu Jun 25, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-25T19:00:00",
              "event_date": "2026-06-25",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Brazilian comedy star Rafi Bastos brings his international perspective and sharp wit to the San Francisco stage.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/rafi-bastos-san-francisco-california-06-25-2026/event/1C006463DEAD6D07",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-26": {
          "date": "2026-06-26",
          "updated_at": "2026-05-18T16:16:06.689915Z",
          "events": [
            {
              "event_id": "evt_a07ab691d385",
              "venue_id": "venue_regency_ballroom",
              "title": "Underscores w/ Umru",
              "event_time": "06/26/2026 8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Hyperpop innovators Underscores and Umru bring their glitchy, high-energy electronic sounds to JAX Vineyards. This show features the latest trends in experimental pop and forward-thinking digital production.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "All ages",
              "url": "https://www.axs.com/events/1352777/underscores-tickets",
              "tags": [],
              "sources": [
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-03-22T20:35:17.832222Z",
                  "strategy_used": "LLM",
                  "source_id": "v_regency_ballroom"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fb3a395b5372",
              "venue_id": "venue_mvcpa",
              "title": "SIX: TEEN EDITION",
              "event_time": "2026-06-26T19:30:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "A pop-concert musical remixing five hundred years of historical heartbreak into a euphoric celebration of 21st-century girl power, featuring the six wives of Henry VIII.",
              "event_types": [
                "theater"
              ],
              "price_info": "Call for tickets.",
              "url": "https://pytnet.org/boxoffice/six-teen-edition/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-01T10:39:07.793264Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-04-02T08:50:08.761190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f4dbee4d9a8d",
              "venue_id": "venue_the_fillmore",
              "title": "Pomplamoose, Wendlo",
              "event_time": "Fri Jun 26, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The popular indie pop duo Pomplamoose brings their creative arrangements and infectious energy to the live stage for a unique musical experience.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/pomplamoose-san-francisco-california-06-26-2026/event/1C006477F8F6FA48",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-06T07:30:02.358221Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e8e45c875723",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Mike Watt & the missingmen",
              "event_time": "Friday June 26 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jun 26 Mike Watt & Th Missingmen, Sister Double Happiness (album release), Mayya 21+ $25 8pm/8:30pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 $30.81 in advance [25 face value + 5.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260626.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bc577b539635",
              "venue_id": "venue_bill_graham_civic",
              "title": "Dillon Francis B2B Flosstradamus",
              "event_time": "June 26, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Electronic heavyweights Dillon Francis and Flosstradamus join forces for a rare and energetic back-to-back DJ set. This collaboration brings together trap, moombahton, and house music for a massive party atmosphere.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/dillstradamus-260626",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-07T10:56:36.561174Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7bb4c5d69242",
              "venue_id": "venue_bimbos_365",
              "title": "Tainted Love",
              "event_time": "June 26 - Show: 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "The Best of the 80’s Live | 21 and up",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/tainted-love-7/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-04-10T23:23:07.323100Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7f8934eb3a42",
              "venue_id": "venue_golden_gate_theater",
              "title": "MrBallen",
              "event_time": "2026-06-26T19:30:00",
              "venue_name": "Golden Gate Theater",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "Popular storyteller and true crime creator MrBallen brings his \"Strange, Dark, and Mysterious\" tales to life on the Orpheum Theatre stage. This live event offers fans an immersive experience into the world of unexplained phenomena and gripping mysteries.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "Buy tickets",
              "url": "https://us.atgtickets.com/venues/golden-gate-theatre/whats-on/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theater",
                  "fetched_at": "2026-04-10T23:56:08.475546Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3000c9648421",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "MORE MOSAICS",
              "event_time": "2026-06-26",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_war_memorial_calendar",
                  "source_name": "War Memorial Calendar",
                  "fetched_at": "2026-05-14T11:49:58.405237Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-26",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01b71a7f2e84",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "2026 Pride Concert",
              "event_time": "2026-06-26",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "Kick off 2026 San Francisco Pride weekend with San Francisco Opera! The San Francisco Opera Orchestra and featured artists will perform a high-energy concert celebrating LGBTQIA+ composers, performers, anthems, and so much more!",
              "event_types": [
                "classical",
                "live_music",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f4c7e14d7a52",
              "venue_id": "venue_the_independent",
              "title": "THE LAGOONS",
              "event_time": "6.26 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-26T21:00:00",
              "event_date": "2026-06-26",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Multi-instrumentalist duo Lagoons performs their signature blend of synth-pop, jazz, and soul for a captivating live show.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/the-lagoons/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_088fb49cfb1c",
              "venue_id": "venue_cornerstone",
              "title": "Nefarious, Defiance, Parabellum",
              "event_time": "Jun 26 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $29.84 8pm/9pm @ (Rick Hunolt's Birthday)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$29.84",
              "url": "http://www.foopee.com/by-band.2.html#Nefarious",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4ce0edfcba1",
              "venue_id": "venue_ivy_room",
              "title": "Skip the Needle & Joh Chase",
              "event_time": "Friday Jun 26 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-26T19:00:00",
              "event_date": "2026-06-26",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Skip the Needle brings their powerful rock and soul sound to the stage with support from Joh Chase.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180739",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f087d5ca8bb2",
              "venue_id": "venue_the_monarch",
              "title": "Mostly Cloudy Pride",
              "event_time": "2026-06-26T21:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-06-26T21:00:00",
              "event_date": "2026-06-26",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Mostly Cloudy Pride edition featuring Amarji King and Byrell The Great, with support from felipe d, QUEENIE, and more.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $19.66",
              "url": "https://www.eventbrite.com/e/mostly-cloudy-pride-amarji-king-byrell-the-great-tickets-872111111111",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-05-01T02:44:00.354653Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_637c80c27e18",
              "venue_id": "venue_rickshaw_stop",
              "title": "Pocket Full Of Crumbs",
              "event_time": "Jun 26 2026 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "A multi-act musical showcase featuring performances by Pocket Full Of Crumbs, Reed, Quinine, and Figure Eight.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 8pm",
              "url": "http://www.foopee.com/by-band.2.html#Quinine",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-05T10:22:46.258435Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e850289cc22",
              "venue_id": "venue_counterpulse",
              "title": "JUST US: Bright & Beautiful, Gay as F*ck",
              "event_time": "2026-06-26T21:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-06-26T21:00:00",
              "event_date": "2026-06-26",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "A major Pride weekend celebration of Black electronic music featuring local house icons and rising talents. This event is a cornerstone of CounterPulse's queer experimental scene.",
              "event_types": [
                "festival",
                "art",
                "community"
              ],
              "price_info": "$15 – $35",
              "url": "https://counterpulse.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8c9eada3185a",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-26T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-26",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_641f6e904d86",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-26T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-26",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_816fa0ec97da",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-26T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-26T14:00:00",
              "event_date": "2026-06-26",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-26",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8cef12571b90",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-26",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-26",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a0339faf081c",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-26",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-26",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7aa34f370eae",
              "venue_id": "venue_montgomery_theater",
              "title": "Pinocchio",
              "event_time": "2026-06-26 2026-06-25T19:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "A family musical based on Carlo Collodi’s classic tale, using inventive puppetry to tell the story of Pinocchio, Geppetto, and the journey toward becoming a real boy.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/pinocchio-cmt-junior-talents/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-06-26",
              "run_id": "run_5f2192b63cdb",
              "run_label": "Pinocchio, Jun 24 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d131025c180c",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "AURA at Grace Cathedral (with Live Quartet)",
              "event_time": "2026-06-26T18:15:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-06-26T18:15:00",
              "event_date": "2026-06-26",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "The final scheduled June performance of AURA featuring a live musical quartet.",
              "event_types": [],
              "price_info": "From $24.27",
              "url": "https://auragracecathedral.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_342c9d5cdb61",
              "venue_id": "venue_dance_mission",
              "title": "Mission in the Mix",
              "event_time": "2026-06-26 2026-06-20T20:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Micaya presents a multidisciplinary Bay Area performance series centering community, artistry, and cultural exchange at Dance Mission Theater.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/28/june-19-28-mission-in-the-mix/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-26",
              "run_id": "run_e5a7006ecdef",
              "run_label": "Mission in the Mix, Jun 19 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_caa9c8383319",
              "venue_id": "venue_biscuits__blues",
              "title": "Boneshakers",
              "event_time": "2026-06-26T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-26T18:30:00",
              "event_date": "2026-06-26",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Iconic blues-funk band led by guitarist Randy Jacobs, blending Detroit soul, Memphis groove, and Muscle Shoals R&B.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260626boneshakers",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_48874d5ab8b9",
              "venue_id": "venue_the_setup",
              "title": "The Setup at The Palace Theater (Speakeasy Comedy)",
              "event_time": "2026-06-26T21:00:00",
              "venue_name": "The Setup",
              "event_start": "2026-06-26T21:00:00",
              "event_date": "2026-06-26",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "A high-energy comedy showcase in a secret speakeasy venue. Entrance is through the Sam Lee Laundry.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$20.00",
              "url": "https://www.unation.com/event/the-setup-at-the-palace-theater-speakeasy-comedy-52345678",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-05-16T01:44:41.479756Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_setup|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ed412cef5968",
              "venue_id": "venue_punch_line",
              "title": "Zach Noe Towers",
              "event_time": "2026-06-26T21:45:00",
              "venue_name": "Punch Line",
              "event_start": "2026-06-26T21:45:00",
              "event_date": "2026-06-26",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Zach Noe Towers is a comedian and actor known for his bold, hilarious, and often provocative stand-up.",
              "event_types": [],
              "price_info": "$32.05 - $45.80",
              "url": "https://www.ticketmaster.com/zach-noe-towers-san-francisco-california-06-26-2026/event/1C0060A9D8B44A7F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-05-16T01:54:22.785248Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_punch_line|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cdc71c5402a7",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Laurie Kilmartin",
              "event_time": "2026-06-26T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Laurie Kilmartin, featuring Aaron Foster and Rea Kapur.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/123674",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-26",
              "run_id": "run_201fa7a730db",
              "run_label": "Laurie Kilmartin, Jun 26 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_087c92e271f3",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-06-26T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "San Francisco’s longest-running neighborhood jazz party!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a9c923a5157d",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "David Tudor Centennial: Night One",
              "event_time": "2026-06-26T19:30:00",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "Other Minds presents Composers Inside Electronics performing works by David Tudor in celebration of his centennial and the 50th Anniversary of CIE.",
              "event_types": [
                "live_music",
                "electronic",
                "experimental"
              ],
              "price_info": "$23.18 - $65.87",
              "url": "https://www.otherminds.org/events/a-david-tudor-centennial/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-05-16T10:24:39.949015Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5666e7c77079",
              "venue_id": "venue_new_farm",
              "title": "Local Shorts Film Screening",
              "event_time": "2026-06-26T17:00:00",
              "venue_name": "The New Farm",
              "event_start": "2026-06-26T17:00:00",
              "event_date": "2026-06-26",
              "venue_address": "10 Cargo Way, San Francisco, CA 94124",
              "description": "An evening of short films by local filmmakers including Larry Reed, Kara Herold, William Farley, Jarico Reese, Peter McCandless, and Anne Hamersky. The event includes introductions and Q&As with the filmmakers.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "$20 suggested donation",
              "url": "https://bethcuster.com/gigs/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_farm",
                  "source_name": "The New Farm",
                  "fetched_at": "2026-05-17T11:02:48.701687Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_new_farm|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5b86e0f52b41",
              "venue_id": "venue_halcyon",
              "title": "LP RHYTHM",
              "event_time": "06/26/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-26T22:00:00",
              "event_date": "2026-06-26",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "UK artist LP Rhythm brings his signature blend of house and minimal tech to the Halcyon dance floor.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/j67d5fd91afb?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-05-17T11:52:23.715555Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66a5d5b0e93a",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-26",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-26",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5baca36a12f",
              "venue_id": "venue_f8",
              "title": "Perc",
              "event_time": "2026-06-26T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-06-26T21:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Connect presents techno heavyweight Perc with support from Miss Crafty, JustJovani, and SNAQ.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/clubs/61234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_05799ca6ac63",
              "venue_id": "venue_greek_theatre",
              "title": "KHALID",
              "event_time": "June 26, 2026 8:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Global superstar Khalid brings his smooth R&B sounds to the Greek Theatre for a summer night concert.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/khalid-260626",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-17T14:14:15.324242Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8c7c9c58e4b",
              "venue_id": "venue_public_works",
              "title": "Kristian Nairn",
              "event_time": "2026-06-26",
              "venue_name": "Public Works",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "DJ set by Kristian Nairn, known for his deep house and progressive sounds.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://publicsf.com/events/kristian-nairn/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1fc563472aca",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-26",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-26",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e00a883fd317",
              "venue_id": "venue_tommy_ts",
              "title": "YUNTIE TIA KEMP",
              "event_time": "2026-06-26 2026-06-27",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-26",
              "run_id": "run_16a37c43f0cc",
              "run_label": "YUNTIE TIA KEMP, Jun 26 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d06bac024cda",
              "venue_id": "venue_the_sound_room",
              "title": "Flamenco",
              "event_time": "Friday, June 26, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Flamenco is an artistic expression fusing song (cante), dance (baile) and musicianship (toque). Andalusia in southern Spain is the heartland of Flamenco, although it also has roots in regions such as Murcia and Extremadura. Cante is the vocal expression of flamenco, sung by men and women, preferably seated, with no backing singers. The gamut of feelings and states of mind – grief, joy, tragedy, rejoicing and fear – can be expressed through sincere, expressive lyrics characterized by brevity and simplicity. Flamenco baile is a dance of passion, courtship, expressing a wide range of situations ranging from sadness to joy. The technique is complex, differing depending on whether the performer is male (heavier use of the feet) or female (gentler, more sensual movements). Toque or the art of guitar playing has long surpassed its original role as accompaniment. Other instruments, including castanets, hand-clapping and foot-stamping are also employed. Flamenco is performed during religious festivals, rituals, church ceremonies and at private celebrations. It is the badge of identity of numerous communities and groups, in particular the Gitano (Roma) ethnic community, which has played an essential role in its development. Transmission occurs through dynasties, families, social groups and Flamenco clubs, all of which play a key role in its preservation and dissemination.\n\nTickets at Flamenco!!",
              "event_types": [
                "live_music",
                "latin_world",
                "dance"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/flamenco-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_374492de999f",
              "venue_id": "venue_great_american_music_hall",
              "title": "This Charming Band",
              "event_time": "2026-06-26T20:00:00",
              "venue_name": "Great American",
              "event_start": "2026-06-26T20:00:00",
              "event_date": "2026-06-26",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "This Charming Band with Bloodflowers, Dancing Horses, Hyaena, and DJ Omar Perez.",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "Price not listed on calendar",
              "url": "https://wl.seetickets.us/event/this-charming-band/688929?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-18T10:23:52.305326Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2c92afb192ea",
              "venue_id": "venue_mountain_winery",
              "title": "Collective Soul",
              "event_time": "Jun 26, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Click Five",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1392555",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a8aa515890d",
              "venue_id": "venue_paramount_theatre",
              "title": "WALT DISNEY'S FANTASIA",
              "event_time": "June 26, 2026 7:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-06-26T19:00:00",
              "event_date": "2026-06-26",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Experience the groundbreaking 1940 animated masterpiece that blends imaginative visuals with iconic works of classical music. This screening at the Paramount Theatre showcases Disney's artistic innovation and symphonic storytelling.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/fantasia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9dc09c6a3d1f",
              "venue_id": "venue_yoshis",
              "title": "Kev Choice Ensemble",
              "event_time": "FRI 6.26",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GENRE-BLENDING PIANIST/MC/COMPOSER CELEBRATES BLACK MUSIC MONTH",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "ADV $39/DOS $44/PSEE $69",
              "url": "https://yoshis.com/events/buy-tickets/kev-choice-ensemble-4/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_abb1d9b41414",
              "venue_id": "venue_brick_and_mortar",
              "title": "ANALOG DREAM + INDIE ELEPHANT + TWIN BLOOM",
              "event_time": "Fri 6.26 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-26T21:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "BRICK & MORTAR MUSIC HALL PRESENTS",
              "event_types": [
                "live_music"
              ],
              "price_info": "$22.94",
              "url": "https://www.brickandmortarmusic.com/tm-event/analog-dream-indie-elephant-twin-bloom/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-05-18T11:46:56.711678Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_73ddf392ae39",
              "venue_id": "venue_presidio_theater",
              "title": "Andrew Evans: Magical Origins",
              "event_time": "2026-06-26",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Illusionist Andrew Evans presents a captivating show that delves into the history and evolution of magic through stunning performances.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/andrew-evans-magical-origins",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-26",
              "run_id": "run_cb8467903d00",
              "run_label": "Andrew Evans: Magical Origins, Jun 26 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dba65a3708dd",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 26, 2026 11:00am",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-26T11:00:00",
              "event_date": "2026-06-26",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Afternoon Delight, All Over the Guy, Before I Do, Hunky Jesus, Rock Out",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline-260625-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0181bd0adfcd",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-26",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-26",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce731eac4283",
              "venue_id": "venue_greek_theatre",
              "title": "Khalid, Lauv",
              "event_time": "Jun 26 2026 6:30pm/8pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-06-26T18:30:00",
              "event_date": "2026-06-26",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a 6:30pm/8pm #",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Khalid",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eede3c96b5e1",
              "venue_id": "venue_mountain_winery",
              "title": "Collective Soul",
              "event_time": "Jun 26 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-26T17:30:00",
              "event_date": "2026-06-26",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The multi-platinum rock band performs their alternative hits from the 90s alongside newer material. Fans can expect a high-energy set featuring their signature guitar-driven sound and melodic hooks.",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Collective_Soul",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5fa1dcb04182",
              "venue_id": "venue_quarter_note",
              "title": "Live Music",
              "event_time": "2026-06-26T18:00:00",
              "venue_name": "Quarter Note",
              "event_start": "2026-06-26T18:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1214 Apollo Way, Sunnyvale, CA 94085",
              "description": "Thur, Fri, Sat, & Sun : Live Music. Kitchen Open Daily 8pm-12am. Rated #1 Pizza in The Valley!",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_quarter_note",
                  "source_name": "Quarter Note",
                  "fetched_at": "2026-05-18T15:45:27.808265Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_quarter_note|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7179d2653f4c",
              "venue_id": "venue_1015_folsom",
              "title": "ACHE: BOY HARSHER & SEXTILE",
              "event_time": "June 26, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-06-26",
              "event_date": "2026-06-26",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "PRIDE",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "TICKETS | VIP",
              "url": "https://wl.eventim.us/event/ache-pride-friday/689092?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8551d2e244d6",
              "venue_id": "venue_the_fireside",
              "title": "Friday Night Music/DJs",
              "event_time": "2026-06-26T18:00:00",
              "venue_name": "The Fireside",
              "event_start": "2026-06-26T18:00:00",
              "event_date": "2026-06-26",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "DJs or live music",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-05-18T15:49:43.295743Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fireside|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97625b261676",
              "venue_id": "venue_rhythmix",
              "title": "Artists of the African Diaspora",
              "event_time": "Friday, June 26, 2026 6:00 pm to 8:00 pm",
              "venue_name": "Rhythmix",
              "event_start": "2026-06-26T18:00:00",
              "event_date": "2026-06-26",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Artists of the African Diaspora @ K Gallery/Rhythmix Cultural Works features artists from various backgrounds including Nigerian American Victoria Bankole, Trinidad native, Stacy Mootoo and Panama native, Xioneda Ruiz. This eclectic mix of diasporic cultures and techniques embodies the very essence of Art of the African Diaspora’s mission and program.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Free - Please RSVP",
              "url": "https://www.rhythmix.org/events/aotad-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-05-18T15:50:35.869963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rhythmix|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e3bca1f3904",
              "venue_id": "venue_the_riptide",
              "title": "Metzger's Field Band",
              "event_time": "2026-06-26T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-26T18:00:00",
              "event_date": "2026-06-26",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d2fd5fc434b",
              "venue_id": "venue_the_riptide",
              "title": "Punk Rock and Schlock Karaoke",
              "event_time": "2026-06-26T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-26T21:00:00",
              "event_date": "2026-06-26",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c606d3adf892",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "LUENELL",
              "event_time": "Fri Jun 26, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-06-26T19:30:00",
              "event_date": "2026-06-26",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "The \"Original Bad Girl of Comedy\" brings her bold, raucous, and unfiltered stand-up style to the Cobb's stage.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/luenell-san-francisco-california-06-26-2026/event/1C006469DEDC2886",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-05-18T16:12:27.173465Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b5ef568fe79",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Bululú",
              "event_time": "June 26, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-06-26T18:00:00",
              "event_date": "2026-06-26",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "In Venezuela, a BULULÚ is a vibrant, buzzing gathering that sparks excitement. It only takes a minute listening to BULULÚ to understand why they've adopted the name. \n\nLed by Venezuelan-born percussionist, composer, and vocalist Lali Mejia, BULULÚ draws inspiration from the folkloric rhythms of Venezuelan, Colombian, Puerto Rican, Cuban, and other Caribbean cultures.  BULULÚ's performances encompass an exciting mix of styles, ranging from calypso and salsa to cumbia, son, guaracha, merengue, bachata, joropo and more. The band stands out not only for its rich musical diversity and original repertoire but also for its inclusive identity, embracing the LGBTQ+ community, and a majority of female band members.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://www.bululusf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-06-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-27": {
          "date": "2026-06-27",
          "updated_at": "2026-05-18T15:58:43.811183Z",
          "events": [
            {
              "event_id": "evt_8db4cd5b823a",
              "venue_id": "venue_the_mighty",
              "title": "Pink Block Pride: Honey Dijon",
              "event_time": "2026-06-27T12:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-06-27T12:00:00",
              "event_date": "2026-06-27",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "The annual and legendary PINK BLOCK PRIDE PARTY returns for 2026. This year's event features a headlining performance by house music legend Honey Dijon. Presented by Polyglamorous and The Great Northern, the event includes a daytime block party followed by late-night afters. Attendees are encouraged to show up in their hottest pink looks.",
              "event_types": [
                "dj_party",
                "electronic",
                "community"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.thegreatnorthernsf.com/events/pink-block-pride-2026-honey-dijon-and-more",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-03-25T05:49:23.662432Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-03-25T06:14:52.217745Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_fake_and_gay",
                  "source_name": "Fake and Gay",
                  "fetched_at": "2026-04-05T12:00:48.106458Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-04-13T07:34:26.607169Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_as_you_like_it_ayli",
                  "source_name": "As You Like It (AYLI)",
                  "fetched_at": "2026-04-13T20:11:48.448253Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-04-28T12:36:56.840380Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_mighty|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77e7f86c4317",
              "venue_id": "venue_mvcpa",
              "title": "SIX: TEEN EDITION",
              "event_time": "2026-06-27T14:00:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-06-27T14:00:00",
              "event_date": "2026-06-27",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "A pop-concert musical remixing five hundred years of historical heartbreak into a euphoric celebration of 21st-century girl power, featuring the six wives of Henry VIII.",
              "event_types": [
                "theater"
              ],
              "price_info": "Call for tickets.",
              "url": "https://pytnet.org/boxoffice/six-teen-edition/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-01T10:39:07.793264Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-04-02T08:50:08.761190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_645fadaf064a",
              "venue_id": "venue_regency_ballroom",
              "title": "Aaron Hibell",
              "event_time": "06/27/2026 8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Producer Aaron Hibell brings his cinematic and atmospheric electronic music to the Castro Theater. His set is expected to feature the epic, orchestral-influenced sounds that have gained him international attention.",
              "event_types": [
                "electronic",
                "dj_party"
              ],
              "price_info": "$36-48 | 18+",
              "url": "https://www.axs.com/events/1333320/aaron-hibell-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-05T11:33:49.211064Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-06T09:28:21.309252Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19579b26086e",
              "venue_id": "venue_bimbos_365",
              "title": "Daniela Andrade, Brahny",
              "event_time": "June 27 - Show: 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents | with Brahny | All Ages",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/daniela-andrade/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-04-10T23:23:07.323100Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7124b5e1f30a",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Elektra",
              "event_time": "2026-06-27",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "In a brutal world where revenge is enacted with the axe, Elektra is consumed by her grief and seeks vengeance against her mother. Justice must be served in this taut psychological thriller in which the past and present become one, considered Strauss’ expressionist masterpiece.",
              "event_types": [
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-06-27",
              "run_id": "run_56ec27737a7e",
              "run_label": "Elektra, Jun 7 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a06ef9be9d71",
              "venue_id": "venue_the_ritz",
              "title": "AGENT ORANGE + THE DROWNS",
              "event_time": "2026-06-27T20:00:14-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-27T20:00:14",
              "event_date": "2026-06-27",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "AGENT ORANGE\nTHE DROWNS\nTESS & THE DETAILS\n\n \n\nSATURDAY JUNE 27, 2026\nDoors: 8:00PM // All Ages // $20 Advance – $25 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 Advance – $25 Day-of-Show",
              "url": "https://www.ticketweb.com/event/agent-orange-the-drowns-the-ritz-tickets/14131184",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77da8ef97ce6",
              "venue_id": "venue_down_home_music",
              "title": "Ex Capitals",
              "event_time": "Jun 27 2026 2pm",
              "venue_name": "Down Home Music",
              "event_start": "2026-06-27T14:00:00",
              "event_date": "2026-06-27",
              "venue_address": "10341 San Pablo Ave, El Cerrito, CA 94530",
              "description": "A live in-store performance by Ex Capitals, a post-punk band from Benicia. Part of the Down Home Music Foundation's series of free live performances.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "http://www.foopee.com/by-band.1.html#Ex_Capitals",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_down_home_music",
                  "source_name": "Down Home Music",
                  "fetched_at": "2026-04-13T11:39:18.865259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_down_home_music|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ec1affbed994",
              "venue_id": "venue_the_independent",
              "title": "BAY PRIDE AMPLIFIED!",
              "event_time": "6.27 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "An evening of alternative and indie-pop featuring rising artist Evann McIntosh alongside a curated selection of supporting acts.",
              "event_types": [
                "live_music",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/bay-pride-amplified-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a611d7928110",
              "venue_id": "venue_ivy_room",
              "title": "Midlife on Mars & Cranberry Sauce",
              "event_time": "Saturday Jun 27 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-06-27T19:00:00",
              "event_date": "2026-06-27",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Enjoy a night of familiar hits with Midlife On Mars performing popular covers and Cranberry Sauce playing tribute to classic tracks.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/178829",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc067fa1c0f5",
              "venue_id": "venue_the_warfield",
              "title": "KILLSWITCH ENGAGE",
              "event_time": "Sat, Jun 27, 2026 6:30 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-06-27T18:30:00",
              "event_date": "2026-06-27",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Killswitch Engage, Machine Head, Iron Reagan, Havok",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1355579",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-04-28T12:57:37.834317Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_74f92934470d",
              "venue_id": "venue_california_theatre",
              "title": "Javed Ali Live",
              "event_time": "2026-06-27T20:00:00",
              "venue_name": "California Theatre",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "One of Bollywood's most soulful voices, Javed Ali, performs live at the California Theatre. The concert features his chart-topping hits and timeless Sufi classics like 'Kun Faya Kun' and 'Jashn-E-Bahaaran'.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Starts at $39.00",
              "url": "https://events.sulekha.com/javed-ali-live-in-sanjose_event_in_san-jose-ca_374473",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_kalalaya",
                  "source_name": "Kalalaya",
                  "fetched_at": "2026-04-30T18:39:30.914085Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_02a9285ea93f",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Tierney Sutton & Tamir Hendelman",
              "event_time": "2026-06-27T20:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Nine-time Grammy nominee Tierney Sutton and virtuosic pianist Tamir Hendelman celebrate the release of their duo album 'Spring,' featuring tender and swinging arrangements.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$35 in advance / $40 at the door",
              "url": "https://piedmontpiano.com/concerts/2026/6/27/tierney-sutton-tamir-hendelman",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-05-06T18:09:28.971011Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bf1431cd0410",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: Barbara Nerness",
              "event_time": "2026-06-27T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist Barbara Nerness, an artist and scientist whose work spans music composition, live performance, video, and cognitive science, begins her run at Audium.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-06-27",
              "run_id": "run_b94acb2a6dcf",
              "run_label": "Resident Artist Shows: Barbara Nerness, Jun 4 – Jun 27",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_451a56d2d004",
              "venue_id": "venue_halcyon",
              "title": "Loofy, Owell & Padre Bless",
              "event_time": "06/27/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-06-27T22:00:00",
              "event_date": "2026-06-27",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Catch Loofy at Halcyon as he delivers a curated selection of house music tracks designed to keep the dance floor moving all night.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/Ead6d5a3b479?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-05-07T14:17:17.021545Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-07T17:12:50.228845Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7cd90b14c57a",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-27T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-27",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a138ca5cba9f",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-27T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-27T14:00:00",
              "event_date": "2026-06-27",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-27",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_10970142de01",
              "venue_id": "venue_wyldflowr_arts",
              "title": "The Hot Club of San Francisco",
              "event_time": "2026-06-27T19:30:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "A performance of Gypsy Jazz by The Hot Club of San Francisco, featuring the silken violin of Evan Price.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$60 / $75 VIP",
              "url": "https://marinjazz.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a1002a7602b3",
              "venue_id": "venue_brick_and_mortar",
              "title": "Sekou",
              "event_time": "Jun 27 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "(under 21 plus 5) 8pm/9pm ^",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$5",
              "url": "http://www.foopee.com/by-band.3.html#Sekou",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49c356f9f3cf",
              "venue_id": "venue_sf_playhouse",
              "title": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY",
              "event_time": "2026-06-27",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A female Van Helsing leads a fierce rebellion against the patriarchal monster, Count Dracula, in a battle for autonomy and justice.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/dracula-a-feminist-revenge-fantasy-really/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-06-27",
              "run_id": "run_9d75bb7c2629",
              "run_label": "DRACULA: A FEMINIST REVENGE FANTASY, REALLY, May 15 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_13b6c4f96a48",
              "venue_id": "venue_great_american_music_hall",
              "title": "Tentacle Fest",
              "event_time": "Jun 27 2026 6pm/7pm",
              "venue_name": "Great American",
              "event_start": "2026-06-27T18:00:00",
              "event_date": "2026-06-27",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Wheelchair Sports Camp with Voodoo 5, Death Hymn Number Nine, Vic Bondi and His Issues, and Crisis Actor.",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$27/$30",
              "url": "http://www.foopee.com/by-band.3.html#Wheelchair_Sports_Camp",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_10f9909ae8e6",
              "venue_id": "venue_oakland_secret",
              "title": "Lost Puppy Forever: Oakland Secret Presents",
              "event_time": "2026-06-27T19:00:00",
              "venue_name": "Oakland Secret",
              "event_start": "2026-06-27T19:00:00",
              "event_date": "2026-06-27",
              "venue_address": "577 5th St, Oakland, CA 94607",
              "description": "A high-energy showcase featuring Wonderland Rejects, Everything but Everything, Lust 4 Blood, Alien Blunt, Circle of Ruin, and drum and bass duo Lost Puppy Forever.",
              "event_types": [
                "live_music",
                "rock",
                "electronic",
                "festival"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.sfgate.com/events/?_ev_id=lost-puppy-forever-oakland-secret-presents",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_secret",
                  "source_name": "Oakland Secret",
                  "fetched_at": "2026-05-15T11:36:54.382509Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oakland_secret|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f69273c0d746",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Live Music: Local Blues, RnB & Soul",
              "event_time": "2026-06-27T21:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-27T21:00:00",
              "event_date": "2026-06-27",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "Weekly Saturday night live music series featuring the best of the Bay Area's blues and soul scene.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission",
              "url": "https://smokingpigbbq.net/locations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_15c9f05e1be2",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-27",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-27",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8ee9b5580f24",
              "venue_id": "venue_montgomery_theater",
              "title": "Pinocchio",
              "event_time": "2026-06-27 2026-06-25T19:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "A family musical based on Carlo Collodi’s classic tale, using inventive puppetry to tell the story of Pinocchio, Geppetto, and the journey toward becoming a real boy.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/pinocchio-cmt-junior-talents/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-06-27",
              "run_id": "run_5f2192b63cdb",
              "run_label": "Pinocchio, Jun 24 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_79930e850ed4",
              "venue_id": "venue_cry_baby",
              "title": "Afrobashment",
              "event_time": "2026-06-27",
              "venue_name": "Cry Baby",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Afrobeats, dancehall, hip-hop, and more; upcoming party listed on Crybaby’s events page for Sat, Jun 27, 2026.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://crybaby.live/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-05-15T19:30:51.680411Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cry_baby|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_000523fe537d",
              "venue_id": "venue_pacific_film_archive",
              "title": "Rififi",
              "event_time": "2026-06-27T16:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-06-27T16:00:00",
              "event_date": "2026-06-27",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jules Dassin's definitive heist film, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/rififi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_41d898ef5ed1",
              "venue_id": "venue_oasis",
              "title": "Princess PRIDE w/ Dawn",
              "event_time": "2026-06-27T23:00:00",
              "venue_name": "Oasis",
              "event_start": "2026-06-27T23:00:00",
              "event_date": "2026-06-27",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "The official Pride edition of the Princess drag spectacular featuring Dawn. This event is hosted by Oasis Arts at August Hall during the main venue's temporary closure for remodeling.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "Tickets start at $30",
              "url": "https://www.ticketmaster.com/princess-pride-w-dawn-san-francisco-california-06-27-2026/event/1C0060A1B2C3D4F6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-05-15T20:27:54.675119Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_513316cfb3a0",
              "venue_id": "venue_hammer_theater",
              "title": "Disney's The Lion King Jr.",
              "event_time": "2026-06-27T19:30:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "A family-friendly production of the Disney classic, featuring the beloved songs and story of Simba's journey.",
              "event_types": [],
              "price_info": "N/A",
              "url": "https://hammertheatre.com/event/disneys-the-lion-king-jr/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1ae5b6880a5a",
              "venue_id": "venue_dance_mission",
              "title": "Mission in the Mix",
              "event_time": "2026-06-27 2026-06-20T20:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Micaya presents a multidisciplinary Bay Area performance series centering community, artistry, and cultural exchange at Dance Mission Theater.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/28/june-19-28-mission-in-the-mix/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-27",
              "run_id": "run_e5a7006ecdef",
              "run_label": "Mission in the Mix, Jun 19 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_771283e225ec",
              "venue_id": "venue_bayfront_theater",
              "title": "Intro to Improv with Susie Sargent",
              "event_time": "2026-06-27T14:30:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-27T14:30:00",
              "event_date": "2026-06-27",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A welcoming introductory class at the BATS Bayfront Theatre to experience the magic of improv.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.eventbrite.com/e/intro-to-improv-with-susie-sargent-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ba4a640228e5",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Short Show",
              "event_time": "2026-06-27T18:45:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-27T18:45:00",
              "event_date": "2026-06-27",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A light summertime delight that bridges the time between happy hour and evening plans with fast-paced improv.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-short-show-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_de845aa59cc9",
              "venue_id": "venue_bayfront_theater",
              "title": "Whodunnit?",
              "event_time": "2026-06-27T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised murder mystery where even the actors don't know who the killer is until the final scene.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-whodunnit-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_97166d5c4d77",
              "venue_id": "venue_biscuits__blues",
              "title": "Tia Carroll",
              "event_time": "2026-06-27T18:00:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-27T18:00:00",
              "event_date": "2026-06-27",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Her powerful voice and soul-stirring band of top-notch musicians bring a night of soul and gospel to San Francisco.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260627tiacarroll",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3abe5e477b67",
              "venue_id": "venue_stay_gold_deli",
              "title": "E.S.C. Live",
              "event_time": "2026-06-27T18:00:00",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-06-27T18:00:00",
              "event_date": "2026-06-27",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Techno artist E.S.C. performs live at Stay Gold Deli.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.shazam.com/concert/17154247/esc-oakland-stay-gold",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-15T23:29:51.094583Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e18b019efbc5",
              "venue_id": "venue_the_setup",
              "title": "The Setup at The Palace Theater (Speakeasy Comedy)",
              "event_time": "2026-06-27T21:00:00",
              "venue_name": "The Setup",
              "event_start": "2026-06-27T21:00:00",
              "event_date": "2026-06-27",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "A special Saturday night edition of The Setup's speakeasy comedy series at the Palace Theater.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$20.00",
              "url": "https://www.unation.com/event/the-setup-at-the-palace-theater-speakeasy-comedy-52345678",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-05-16T01:44:41.479756Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_setup|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ef5b74b2bc83",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Laurie Kilmartin",
              "event_time": "2026-06-27T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Laurie Kilmartin, featuring Aaron Foster and Rea Kapur.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/123674",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-27",
              "run_id": "run_201fa7a730db",
              "run_label": "Laurie Kilmartin, Jun 26 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_33a284f7b464",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Denise Salcedo Live",
              "event_time": "2026-06-27T14:30:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-27T14:30:00",
              "event_date": "2026-06-27",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Live podcast event hosted by pro wrestling on-camera personality Denise Salcedo, with a pre-show VIP Q&A, live podcast taping, and post-show meet and greet. Presented on the eve of AEW x NJPW Presents: Forbidden Door at SAP Center in San Jose.",
              "event_types": [],
              "price_info": "",
              "url": "https://rooster-t-feathers.seatengine-sites.com/shows/372240",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0a5c102c49aa",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-06-27T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_95d20cb0a0c4",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "David Tudor Centennial: Workshop",
              "event_time": "2026-06-27T13:00:00",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-06-27T13:00:00",
              "event_date": "2026-06-27",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "An afternoon discussion and demonstration of the techniques behind David Tudor's experiments with electronics.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Free with RSVP",
              "url": "https://www.otherminds.org/events/a-david-tudor-centennial/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-05-16T10:24:39.949015Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c6a2cdfaa9f",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "David Tudor Centennial: Night Two",
              "event_time": "2026-06-27T19:30:00",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "The second evening concert of the David Tudor Centennial celebration featuring live electronics by Composers Inside Electronics.",
              "event_types": [
                "live_music",
                "electronic",
                "experimental"
              ],
              "price_info": "$23.18 - $65.87",
              "url": "https://www.otherminds.org/events/a-david-tudor-centennial/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-05-16T10:24:39.949015Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7eb4dc9d31a1",
              "venue_id": "venue_center_for_new_music",
              "title": "Kole Galbraith, EERIÆRMOR, Kamran Shafii",
              "event_time": "Jun 27",
              "venue_name": "Center for New Music",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "Jun 27: Kole Galbraith, EERIÆRMOR, Kamran Shafii",
              "event_types": [
                "other"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/kole-galbraith-earemor/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-05-16T10:27:19.919834Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14824c170ebe",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-27",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-27",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_359912db3cf1",
              "venue_id": "venue_f8",
              "title": "NO BIAS",
              "event_time": "2026-06-27T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-06-27T21:00:00",
              "event_date": "2026-06-27",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "A multi-artist showcase featuring Bored Lord, Eastbay Mean Girls, Discnogirl, and many more.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/clubs/61234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c8aa1ee3f123",
              "venue_id": "venue_public_works",
              "title": "Eden Pride Party",
              "event_time": "2026-06-27",
              "venue_name": "Public Works",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A queer-focused Pride party at Public Works.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://publicsf.com/events/eden-sf-pride-queer-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d456d2a62f19",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-27",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-27",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_64ee0e0bcafa",
              "venue_id": "venue_tommy_ts",
              "title": "YUNTIE TIA KEMP",
              "event_time": "2026-06-27 2026-06-27",
              "venue_name": "Tommy T's",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-06-27",
              "run_id": "run_16a37c43f0cc",
              "run_label": "YUNTIE TIA KEMP, Jun 26 – Jun 27",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de63c625f778",
              "venue_id": "venue_the_sound_room",
              "title": "Mikailo Kasha Quartet",
              "event_time": "Saturday, June 27, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Mikailo Kasha is an award-winning bassist, composer, and bandleader based in Miami, Florida. Currently considered to be among “the top 1% of bassists worldwide”, as stated by Scotty Barnhart of the Count Basie Orchestra, Kasha is a dynamic bandleader, versatile sideman, and a prodigious voice on both upright and electric bass.\n\nOriginally from the San Francisco Bay Area, Kasha is an alumnus of renowned incubator programs including the SFJAZZ High School All-Stars, San Jose Jazz All Stars, and the Stanford Jazz Institute.\n\nA three-time DownBeat student award winner, Kasha received the 2022 “Jazz Soloist” award in the graduate division and an “Outstanding Performance” award for his trio. He also earned an Outstanding Soloist award in 2019. Kasha has been mentored by leading jazz figures. Beyond performance, Kasha is deeply committed to jazz education and community leadership. He serves as the Executive Director of the Miami Jazz Cooperative, is on faculty at the Stanford Jazz Workshop, and leads the High School Honors Jazz Combo at Miami Country Day School.\n\nKasha has put together a stellar group for this evening!\n\nMikailo Kasha, bass\n\nJalen Baker, vibraphone\n\nTal Cohen, piano\n\nAnthony Fung, drums\n\nTickets at Mikailo Kasha Quartet",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/mikailo-kasha-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef24d5b56d68",
              "venue_id": "venue_canada_theater",
              "title": "Outdoor Concert 2026",
              "event_time": "Sat June 27, 2026 at 7:00 pm",
              "venue_name": "Cañada College Theater",
              "event_start": "2026-06-27T19:00:00",
              "event_date": "2026-06-27",
              "venue_address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
              "description": "Elmer Bernstein March from The Great Escape\n\nConducted by Kyle Baldwin\n\nKenneth J. Alford (arr. ) Colonel Bogey March\nAntonin Dvorák Symphony No. 9 (“New World”)\n\nOnce more, we are pleased to play for Redwood City’s Classical on the Square offering! Bring your lawn chairs and settle in under a warm summer sky to enjoy great music from Redwood City’s only symphony orchestra!",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Free",
              "url": "https://redwoodsymphony.org/concert/outdoor-concert-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_redwood_symphony_41",
                  "source_name": "Redwood Symphony 41",
                  "fetched_at": "2026-05-18T10:31:29.925146Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_canada_theater|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a7873b53d90b",
              "venue_id": "venue_mountain_winery",
              "title": "Iration",
              "event_time": "Jun 27, 2026 6:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-27T18:30:00",
              "event_date": "2026-06-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Where it all Began Summer Tour 2026 | with special guests Tribal Seeds, Artikal Sound System",
              "event_types": [
                "live_music",
                "latin_world",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1257355",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ecceced1fd60",
              "venue_id": "venue_yoshis",
              "title": "Kota the Friend",
              "event_time": "SAT 6.27",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "RAPPER, SINGER, SONGWRITER, AND RECORD PRODUCER",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$55 - $89",
              "url": "https://yoshis.com/events/buy-tickets/kota-the-friend/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b771336789af",
              "venue_id": "venue_presidio_theater",
              "title": "Andrew Evans: Magical Origins",
              "event_time": "2026-06-27",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Illusionist Andrew Evans presents a captivating show that delves into the history and evolution of magic through stunning performances.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/andrew-evans-magical-origins",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-27",
              "run_id": "run_cb8467903d00",
              "run_label": "Andrew Evans: Magical Origins, Jun 26 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_21eb52774d36",
              "venue_id": "venue_historic_bal_theatre",
              "title": "BACK TO BACK KRIS LAWRENCE X PRINCE",
              "event_time": "Saturday, Jun 27 Show: 6:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-06-27T18:00:00",
              "event_date": "2026-06-27",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Kris Lawrence takes the stage for a dynamic performance featuring his own music alongside a special tribute to the legendary Prince.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/back-to-back-kris-lawrence-x-prince/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0a0890484f28",
              "venue_id": "venue_castro_theater",
              "title": "FRAMELINE50",
              "event_time": "June 27, 2026 10:00am",
              "venue_name": "Castro Theater",
              "event_start": "2026-06-27T10:00:00",
              "event_date": "2026-06-27",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Frameline presents - Homegrown Shorts, On the Sea, Fun in Shorts, Loves Company, Give Me the Ball!, Teenage Sex and Death at Camp Miasma",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/frameline-260627",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d50f87b528a",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-27",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-27",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5583da734d13",
              "venue_id": "venue_mountain_winery",
              "title": "Iration, Tribal Seeds & Artikal Sound System",
              "event_time": "Jun 27 4:30pm/6:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-27T16:30:00",
              "event_date": "2026-06-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This triple-bill features three of the most prominent names in modern reggae and dub music. It is a high-energy night dedicated to island vibes, heavy basslines, and positive energy.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Iration",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_410613b79efe",
              "venue_id": "venue_thee_stork_club",
              "title": "Kontusion",
              "event_time": "Jun 27 2026 8pm/9pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Kontusion, Dispossessed, Penury",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "http://www.foopee.com/by-band.1.html#Kontusion",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_afac87b4f9dc",
              "venue_id": "venue_winters",
              "title": "MFG and Mokosos",
              "event_time": "Jun 27 2026 2pm",
              "venue_name": "Winters",
              "event_start": "2026-06-27T14:00:00",
              "event_date": "2026-06-27",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "MFG (midnight), Mokosos, Nixed, Hemmed Up, Angry Aztecs, Dead River Rebels, Blunt Force, All To The Grave, Sparkle Plenty, Remedy Feeling, Effort Because (2pm), dj Tanke",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "free",
              "url": "http://www.foopee.com/by-band.2.html#MFG__midnight___Mokosos",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_winters|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_767bf12c2076",
              "venue_id": "venue_august_hall",
              "title": "PRINCESS PRIDE W/ DAWN",
              "event_time": "JUNE 27, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-06-27",
              "event_date": "2026-06-27",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Celebrate Pride with a special performance by artist Dawn at this inclusive and vibrant event hosted by Princess.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/princess-pride-w-dawn/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-18T15:47:14.139244Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57f51d38da35",
              "venue_id": "venue_the_riptide",
              "title": "Skankin' with DJ Sep",
              "event_time": "2026-06-27T20:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-27T20:00:00",
              "event_date": "2026-06-27",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_510a9064674e",
              "venue_id": "venue_audio",
              "title": "Mark Knight",
              "event_time": "06/27/2026 7:30pm-2am",
              "venue_name": "Audio",
              "event_start": "2026-06-27T19:30:00",
              "event_date": "2026-06-27",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "tech house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$22 pre | 21+",
              "url": "https://ra.co/events/2431350",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-06-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-28": {
          "date": "2026-06-28",
          "updated_at": "2026-05-18T15:58:43.821266Z",
          "events": [
            {
              "event_id": "evt_7bf1f5d7a070",
              "venue_id": "venue_the_midway",
              "title": "Zedd Pride Weekend Block Party",
              "event_time": "06/28/2026 2pm-10pm",
              "venue_name": "The Midway",
              "event_start": "2026-06-28T14:00:00",
              "event_date": "2026-06-28",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "World-renowned DJ and producer Zedd headlines this high-energy outdoor block party as part of the venue's Pride Weekend celebrations. Attendees can expect a vibrant atmosphere filled with chart-topping electronic dance music.",
              "event_types": [
                "live_music",
                "electronic",
                "dj_party"
              ],
              "price_info": "$125 pre | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/zedd-pride-weekend-block-party-176400",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-03-28T11:44:32.284786Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-03-29T11:13:11.622375Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_midway|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8d093586ca45",
              "venue_id": "venue_mvcpa",
              "title": "SIX: TEEN EDITION",
              "event_time": "2026-06-28T13:00:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-06-28T13:00:00",
              "event_date": "2026-06-28",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "A pop-concert musical remixing five hundred years of historical heartbreak into a euphoric celebration of 21st-century girl power, featuring the six wives of Henry VIII.",
              "event_types": [
                "theater"
              ],
              "price_info": "Call for tickets.",
              "url": "https://pytnet.org/boxoffice/six-teen-edition/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-01T10:39:07.793264Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-04-02T08:50:08.761190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64d3227cef72",
              "venue_id": "venue_rickshaw_stop",
              "title": "PANIC SHACK",
              "event_time": "2026-06-28T20:00:00",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-06-28T20:00:00",
              "event_date": "2026-06-28",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "The Welsh punk quintet Panic Shack brings their raw energy, witty lyrics, and rebellious spirit to the Regency Ballroom stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15.00-$18.00",
              "url": "http://www.foopee.com/by-band.2.html#Panic_Shack",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-12T15:22:39.949681Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4d65d58884fd",
              "venue_id": "venue_old_first_concerts",
              "title": "Duo Soriga",
              "event_time": "2026-06-28T16:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-06-28T16:00:00",
              "event_date": "2026-06-28",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Spanning modern interpretations of traditional folk songs, refined art songs, and contemporary compositions, Duo Soriga captures the serene aesthetics and inner dynamism of Korean music.",
              "event_types": [
                "live_music",
                "folk",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.oldfirstconcerts.org/performance/duo-soriga/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-05-07T10:32:26.729121Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce470fb191bd",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-28T20:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-28T20:00:00",
              "event_date": "2026-06-28",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-28",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02380d9c894d",
              "venue_id": "venue_san_jose_stage",
              "title": "WE WILL ROCK YOU",
              "event_time": "2026-06-28T14:00:00",
              "venue_name": "San Jose Stage",
              "event_start": "2026-06-28T14:00:00",
              "event_date": "2026-06-28",
              "venue_address": "490 S 1st St, San Jose, CA 95113",
              "description": "This high-energy jukebox musical features the iconic hits of the legendary rock band Queen in a story about rebels reclaiming the power of rock and roll. The production brings a dystopian future to life on the San Jose Stage with powerful vocals and classic anthems.",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_stage",
                  "source_name": "San Jose Stage",
                  "fetched_at": "2026-05-10T10:29:17.143521Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_stage|2026-06-28",
              "run_id": "run_171293918f64",
              "run_label": "WE WILL ROCK YOU, Jun 3 – Jun 28",
              "showtime_index": 1,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_754af8c19ceb",
              "venue_id": "venue_the_ritz",
              "title": "Outta Pocket & Guests",
              "event_time": "2026-06-28T18:00:40-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-06-28T18:00:40",
              "event_date": "2026-06-28",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "A hardcore and heavy music showcase featuring Outta Pocket and several supporting acts for an intense live show.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "https://www.ticketweb.com/event/outta-pocket-fatal-realm-eightfold-the-ritz-tickets/14892473",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a48f74fa4581",
              "venue_id": "venue_the_fillmore",
              "title": "Holly Humberstone",
              "event_time": "2026-06-28",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-28T20:00:00",
              "event_date": "2026-06-28",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "British singer-songwriter Holly Humberstone performs her emotive indie-pop tracks as part of the \"Cruel World North American Tour.\"",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Holly_Humberstone",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-14T10:28:31.042763Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57d1bb91034f",
              "venue_id": "venue_smoking_pig_bbq_sj",
              "title": "Sunday BBQ Breakfast",
              "event_time": "2026-06-28T09:00:00",
              "venue_name": "Smoking Pig",
              "event_start": "2026-06-28T09:00:00",
              "event_date": "2026-06-28",
              "venue_address": "3340 N 1st St, San Jose, CA 95134",
              "description": "A special weekend tradition featuring brisket hash, custom omelets, biscuits and gravy, and other Southern breakfast standards. Complimentary coffee is included with breakfast orders.",
              "event_types": [
                "community"
              ],
              "price_info": "Menu prices",
              "url": "https://smokingpigbbq.net/menus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_smoking_pig_bbq_sj",
                  "source_name": "Smoking Pig",
                  "fetched_at": "2026-05-15T11:40:03.802719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_smoking_pig_bbq_sj|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_494229c68378",
              "venue_id": "venue_the_pear_theatre",
              "title": "God of Carnage",
              "event_time": "2026-06-28",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-06-28",
              "event_date": "2026-06-28",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "A biting comedy of manners by Yasmina Reza, translated by Christopher Hampton, directed by Kimberly Ridgeway. Two sets of parents meet to discuss a playground scuffle between their sons, and the evening spirals into accusations, power plays, and emotional unraveling.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://thepear.vbotickets.com/events?eid=182806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-06-28",
              "run_id": "run_f44b71e680a0",
              "run_label": "God of Carnage, Jun 12 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1a2c6e6e1883",
              "venue_id": "venue_montgomery_theater",
              "title": "Pinocchio",
              "event_time": "2026-06-28 2026-06-25T19:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-06-28",
              "event_date": "2026-06-28",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "A family musical based on Carlo Collodi’s classic tale, using inventive puppetry to tell the story of Pinocchio, Geppetto, and the journey toward becoming a real boy.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/pinocchio-cmt-junior-talents/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-06-28",
              "run_id": "run_5f2192b63cdb",
              "run_label": "Pinocchio, Jun 24 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7e2ac44f4ab8",
              "venue_id": "venue_dance_mission",
              "title": "Mission in the Mix",
              "event_time": "2026-06-28 2026-06-20T20:00:00",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-06-28",
              "event_date": "2026-06-28",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Micaya presents a multidisciplinary Bay Area performance series centering community, artistry, and cultural exchange at Dance Mission Theater.",
              "event_types": [],
              "price_info": "Tickets available via Buy now link",
              "url": "https://dancemissiontheater.org/2026/04/28/june-19-28-mission-in-the-mix/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-05-15T21:26:10.890076Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dance_mission|2026-06-28",
              "run_id": "run_e5a7006ecdef",
              "run_label": "Mission in the Mix, Jun 19 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_aa5422a5ec4f",
              "venue_id": "venue_biscuits__blues",
              "title": "Nardia",
              "event_time": "2026-06-28T17:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-06-28T17:30:00",
              "event_date": "2026-06-28",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Nardia blends blues, soul, and funk with fierce vocals, heartfelt songwriting, and magnetic stage presence.",
              "event_types": [],
              "price_info": "Not listed",
              "url": "https://www.biscuitsandblues.com/find-a-show/20260628nardia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-05-15T23:09:27.719549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5f78673d5ef4",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Laurie Kilmartin",
              "event_time": "2026-06-28T20:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-06-28T20:00:00",
              "event_date": "2026-06-28",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Laurie Kilmartin, featuring Aaron Foster and Rea Kapur.",
              "event_types": [],
              "price_info": "Price not listed on the event page.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/123674",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-05-16T02:03:13.069137Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-06-28",
              "run_id": "run_201fa7a730db",
              "run_label": "Laurie Kilmartin, Jun 26 – Jun 28",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d106af761de6",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jam Session hosted by the Vince Lateano Trio",
              "event_time": "2026-06-28T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-28T17:00:00",
              "event_date": "2026-06-28",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "All-comers Jam Session hosted by the Vince Lateano Trio on the Last Sunday of every month.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8af928dddcb0",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-28",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-28",
              "event_date": "2026-06-28",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-28",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b9760720204f",
              "venue_id": "venue_san_jose_civic",
              "title": "Satinder Sartaaj",
              "event_time": "2026-06-28T18:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-06-28T18:00:00",
              "event_date": "2026-06-28",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Renowned Punjabi singer, poet, and actor Satinder Sartaaj performs live in concert.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$89 - $140+",
              "url": "https://www.axs.com/events/543214/satinder-sartaaj-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6fd5c09ec2b5",
              "venue_id": "venue_public_works",
              "title": "BEEP! BEEP! Pride After Party",
              "event_time": "2026-06-28",
              "venue_name": "Public Works",
              "event_start": "2026-06-28",
              "event_date": "2026-06-28",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "The 4th annual free after-party following the SF Pride Parade.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://publicsf.com/events/beep-beep-hpzs-4th-annual-free-pride-parade-after-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5f20610820fa",
              "venue_id": "venue_sap_center",
              "title": "AEW x NJPW Presents: Forbidden Door",
              "event_time": "2026-06-28T19:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-06-28T19:00:00",
              "event_date": "2026-06-28",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f2bca58b1d4b",
              "venue_id": "venue_bird_and_beckett",
              "title": "Kasey Knudsen, Mat Muntz, Scott Amendola",
              "event_time": "6/28/2026 7:30 PM",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-06-28T19:30:00",
              "event_date": "2026-06-28",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Kasey Knudsen, saxophone; Mat Muntz, bass; Scott Amendola, drums More...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23055",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-05-18T10:16:36.618199Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae03177a5c9d",
              "venue_id": "venue_mountain_winery",
              "title": "KALEO",
              "event_time": "Jun 28, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-28T19:30:00",
              "event_date": "2026-06-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Way Down We Go Tour | Dawes",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1258045",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d228f6f8102",
              "venue_id": "venue_yoshis",
              "title": "Slum Village",
              "event_time": "SUN 6.28 7:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-28T19:00:00",
              "event_date": "2026-06-28",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "A CELEBRATED NAME IN THE WORLD OF DETROIT HIP-HOP",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$49 - $89",
              "url": "https://yoshis.com/events/buy-tickets/slum-village/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18a2695fa108",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Cowboy Beauty Queen, Preschool & Spleens",
              "event_time": "Sunday June 28 2026 7:30PM doors -- music at 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-28T19:30:00",
              "event_date": "2026-06-28",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; country punk; garage, new wave, power pop; garage punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260628.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de24d27d610d",
              "venue_id": "venue_presidio_theater",
              "title": "Andrew Evans: Magical Origins",
              "event_time": "2026-06-28",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-06-28T19:30:00",
              "event_date": "2026-06-28",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Illusionist Andrew Evans presents a captivating show that delves into the history and evolution of magic through stunning performances.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/andrew-evans-magical-origins",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-06-28",
              "run_id": "run_cb8467903d00",
              "run_label": "Andrew Evans: Magical Origins, Jun 26 – Jun 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef2ca6992f75",
              "venue_id": "venue_bach_dds",
              "title": "Ralph Alessi Quartet",
              "event_time": "2026-06-28T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-06-28T16:30:00",
              "event_date": "2026-06-28",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "Trumpeter, composer, and ECM recording artist Ralph Alessi leads his quartet in a performance that balances jazz traditions with expansive areas of experimentation and innovation.",
              "event_types": [],
              "price_info": "Check website for ticket prices",
              "url": "https://dothebay.com/events/2026/6/28/the-bach-dancing-dynamite-society-presents-ralph-alessi-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_da5845dbc4df",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-28",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-28",
              "event_date": "2026-06-28",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-28",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1e63f582cc35",
              "venue_id": "venue_mountain_winery",
              "title": "Kaleo & Dawes",
              "event_time": "Jun 28 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-06-28T17:30:00",
              "event_date": "2026-06-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This co-headlining tour brings together the bluesy, atmospheric rock of Iceland's Kaleo and the folk-rock storytelling of Dawes. It is a night of diverse musical textures and powerful live performances.",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Kaleo",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4440532b99c7",
              "venue_id": "venue_stern_grove",
              "title": "Japanese Breakfast",
              "event_time": "Jun 28 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-06-28T14:00:00",
              "event_date": "2026-06-28",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Japanese Breakfast, dj Evie Stokes",
              "event_types": [
                "other"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Japanese_Breakfast",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_44a7b4b8ddf1",
              "venue_id": "venue_thee_stork_club",
              "title": "Gumby's Junk",
              "event_time": "Jun 28 2026 7pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-06-28T19:00:00",
              "event_date": "2026-06-28",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Gumby's Junk, Miscomings, Sea MOss, Pateka",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 7pm",
              "url": "http://www.foopee.com/by-band.1.html#Gumby_s_Junk",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f72f8ad4a5d",
              "venue_id": "venue_club_fox",
              "title": "Jenner Fox, Jeremy Elliott & Peter Fox",
              "event_time": "Sunday June 28th",
              "venue_name": "Club Fox",
              "event_start": "2026-06-28",
              "event_date": "2026-06-28",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Sunday June 28thJENNER FOX & JEREMY ELLIOTT w/PETER FOXAlbum Release & Book LaunchDoors 6:30PM /Show 7:30PM",
              "event_types": [
                "live_music",
                "folk",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/jenner-fox-jeremy-elliott-wpeter-fox-tickets-1988784678510?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ef6cb7e20cd",
              "venue_id": "venue_the_riptide",
              "title": "DJ Children of the Funk",
              "event_time": "2026-06-28T20:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-28T20:30:00",
              "event_date": "2026-06-28",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-29": {
          "date": "2026-06-29",
          "updated_at": "2026-05-18T15:51:48.584974Z",
          "events": [
            {
              "event_id": "evt_c93f859dba68",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-29",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-29",
              "event_date": "2026-06-29",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-29",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_829e095f388a",
              "venue_id": "venue_rootstock_arts",
              "title": "Natural Elements: Trina Basu & Arun Ramamurthy",
              "event_time": "2026-06-29T19:30:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-06-29T19:30:00",
              "event_date": "2026-06-29",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Violinists Trina Basu and Arun Ramamurthy perform original compositions that draw from South Indian classical music and Western improvisation. Their duo project, Natural Elements, highlights the organic blend of diverse musical traditions.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-06-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c769d327d8e7",
              "venue_id": "venue_yoshis",
              "title": "Miko Marks Residency",
              "event_time": "MON 6.29 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-06-29T19:30:00",
              "event_date": "2026-06-29",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BLENDING GOSPEL, COUNTRY SOUL, BLUES, AND ROCK N ROLL",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "rock"
              ],
              "price_info": "$25 - $49",
              "url": "https://yoshis.com/events/buy-tickets/miko-marks-residency-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-06-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_540c986c303a",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC AT HOTEL UTAH",
              "event_time": "Mon Jun 29 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-29T19:00:00",
              "event_date": "2026-06-29",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Monday night",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://wl.seetickets.us/event/Open-Mic-at-Hotel-Utah/689623?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5937569335a",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-06-29T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-06-29T19:00:00",
              "event_date": "2026-06-29",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-06-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9266e1bfceae",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-06-29",
              "venue_name": "Club Fugazi",
              "event_start": "2026-06-29",
              "event_date": "2026-06-29",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-06-29",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_62f258c06b83",
              "venue_id": "venue_make_out_room",
              "title": "Mr Butterfield, Now, Plastic Candles",
              "event_time": "Jun 29",
              "venue_name": "Make Out Room",
              "event_start": "2026-06-29",
              "event_date": "2026-06-29",
              "venue_address": "3225 22nd St, San Francisco, CA 94110",
              "description": "A live musical performance featuring Mr Butterfield, Now, and Plastic Candles.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Mr_Butterfield",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_make_out_room|2026-06-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e3ded5ef20e2",
              "venue_id": "venue_de_young",
              "title": "The Etruscans Virtual Access Day",
              "event_time": "2026-06-29 10 + 11:30 am",
              "venue_name": "De Young",
              "event_start": "2026-06-29T11:30:00",
              "event_date": "2026-06-29",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "This online program provides an accessible digital tour and discussion of 'The Etruscans' exhibition for remote participants.",
              "event_types": [
                "community",
                "art"
              ],
              "price_info": "Virtual, Access, Access",
              "url": "https://www.famsf.org/events/etruscans-virtual-access-day",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-05-18T15:51:35.688054Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-06-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-06-30": {
          "date": "2026-06-30",
          "updated_at": "2026-05-18T15:54:50.410688Z",
          "events": [
            {
              "event_id": "evt_12b066ae2096",
              "venue_id": "venue_the_fillmore",
              "title": "Joshua Slone: Thinking Too Much Tour",
              "event_time": "Jun 30 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-06-30T19:00:00",
              "event_date": "2026-06-30",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Emerging artist Joshua Slone brings his personal songwriting and live performance to the venue for an evening of contemporary music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.1.html#Joshua_Slone",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-09T01:56:35.358428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_70c32ea5ffe9",
              "venue_id": "venue_the_uc_theatre",
              "title": "Cymande",
              "event_time": "Jun 30 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-06-30T20:00:00",
              "event_date": "2026-06-30",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Cymande",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$35 + FEES",
              "url": "https://www.theuctheatre.org/shows/cymande-30-jun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7bf77da8cf6d",
              "venue_id": "venue_san_jose_civic",
              "title": "Jon Anderson",
              "event_time": "2026-06-30T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-06-30T20:00:00",
              "event_date": "2026-06-30",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "The legendary voice of Yes, Jon Anderson, performs a selection of classic hits and solo material in a live concert experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/jon-anderson/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-06T12:30:00.068194Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e8c6b88c39ca",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-06-30T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-06-30T18:30:00",
              "event_date": "2026-06-30",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_25340c064c82",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-06-30",
              "venue_name": "Exploratorium",
              "event_start": "2026-06-30",
              "event_date": "2026-06-30",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-06-30",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e3f80227e23",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-06-30",
              "venue_name": "David Brower Center",
              "event_start": "2026-06-30",
              "event_date": "2026-06-30",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-06-30",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91e2f8b0952a",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Buzzed Lightbeer, RABBIT & Bed Bug Guru",
              "event_time": "Tuesday June 30 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-06-30T20:00:00",
              "event_date": "2026-06-30",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; Howdy Gals presents...; garage rock pop punk; post-punk; grunge shoegaze",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260630.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a76b39dc5420",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jun 30 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-06-30T19:00:00",
              "event_date": "2026-06-30",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690203?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3328c507c5b6",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-06-30T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-06-30T20:00:00",
              "event_date": "2026-06-30",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8717d172afba",
              "venue_id": "venue_the_riptide",
              "title": "O69 Bingo",
              "event_time": "2026-06-30T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-30T18:00:00",
              "event_date": "2026-06-30",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_300768615eef",
              "venue_id": "venue_the_riptide",
              "title": "Aaron Burnham & the Brushfires",
              "event_time": "2026-06-30T21:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-06-30T21:30:00",
              "event_date": "2026-06-30",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-06-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-01": {
          "date": "2026-07-01",
          "updated_at": "2026-05-18T15:54:50.413418Z",
          "events": [
            {
              "event_id": "evt_fdfbd3f49106",
              "venue_id": "venue_the_ritz",
              "title": "SKÁLD",
              "event_time": "2026-07-01T19:00:32-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-01T19:00:32",
              "event_date": "2026-07-01",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "SKÁLD\n\n \n\nWEDNESDAY JULY 1, 2026\nDoors: 7PM // All Ages // $25 Advance –  $30 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance –  $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/skld-the-ritz-tickets/14843673",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5fef14998ba4",
              "venue_id": "venue_cornerstone",
              "title": "Ultimate Doors (tribute)",
              "event_time": "Jul 1 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-07-01T19:00:00",
              "event_date": "2026-07-01",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Ultimate_Doors",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-07-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b4ddb2bb920",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Black Furies, Party Force, Class of '77",
              "event_time": "Wednesday July 1 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-01T20:00:00",
              "event_date": "2026-07-01",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; punk rock; skate punk thrash; punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260701.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d60961a7d350",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-01",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-01",
              "event_date": "2026-07-01",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-01",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c4e5356fdb6",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-01",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-01",
              "event_date": "2026-07-01",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-01",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4a6151838fe8",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-01",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-01",
              "event_date": "2026-07-01",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-01",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8db199d2209d",
              "venue_id": "venue_club_fox",
              "title": "The Pearl Alley Band",
              "event_time": "Wednesday July 1st",
              "venue_name": "Club Fox",
              "event_start": "2026-07-01",
              "event_date": "2026-07-01",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Wednesday July 1stClub Fox Blues WednesdaysTHE PEARL ALLEY BANDDoors 6:30PM /Show 7PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/copy-of-club-fox-blues-wednesdays-the-pearl-alley-band-tickets-1989058248766?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-05-18T15:37:52.977589Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-07-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f42ec8c1dfc8",
              "venue_id": "venue_levis_stadium",
              "title": "FIFA WORLD CUP | ROUND OF 32",
              "event_time": "Jul 01, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-07-01",
              "event_date": "2026-07-01",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Levi's Stadium hosts a high-stakes knockout match during the Round of 32 of the FIFA World Cup.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKET PACKAGE",
              "url": "https://levisstadium.com/event/fifa-world-cup-round-of-32/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-07-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4e7ed87dd55",
              "venue_id": "venue_the_riptide",
              "title": "Big Spike Jammers",
              "event_time": "2026-07-01T19:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-07-01T19:30:00",
              "event_date": "2026-07-01",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-07-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-02": {
          "date": "2026-07-02",
          "updated_at": "2026-05-18T15:54:50.415835Z",
          "events": [
            {
              "event_id": "evt_e9654933d7ed",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Atomic Tide, Cut-Rate Druggist",
              "event_time": "Thursday July 2 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-02T20:00:00",
              "event_date": "2026-07-02",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; garage punk surf rock; garage-rock riot-grrrl rock & roll; punk lo-fi pop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260702.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fde8652ce074",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-07-02T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-07-02T18:30:00",
              "event_date": "2026-07-02",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_db4809c8ad86",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-07-02T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-07-02T19:00:00",
              "event_date": "2026-07-02",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c7126d8297d1",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-07-02T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-07-02T20:00:00",
              "event_date": "2026-07-02",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0d7ddfe66e77",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Choral Evensong",
              "event_time": "2026-07-02T17:30:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-07-02T17:30:00",
              "event_date": "2026-07-02",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A mid-week service of sung prayer, psalms, and canticles in the cathedral's magnificent acoustic.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://gracecathedral.org/events/choral-evensong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_de8f7de1718e",
              "venue_id": "venue_bird_and_beckett",
              "title": "POETS! featured readers + open mic",
              "event_time": "2026-07-02T19:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-02T19:00:00",
              "event_date": "2026-07-02",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Jerry Ferraz and Michael Koch host a poetry reading on the 1st Thursday of each month.",
              "event_types": [
                "literary"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2010d0c3044d",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-02",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-02",
              "event_date": "2026-07-02",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-02",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_70ef3e4929db",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-02",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-02",
              "event_date": "2026-07-02",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-02",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3609c4ef934e",
              "venue_id": "venue_the_sound_room",
              "title": "Tabula Rasa",
              "event_time": "Thursday, July 2, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-02T19:30:00",
              "event_date": "2026-07-02",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Tabula Rasa -- ‘the idea that individuals are born without built-in mental content and that all knowledge is derived from experience and perception’ -- excites and invites listeners into their soundspace with music generated through connection and without pre-conceived notion. Their chemistry as collaborators shines through each members’ unique compositional voice, letting audiences in on a culmination of years of friendship and commitment to pushing the music to its highest point.\n\nTabula Rasa features Devin Daniels on alto saxophone, Joey Curreri on trumpet, Jonathan Paik on piano, Dario Bizio on bass, and Mark Valdes on drums. As individual artists, they are all active and emerging voices in both the New York and Los Angeles music scenes.\n\nAlto saxophonist Devin Daniels stands out as one of the most unique and versatile voices to emerge from LA’s rapidly evolving creative music landscape. Daniels has been invited to perform with bands led by Gerald Clayton, Miguel Atwood-Ferguson, John Beasley, Sam Barsh and Jamael Dean. In 2023, the great Herbie Hancock invited Devin to join him alongside jazz legends Ron Carter, Jack DeJohnette, Terence Blanchard, Chris Potter and LA-royalty, Kamasi Washington in a performance at the Hollywood Bowl honoring the late iconic saxophonist, Wayne Shorter. Following this performance, Hancock invited Daniels to join his band again, this time for a month-long US tour in the Spring of 2024.\n\nJoey Curreri is a jazz trumpeter and composer from Los Angeles, California currently based in New York City. Curreri’s unique artistic outlook stems from the foundations in the trumpet tradition learned from his mentors, jazz luminaries Brian Lynch and Ingrid Jensen, whose creative inspiration has led Joey to compose music that looks to go beyond the trumpet, generating excitement, harmony, and balance within the orchestration of the small ensemble. As a working musician in New York, Joey has performed at the marquis venues with his own band and music, as well as a side man.\n\nJonathan Paik is a Los Angeles-born, New York-based pianist and improvisor/composer. Hailed as an exciting new voice on the piano, he has recorded or performed with the likes of David Binney, Alfredo Colon, Joe Morris, and Charles Downs. Jonathan’s playing has been heard in many of NYC’s most important spaces for creative music, including The Jazz Gallery, Close Up, IBeam, and Downtown Music Gallery. In 2025, Jonathan made his bandleader debut at The Jazz Gallery, presenting his collaborative quartet Fugitive. Artistically, Jonathan seeks to push the possibilities of piano-playing while unconditionally uplifting the music and people around him.\n\nDario Bizio is a bassist, improviser, and singer-songwriter based in Los Angeles, CA. Having grown up in the diverse musical community of Los Angeles, he grew up loving and playing various genres on electric and upright bass. After graduating from USC in 2023 he began working as the touring bassist for Icelandic artist Laufey, with whom he took part in a world tour from 2023-2024. While continuing to perform and record as a freelancer in Los Angeles, Dario also writes and records music for voice and bass and has performed locally as a soloist.\n\nMark Valdes is a drummer, educator, and composer based in Los Angeles who has performed at venues and festivals across the world sharing the stage with world-class artists such as Tim Berne, Theo Bleckmann, John Daversa, Poncho Sanchez, Bob Mintzer, Barbara Morrison, Gordon Goodwin, Wayne Bergeron, and Vardan Ovsepian. Some notable venues/events include The Panama Jazz Festival, Jordan Hall, The Monterey Jazz Festival, The Walt Disney Concert Hall, The Central Avenue Jazz Festival, and The Oasis Music Festival in Palm Springs, CA.\n\nTickets at Tabula Rasa",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/tabula-rasa-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_54b4441ee482",
              "venue_id": "venue_yoshis",
              "title": "Kindred the Family Soul",
              "event_time": "THU 7.2",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-02T19:30:00",
              "event_date": "2026-07-02",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BELOVED NEO-SOUL DUO",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$49 - $89",
              "url": "https://yoshis.com/events/buy-tickets/kindred-the-family-soul-7/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_afb82f690b6a",
              "venue_id": "venue_ivy_room",
              "title": "The Applicators + Sympathy Flowers + Damage",
              "event_time": "Thursday Jul 2 8:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-02T20:00:00",
              "event_date": "2026-07-02",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A hard-hitting lineup of punk and rock music featuring The Applicators, Sympathy Flowers, and Damage Party.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182755",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_792b03d5eea9",
              "venue_id": "venue_yerba_buena_center",
              "title": "Zachary James Watkins & William Winant",
              "event_time": "Thursday, July 2, 2026, 7 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-07-02T19:00:00",
              "event_date": "2026-07-02",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Through deep attention and experimentation, the duo engage in an ongoing musical conversation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "Free with registration",
              "url": "https://ybca.org/event/zachary-james-watkins-william-winant-7-2-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-18T13:35:40.067183Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d7f2d2d2e8a",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-02",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-02",
              "event_date": "2026-07-02",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-02",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab94a14486c8",
              "venue_id": "venue_thee_stork_club",
              "title": "Moth Morgue",
              "event_time": "Jul 2 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-02T20:00:00",
              "event_date": "2026-07-02",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Moth Morgue, Vore, 555, Copeathetic",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12 8pm",
              "url": "http://www.foopee.com/by-band.2.html#Moth_Morgue",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ca270ba864b5",
              "venue_id": "venue_the_riptide",
              "title": "Punk Rock and Schlock Karaoke",
              "event_time": "2026-07-02T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-07-02T21:00:00",
              "event_date": "2026-07-02",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-07-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-03": {
          "date": "2026-07-03",
          "updated_at": "2026-05-18T16:00:41.689787Z",
          "events": [
            {
              "event_id": "evt_e03ded1a5131",
              "venue_id": "venue_1015_folsom",
              "title": "RODDY LIMA + WESKA",
              "event_time": "07/03/2026 10pm",
              "venue_name": "1015 Folsom",
              "event_start": "2026-07-03T22:00:00",
              "event_date": "2026-07-03",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Techno and house artists Roddy Lima and Weska team up for a night of driving rhythms and underground electronic sounds. This co-headlining event focuses on the darker, more industrial side of the dance floor.",
              "event_types": [
                "electronic",
                "dj_party"
              ],
              "price_info": "$20-32 | 21+",
              "url": "https://wl.eventim.us/event/roddy-lima/686375?afflky=1015Folsom&nts_trk=2ccfd37b-30ec-4add-9ee8-778a28281743",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-04-09T01:34:06.889197Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_32a5a8522f75",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Fri, Jul 3 - Sun, Jul 12, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-03",
              "event_date": "2026-07-03",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This atmospheric ballet production interprets Bram Stoker's classic gothic horror novel through dramatic choreography and dark, romantic themes.",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "More info",
              "url": "https://us.atgtickets.com/events/dracula-ballet/orpheum-theatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-13T23:19:21.549765Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-14T08:05:57.563635Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-15T20:49:04.225366Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_932ac11b8f48",
              "venue_id": "venue_cornerstone",
              "title": "Kelsy Karter & The Heroines",
              "event_time": "Jul 3 2026 7:30pm/8:30pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-07-03T19:30:00",
              "event_date": "2026-07-03",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $28.29 7:30pm/8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$28.29",
              "url": "http://www.foopee.com/by-band.1.html#Kelsy_Karter___The_Heroines",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18ee155e26df",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Vesuvians, This Train Don't Stop",
              "event_time": "Friday July 3 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-03T20:00:00",
              "event_date": "2026-07-03",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; Soul'n Reggae with ...; soul, reggae, funk; garage soul; reggae/rocksteady; spinning soul'n reggae...",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk",
                "latin_world"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260703.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_41b77c60e9b3",
              "venue_id": "venue_counterpulse",
              "title": "Block Fest: Tenderloin Arts Festival",
              "event_time": "2026-07-03T15:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-07-03T15:00:00",
              "event_date": "2026-07-03",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "A monthly neighborhood arts festival featuring free art-making activities and community engagement in the Tenderloin.",
              "event_types": [
                "dance",
                "experimental",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://counterpulse.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0ce27ed62f56",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight (July)",
              "event_time": "2026-07-03T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-07-03T10:30:00",
              "event_date": "2026-07-03",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "A monthly gathering for coffee and cookies featuring interviews and discussions with influential theater makers in the Bay Area.",
              "event_types": [
                "community",
                "theater"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/shotgun-spotlight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-08T10:31:58.984559Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-11T10:06:54.321733Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_07386c5108bf",
              "venue_id": "venue_ocean_ale_house",
              "title": "GamperDrums: Hop Sauce Live",
              "event_time": "2026-07-03T19:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-07-03T19:00:00",
              "event_date": "2026-07-03",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "First Friday funk and soul with Hop Sauce featuring GamperDrums and Andius Jent on bass.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.sfgate.com/events/?_evDiscoveryPath=/event/2399998-gamperdrums-hop-sauce-live-at-ocean-s-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5a5cac3f178b",
              "venue_id": "venue_pacific_film_archive",
              "title": "Le jour se lève",
              "event_time": "2026-07-03T19:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-07-03T19:00:00",
              "event_date": "2026-07-03",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Marcel Carné's poetic realist classic, part of the French Noir series.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/le-jour-se-leve",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d7d142c892d7",
              "venue_id": "venue_chase_center",
              "title": "California Classic Summer League",
              "event_time": "2026-07-03 2026-07-05",
              "venue_name": "Chase Center",
              "event_start": "2026-07-03",
              "event_date": "2026-07-03",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-07-03",
              "run_id": "run_85bf0bb6e795",
              "run_label": "California Classic Summer League, Jul 3 – Jul 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb8ffa4d7a30",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-07-03T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-03T19:30:00",
              "event_date": "2026-07-03",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "San Francisco’s longest-running neighborhood jazz party!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_321f4d6e37b9",
              "venue_id": "venue_the_fillmore",
              "title": "Jinjer",
              "event_time": "2026-07-03",
              "venue_name": "The Fillmore",
              "event_start": "2026-07-03T20:00:00",
              "event_date": "2026-07-03",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Ukrainian progressive metal band Jinjer delivers a powerful, high-intensity performance during their 2026 North American tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-16T10:33:35.578218Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c49307a90e09",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-03",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-03",
              "event_date": "2026-07-03",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-03",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_884cacacff62",
              "venue_id": "venue_f8",
              "title": "ZLATA",
              "event_time": "2026-07-03T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-07-03T21:00:00",
              "event_date": "2026-07-03",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "A collaborative event featuring ZLATA for a night of rave and bounce music.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/clubs/61234",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-05-17T12:18:13.132603Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2178a77b17d4",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-03",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-03",
              "event_date": "2026-07-03",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-03",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_84f00c3d3b6d",
              "venue_id": "venue_the_sound_room",
              "title": "Benny Amón & The New Orleans Pearls",
              "event_time": "Friday, July 3, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-03T19:30:00",
              "event_date": "2026-07-03",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Originally from Davis, California, Benny Amón came to New Orleans to work with young people in schools, but instead found himself in recording sessions, on tour, and playing festivals and other projects with some of New Orleans’ greatest traditional jazz musicians. His band Benny Amón’s New Orleans Pearls breathes new life into those classic, swingin’ jazz sounds of the Crescent City.\n\nHe’s traveled the world, performing in Japan as a cultural ambassador, at the International I Love Jazz Festival in Brazil, as well as across Europe and the States. Benny’s a regular at Preservation Hall, Jazz Fest, French Quarter Fest, Satchmo Summer Fest, and the Danny Barker Banjo & Guitar Festival.\n\nNow back in the Bay Area, he leads a swingin’ band bringing you New Orleans sounds.\n\nTickets at Benny Amón & The New Orleans Pearls",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/benny-amn-amp-the-new-orleans-pearls",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4680f4d005a7",
              "venue_id": "venue_the_independent",
              "title": "SF Rock Project Benefit",
              "event_time": "7.3 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-03T20:00:00",
              "event_date": "2026-07-03",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "FEATURING BAY AREA STUDENT & EDUCATOR BANDS! - with Delano Milano, Persephone, Swami 3",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/mac-gross-project-sf-rock-project-benefit-against-medical-advice-album-release/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d341a852704e",
              "venue_id": "venue_paramount_theatre",
              "title": "PURPLE RAIN",
              "event_time": "July 3, 2026 7:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-07-03T19:00:00",
              "event_date": "2026-07-03",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Rated R - not suitable for young audiences",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/purple-rain",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2015c8c07804",
              "venue_id": "venue_yoshis",
              "title": "Patron Latin Rhythms",
              "event_time": "FRI 7.3 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-03T20:00:00",
              "event_date": "2026-07-03",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "LATIN ROCK WITH A FUSION OF SALSA AND R&B",
              "event_types": [
                "live_music",
                "latin_world",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "$25 - $49",
              "url": "https://yoshis.com/events/buy-tickets/patron-latin-rhythms-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2852b0ebaa99",
              "venue_id": "venue_ivy_room",
              "title": "Mooska + M3 (Musashi Trio)",
              "event_time": "Friday Jul 3 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-03T19:00:00",
              "event_date": "2026-07-03",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - Celebrate Bay Area Musician MOOSE'S 57TH Birthday Jamboree",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/181246",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0e83fd12c0e",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-03",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-03",
              "event_date": "2026-07-03",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-03",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ebd155cbfee4",
              "venue_id": "venue_the_fillmore",
              "title": "Jinjer, Entheos, Crystal Lake",
              "event_time": "Jul 3 2026 6pm/7pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-07-03T18:00:00",
              "event_date": "2026-07-03",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 6pm/7pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jinjer",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19405ee56dbe",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Frolic Album Release Show",
              "event_time": "Jul 3 7pm/7:30pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-07-03T19:30:00",
              "event_date": "2026-07-03",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "Sanctuary, Hemotoxin $15/$20",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.1.html#Frolic",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_977446f411db",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Conjunto Primavera",
              "event_time": "July 3, 2026",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-07-03",
              "event_date": "2026-07-03",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Conjunto Primavera – Celebrando 48 Primaveras Contigo",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "GET TICKETS",
              "url": "https://foxrwc.showare.com/eventperformances.asp?evt=410",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96185ed9502d",
              "venue_id": "venue_the_ritz",
              "title": "Bop to the Top",
              "event_time": "2026-07-03T21:00:01-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-03T21:00:01",
              "event_date": "2026-07-03",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "BOP TO THE TOP\n\n \n\nFRIDAY JULY 3, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20 Tier 1 – $25 Tier 2 – $30 Tier 3",
              "url": "https://www.ticketweb.com/event/bop-to-the-top-the-ritz-tickets/14894733",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-18T15:41:10.895193Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77f70fae8435",
              "venue_id": "venue_the_riptide",
              "title": "Skankin' with DJ Sep",
              "event_time": "2026-07-03T20:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-07-03T20:00:00",
              "event_date": "2026-07-03",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-07-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-04": {
          "date": "2026-07-04",
          "updated_at": "2026-05-18T15:58:43.832963Z",
          "events": [
            {
              "event_id": "evt_c3d1c2851491",
              "venue_id": "venue_halcyon",
              "title": "Pan-Pot, Dean Samaras, Just Jovani",
              "event_time": "07/4/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-07-04T22:00:00",
              "event_date": "2026-07-04",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Renowned techno duo Pan-Pot brings their masterfully crafted underground sound and technical precision to Halcyon for an unforgettable performance.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$14.06",
              "url": "https://link.dice.fm/r65bfb1cff56?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-04-28T12:03:17.867272Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a45462dec329",
              "venue_id": "venue_the_midway",
              "title": "deadmau5, Nero, Cristoph b2b Rebuke",
              "event_time": "07/04/2026 3pm-10pm",
              "venue_name": "The Midway",
              "event_start": "2026-07-04T15:00:00",
              "event_date": "2026-07-04",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "Celebrate Independence Day with a special block party featuring Deadmau5.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$68-80 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/illum-block-party-2026-w-deadmau5-nero-184332",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-03T12:45:01.445843Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-04T11:37:16.705483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_midway|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c7c75efe9f75",
              "venue_id": "venue_dna_lounge",
              "title": "After Life: Rebellion",
              "event_time": "07/04/2026 9:30pm-2am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-07-04T21:30:00",
              "event_date": "2026-07-04",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Live Hybrid Set with 2 Rooms of Darkwave, Dark Techno, Industrial, EBM, Post-Punk.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 pre / $22 | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/07-04d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-09T12:30:53.673583Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-05-11T12:21:42.465906Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0c3170e466c",
              "venue_id": "venue_the_ritz",
              "title": "Turnover, Narrow Head & She’s Green",
              "event_time": "2026-07-04T20:00:58-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-04T20:00:58",
              "event_date": "2026-07-04",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Indie rock favorites Turnover headline an evening of melodic and shoegaze-influenced music with support from Narrow Head.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34.50 Advance – $39.50 Day-of-Show",
              "url": "https://www.ticketweb.com/event/turnover-the-ritz-tickets/14865653",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4d7dae4e1b7",
              "venue_id": "venue_madarae",
              "title": "SINEGO (Timbales DJ set) at MadaRae",
              "event_time": "2026-07-04T21:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-07-04T21:00:00",
              "event_date": "2026-07-04",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "A unique performance by Sinego featuring a live Timbales DJ set, blending Latin influences with electronic beats.",
              "event_types": [],
              "price_info": "Free before 11pm with RSVP",
              "url": "https://www.eventbrite.com/e/sinego-timbales-dj-set-at-madarae-nightclub-tickets-884899473497",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-13T13:11:14.181208Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_687bcaa216e0",
              "venue_id": "venue_oakland_secret",
              "title": "Quartz: Queer Arts Market",
              "event_time": "2026-07-04",
              "venue_name": "Oakland Secret",
              "event_start": "2026-07-04",
              "event_date": "2026-07-04",
              "venue_address": "577 5th St, Oakland, CA 94607",
              "description": "A monthly market featuring queer artists and makers. This recurring event takes place every first Saturday of the month.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Typically affordable or sliding scale",
              "url": "https://www.oaklandsecret.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_secret",
                  "source_name": "Oakland Secret",
                  "fetched_at": "2026-05-15T11:36:54.382509Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oakland_secret|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6f9490bc5437",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Golden Gate Park Band: Happy 250th America!",
              "event_time": "2026-07-04T16:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-07-04T16:30:00",
              "event_date": "2026-07-04",
              "venue_address": "San Francisco, CA 94118",
              "description": "A special Independence Day performance by the Golden Gate Park Band celebrating America's 250th anniversary.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://sfrecpark.org/1570/Golden-Gate-Bandshell-Concerts",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-15T15:15:23.116577Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91d86e31dd66",
              "venue_id": "venue_chase_center",
              "title": "California Classic Summer League",
              "event_time": "2026-07-04 2026-07-05",
              "venue_name": "Chase Center",
              "event_start": "2026-07-04",
              "event_date": "2026-07-04",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-07-04",
              "run_id": "run_85bf0bb6e795",
              "run_label": "California Classic Summer League, Jul 3 – Jul 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_484e8c2a7194",
              "venue_id": "venue_public_works",
              "title": "Todd Terje (DJ Set)",
              "event_time": "07/04/2026 9pm-3am",
              "venue_name": "Public Works",
              "event_start": "2026-07-04T21:00:00",
              "event_date": "2026-07-04",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A special DJ set by Todd Terje, presented by Dj Dials.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$49-59 | 21+",
              "url": "https://www.tixr.com/groups/publicsf/events/todd-terje-dj-set-at-public-works-presented-by-dj-dials-188503",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-05-17T14:27:38.670134Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f1ef8f1367eb",
              "venue_id": "venue_the_setup",
              "title": "The Setup Comedy at The Lost Church",
              "event_time": "2026-07-04T20:00:00",
              "venue_name": "The Setup",
              "event_start": "2026-07-04T20:00:00",
              "event_date": "2026-07-04",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "A special holiday run of underground comedy at the stunning theater of The Lost Church.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$17.85 - $35.00",
              "url": "https://thelostchurch.org/san-francisco/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-05-16T01:44:41.479756Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_setup|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e893d0d2093a",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-07-04T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-04T19:30:00",
              "event_date": "2026-07-04",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97d4696bbe6d",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-04",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-04",
              "event_date": "2026-07-04",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-04",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7bfd28bed08a",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-04",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-04",
              "event_date": "2026-07-04",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-04",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7115b0aa0268",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Summer 1969: Soundtrack of a Generation",
              "event_time": "Sat Jul 4, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-07-04",
              "event_date": "2026-07-04",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "This event celebrates the iconic music of 1969, featuring a nostalgic lineup that pays tribute to the soundtrack of a generation.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/summer-1969-the-soundtrack-of-a-mountain-view-california-07-04-2026/event/1C0064A2A6A9BD88",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_00cb42d0b398",
              "venue_id": "venue_belle_cora",
              "title": "HIPSTERIA with “Tender” Tim",
              "event_time": "2026-07-04T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-07-04T18:00:00",
              "event_date": "2026-07-04",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Live jazz performance by HIPSTERIA featuring “Tender” Tim. Enjoy cool arrangements of modern pop, rock, blues, and R&B with no cover charge in a cozy outdoor setting.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://hipsteriac.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d9d15bdd457d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-04",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-04",
              "event_date": "2026-07-04",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-04",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c3ee9407e96",
              "venue_id": "venue_the_riptide",
              "title": "90s Dance Party",
              "event_time": "2026-07-04T21:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-07-04T21:00:00",
              "event_date": "2026-07-04",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8d74d88093f0",
              "venue_id": "venue_f8",
              "title": "Leah York: Noche de Perreo",
              "event_time": "07/04/2026 9pm-3am",
              "venue_name": "F8",
              "event_start": "2026-07-04T21:00:00",
              "event_date": "2026-07-04",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "latincore, hard bounce, breaks",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5.50 pre | 21+",
              "url": "https://ra.co/events/2433025",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-07-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-05": {
          "date": "2026-07-05",
          "updated_at": "2026-05-18T15:54:50.427488Z",
          "events": [
            {
              "event_id": "evt_9d0242770496",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Destroyer, Modern Monsters, Dümsurf",
              "event_time": "Sunday July 5 2026 3:00PM doors -- music at 4:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-05T15:00:00",
              "event_date": "2026-07-05",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; Lommori Productions presents...\nChristine and Dave's Birthday Bash; featuring...; not the Canadian indie pop band with Dan Bejar; hard rock · glam metal; heavy rock; Thrash",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 $25.31 in advance [20 face value + 5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260705.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fdac33c8ff03",
              "venue_id": "venue_yerba_buena_center",
              "title": "San Francisco Mime Troupe",
              "event_time": "2026-07-05T14:00:00",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-07-05T14:00:00",
              "event_date": "2026-07-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A part of the Yerba Buena Gardens Festival, the San Francisco Mime Troupe performs its latest thought-provoking and topical musical production. Pre-show music begins at 1:30 PM.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://ybgfestival.org/event/san-francisco-mime-troupe-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_francisco_mime_troupe",
                  "source_name": "San Francisco Mime Troupe",
                  "fetched_at": "2026-05-15T16:35:36.303111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_31cbbea50fc2",
              "venue_id": "venue_the_fillmore",
              "title": "Mission Delirium at Fillmore Jazz Festival 2026",
              "event_time": "2026-07-05T16:00:00",
              "venue_name": "The Fillmore",
              "event_start": "2026-07-05T16:00:00",
              "event_date": "2026-07-05",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "A high-energy street celebration of global brass and percussion as part of the historic Fillmore Jazz Festival.",
              "event_types": [
                "live_music",
                "latin_world",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://www.fillmorejazzfest.com/lineup",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_mission_delirium",
                  "source_name": "Mission Delirium",
                  "fetched_at": "2026-05-15T17:16:05.957480Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_fillmore|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d99581db1f11",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Sunday Organ Recital Series",
              "event_time": "2026-07-05T15:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-07-05T15:00:00",
              "event_date": "2026-07-05",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "The monthly organ recital series continues, featuring world-class performers on the cathedral's historic Aeolian-Skinner organ.",
              "event_types": [],
              "price_info": "Free (Suggested donation $10)",
              "url": "https://gracecathedral.org/series/organ-recital-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_73245049fc05",
              "venue_id": "venue_chase_center",
              "title": "California Classic Summer League",
              "event_time": "2026-07-05 2026-07-05",
              "venue_name": "Chase Center",
              "event_start": "2026-07-05",
              "event_date": "2026-07-05",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-07-05",
              "run_id": "run_85bf0bb6e795",
              "run_label": "California Classic Summer League, Jul 3 – Jul 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_350c3e6e76e4",
              "venue_id": "venue_bird_and_beckett",
              "title": "Next-Gen Jam",
              "event_time": "2026-07-05T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-05T17:00:00",
              "event_date": "2026-07-05",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Featuring a set by a local youth ensemble followed by a student-centric jam session on the 1st Sunday of every month.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02f130b7a4dc",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-05",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-05",
              "event_date": "2026-07-05",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-05",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ebe511ab5f7",
              "venue_id": "venue_yoshis",
              "title": "Blues Explosion feat. Miss Faye Carol",
              "event_time": "SUN 7.5 7:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-05T19:00:00",
              "event_date": "2026-07-05",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "PRESENTED BY JAZZLINE INSTITUTE",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$42 - $69",
              "url": "https://yoshis.com/events/buy-tickets/all-star-blues-revue-feat-faye-carol-fillmore-slim-alvon-johnson-lady-bianca/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5d3ece885c77",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Jul 05, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-05",
              "event_date": "2026-07-05",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This haunting ballet production brings Bram Stoker's classic vampire tale to life through dramatic choreography and gothic aesthetics.",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7963119",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eead9dc57c0d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-05",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-05",
              "event_date": "2026-07-05",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-05",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5f32cb4e492",
              "venue_id": "venue_stern_grove",
              "title": "Major Lazer",
              "event_time": "Jul 5 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-07-05T14:00:00",
              "event_date": "2026-07-05",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Major Lazer, Fijiana, dj Bad Juuju, dj Patrick King Most",
              "event_types": [
                "electronic",
                "live_music",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Major_Lazer",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06004aae46c7",
              "venue_id": "venue_thee_stork_club",
              "title": "Lady Starbeast",
              "event_time": "Jul 5 2026 6pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-05T18:00:00",
              "event_date": "2026-07-05",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Lady Starbeast, Mikey And The Doom, Dossey",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 6pm",
              "url": "http://www.foopee.com/by-band.2.html#Lady_Starbeast",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a0ed43b60c08",
              "venue_id": "venue_the_riptide",
              "title": "The Tide is High",
              "event_time": "2026-07-05T21:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-07-05T21:30:00",
              "event_date": "2026-07-05",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-07-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-06": {
          "date": "2026-07-06",
          "updated_at": "2026-05-18T15:54:50.430330Z",
          "events": [
            {
              "event_id": "evt_d50a99d50702",
              "venue_id": "venue_chase_center",
              "title": "California Classic Summer League",
              "event_time": "2026-07-06 2026-07-05",
              "venue_name": "Chase Center",
              "event_start": "2026-07-06",
              "event_date": "2026-07-06",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-05-16T00:24:44.588543Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_chase_center|2026-07-06",
              "run_id": "run_85bf0bb6e795",
              "run_label": "California Classic Summer League, Jul 3 – Jul 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_762fc4da1ed3",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-06",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-06",
              "event_date": "2026-07-06",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-06",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_782dc305c4b2",
              "venue_id": "venue_yoshis",
              "title": "Music Monday: Ryan Allay & Jordyn Diew",
              "event_time": "MON 7.6 8:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-06T20:00:00",
              "event_date": "2026-07-06",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "ARTISTS KNOWN FOR THEIR SOULFUL SONGWRITING AND CAPTIVATING LIVE PERFORMANCES",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$30 - $40",
              "url": "https://yoshis.com/events/buy-tickets/music-monday-indie-night-feat-ryan-allay-and-jordyn-diew/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df5b774d6a81",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Jul 6 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-06T19:00:00",
              "event_date": "2026-07-06",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690179?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ecb653324cc0",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-07-06T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-07-06T19:00:00",
              "event_date": "2026-07-06",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-07-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_23abc8a4ea93",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-06",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-06",
              "event_date": "2026-07-06",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-06",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_752698a03f88",
              "venue_id": "venue_elis_mile_high",
              "title": "BLUE MONDAYS",
              "event_time": "Mon, Jul 06, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-07-06",
              "event_date": "2026-07-06",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "This recurring weekly event features live blues music and community at Eli's Mile High.",
              "event_types": [
                "live_music"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/blue-mondays-2026-07-06-19-00",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-05-18T15:40:04.268114Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-07-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_547ebbfd4718",
              "venue_id": "venue_the_riptide",
              "title": "O69 Bingo",
              "event_time": "2026-07-06T18:00:00",
              "venue_name": "The Riptide",
              "event_start": "2026-07-06T18:00:00",
              "event_date": "2026-07-06",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-07-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7c238745c6ff",
              "venue_id": "venue_the_riptide",
              "title": "Josh Brough Band",
              "event_time": "2026-07-06T21:30:00",
              "venue_name": "The Riptide",
              "event_start": "2026-07-06T21:30:00",
              "event_date": "2026-07-06",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-05-18T15:54:41.121021Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_riptide|2026-07-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-07": {
          "date": "2026-07-07",
          "updated_at": "2026-05-18T14:46:03.437586Z",
          "events": [
            {
              "event_id": "evt_5c3f90118571",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Marcus King Band, Penelope Road",
              "event_time": "July 7, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-07-07T20:00:00",
              "event_date": "2026-07-07",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Darling Blue Tour Pt. 2 - Penelope Road",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.2.html#Marcus_King_Band",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cabae0b0730b",
              "venue_id": "venue_castro_theater",
              "title": "KURT VILE AND THE VIOLATORS",
              "event_time": "July 7, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-07-07T20:00:00",
              "event_date": "2026-07-07",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Jul 7 Kurt Vile & The Violators, Ryan Davis & The Roadhouse Band a/a $58+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/kurt-vile-260707",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-10T23:36:22.222293Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_833c4f97ca82",
              "venue_id": "venue_oakland_secret",
              "title": "Tomu DJ with Zah",
              "event_time": "2026-07-07",
              "venue_name": "Oakland Secret",
              "event_start": "2026-07-07",
              "event_date": "2026-07-07",
              "venue_address": "577 5th St, Oakland, CA 94607",
              "description": "DJ set by West Coast producer Tomu DJ and Zah at Oakland Secret.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.tomudj.com/performances",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_secret",
                  "source_name": "Oakland Secret",
                  "fetched_at": "2026-05-15T11:36:54.382509Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oakland_secret|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9cf1c3802ab1",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-07-07T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-07-07T18:30:00",
              "event_date": "2026-07-07",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2dd797f3fc89",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-07",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-07",
              "event_date": "2026-07-07",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-07",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c87f12e301b9",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-07",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-07",
              "event_date": "2026-07-07",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-07",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_213ae599556c",
              "venue_id": "venue_the_chapel",
              "title": "Dylan LeBlanc",
              "event_time": "Tue Jul 7 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-07-07T20:00:00",
              "event_date": "2026-07-07",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Alternative",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$22.00-$25.00",
              "url": "https://wl.seetickets.us/event/dylan-leblanc/691420?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-18T10:24:42.800944Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_976852e44052",
              "venue_id": "venue_gray_area",
              "title": "Expressive Systems: Poetic Mini-Games",
              "event_time": "07/07",
              "venue_name": "Gray Area",
              "event_start": "2026-07-07",
              "event_date": "2026-07-07",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Online Intensive Course\nExpressive Systems: Making Poetic Mini-Games in PICO-8",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/online-intensive-course-expressive-systems-making-poetic-mini-games-in-pico-8/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ef797958f2b",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jul 7 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-07T19:00:00",
              "event_date": "2026-07-07",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690204?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e9368d477fad",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-07-07T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-07-07T20:00:00",
              "event_date": "2026-07-07",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_45d7ad339eb7",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Jul 07, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-07",
              "event_date": "2026-07-07",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This haunting ballet production brings Bram Stoker's classic vampire tale to life through dramatic choreography and gothic aesthetics.",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7963120",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-08": {
          "date": "2026-07-08",
          "updated_at": "2026-05-18T14:49:06.928887Z",
          "events": [
            {
              "event_id": "evt_78864a372dfe",
              "venue_id": "venue_the_independent",
              "title": "HIGH FADE",
              "event_time": "7.8 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-08T20:00:00",
              "event_date": "2026-07-08",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "The Scottish trio brings their infectious, high-octane funk and disco grooves to the stage for an energetic live show.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/high-fade/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a0620cfff57",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Chris Stapleton's All-American Road Show",
              "event_time": "2026-07-08T18:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-07-08T18:00:00",
              "event_date": "2026-07-08",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Country music powerhouse Chris Stapleton brings his acclaimed All-American Road Show to Mountain View for an evening of soulful vocals and guitar-driven hits. The performance highlights Stapleton's blend of country, soul, and rock music.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/chris-stapletons-allamerican-road-show-mountain-view-california-07-08-2026/event/1C006392A11C9AE4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-18T08:24:47.395861Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-18T09:17:31.621254Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88adfafe99a5",
              "venue_id": "venue_castro_theater",
              "title": "LUCERO",
              "event_time": "July 8, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-07-08T20:00:00",
              "event_date": "2026-07-08",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "$41+ 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/lucero-260708",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-18T08:42:12.930959Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34c34a39fb44",
              "venue_id": "venue_ivy_room",
              "title": "Anna Moss & Bart Budwig",
              "event_time": "Wednesday Jul 8 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-08T19:00:00",
              "event_date": "2026-07-08",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Anna Moss of Handmade Moments joins folk artist Bart Budwig for an evening of soulful Americana and storytelling.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/179744",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f11b9ec3acef",
              "venue_id": "venue_great_american_music_hall",
              "title": "Wolfmother",
              "event_time": "Jul 8 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-07-08T19:00:00",
              "event_date": "2026-07-08",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "WOLFMOTHER – 20th Anniversary Tour with Love Gang.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$45/$50",
              "url": "http://www.foopee.com/by-band.3.html#Wolfmother",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c770ae847393",
              "venue_id": "venue_ocean_ale_house",
              "title": "The Laugh Boat: Local Brews & Free Comedy",
              "event_time": "2026-07-08T19:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-07-08T19:00:00",
              "event_date": "2026-07-08",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Monthly comedy showcase every second Wednesday featuring local and touring stand-up comedians.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://sf.funcheap.com/laugh-boat-local-brews-free-comedy-sf/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4b034c80a89b",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Eki Shola: Dare To Love Free",
              "event_time": "2026-07-08T19:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-07-08T19:00:00",
              "event_date": "2026-07-08",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "An intimate listening session where Eki Shola shares a 40-track journey with live piano and vocal accompaniment.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.ekishola.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2d3314d79998",
              "venue_id": "venue_bayfront_theater",
              "title": "Intro to Improv with Sage Simms",
              "event_time": "2026-07-08T19:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-07-08T19:00:00",
              "event_date": "2026-07-08",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A welcoming introductory class at the BATS Bayfront Theatre to experience the magic of improv.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.eventbrite.com/e/intro-to-improv-with-sage-simms-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_94fac60a22f9",
              "venue_id": "venue_lucie_stern_pa",
              "title": "The Employee Dharma Handbook",
              "event_time": "2026-07-08",
              "venue_name": "Lucie Stern CC",
              "event_start": "2026-07-08",
              "event_date": "2026-07-08",
              "venue_address": "1305 Middlefield Road, Palo Alto, CA 94301",
              "description": "World Premiere by Geetha Reddy. This play follows a Midwestern American engineer of Indian descent as she navigates her career, identity, and the complexities of the modern workplace.",
              "event_types": [
                "theater"
              ],
              "price_info": "Subscriptions $96 - $512; Single tickets available soon",
              "url": "https://theatreworks.org/the-employee-dharma-handbook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-05-15T21:43:52.770776Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_lucie_stern_pa|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0f0e12f45a01",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-08",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-08",
              "event_date": "2026-07-08",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-08",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_180a346d1132",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-08",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-08",
              "event_date": "2026-07-08",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-08",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1e105c579604",
              "venue_id": "venue_gray_area",
              "title": "Hybrid Live Coding",
              "event_time": "07/08",
              "venue_name": "Gray Area",
              "event_start": "2026-07-08",
              "event_date": "2026-07-08",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Online Intensive Course\nHybrid Live Coding: Designing Systems for Audiovisual Performance",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/online-intensive-course-hybrid-live-coding-designing-systems-for-audiovisual-performance/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1847f78adb7",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Jul 08, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-08",
              "event_date": "2026-07-08",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This haunting ballet production brings Bram Stoker's classic vampire tale to life through dramatic choreography and gothic aesthetics.",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7963121",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a45db374baad",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-08",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-08",
              "event_date": "2026-07-08",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-08",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-09": {
          "date": "2026-07-09",
          "updated_at": "2026-05-18T15:46:25.273788Z",
          "events": [
            {
              "event_id": "evt_47ac242ee323",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Ted Leo and the Pharmacists / Rip Room",
              "event_time": "Thursday July 9 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-09T19:00:00",
              "event_date": "2026-07-09",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jul 9 Ted Leo And The Pharmacists, Rip Room a/a $35/$40 $90 3 day pass) 7pm/8pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35/$40",
              "url": "http://www.bottomofthehill.com/20260709.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ef735a8e098",
              "venue_id": "venue_cornerstone",
              "title": "Stella Prince",
              "event_time": "Jul 9 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-07-09T19:00:00",
              "event_date": "2026-07-09",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $15/$18 7pm/8pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$15/$18",
              "url": "http://www.foopee.com/by-band.3.html#Stella_Prince",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ec0fcd1d5bf",
              "venue_id": "venue_hotel_mac",
              "title": "AOPR Meetup at The Mac",
              "event_time": "2026-07-09T16:00:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-07-09T16:00:00",
              "event_date": "2026-07-09",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "A monthly gathering of the Arts of Point Richmond (AOPR) members and guests in the Hotel Mac piano bar.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.artsofpointrichmond.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_54ec67afd209",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-07-09T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-07-09T18:30:00",
              "event_date": "2026-07-09",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be119737ef98",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-07-09T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-07-09T19:00:00",
              "event_date": "2026-07-09",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3e9fb6b25bbe",
              "venue_id": "venue_ocean_ale_house",
              "title": "Monthly Blues Jam",
              "event_time": "2026-07-09T18:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-07-09T18:00:00",
              "event_date": "2026-07-09",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Monthly blues jam session featuring house band Up Jumped the Devil. Open to guest performers.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.amityrosemusic.com/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fe7f62cdb636",
              "venue_id": "venue_ocean_ale_house",
              "title": "Trivia at Ocean Ale House",
              "event_time": "2026-07-09T20:00:00",
              "venue_name": "Ocean Ale House",
              "event_start": "2026-07-09T20:00:00",
              "event_date": "2026-07-09",
              "venue_address": "1314 Ocean Ave, San Francisco, CA 94112",
              "description": "Weekly trivia night at Ocean Ale House. Test your knowledge while enjoying local brews and pub food.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://happeningsf.now/events/trivia-at-ocean-ale-house",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ocean_ale_house",
                  "source_name": "Ocean Ale House",
                  "fetched_at": "2026-05-15T14:44:07.971066Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ocean_ale_house|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_49dbb5f76491",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-09",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-09",
              "event_date": "2026-07-09",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-09",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d5e4dcaacc98",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-09",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-09",
              "event_date": "2026-07-09",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-09",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_372b938588d8",
              "venue_id": "venue_the_sound_room",
              "title": "Julio Lemos Quartet",
              "event_time": "Thursday, July 9, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-09T19:30:00",
              "event_date": "2026-07-09",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Experience the rich textures of Brazilian instrumental music with Julio Lemos, a virtuoso of the 7-string guitar whose performances blend deep tradition with inventive expression.\n\nDrawing from the classical precision of Villa-Lobos and Radamés Gnattali and the rhythmic soul of choro and samba, Julio’s music is rooted in the legacy of masters like Dino 7 Cordas, Rafael Rabelo, and Baden Powell. His sound is at once grounded and exploratory—effortlessly moving between intricate counterpoint, spontaneous improvisation, and the driving pulse of samba-jazz.\n\nFeaturing Brian Moran - cavaquinho/mandolin, Ami Molinelli - percussion, Harvey Wainapel -reeds\n\nTickets at Julio Lemos Quartet",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/julio-lemos-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2556c4245eb5",
              "venue_id": "venue_mountain_winery",
              "title": "Bobby Brown",
              "event_time": "Jul 9, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-09T19:30:00",
              "event_date": "2026-07-09",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1365924",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_637d0ee32521",
              "venue_id": "venue_yoshis",
              "title": "Keak da Sneak & 3X Krazy",
              "event_time": "THU 7.9 8:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-09T20:00:00",
              "event_date": "2026-07-09",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "CLASSIC OAKLAND HIP HOP CULTURE WITH FRESH NEW VIBES",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$40 - $79",
              "url": "https://yoshis.com/events/buy-tickets/keak-da-sneak-feat-3x-krazy-agerman-b-a-splash-bakery-solao-and-sonnie-brown/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_59ff4838cd1f",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-09",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-09T19:30:00",
              "event_date": "2026-07-09",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-09",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df123ef1244a",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Jul 09, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-09",
              "event_date": "2026-07-09",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This haunting ballet production brings Bram Stoker's classic vampire tale to life through dramatic choreography and gothic aesthetics.",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7963122",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_be7db3a35739",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-09",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-09",
              "event_date": "2026-07-09",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-09",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6555dbbb922a",
              "venue_id": "venue_sf_eagle",
              "title": "Janky Band, Rinds, Watch This Drive, Psychic Hands",
              "event_time": "Jul 9 2026 8:30pm",
              "venue_name": "SF Eagle",
              "event_start": "2026-07-09T20:30:00",
              "event_date": "2026-07-09",
              "venue_address": "398 12th St, San Francisco, CA 94103",
              "description": "21+ $10 8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.1.html#Janky_Band",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_eagle|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_74b09a7f70c4",
              "venue_id": "venue_mountain_winery",
              "title": "Bobby Brown",
              "event_time": "Jul 9 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-09T17:30:00",
              "event_date": "2026-07-09",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The R&B legend and New Edition member performs his solo chart-toppers and classic dance tracks. His show is a high-energy celebration of New Jack Swing and contemporary R&B history.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#bobby_Brown",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8afd198ddc66",
              "venue_id": "venue_thee_stork_club",
              "title": "Cave Clove",
              "event_time": "Jul 9 2026 7pm/8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-09T19:00:00",
              "event_date": "2026-07-09",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Cave Clove, Hot Brother, Rowdy Boys",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12 7pm/8pm",
              "url": "http://www.foopee.com/by-band.0.html#Cave_Clove",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2c46642c5732",
              "venue_id": "venue_the_ritz",
              "title": "Atomic Dance Night",
              "event_time": "2026-07-09T21:00:26-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-09T21:00:26",
              "event_date": "2026-07-09",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "ATOMIC:\nNEW/DARKWAVE, SYNTH-POP, POST-PUNK DANCE NIGHT\nwith DJ BASURA\nPLASTIC DISEASE\nTHURSDAY JULY 9, 2025",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5",
              "url": "https://www.ticketweb.com/event/atomic-newdarkwave-synth-pop-post-the-ritz-tickets/14918923",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-18T15:41:10.895193Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_861053a9db54",
              "venue_id": "venue_1015_folsom",
              "title": "BUSHBABY",
              "event_time": "July 9, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-07-09",
              "event_date": "2026-07-09",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/bush-baby/689775?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-07-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-10": {
          "date": "2026-07-10",
          "updated_at": "2026-05-18T16:16:06.699374Z",
          "events": [
            {
              "event_id": "evt_f13d4e225322",
              "venue_id": "venue_the_independent",
              "title": "YOUNG FRANCO",
              "event_time": "7/10/2026 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-10T21:00:00",
              "event_date": "2026-07-10",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Australian producer and DJ Young Franco brings his infectious house beats and funky electronic rhythms to the dance floor. The set promises a high-energy atmosphere filled with groovy basslines and bright melodies.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/young-franco/",
              "tags": [],
              "sources": [
                {
                  "source_name": "The Independent",
                  "fetched_at": "2026-03-20T11:56:34.744330Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_the_independent"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a5f4c6f9e3e2",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Ted Leo and the Pharmacists / Pork Belly",
              "event_time": "Friday July 10 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-10T19:00:00",
              "event_date": "2026-07-10",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jul 10 Ted Leo And The Pharmacists, Pork Belly a/a $35/$40 $90 3 day pass) 7pm/8pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35/$40",
              "url": "http://www.bottomofthehill.com/20260710.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d1e7af04f403",
              "venue_id": "venue_924_gilman",
              "title": "Schlong, Party Force & More",
              "event_time": "2026-07-10T19:00:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-07-10T19:00:00",
              "event_date": "2026-07-10",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Jul 10 Schlong, Party Force, Bobby Joe Ebola And The Children MacNuggits, Contraptions, Flamango Bayat a/a $15/$20 7pm/8pm $",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$7 - $15",
              "url": "http://www.foopee.com/by-band.3.html#Schlong",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T11:11:30.532030Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-04-11T11:24:31.428588Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_13787976f4a5",
              "venue_id": "venue_the_ritz",
              "title": "YOUNG DUBLINERS",
              "event_time": "2026-07-10T19:00:56-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-10T19:00:56",
              "event_date": "2026-07-10",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "YOUNG DUBLINERS\nOCKHAM’S RAZOR\n\n \n\nFRIDAY JULY 10, 2026\nDoors: 7PM // All Ages // $30 Advance –  $35 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 Advance –  $35 Day-of-Show",
              "url": "https://www.ticketweb.com/event/young-dubliners-the-ritz-tickets/14796233",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb6bb9eeec12",
              "venue_id": "venue_chase_center",
              "title": "Olivia Dean: The Art Of Loving",
              "event_time": "2026-07-10T20:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-07-10T20:00:00",
              "event_date": "2026-07-10",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Olivia Dean performs at Chase Center as part of her Art Of Loving Live tour.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Tickets from $367",
              "url": "https://www.chasecenter.com/events/olivia-dean-20260710",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9da88da3ea93",
              "venue_id": "venue_the_chapel",
              "title": "EMM",
              "event_time": "Jul 10 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-07-10T20:00:00",
              "event_date": "2026-07-10",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$30.93 ($95.26+ vip) 8pm/9pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "$30.93 ($95.26+ vip)",
              "url": "http://www.foopee.com/by-band.1.html#EMM",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_438128d49412",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-10",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-10",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57f7e16a5a83",
              "venue_id": "venue_montgomery_theater",
              "title": "Disney's Newsies – CMT Mainstage",
              "event_time": "2026-07-10T19:00:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-07-10T19:00:00",
              "event_date": "2026-07-10",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "Children's Musical Theater San Jose presents the Broadway smash hit Disney's Newsies, inspired by the real-life Newsboys Strike of 1899.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/disneys-newsies-cmt/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ce4b4cc22378",
              "venue_id": "venue_bird_and_beckett",
              "title": "Eric & the In Crowd",
              "event_time": "2026-07-10T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-10T19:30:00",
              "event_date": "2026-07-10",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Led by pianist/vocalist Eric Shifrin on 2nd Fridays in odd-numbered months.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_418be731dd9a",
              "venue_id": "venue_cafe_borrone",
              "title": "Clint Baker & The All Stars",
              "event_time": "2026-07-10T18:00:00",
              "venue_name": "Cafe Borrone",
              "event_start": "2026-07-10T18:00:00",
              "event_date": "2026-07-10",
              "venue_address": "1010 El Camino Real, Menlo Park, CA 94025",
              "description": "Live music performance",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.cafeborrone.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_borrone",
                  "source_name": "Cafe Borrone",
                  "fetched_at": "2026-05-16T10:32:43.331718Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_cafe_borrone|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d8618a5c5035",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-10",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-10",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e409ef01c49",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-10",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-10",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_41b8e8cc7621",
              "venue_id": "venue_tommy_ts",
              "title": "MIKE GOODWIN",
              "event_time": "2026-07-10 2026-07-11",
              "venue_name": "Tommy T's",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-07-10",
              "run_id": "run_c843dae1fe15",
              "run_label": "MIKE GOODWIN, Jul 10 – Jul 11",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b131e77f6106",
              "venue_id": "venue_the_sound_room",
              "title": "Jazz Mafia: Low End Theory",
              "event_time": "Friday, July 10, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-10T19:30:00",
              "event_date": "2026-07-10",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Low End Theory is a trombone-driven ensemble led by Jazz Mafia co-founders Adam Theis and Eric Garland. Built around a powerful front line of four trombones and a rhythm section capable of shifting from subtle textures to explosive energy, the group blends soulful, heartfelt playing with cinematic soundscapes and high-energy future jazz. Bold arrangements, deep brass harmonies, and adventurous improvisation create a rich low-brass sound that is truly unique.\n\nAdam Theis - trombone\n\nJohn Gove- trombone\n\nJeff Cressman - trombone\n\nMarc Bolin - bass trombone\n\nMatt Clark - piano\n\nEric Garland - drums\n\nTickets at Jazz Mafia: LOW END THEORY",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/jazz-mafia-low-end-theory",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_80c365ca16c8",
              "venue_id": "venue_paramount_theatre",
              "title": "MRS. DOUBTFIRE",
              "event_time": "July 10, 2026 7:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-07-10T19:00:00",
              "event_date": "2026-07-10",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Based on the beloved film, this production tells the heartwarming and hilarious story of a struggling actor who disguises himself as a British nanny to stay close to his children. The Paramount Theatre hosts this entertaining tale of family and transformation.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/mrs-doubtfire",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_536d08feeeca",
              "venue_id": "venue_odc_theater",
              "title": "Iolanthe",
              "event_time": "7/10/2026 7:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-10T19:00:00",
              "event_date": "2026-07-10",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "theater",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002kO7p2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_09df742989b8",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-10",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-10T19:30:00",
              "event_date": "2026-07-10",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-10",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dee28f373ec2",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Jul 10, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This haunting ballet production brings Bram Stoker's classic vampire tale to life through dramatic choreography and gothic aesthetics.",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7963123",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8e66c8af4fd5",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-10",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-10",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e2670ff5b36",
              "venue_id": "venue_the_freight__salvage",
              "title": "Pure Prairie League",
              "event_time": "Jul 10 2026 7pm/8pm",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-07-10T19:00:00",
              "event_date": "2026-07-10",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "a/a $49+ 7pm/8pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$49+",
              "url": "http://www.foopee.com/by-band.2.html#Pure_Prairie_League",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e56b0bf68df2",
              "venue_id": "venue_fox_theater_rwc",
              "title": "王祖藍：星夜佳音",
              "event_time": "2026-07-10",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "王祖藍 《星夜佳音》美國音樂分享會. SOLD OUT",
              "event_types": [
                "live_music"
              ],
              "price_info": "GET TICKETS",
              "url": "https://foxrwc.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-07-10",
              "run_id": "run_4af1f6c35afd",
              "run_label": "王祖藍 《星夜佳音》美國音樂分享會. SOLD OUT, Jul 10 – Jul 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14ef34f9cff9",
              "venue_id": "venue_1015_folsom",
              "title": "THROTTLE: MARIE VAUNT",
              "event_time": "July 10, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-07-10",
              "event_date": "2026-07-10",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://ra.co/events/2407527",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01220addfd78",
              "venue_id": "venue_audio",
              "title": "Lostboyjay",
              "event_time": "07/10/2026 7:30pm-2am",
              "venue_name": "Audio",
              "event_start": "2026-07-10T19:30:00",
              "event_date": "2026-07-10",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "tech house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19 pre | 21+",
              "url": "https://ra.co/events/2431378",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34a85b8487f4",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Sounds of Skynyrd",
              "event_time": "July 10, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-07-10T18:00:00",
              "event_date": "2026-07-10",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "with JEWELRY on the Square\n\nSounds of Skynyrd is a tribute to the raw, powerful sound of early Lynyrd Skynyrd - before the arenas, before the reunions - just straight-up Southern rock the way it was meant to be.  With a lineup of seasoned musicians, the band delivers authentic, high-energy performances of classics like \"Sweet Home Alabama\", \"Simple Man\", and \"Free Bird\".  Dedicated to the spirit and sound of the original 1970s Skynyrd lineup, Sounds of Skynyrd brings the fire, the soul, and the swagger that made the band legendary.",
              "event_types": [
                "live_music",
                "rock",
                "art"
              ],
              "price_info": "Free",
              "url": "https://www.reverbnation.com/nativeelements",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-07-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-11": {
          "date": "2026-07-11",
          "updated_at": "2026-05-18T15:41:22.123846Z",
          "events": [
            {
              "event_id": "evt_863f4f2dad23",
              "venue_id": "venue_san_jose_civic",
              "title": "Vishal and Sheykhar The Superhit Tour",
              "event_time": "2026-07-11T19:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-07-11T19:00:00",
              "event_date": "2026-07-11",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "The dynamic duo Vishal Dadlani and Sheykhar Ravjiani bring their 'Superhit Tour' to San Jose for an electrifying night of Bollywood's biggest hits and high-energy performances.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$89 Onwards",
              "url": "https://events.sulekha.com/vishal-sheykhar-the-superhit-tour-in-san-jose_event-in_san-jose-ca_378552",
              "tags": [],
              "sources": [
                {
                  "source_name": "Kalalaya",
                  "fetched_at": "2026-03-20T02:23:11.136908Z",
                  "strategy_used": "LLM",
                  "source_id": "s_kalalaya"
                },
                {
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-03-21T13:28:41.807752Z",
                  "strategy_used": "LLM",
                  "source_id": "v_san_jose_civic"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-07T12:51:35.266729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_76edca2505a6",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Ted Leo and the Pharmacists",
              "event_time": "Saturday July 11 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-11T19:00:00",
              "event_date": "2026-07-11",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jul 11 Ted Leo And The Pharmacists, Local Bylaws a/a $35/$40 $90 3 day pass) 7pm/8pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35/$40",
              "url": "http://www.bottomofthehill.com/20260711.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b895ef1eef0a",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Hilary Duff, La Roux, Jade LeMac",
              "event_time": "2026-07-11T19:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-07-11T19:00:00",
              "event_date": "2026-07-11",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Pop icon Hilary Duff returns to the stage for \"the lucky me tour,\" performing a selection of her beloved hits and newer material. This concert offers fans a rare opportunity to see the celebrated singer live in a beautiful outdoor setting.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/hilary-duff-the-lucky-me-tour-mountain-view-california-07-11-2026/event/1C0064449BF2A3F2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b9ed42c7044a",
              "venue_id": "venue_cornerstone",
              "title": "Nick Lutsko",
              "event_time": "Jul 11 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-07-11T20:00:00",
              "event_date": "2026-07-11",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a 8pm/9pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Nick_Lutsko",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1dff97a9dafb",
              "venue_id": "venue_chase_center",
              "title": "Olivia Dean: The Art Of Loving",
              "event_time": "2026-07-11T20:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-07-11T20:00:00",
              "event_date": "2026-07-11",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Olivia Dean performs a second night at Chase Center.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.chasecenter.com/events/olivia-dean-20260711",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_beda4ce01461",
              "venue_id": "venue_the_chapel",
              "title": "Petty Theft",
              "event_time": "Sat Jul 11 2026 9:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-07-11T21:00:00",
              "event_date": "2026-07-11",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "San Francisco Tribute to Tom Petty & the Heartbreakers",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.00",
              "url": "https://wl.seetickets.us/event/Petty-Theft/689192?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-25T23:00:07.126857Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab2e28f5686b",
              "venue_id": "venue_the_uc_theatre",
              "title": "Babyface Ray",
              "event_time": "Jul 11 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-07-11T20:00:00",
              "event_date": "2026-07-11",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Babyface Ray, 42 Dugg",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$40 + FEES",
              "url": "https://www.theuctheatre.org/shows/babyface-ray-x-42-dugg-4-the-streets-tour-11-jul",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_af3529046507",
              "venue_id": "venue_the_ritz",
              "title": "Belmont & Guests",
              "event_time": "2026-07-11T18:00:46-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-11T18:00:46",
              "event_date": "2026-07-11",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "The Ivy Room hosts an evening of live music featuring performances by Bemont Major League, Spite House, and All In Ur Head.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance – $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/belmont-major-league-spite-house-the-ritz-tickets/14880623",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06a6418c8da4",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-11",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-11",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7fd3ae6974a1",
              "venue_id": "venue_the_bistro",
              "title": "Phil Johnson and Roadside Attraction",
              "event_time": "2026-07-11",
              "venue_name": "The Bistro",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Return performance of the comedy and music tour.",
              "event_types": [
                "live_music",
                "comedy"
              ],
              "price_info": "Free / No Cover",
              "url": "https://www.bandsintown.com/v/10103444-the-bistro",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-05-15T11:38:35.297038Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_bistro|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_834a482cf948",
              "venue_id": "venue_masonic_hall",
              "title": "CA7RIEL & Paco Amoroso",
              "event_time": "2026-07-11",
              "venue_name": "Masonic Hall",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "CA7RIEL & Paco Amoroso Free Spirits World Tour",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6536d946e8bc",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Short Show",
              "event_time": "2026-07-11T18:45:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-07-11T18:45:00",
              "event_date": "2026-07-11",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A light summertime delight that bridges the time between happy hour and evening plans with fast-paced improv.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-short-show-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_de8caa13c8b2",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: Super Scene",
              "event_time": "2026-07-11T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-07-11T20:00:00",
              "event_date": "2026-07-11",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A fast-paced theatre competition where five directors create five improvised stories, and the audience votes on which ones continue.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-super-scene-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_97716e3fd929",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-07-11T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-11T19:30:00",
              "event_date": "2026-07-11",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_21edaa219f97",
              "venue_id": "venue_new_farm",
              "title": "Everybody's Climate 2026",
              "event_time": "2026-07-11T13:00:00",
              "venue_name": "The New Farm",
              "event_start": "2026-07-11T13:00:00",
              "event_date": "2026-07-11",
              "venue_address": "10 Cargo Way, San Francisco, CA 94124",
              "description": "A community event featuring live music by Bay Beats artists, including a performance by Purnamasari (Lisa Graciano) from 1:00 PM to 1:45 PM. The day includes book giveaways, arts and crafts, and a chance to see the farm's goats and chickens.",
              "event_types": [
                "live_music",
                "community",
                "workshop",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://sfpl.org/locations/main-library/general-collections/everybodys-climate-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_farm",
                  "source_name": "The New Farm",
                  "fetched_at": "2026-05-17T11:02:48.701687Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_new_farm|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c036b26e0524",
              "venue_id": "venue_halcyon",
              "title": "MR. BLACK",
              "event_time": "07/11/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-07-11T22:00:00",
              "event_date": "2026-07-11",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Mr. Black brings his high-octane blend of psytrance and big room house to Halcyon for an explosive performance.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/b397805ebba3?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-05-17T11:52:23.715555Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb6783fb951a",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-11",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-11",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d5390734ef2",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-11",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-11",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_42ab175b2bd9",
              "venue_id": "venue_tommy_ts",
              "title": "MIKE GOODWIN",
              "event_time": "2026-07-11 2026-07-11",
              "venue_name": "Tommy T's",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-07-11",
              "run_id": "run_c843dae1fe15",
              "run_label": "MIKE GOODWIN, Jul 10 – Jul 11",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b29224ccff18",
              "venue_id": "venue_the_sound_room",
              "title": "Fula Brothers",
              "event_time": "Saturday, July 11, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-11T19:30:00",
              "event_date": "2026-07-11",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Fifteen years ago, Malian hunters harp('kamale ngoni') player Mamadou Sidibe and American guitarist Walter Strauss began their colorful cross-cultural collaboration, evolving a deep joyful music that is simultaneously ancient and fresh. Together, they weave West African hunters harp, fingerstyle guitar, vocals, and a bounty of improvisation into an ecstatic groove-based dialogue which the heart - and the feet - cannot resist.\n\nMaster kamale ngoni player, Mamadou Sidibe, is from the Wassoulou Region of Mall, West Africa. He played a groundbreaking role in the transformation of this region's music from its origins in hunters' sacred melodies - played on six string donso ngoni (hunter's harps) - to a music of philosophy, politics, and dally life. Mamadou, with artists Coumba Sidibe and Oumou Sangare, spread the new sounds through Europe, Africa, and the US.\n\nFingerstyle guitarist Walter Strauss's multi-layered style draws on American roots, jazz, classical, and Spanish guitar traditions, and a decades-long exploration of West African stringed instrumental music. Acoustic Guitar Magazine says his innovative approach “has managed to elevate the instrument and the genre on the whole”. He has performed from New York to Glasgow and Bamako, and his collaborators have ranged from Grammy-winning kora player Mamadou Diabate to Scottish fiddler Johnny Hardie.\n\nTickets at Fula Brothers",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/fula-brothers-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_214022529027",
              "venue_id": "venue_gray_area",
              "title": "Personal Worldbuilding in Blender",
              "event_time": "07/11",
              "venue_name": "Gray Area",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Online Intensive Course\nPersonal Worldbuilding with 3D Modeling in Blender",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/online-intensive-course-personal-worldbuilding-with-3d-modeling-in-blender/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-18T10:47:40.979668Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_454cabb5bfd7",
              "venue_id": "venue_mountain_winery",
              "title": "Chris Tucker Live!",
              "event_time": "Jul 11, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-11T20:00:00",
              "event_date": "2026-07-11",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1392058",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a81f00069fc0",
              "venue_id": "venue_odc_theater",
              "title": "Iolanthe",
              "event_time": "7/11/2026 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-11T14:00:00",
              "event_date": "2026-07-11",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "theater",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002kO7p2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_698056cfb877",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-11",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-11T19:30:00",
              "event_date": "2026-07-11",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-11",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34d4a64dd780",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Jul 11, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This haunting ballet production brings Bram Stoker's classic vampire tale to life through dramatic choreography and gothic aesthetics.",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7963125",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2da01538b010",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-11",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-11",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1852e9922a19",
              "venue_id": "venue_mountain_winery",
              "title": "Chris Tucker",
              "event_time": "Jul 11 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-11T18:00:00",
              "event_date": "2026-07-11",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The acclaimed actor and comedian brings his high-pitched energy and physical comedy to the stand-up stage. Known for his roles in the Rush Hour series, Tucker delivers a night of fast-paced and hilarious storytelling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Chris_Tucker",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2156b852e321",
              "venue_id": "venue_thee_stork_club",
              "title": "Sonidos Oscuros",
              "event_time": "Jul 11 2026 9pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-11T21:00:00",
              "event_date": "2026-07-11",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Sonidos Oscuros",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10 9pm",
              "url": "http://www.foopee.com/by-band.3.html#Sonidos_Oscuros",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_23c001a46b04",
              "venue_id": "venue_fox_theater_rwc",
              "title": "王祖藍：星夜佳音",
              "event_time": "2026-07-11",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-07-11",
              "event_date": "2026-07-11",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "王祖藍 《星夜佳音》美國音樂分享會. SOLD OUT",
              "event_types": [
                "live_music"
              ],
              "price_info": "GET TICKETS",
              "url": "https://foxrwc.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-07-11",
              "run_id": "run_4af1f6c35afd",
              "run_label": "王祖藍 《星夜佳音》美國音樂分享會. SOLD OUT, Jul 10 – Jul 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-12": {
          "date": "2026-07-12",
          "updated_at": "2026-05-18T15:39:17.578514Z",
          "events": [
            {
              "event_id": "evt_a926dd47b5eb",
              "venue_id": "venue_ivy_room",
              "title": "Maurice Tani & Nashville Honeymoon",
              "event_time": "Sunday Jul 12 2:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-12T14:00:00",
              "event_date": "2026-07-12",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A night of 'California Country' and honky-tonk music featuring the veteran songwriting of Maurice Tani and the retro sounds of Nashville Honeymoon.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180740",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-22T11:23:45.060788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_94a0761ab706",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-12",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-12",
              "event_date": "2026-07-12",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-12",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e063d834e8da",
              "venue_id": "venue_temescal_arts_center",
              "title": "Shapeshifters Cinema",
              "event_time": "2026-07-12T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-07-12T20:00:00",
              "event_date": "2026-07-12",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Monthly Shapeshifters Cinema screening at Temescal Arts Center.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9b9c3df6bfc3",
              "venue_id": "venue_pacific_film_archive",
              "title": "Pierrot le fou",
              "event_time": "2026-07-12T15:00:00",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-07-12T15:00:00",
              "event_date": "2026-07-12",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean-Luc Godard's colorful noir starring Jean-Paul Belmondo, with guest speaker David Thomson.",
              "event_types": [
                "film"
              ],
              "price_info": "$14 general admission; $10 seniors/students; $9 members",
              "url": "https://bampfa.org/event/pierrot-le-fou-david-thomson",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-05-15T19:33:22.179167Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cb6b23bd968d",
              "venue_id": "venue_bird_and_beckett",
              "title": "Happy Hour",
              "event_time": "2026-07-12T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-12T17:00:00",
              "event_date": "2026-07-12",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Sundry musics from somewhere--but it's never square, so come around and catch a show.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1e1a744589c4",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-12",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-12",
              "event_date": "2026-07-12",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-12",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02b58608f825",
              "venue_id": "venue_dalas_nest",
              "title": "Jack Cutter",
              "event_time": "2026-07-12T15:30:00",
              "venue_name": "Dala's Nest",
              "event_start": "2026-07-12T15:30:00",
              "event_date": "2026-07-12",
              "venue_address": "Menlo Park, CA",
              "description": "Fingerstyle Guitar Instrumentals",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dalas_nest",
                  "source_name": "Dala's Nest",
                  "fetched_at": "2026-05-18T10:13:54.412437Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dalas_nest|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9579287a9a5f",
              "venue_id": "venue_mountain_winery",
              "title": "Maren Morris",
              "event_time": "Jul 12, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-12T19:30:00",
              "event_date": "2026-07-12",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "the dreamGIRL tour | Scout Willis , Line Dancing with Nanci in Adele's Garden 5:30pm-7:15pm",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1258068",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_47e43b1c4362",
              "venue_id": "venue_odc_theater",
              "title": "Iolanthe",
              "event_time": "7/12/2026 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-12T14:00:00",
              "event_date": "2026-07-12",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "theater",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002kO7p2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c2def9a08216",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-12",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-12T19:30:00",
              "event_date": "2026-07-12",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-12",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_21c032da739d",
              "venue_id": "venue_bach_dds",
              "title": "Ayo Brame Quartet",
              "event_time": "2026-07-12T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-07-12T16:30:00",
              "event_date": "2026-07-12",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "Rising jazz sensation and Oakland native Ayo Brame brings his soulful, expressive tenor and soprano saxophone style to the Bach. A graduate of the Oakland School for the Arts, Brame is known for his dynamic fusion of jazz and soul.",
              "event_types": [],
              "price_info": "Check website for ticket prices",
              "url": "https://dothebay.com/events/2026/7/12/the-bach-dancing-dynamite-society-presents-ayo-brame-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1cc2baff2e2c",
              "venue_id": "venue_orpheum_theater",
              "title": "DRACULA - BALLET AT ITS DARKEST",
              "event_time": "Jul 12, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-12",
              "event_date": "2026-07-12",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This haunting ballet production brings Bram Stoker's classic vampire tale to life through dramatic choreography and gothic aesthetics.",
              "event_types": [
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7963126",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d078735a8a53",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-12",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-12",
              "event_date": "2026-07-12",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-12",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f050c3ecfe64",
              "venue_id": "venue_kilowatt",
              "title": "Schlong & Damage Party",
              "event_time": "Jul 12 1pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-07-12T13:00:00",
              "event_date": "2026-07-12",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "A night of punk and alternative music featuring Schlong and Damage Party.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "http://www.foopee.com/by-band.3.html#Schlong",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_802c1ecace11",
              "venue_id": "venue_mountain_winery",
              "title": "Maren Morris & Scout Willis",
              "event_time": "Jul 12 5:30pm/6:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-12T17:30:00",
              "event_date": "2026-07-12",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Country music superstar Maren Morris performs her genre-blending hits with support from singer-songwriter Scout Willis. The evening showcases powerful female vocals and contemporary songwriting.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Maren_Morris",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf69c0ad5abe",
              "venue_id": "venue_stern_grove",
              "title": "SF Symphony",
              "event_time": "Jul 12 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-07-12T14:00:00",
              "event_date": "2026-07-12",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "SF Symphony, Bela Fleck",
              "event_types": [
                "classical",
                "live_music",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#SF_Symphony",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-07-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f892b38314e",
              "venue_id": "venue_fox_theater_rwc",
              "title": "王祖藍：星夜佳音",
              "event_time": "2026-07-12",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-07-12",
              "event_date": "2026-07-12",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "王祖藍 《星夜佳音》美國音樂分享會. SOLD OUT",
              "event_types": [
                "live_music"
              ],
              "price_info": "GET TICKETS",
              "url": "https://foxrwc.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-07-12",
              "run_id": "run_4af1f6c35afd",
              "run_label": "王祖藍 《星夜佳音》美國音樂分享會. SOLD OUT, Jul 10 – Jul 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-13": {
          "date": "2026-07-13",
          "updated_at": "2026-05-18T14:49:07.409414Z",
          "events": [
            {
              "event_id": "evt_8e5374426a50",
              "venue_id": "venue_regency_ballroom",
              "title": "Streetlight Manifesto",
              "event_time": "2026-07-13T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-07-13T20:00:00",
              "event_date": "2026-07-13",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Ska-punk favorites Streetlight Manifesto headline a high-energy show alongside the folk-punk sounds of AJJ. Expect a night of fast tempos, impressive horn sections, and passionate sing-alongs.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Tickets start at $59.00",
              "url": "http://www.foopee.com/by-band.3.html#Streetlight_Manifesto",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-26T10:50:55.888679Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-07-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6b7dabe445a6",
              "venue_id": "venue_great_american_music_hall",
              "title": "Corrosion Of Conformity, Whores, Crobot",
              "event_time": "Jul 13 2026 6:30pm/7:30pm",
              "venue_name": "Great American",
              "event_start": "2026-07-13T18:30:00",
              "event_date": "2026-07-13",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Goldenvoice Presents… Corrosion of Conformity with Whores. and Crobot.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30/$35/$40",
              "url": "http://www.foopee.com/by-band.0.html#Corrosion_Of_Conformity",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_acf5595f64e8",
              "venue_id": "venue_bird_and_beckett",
              "title": "Virtual POETS! Featured readers + open mic ONLINE",
              "event_time": "2026-07-13T19:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-13T19:00:00",
              "event_date": "2026-07-13",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Kim Shuck hosts an online series with featured readers followed by an open mic on the 2nd Monday of each month.",
              "event_types": [
                "literary"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a337f32d9f4",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-13",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-13",
              "event_date": "2026-07-13",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-13",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_37da4618315f",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Jul 13 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-13T19:00:00",
              "event_date": "2026-07-13",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690180?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_17a92d73fe18",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-07-13T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-07-13T19:00:00",
              "event_date": "2026-07-13",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-07-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8a48718792a2",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-13",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-13",
              "event_date": "2026-07-13",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-13",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-14": {
          "date": "2026-07-14",
          "updated_at": "2026-05-18T16:00:41.694278Z",
          "events": [
            {
              "event_id": "evt_8b6c5ee16354",
              "venue_id": "venue_orpheum_theater",
              "title": "Disney's Beauty and the Beast",
              "event_time": "Tue, Jul 14 - Sun, Aug 9, 2026",
              "venue_name": "Orpheum Theater",
              "event_start": "2026-07-14",
              "event_date": "2026-07-14",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This stage adaptation of the classic Disney animated film brings the magical story of Belle and her enchanted prince to life with stunning costumes and sets. It features the beloved music of Alan Menken and Howard Ashman in a production suitable for all ages.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy tickets",
              "url": "https://broadwaysf.com/events/disneys-beauty-and-the-beast/orpheum-theatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theater",
                  "fetched_at": "2026-04-11T10:43:41.294540Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-13T07:47:46.039722Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2a7f19ab7395",
              "venue_id": "venue_chase_center",
              "title": "Joji: SOLARIS",
              "event_time": "2026-07-14T18:30:00",
              "venue_name": "Chase Center",
              "event_start": "2026-07-14T18:30:00",
              "event_date": "2026-07-14",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Joji brings his SOLARIS tour to Chase Center.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "https://www.chasecenter.com/events/joji-20260714",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-07-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf8d48250b4d",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-14",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-14",
              "event_date": "2026-07-14",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-14",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92abbfe578cf",
              "venue_id": "venue_great_american_music_hall",
              "title": "Have A Nice Life, Bosse-de-Nage",
              "event_time": "Jul 14 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-07-14T19:00:00",
              "event_date": "2026-07-14",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Minty Boi & GAMH present… Have a Nice Life with Bosse-de-Nage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30/$35/$40",
              "url": "http://www.foopee.com/by-band.1.html#Have_A_Nice_Life",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eafedf318603",
              "venue_id": "venue_hotel_mac",
              "title": "Bluegrass Music at Biancoverde",
              "event_time": "2026-07-14T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-07-14T18:30:00",
              "event_date": "2026-07-14",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Enjoy live bluegrass music every Tuesday evening at Biancoverde, the Italian restaurant located inside the historic Hotel Mac.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-07-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_699334bb0cbd",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-14",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-14",
              "event_date": "2026-07-14",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-14",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_875e673210f9",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-14",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-14",
              "event_date": "2026-07-14",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-14",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5805c2a5157d",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jul 14 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-14T19:00:00",
              "event_date": "2026-07-14",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690205?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ea8702ead34",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-07-14T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-07-14T20:00:00",
              "event_date": "2026-07-14",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-07-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-07-15": {
          "date": "2026-07-15",
          "updated_at": "2026-05-18T14:46:03.355491Z",
          "events": [
            {
              "event_id": "evt_e03aafe21bb2",
              "venue_id": "venue_the_fillmore",
              "title": "Low Cut Connie",
              "event_time": "Jul 15 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-07-15T19:00:00",
              "event_date": "2026-07-15",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Known for their high-energy rock and roll performances, Low Cut Connie brings their piano-driven sound and charismatic stage presence to The Fillmore.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30+",
              "url": "http://www.foopee.com/by-band.2.html#Low_Cut_Connie",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-09T01:56:35.358428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-07-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_45ffbf78d27e",
              "venue_id": "venue_the_chapel",
              "title": "Inara George",
              "event_time": "Jul 15 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-07-15T19:00:00",
              "event_date": "2026-07-15",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$43.30 7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "$43.30",
              "url": "http://www.foopee.com/by-band.1.html#Inara_George",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ceafb9777c5b",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-15",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-15",
              "event_date": "2026-07-15",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-15",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de173cceb119",
              "venue_id": "venue_great_american_music_hall",
              "title": "King Woman",
              "event_time": "Jul 15 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-07-15T19:00:00",
              "event_date": "2026-07-15",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Live performance by King Woman at Great American Music Hall.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30/$35",
              "url": "http://www.foopee.com/by-band.1.html#King_Woman",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-05-15T10:22:44.758615Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ff9c488227ed",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-15",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-15",
              "event_date": "2026-07-15",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-15",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1061a68a89c6",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-15",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-15",
              "event_date": "2026-07-15",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-15",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_096732c7a11a",
              "venue_id": "venue_yoshis",
              "title": "Nzuri Soul: Tribute to the Men of R&B",
              "event_time": "WED 7.15 8:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-15T20:00:00",
              "event_date": "2026-07-15",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "A TRIBUTE TO THE MEN OF R&B",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$45 - $74",
              "url": "https://yoshis.com/events/buy-tickets/nzuri-soul-a-tribute-to-the-men-of-r-b/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8df923e76a08",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-15",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-15T19:30:00",
              "event_date": "2026-07-15",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-15",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3cc4475ac1d2",
              "venue_id": "venue_4_star_theater",
              "title": "Devin Shaffer, Lucy Liyou",
              "event_time": "Jul 15, 2026 8:00pm – 11:00pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-07-15T20:00:00",
              "event_date": "2026-07-15",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Musicians Devin Shaffer and Lucy Liyou take the stage for a live musical performance at the 4 Star Theater.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-devin-shaffer",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-07-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_923f46626587",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 15, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-15",
              "event_date": "2026-07-15",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-15-july-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_545dc48d9996",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-15",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-15",
              "event_date": "2026-07-15",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-15",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-16": {
          "date": "2026-07-16",
          "updated_at": "2026-05-18T15:21:07.806882Z",
          "events": [
            {
              "event_id": "evt_85081d4185a7",
              "venue_id": "venue_ivy_room",
              "title": "Pato Banton, dj Irie Dole",
              "event_time": "Thursday Jul 16 7:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-16T19:30:00",
              "event_date": "2026-07-16",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Reggae legend Pato Banton performs live with support from DJ Irie Dole for a night of positive vibes and danceable rhythms.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/171821",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2693282de973",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Widespread Panic",
              "event_time": "Jul 16 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-07-16T20:00:00",
              "event_date": "2026-07-16",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Three Nights!\nAn Evening With",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.3.html#Widespread_Panic",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_93e44a90b868",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Sincere Engineer, Ways Away, SMUG LLC",
              "event_time": "Thursday July 16 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-16T19:00:00",
              "event_date": "2026-07-16",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; The Probable Claws Tour; punk rock; post-punk; electropop garage post-punk",
              "event_types": [
                "live_music",
                "rock",
                "electronic"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260716.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ed56787428b",
              "venue_id": "venue_rickshaw_stop",
              "title": "Bed Bug Guru",
              "event_time": "Thu Jul 16 8:45PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-07-16T20:45:00",
              "event_date": "2026-07-16",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Bed Bug Guru, Welcome Straberry, Blous3",
              "event_types": [
                "live_music"
              ],
              "price_info": "$15.00-$20.00",
              "url": "https://wl.seetickets.us/event/bed-bug-guru/689438?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-30T15:22:32.287368Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89a94272c030",
              "venue_id": "venue_frost_amphitheater",
              "title": "A Midsummer Night's Dream",
              "event_time": "2026-07-16T19:30:00",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-07-16T19:30:00",
              "event_date": "2026-07-16",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Classical performance presented by Stanford Live",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/midsummer-nights-dream-san-francisco-symphony",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_frost_amphitheater",
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-05-06T07:04:09.449554Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bcc4220557f7",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-16",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-16",
              "event_date": "2026-07-16",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-16",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ebdb8e21401",
              "venue_id": "venue_hotel_mac",
              "title": "Nat King Cole Tribute with Eugene Barnes",
              "event_time": "2026-07-16T18:30:00",
              "venue_name": "Hotel Mac",
              "event_start": "2026-07-16T18:30:00",
              "event_date": "2026-07-16",
              "venue_address": "10 Cottage Ave, Richmond, CA 94801",
              "description": "Local musician Eugene Barnes performs a tribute to Nat King Cole every Thursday evening at Biancoverde in the Hotel Mac.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "No cover charge",
              "url": "https://www.biancoverdeathotelmac.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_mac",
                  "source_name": "Hotel Mac",
                  "fetched_at": "2026-05-15T14:10:50.777436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hotel_mac|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be89fae099aa",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-07-16T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-07-16T19:00:00",
              "event_date": "2026-07-16",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bc397ebf581b",
              "venue_id": "venue_bird_and_beckett",
              "title": "Walker Talks",
              "event_time": "2026-07-16T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-16T19:30:00",
              "event_date": "2026-07-16",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Walker Brents III investigations into topics literary, mythological and otherwise.",
              "event_types": [
                "literary"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_79817d0ba3fa",
              "venue_id": "venue_peacock_lounge",
              "title": "Third Thursday Jazz Night",
              "event_time": "2026-07-16T20:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-07-16T20:00:00",
              "event_date": "2026-07-16",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "A recurring jazz music performance featuring local and touring jazz musicians in an intimate setting.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_72eb22085677",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-16",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-16",
              "event_date": "2026-07-16",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-16",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab94bff24246",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-16",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-16",
              "event_date": "2026-07-16",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-16",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2e872ea447d8",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-16T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-16T19:30:00",
              "event_date": "2026-07-16",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-16",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a37457c4b6e1",
              "venue_id": "venue_the_sound_room",
              "title": "Doppler Trio",
              "event_time": "Thursday, July 16, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-16T19:30:00",
              "event_date": "2026-07-16",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "The Doppler Trio performs melody driven, passionate original compositions that won’t lose the listener in abstract improvisation or blistering fast tempos. This Bay Area band has been together since 2004 and released four albums. Their latest release, Sherbert Reynalds, was recorded by Desmond Shea at the legendary Hyde Street Studios in San Francisco. They have grown from a trio to a quartet with the addition of Henry Hung on our last two albums.\n\nErik Hoagland - Saxophone\n\nHenry Hung - Trumpet\n\nBrandon Essex - Bass\n\nBrian Carmody - Drums\n\n\nTHE DOPPLER TRIO sets out to play music that has the drive of rock, the harmonic and melodic vocabulary of jazz, and the joy of a backyard BBQ with good friends, sunshine and plenty of food and beverage. The music is written and performed with the intent of bringing every listener along for the wild ride.\n\nErik graduated from The Berklee College of Music, and is an RN at a Bay Area hospital.\nBrandon studied music at the University of Cincinnati, builds custom bass amplification equipment, and rebuilds pianos and now flies commercial planes\nBrian Carmody has a Doctorate in Music from USC, and recently composed the score to the documentary SOMM.\nHenry Hung is a freelance trumpeter, brass teacher, composer, arranger and copyist.\n\nTickets at Doppler Trio",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/doppler-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a30e37ffe4df",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-16",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-16T19:30:00",
              "event_date": "2026-07-16",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-16",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b1eae765de8",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 16, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-16",
              "event_date": "2026-07-16",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023323",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4970468500a5",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-16",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-16",
              "event_date": "2026-07-16",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-16",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d1d3cd49818f",
              "venue_id": "venue_kilowatt",
              "title": "Toolbox, Sund n'Noses, Butt Problems",
              "event_time": "Jul 16 8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-07-16T20:00:00",
              "event_date": "2026-07-16",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Problems, Sunhunter $13.39",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "http://www.foopee.com/by-band.3.html#Toolbox",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-07-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-17": {
          "date": "2026-07-17",
          "updated_at": "2026-05-18T16:16:06.704265Z",
          "events": [
            {
              "event_id": "evt_f2d5727f3453",
              "venue_id": "venue_greek_theatre",
              "title": "Bob Moses, Cannons, Oxis",
              "event_time": "July 17, 2026 7:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-07-17T19:30:00",
              "event_date": "2026-07-17",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Electronic duo Bob Moses teams up with indie-pop band Cannons for a night of atmospheric synths and melodic electronic music. The show features a blend of deep house influences and dreamy, synth-heavy pop vocals.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/bob-moses-cannons-260717",
              "tags": [],
              "sources": [
                {
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-03-21T14:06:27.798565Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_greek_theatre"
                },
                {
                  "source_name": "19hz",
                  "fetched_at": "2026-03-21T15:58:26.606023Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_19hz"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ec472fdc3588",
              "venue_id": "venue_castro_theater",
              "title": "HEDWIG & THE ANGRY INCH",
              "event_time": "July 17, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-07-17T20:00:00",
              "event_date": "2026-07-17",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "25th Anniversary Screening in 35MM\nwith special guest\nJohn Cameron Mitchell performing live with Skip The Needle",
              "event_types": [
                "film",
                "live_music",
                "rock"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/hedwig-the-angry-inch-260717",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_60fe54a258f4",
              "venue_id": "venue_cornerstone",
              "title": "RJD2, Jel",
              "event_time": "07/17/2026 9pm-12am",
              "venue_name": "Cornerstone",
              "event_start": "2026-07-17T21:00:00",
              "event_date": "2026-07-17",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Acclaimed producer and instrumental hip-hop artist Rjd2 performs a live set showcasing his mastery of turntables and MPCs. The show features a mix of soulful samples and complex electronic arrangements.",
              "event_types": [
                "live_music",
                "electronic",
                "hiphop_rap"
              ],
              "price_info": "$26 | All ages",
              "url": "https://www.tixr.com/groups/cornerstoneberkeley/events/rjd2-172740",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-07T11:26:51.437033Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-13T07:43:50.922474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30d5b9a0a300",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Widespread Panic",
              "event_time": "Jul 17 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-07-17T20:00:00",
              "event_date": "2026-07-17",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Three Nights!\nAn Evening With",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.3.html#Widespread_Panic",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1aa01122af34",
              "venue_id": "venue_the_chapel",
              "title": "Dead Souls & Voodoo Dolly Tribute",
              "event_time": "Jul 17 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-07-17T20:00:00",
              "event_date": "2026-07-17",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$29.69 8pm/9pm",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$29.69",
              "url": "http://www.foopee.com/by-band.0.html#Dead_Souls",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_583d2ec246c5",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-17",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-17",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f33f1b88b353",
              "venue_id": "venue_joe_goode_annex",
              "title": "Queer World Building",
              "event_time": "2026-07-17T10:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-07-17T10:00:00",
              "event_date": "2026-07-17",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A 3-day workshop exploring how drag can fuel devised and immersive theater by using persona and queer performance traditions.",
              "event_types": [
                "theater",
                "workshop"
              ],
              "price_info": "Check website for pricing",
              "url": "https://dancersgroup.org/event/queer-world-building-drag-as-a-tool-for-devised-immersive-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-07-17",
              "run_id": "run_89658e66be19",
              "run_label": "Queer World Building: Drag as a Tool for Devised & Immersive Theater, Jul 17 – Jul 19",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b9ffd74f7de4",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-17",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-17",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_90708795d724",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: Tribute to ABBA",
              "event_time": "2026-07-17T20:45:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-07-17T20:45:00",
              "event_date": "2026-07-17",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "A tribute to the Swedish pop legends ABBA, performed by a string quartet in a candlelit atmosphere.",
              "event_types": [],
              "price_info": "From $37.26",
              "url": "https://feverup.com/en/san-jose/candlelight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_03be9a60ad0d",
              "venue_id": "venue_bird_and_beckett",
              "title": "Scott Foster",
              "event_time": "2026-07-17T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-17T19:30:00",
              "event_date": "2026-07-17",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Guitarist Scott Foster brings in an ever-evolving cast of musicians on the 3rd Friday of each and every month.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ca4f5777921",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-17",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-17",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_28a8ff4d3f1f",
              "venue_id": "venue_sap_center",
              "title": "Nate Bargatze",
              "event_time": "2026-07-17T19:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-07-17T19:00:00",
              "event_date": "2026-07-17",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8be115729177",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-17",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-17",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a754ef8669fc",
              "venue_id": "venue_tommy_ts",
              "title": "SHERYL UNDERWOOD",
              "event_time": "2026-07-17 2026-07-18",
              "venue_name": "Tommy T's",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-07-17",
              "run_id": "run_c78f23eea39c",
              "run_label": "SHERYL UNDERWOOD, Jul 17 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_50a961baf146",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-17T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-17T19:30:00",
              "event_date": "2026-07-17",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-17",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ece0594bdf39",
              "venue_id": "venue_the_sound_room",
              "title": "Aki Kumar Band",
              "event_time": "Friday, July 17, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-17T19:30:00",
              "event_date": "2026-07-17",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "A masterful harmonica player, soulful vocalist, band-leader, drummer and producer, Kumar is a man of many talents and one of the most prolific artists in the SF Bay Area today. He has successfully blended retro Indian music into his presentation, making for a unique, electrifying, multi-cultural mash-up that sounds like no one else, yet never loses touch with the inspiration it draws from the blues. A veteran of the San Jose music scene for two decades, Kumar was hailed as \"...King of ‘Bollywood blues’ music\" by SJ Mercury News (2022) and received the Metro Silicon Valley Gold Award for Best Band (2024).\n\nKumar's \"Little Village\" releases \"Aki Goes To Bollywood\" (2016) and \"Hindi Man Blues\" (2018) are considered ground-breaking albums that have garnered international critical acclaim. In 2020, Kumar made major news with the world-wide launch of his album \"Dilruba\" on Sony Music. In 2021, Little Village released Kumar's uplifting reggae-inspired single \"Zindagi\" (Life). 2025 marked a milestone year for Kumar with the release of his self-produced “Little Village” album “God Bless The USA”\n\nTickets at Aki Kumar Band",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/aki-kumar-band-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b1a7fb1eee6",
              "venue_id": "venue_mountain_winery",
              "title": "Sam Barber",
              "event_time": "Jul 17, 2026 7:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-17T19:00:00",
              "event_date": "2026-07-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The American Route Tour | John Vincent III & Wild Horses",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1258074",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_56de85e09c10",
              "venue_id": "venue_paramount_theatre",
              "title": "THE MARK OF ZORRO",
              "event_time": "July 17, 2026 7:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-07-17T19:00:00",
              "event_date": "2026-07-17",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Witness the legendary adventures of the masked vigilante in this classic swashbuckling tale of justice and romance. The Paramount Theatre presents a screening of this iconic cinematic hero's journey.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/the-mark-of-zorro",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_16586b0c4408",
              "venue_id": "venue_odc_theater",
              "title": "Iolanthe",
              "event_time": "7/17/2026 7:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-17T19:00:00",
              "event_date": "2026-07-17",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002kO7p2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc10ca9c92a5",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-17",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-17T19:30:00",
              "event_date": "2026-07-17",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-17",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2cf6aaf34010",
              "venue_id": "venue_4_star_theater",
              "title": "Brain Stab",
              "event_time": "Jul 17, 2026 8:00pm – 10:30pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-07-17T20:00:00",
              "event_date": "2026-07-17",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This event features a presentation of Brain Stab accompanied by a live musical performance from The Clog & Slosh.",
              "event_types": [
                "live_music",
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/brain-stab",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-05-18T13:33:20.834178Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b7b15cda6235",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 17, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023324",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_705945c366d3",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-17",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-17",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d6a0db059cee",
              "venue_id": "venue_great_american_music_hall",
              "title": "A Static Lullaby and Friends",
              "event_time": "Jul 17 2026 5:30pm/6:30pm",
              "venue_name": "Great American",
              "event_start": "2026-07-17T17:30:00",
              "event_date": "2026-07-17",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $25/$30 5:30pm/6:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "http://www.foopee.com/by-band.1.html#I_Promished_The_World",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55dfeda259e5",
              "venue_id": "venue_mountain_winery",
              "title": "Sam Barber & John Vincent III",
              "event_time": "Jul 17 5pm/7pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-17T17:00:00",
              "event_date": "2026-07-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This evening features two rising stars in the folk and Americana scene known for their raw, emotive vocals. Audiences can expect an intimate night of soulful storytelling and acoustic arrangements.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Sam_Barber",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee43c1c162cd",
              "venue_id": "venue_1015_folsom",
              "title": "STEPHAN BODZIN",
              "event_time": "July 17, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-07-17",
              "event_date": "2026-07-17",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/stephan-bodzin/690548?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e84368cc408",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Native Elements",
              "event_time": "July 17, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-07-17T18:00:00",
              "event_date": "2026-07-17",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "San Francisco powerhouse, Native Elements has been keeping the energetic, feel-good reggae tradition alive in the Bay Area for over 19 years. Comprised of 10 seasoned musicians with decades of experience in rock, metal, blues, jazz, R&B and hip hop, this eclectic and fearless crew meld their unique influences into a contemporary, melodic horn-driven party taking their listeners through improvisational peaks and valleys from blazing guitar to soaring saxophone wails. Having grown up together since elementary school (playing in garage bands and skateboarding) in Daly City and South SF, Native Elements bring a uniquely warm experience to the stage that is both entertaining and uplifting...Fun for all!!",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://www.reverbnation.com/nativeelements",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-07-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-18": {
          "date": "2026-07-18",
          "updated_at": "2026-05-18T15:50:41.217033Z",
          "events": [
            {
              "event_id": "evt_d44fc547ba6b",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Good Luck Thrift Store Outfit",
              "event_time": "Saturday July 18 2026 8:00PM doors -- music at 9:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-18T20:00:00",
              "event_date": "2026-07-18",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; ALL AGES; folk rock, outlaw country western; South-Western honky tonk; bluegrass and folk",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$22/$25",
              "url": "http://www.bottomofthehill.com/20260718.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ea86f178dfd",
              "venue_id": "venue_ivy_room",
              "title": "BROUN FELLINIS",
              "event_time": "Saturday Jul 18 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-18T19:00:00",
              "event_date": "2026-07-18",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "The long-running trio Broun Fellinis brings their unique \"innovative jazz\" and soulful, experimental grooves to the Hotel Utah stage.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/177229",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4a4db6c2e998",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Widespread Panic",
              "event_time": "Jul 18 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-07-18T20:00:00",
              "event_date": "2026-07-18",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Three Nights!\nAn Evening With",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Sold Out!",
              "url": "http://www.foopee.com/by-band.3.html#Widespread_Panic",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f2ebbd7d279",
              "venue_id": "venue_the_ritz",
              "title": "System Of A Clown",
              "event_time": "2026-07-18T20:00:41-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-18T20:00:41",
              "event_date": "2026-07-18",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "SYSTEM OF A CLOWN\nA MADCAP TRIBUTE TO SYSTEM OF A DOWN\nEL GUAPO\n\nBUKAKI BLASTER\n\n \n\nSATURDAY JULY 18, 2026\nDoors: 8PM // 21+ // $15 Advance –  $20 Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 Advance –  $20 Day-of-Show",
              "url": "https://www.ticketweb.com/event/system-of-a-clown-el-the-ritz-tickets/14814193",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_627fa75db3a2",
              "venue_id": "venue_bill_graham_civic",
              "title": "ELLA MAI",
              "event_time": "July 18, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-07-18T20:00:00",
              "event_date": "2026-07-18",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Do You Still Love Me? Tour - AMA\nGIRLFRIEND",
              "event_types": [
                "rnb_soul_funk",
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/ella-mai-260718",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_05cfb8cde877",
              "venue_id": "venue_the_independent",
              "title": "LOS TRANQUILOS",
              "event_time": "7.18 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-18T21:00:00",
              "event_date": "2026-07-18",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "A night of eclectic sounds featuring the Latin-influenced music of Los Tranquilos alongside Los So-Lows and Sweet Lew.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/los-tranquilos/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_acec1f3df6c0",
              "venue_id": "venue_august_hall",
              "title": "Futurebirds",
              "event_time": "Jul 18 8pm/9pm",
              "venue_name": "August Hall",
              "event_start": "2026-07-18T20:00:00",
              "event_date": "2026-07-18",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "The Athens, Georgia-based group performs their signature blend of psychedelic country and indie rock for a soulful live experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34.70 ($132 vip)",
              "url": "http://www.foopee.com/by-band.1.html#Futurebirds",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-02T10:43:22.363329Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-02T11:00:05.602734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02787abbe3f8",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-18",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-18",
              "event_date": "2026-07-18",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-18",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ae1ee69091d",
              "venue_id": "venue_joe_goode_annex",
              "title": "Queer World Building",
              "event_time": "2026-07-18T10:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-07-18T10:00:00",
              "event_date": "2026-07-18",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A 3-day workshop exploring how drag can fuel devised and immersive theater by using persona and queer performance traditions.",
              "event_types": [
                "theater",
                "workshop"
              ],
              "price_info": "Check website for pricing",
              "url": "https://dancersgroup.org/event/queer-world-building-drag-as-a-tool-for-devised-immersive-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-07-18",
              "run_id": "run_89658e66be19",
              "run_label": "Queer World Building: Drag as a Tool for Devised & Immersive Theater, Jul 17 – Jul 19",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f9e92821469d",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-18",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-18",
              "event_date": "2026-07-18",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-18",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f027f41b244a",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Short Show",
              "event_time": "2026-07-18T18:45:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-07-18T18:45:00",
              "event_date": "2026-07-18",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A light summertime delight that bridges the time between happy hour and evening plans with fast-paced improv.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-short-show-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9506a4323c18",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Startup",
              "event_time": "2026-07-18T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-07-18T20:00:00",
              "event_date": "2026-07-18",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised show exploring the world of Silicon Valley startups and entrepreneurship, built from audience suggestions.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-startup-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_377a2a20b152",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Dugoni School of Dentistry White Coat Ceremony",
              "event_time": "2026-07-18T11:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-07-18T11:00:00",
              "event_date": "2026-07-18",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "A significant event symbolizing the students' transition into the clinical portion of their dental education at the University of the Pacific.",
              "event_types": [
                "community"
              ],
              "price_info": "$20 USD",
              "url": "https://www.purplepass.com/#284752/University_of_the_Pacific_Arthur_A._Dugoni_School_of_Dentistry-Dugoni_School_of_Dentistry_White_Coat_Ceremony-Palace_of_Fine_Arts_Theatre-July-18-2026.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_64c3120f7f99",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-07-18T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-18T19:30:00",
              "event_date": "2026-07-18",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e8f0c1e24078",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-18",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-18",
              "event_date": "2026-07-18",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-18",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f89fa59a8314",
              "venue_id": "venue_greek_theatre",
              "title": "RAINBOW KITTEN SURPRISE",
              "event_time": "July 18, 2026 8:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-07-18T20:00:00",
              "event_date": "2026-07-18",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Indie rock band Rainbow Kitten Surprise brings their unique sound and high-energy performance to Berkeley.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/rainbow-kitten-surprise-260718",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-17T14:14:15.324242Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_478f6907cb8f",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-18",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-18",
              "event_date": "2026-07-18",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-18",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0f823741d134",
              "venue_id": "venue_tommy_ts",
              "title": "SHERYL UNDERWOOD",
              "event_time": "2026-07-18 2026-07-18",
              "venue_name": "Tommy T's",
              "event_start": "2026-07-18",
              "event_date": "2026-07-18",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-07-18",
              "run_id": "run_c78f23eea39c",
              "run_label": "SHERYL UNDERWOOD, Jul 17 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5ebf8476ed6d",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-18T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-18T19:30:00",
              "event_date": "2026-07-18",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-18",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ca70b342d3ec",
              "venue_id": "venue_the_sound_room",
              "title": "Charles Chen Quartet",
              "event_time": "Saturday, July 18, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-18T19:30:00",
              "event_date": "2026-07-18",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Charles Chen is an accomplished San Francisco Bay Area pianist who performed or recorded with notable musicians such as Billy Drummond, Bob Sheppard, Roy McCurdy, Ralph Moore, Peter Washington, and Kenny Washington.\n\nCharles leads a trio and has performed internationally in Taiwan, Singapore and Japan. His debut album, Charles, Play!, was featured as one of the Best Albums of 2024 in Downbeat Magazine.\n\nFor this event, the band will feature swing and bebop with young phenom, Nathan Tokunaga. Nayhan is a New York City based clarinetists and saxophonist from the Bay Area who blends classic jazz traditions with a fresh modern voice. He is the 2026 YoungArts® winner in jazz clarinet, and has performed widely at venues and festivals including Jazz at Lincoln Center, Birdland, Smalls Jazz Club, Lindy Focus, and the Healdsburg Jazz Festival. His playing bridges generations, bringing the joy and spirit of swing to a new generation of listeners.\n\nTickets at Charles Chen Quartet ft. Nathan Tokunaga",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/charles-chen-quartet-ft-nathan-tokunaga",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c118a484658b",
              "venue_id": "venue_mountain_winery",
              "title": "One Night of Queen",
              "event_time": "Jul 18, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-18T19:30:00",
              "event_date": "2026-07-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Performed by GARY MULLEN & THE WORKS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259266",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89505fecbf29",
              "venue_id": "venue_odc_theater",
              "title": "Iolanthe",
              "event_time": "7/18/2026 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-18T14:00:00",
              "event_date": "2026-07-18",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002kO7p2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a0ca016de55d",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-18",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-18T19:30:00",
              "event_date": "2026-07-18",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-18",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6f296f4686f0",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 18, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-18",
              "event_date": "2026-07-18",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-18-july-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb9212ce7c1d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-18",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-18",
              "event_date": "2026-07-18",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-18",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ce712d53db8",
              "venue_id": "venue_great_american_music_hall",
              "title": "Gabe Bondoc, Jeremy Passion",
              "event_time": "Jul 18 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-07-18T19:00:00",
              "event_date": "2026-07-18",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $35/$40 (vip +$50) 7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "$35/$40 (vip +$50)",
              "url": "http://www.foopee.com/by-band.1.html#Gabe_Bondoc",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fd9f86bcbe66",
              "venue_id": "venue_greek_theatre",
              "title": "Rainbow Kitten Surprise, Spacey Jane",
              "event_time": "Jul 18 2026 6:30pm/8pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-07-18T18:30:00",
              "event_date": "2026-07-18",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a $79+ 6:30pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$79+",
              "url": "http://www.foopee.com/by-band.2.html#Rainbow_Kitten_Surprise",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cae033fb1809",
              "venue_id": "venue_the_knockout",
              "title": "Ter, Heavy Lifter, Towhead",
              "event_time": "Jul 18 6pm",
              "venue_name": "The Knockout",
              "event_start": "2026-07-18T18:00:00",
              "event_date": "2026-07-18",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "A triple-bill concert featuring Ter, Heavy Lifter, and Towhead.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12",
              "url": "http://www.foopee.com/by-band.3.html#Ter",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42bee53a73bf",
              "venue_id": "venue_mountain_winery",
              "title": "Gary Mullen & The Works",
              "event_time": "Jul 18 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-18T17:30:00",
              "event_date": "2026-07-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This spectacular tribute to Queen recreates the energy and theatricality of Freddie Mercury and the band's legendary live shows. The performance features all the greatest hits delivered with stunning vocal accuracy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Gary_Mullen___The_Works",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_11f1658d97f9",
              "venue_id": "venue_rhythmix",
              "title": "Andre Thierry",
              "event_time": "Saturday, July 18, 2026 12:00 pm to 2:00 pm",
              "venue_name": "Rhythmix",
              "event_start": "2026-07-18T12:00:00",
              "event_date": "2026-07-18",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Grab your chairs and blankets, pack a picnic lunch and head outdoors to celebrate the diverse cultural traditions of our community with live music and dance from around the globe at Rhythmix in the Parks!\n\n \n\nPlaying with a force few can match, Grammy-nominated artist, Andre Thierry is “breaking accordion stereotypes”, merging traditional Créole and Zydeco music with contemporary influences of Blues, Funk, R&B, Jazz, and Rock.\n\n \n\nKick off the afternoon in style with Michele’s Soul Line Dance. With her high energy vibes and easy to follow choreography, Michele will have you sliding, stepping and swaying to soulful beats.\n\n \n\nGet ready to dance and play along in this exuberant fun-filled family performance!",
              "event_types": [
                "live_music",
                "latin_world",
                "dance",
                "community"
              ],
              "price_info": "FREE | Please RSVP",
              "url": "https://www.rhythmix.org/events/rhythmix-in-the-parks-andre-thierry/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-05-18T15:50:35.869963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rhythmix|2026-07-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-19": {
          "date": "2026-07-19",
          "updated_at": "2026-05-18T15:43:10.115611Z",
          "events": [
            {
              "event_id": "evt_0f4b152b96a9",
              "venue_id": "venue_the_independent",
              "title": "CHINESE AMERICAN BEAR",
              "event_time": "7.19 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-19T20:00:00",
              "event_date": "2026-07-19",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "The indie-pop duo performs their quirky and melodic bilingual tracks that blend C-pop influences with alternative rock.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/chinese-american-bear/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a16b0c697421",
              "venue_id": "venue_greek_theatre",
              "title": "YOUNG THE GIANT",
              "event_time": "July 19, 2026 6:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-07-19T18:00:00",
              "event_date": "2026-07-19",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Young the Giant performs at the Greek Theatre as part of their 2026 summer tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/young-the-giant-260719",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f41ba1f1b71d",
              "venue_id": "venue_musicians_union_hall",
              "title": "SIMM Series: Experimental and Improvised Music",
              "event_time": "2026-07-19T19:30:00",
              "venue_name": "Musicians Union Hall",
              "event_start": "2026-07-19T19:30:00",
              "event_date": "2026-07-19",
              "venue_address": "116 9th St, San Francisco, CA 94103",
              "description": "The July installment of the SIMM Series, featuring experimental improvisation and new music performances at the Musicians Union Hall.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$10 - $25 sliding scale",
              "url": "http://www.outsound.org/simm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_musicians_union_hall",
                  "source_name": "Musicians Union Hall",
                  "fetched_at": "2026-05-11T12:01:45.357016Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_musicians_union_hall|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e394c3af032e",
              "venue_id": "venue_the_chapel",
              "title": "Babe Rainbow",
              "event_time": "Jul 19 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-07-19T19:00:00",
              "event_date": "2026-07-19",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$39.59 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$39.59",
              "url": "http://www.foopee.com/by-band.0.html#Babe_Rainbow",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a7784358098",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-19",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-19",
              "event_date": "2026-07-19",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-19",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e3170462fa55",
              "venue_id": "venue_temescal_arts_center",
              "title": "Dabke With Us!",
              "event_time": "2026-07-19T11:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-07-19T11:00:00",
              "event_date": "2026-07-19",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Free Palestinian folk dance workshop at Temescal Arts Center, taught by TAC Resident Artist Wael Buhaissy and members of Palestinian Dabke: Aljuthoor of the Arab Shatat. No experience necessary.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_44ccbe046628",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "2026-07-19T19:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-07-19T19:00:00",
              "event_date": "2026-07-19",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Open participation improvisation workshop hosted by Jacob Felix Heule for musicians and dancers of all levels; listen and/or play. Doors at 7, over by 10.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_324befc314ea",
              "venue_id": "venue_joe_goode_annex",
              "title": "Queer World Building",
              "event_time": "2026-07-19T10:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-07-19T10:00:00",
              "event_date": "2026-07-19",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "A 3-day workshop exploring how drag can fuel devised and immersive theater by using persona and queer performance traditions.",
              "event_types": [
                "theater",
                "workshop"
              ],
              "price_info": "Check website for pricing",
              "url": "https://dancersgroup.org/event/queer-world-building-drag-as-a-tool-for-devised-immersive-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-05-15T17:21:51.084744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-07-19",
              "run_id": "run_89658e66be19",
              "run_label": "Queer World Building: Drag as a Tool for Devised & Immersive Theater, Jul 17 – Jul 19",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d672a499eccc",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-19",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-19",
              "event_date": "2026-07-19",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-19",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e6853420528f",
              "venue_id": "venue_bird_and_beckett",
              "title": "Vince Lateano Trio",
              "event_time": "2026-07-19T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-19T17:00:00",
              "event_date": "2026-07-19",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "The Vince Lateano Trio, with special guests, play the 3rd Sunday in odd-numbered months.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bc121ae22678",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-19",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-19",
              "event_date": "2026-07-19",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-19",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ece6be19dcb9",
              "venue_id": "venue_tommy_ts",
              "title": "SHERYL UNDERWOOD",
              "event_time": "2026-07-19 2026-07-18",
              "venue_name": "Tommy T's",
              "event_start": "2026-07-19",
              "event_date": "2026-07-19",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-07-19",
              "run_id": "run_c78f23eea39c",
              "run_label": "SHERYL UNDERWOOD, Jul 17 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_50054281212c",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-19T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-19T19:30:00",
              "event_date": "2026-07-19",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-19",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e3b16fabcee9",
              "venue_id": "venue_mountain_winery",
              "title": "Jeff Foxworthy",
              "event_time": "Jul 19, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-19T20:00:00",
              "event_date": "2026-07-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "An Evening With",
              "event_types": [
                "live_music",
                "electronic",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1345562",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f4cbdfa2a0f2",
              "venue_id": "venue_hillside_club",
              "title": "Pocket Opera presents La Rondine",
              "event_time": "Jul 19, 2026, 1:30 PM – 3:30 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-07-19T13:30:00",
              "event_date": "2026-07-19",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Pocket Opera brings Puccini's classic tale of love and heartbreak to life in an intimate performance of La Rondine.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://ci.ovationtix.com/36811/production/1255194?performanceId=11710366",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-05-18T11:24:43.687382Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5d672658e843",
              "venue_id": "venue_odc_theater",
              "title": "Iolanthe",
              "event_time": "7/19/2026 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-19T14:00:00",
              "event_date": "2026-07-19",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000002kO7p2AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e4ee9474f7f",
              "venue_id": "venue_presidio_theater",
              "title": "Godless: a new cabaret show by Rotimi Agbabiaka",
              "event_time": "2026-07-19",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-19T19:30:00",
              "event_date": "2026-07-19",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Rotimi Agbabiaka performs a provocative and entertaining cabaret show that blends music and storytelling to examine modern spirituality.",
              "event_types": [
                "live_music",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/godless-a-new-cabaret-show-by-rotimi-agbabiaka",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-19",
              "run_id": "run_85b2787d4ed6",
              "run_label": "Godless: a new cabaret show by Rotimi Agbabiaka, Jul 9 – Jul 19",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0191514fca4b",
              "venue_id": "venue_bach_dds",
              "title": "Michael Mayo",
              "event_time": "2026-07-19T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-07-19T16:30:00",
              "event_date": "2026-07-19",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "Acclaimed jazz vocalist Michael Mayo performs a set of soul-steeped improvisations. Known for his lithe voice and direct emotional expression, Mayo is a standout talent of his generation.",
              "event_types": [],
              "price_info": "Check website for ticket prices",
              "url": "https://dothebay.com/events/2026/7/19/the-bach-dancing-dynamite-society-presents-michael-mayo",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b3acb0412c62",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 19, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-19",
              "event_date": "2026-07-19",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-19-july-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d9d13f48b4cb",
              "venue_id": "venue_belle_cora",
              "title": "HIPSTERIA with “Tender” Tim",
              "event_time": "2026-07-19T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-07-19T18:00:00",
              "event_date": "2026-07-19",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Live jazz performance by HIPSTERIA featuring “Tender” Tim. Enjoy cool arrangements of modern pop, rock, blues, and R&B with no cover charge in a cozy outdoor setting.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://hipsteriac.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c32f0fcda45",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-19",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-19",
              "event_date": "2026-07-19",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-19",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_529f185ca7d1",
              "venue_id": "venue_mountain_winery",
              "title": "Jeff Foxworthy",
              "event_time": "Jul 19 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-19T18:00:00",
              "event_date": "2026-07-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The legendary comedian performs his signature brand of observational humor centered on family life and Southern culture. He is best known for his iconic \"You Might Be a Redneck\" jokes and relatable storytelling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jeff_Foxworthy",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_34e8682a8233",
              "venue_id": "venue_stern_grove",
              "title": "Charley Crockett",
              "event_time": "Jul 19 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-07-19T14:00:00",
              "event_date": "2026-07-19",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Charley Crockett, Nicki Bluhm, dj Eryka",
              "event_types": [
                "folk",
                "live_music",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Charley_Crockett",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-07-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-20": {
          "date": "2026-07-20",
          "updated_at": "2026-05-18T15:21:08.071433Z",
          "events": [
            {
              "event_id": "evt_6c98ba54bea8",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Evanescence: 2026 World Tour",
              "event_time": "2026-07-20T17:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-07-20T17:00:00",
              "event_date": "2026-07-20",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Evanescence leads a powerful lineup at Shoreline Amphitheatre, joined by Spiritbox and Nova Twins for their 2026 World Tour. The night will feature a mix of gothic rock, metal, and alternative sounds from these prominent acts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/evanescence-2026-world-tour-with-spiritbox-mountain-view-california-07-20-2026/event/1C006378BCB0A545",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-07-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db4c8e576ada",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "Alexander Reinagle: Composing a New Nation",
              "event_time": "2026-07-20T19:30:00",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-07-20T19:30:00",
              "event_date": "2026-07-20",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "Pianist Stephen Siek performs the work of Alexander Reinagle on the 240th anniversary of Reinagle's first concert in the United States.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$23.18 - $65.87",
              "url": "https://www.otherminds.org/events/alexander-reinagle-composing-a-new-nation/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-05-16T10:24:39.949015Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-07-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_34e851f47f30",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-20",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-20",
              "event_date": "2026-07-20",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-20",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9a379f07f37e",
              "venue_id": "venue_mountain_winery",
              "title": "Howard Jones: Things Can Only Get Better Tour",
              "event_time": "Jul 20, 2026 6:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-20T18:30:00",
              "event_date": "2026-07-20",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "with Wang Chung, The English Beat, Modern English, & Richard Blade",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1392054",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6af0cc8c5a29",
              "venue_id": "venue_yoshis",
              "title": "Music Monday: Love Vibes",
              "event_time": "MON 7.20 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-20T20:00:00",
              "event_date": "2026-07-20",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "AN EVENING OF INSPIRATION, CONNECTION, AND SOULFUL SOUND",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "$50 - $60",
              "url": "https://yoshis.com/events/buy-tickets/an-evening-with-the-producer/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_982799ee6fd0",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Jul 20 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-20T19:00:00",
              "event_date": "2026-07-20",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690181?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2c4d15442b7c",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-07-20T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-07-20T19:00:00",
              "event_date": "2026-07-20",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-07-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a102bc3a341f",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-20",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-20",
              "event_date": "2026-07-20",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-20",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce0a80d227c6",
              "venue_id": "venue_mountain_winery",
              "title": "80s New Wave Showcase",
              "event_time": "Jul 20 4:30pm/6:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-20T16:30:00",
              "event_date": "2026-07-20",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This massive 80s new wave showcase features a lineup of iconic bands performing their greatest synth-pop and ska-infused hits. It is a nostalgic journey through the sounds that defined a decade.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Howard_Jones",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-21": {
          "date": "2026-07-21",
          "updated_at": "2026-05-18T15:47:29.382297Z",
          "events": [
            {
              "event_id": "evt_32b78a07adae",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "The Sound of Music – Broadway San Jose",
              "event_time": "2026-07-21T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-07-21T19:30:00",
              "event_date": "2026-07-21",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "The hills are alive! A brand new production of The Sound of Music, the spirited, romantic and beloved musical story of Maria and the von Trapp Family.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/the-sound-of-music-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-03-20T01:06:06.059535Z",
                  "strategy_used": "LLM",
                  "source_id": "v_center_for_the_performing_arts"
                },
                {
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-03-20T18:06:49.999883Z",
                  "strategy_used": "LLM",
                  "source_id": "s_san_jose_theaters"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-07-21",
              "run_id": "run_23ec4e11177a",
              "run_label": "The Sound of Music, Jul 21 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ecd3a3a88e17",
              "venue_id": "venue_august_hall",
              "title": "Fulton Lee",
              "event_time": "Jul 21 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-07-21T19:00:00",
              "event_date": "2026-07-21",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Soulful pop artist Fulton Lee brings his Sing With Me tour to August Hall for a night of retro-inspired grooves and high-energy vocals.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$39.80",
              "url": "http://www.foopee.com/by-band.1.html#Fulton_Lee",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-03T12:36:43.722320Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_890c7c0b2d23",
              "venue_id": "venue_ivy_room",
              "title": "Piñata Protest & Mokosos",
              "event_time": "Tuesday Jul 21 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-21T19:00:00",
              "event_date": "2026-07-21",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Pinata Protest blends punk rock with traditional Tex-Mex accordion music for a high-energy show alongside Mokosos.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/183288",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-13T10:45:52.252525Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4a6aa393f4d7",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-21",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-21",
              "event_date": "2026-07-21",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-21",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f2cff4d8a992",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-21",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-21",
              "event_date": "2026-07-21",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-21",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_99baab320900",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-21",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-21",
              "event_date": "2026-07-21",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-21",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d4731d7a8984",
              "venue_id": "venue_mountain_winery",
              "title": "Wynonna Judd & Melissa Etheridge",
              "event_time": "Jul 21, 2026 7:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-21T19:00:00",
              "event_date": "2026-07-21",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Raised On Radio Tour",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1354237",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7efed5f47f28",
              "venue_id": "venue_yoshis",
              "title": "Ric Alexander",
              "event_time": "TUE 7.21 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-21T19:30:00",
              "event_date": "2026-07-21",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BAY AREA SONIC TRAILBLAZER OF MODERN JAZZ & DUAL SAX MASTER EXTRAORDINAIRE",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$30 - $65",
              "url": "https://yoshis.com/events/buy-tickets/ric-alexander/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6aadfaeee287",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jul 21 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-21T19:00:00",
              "event_date": "2026-07-21",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690206?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a72314a1f1f2",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-07-21T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-07-21T20:00:00",
              "event_date": "2026-07-21",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_68ce82c95523",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 21, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-21",
              "event_date": "2026-07-21",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023325",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2a25d8283eab",
              "venue_id": "venue_mountain_winery",
              "title": "Wynonna Judd & Melissa Etheridge",
              "event_time": "Jul 21 5pm/7pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-21T17:00:00",
              "event_date": "2026-07-21",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Two powerhouse vocalists from the worlds of country and rock team up for a night of legendary hits and collaborations. This performance highlights their soulful voices and celebrated careers.",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Wynonna_Judd___Melissa_Etheridge",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_176b70687dd1",
              "venue_id": "venue_thee_stork_club",
              "title": "Moviola",
              "event_time": "Jul 21 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-21T20:00:00",
              "event_date": "2026-07-21",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Moviola, Michael James Tapscott",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18 8pm",
              "url": "http://www.foopee.com/by-band.2.html#Moviola",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-22": {
          "date": "2026-07-22",
          "updated_at": "2026-05-18T15:47:29.385311Z",
          "events": [
            {
              "event_id": "evt_63f3db69bef4",
              "venue_id": "venue_castro_theater",
              "title": "TOTALLY TUBULAR FESTIVAL",
              "event_time": "July 22, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-07-22T19:00:00",
              "event_date": "2026-07-22",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Thomas Dolby & The Lost Toy People, A Flock of Seagulls, The Motels, The Producers, Animotion, The Escape Club, Tommy Tutone",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/totally-tubular-festival-260722",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-26T11:08:45.688088Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0c67c6b37c3",
              "venue_id": "venue_august_hall",
              "title": "Chris Travis",
              "event_time": "Jul 22 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-07-22T19:00:00",
              "event_date": "2026-07-22",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Rapper Chris Travis brings The Prefix Tour to August Hall, showcasing his influential underground hip-hop sound and high-intensity performance.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$60.90",
              "url": "http://www.foopee.com/by-band.0.html#Chris_Travis",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-03T12:36:43.722320Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eb2df2882d50",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-22",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-22",
              "event_date": "2026-07-22",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-22",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c671b3d1c3e6",
              "venue_id": "venue_the_marsh_sf",
              "title": "When the Skeleton Does",
              "event_time": "2026-07-22T19:30:00",
              "venue_name": "The Marsh SF",
              "event_start": "2026-07-22T19:30:00",
              "event_date": "2026-07-22",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Written and performed by Kristen Cosby, directed by Marsha Rynberg.",
              "event_types": [
                "theater"
              ],
              "price_info": "$15 - $25 General Seating | $50 - $100 Reserved Seating",
              "url": "https://themarsh.org/rising-kristen-cosby/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-05-14T12:57:17.692217Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_04b52835a511",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-22",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-22",
              "event_date": "2026-07-22",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-22",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_62e431342e97",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-22",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-22",
              "event_date": "2026-07-22",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-22",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7d1227352ca6",
              "venue_id": "venue_mountain_winery",
              "title": "Gladys Knight",
              "event_time": "Jul 22, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-22T19:30:00",
              "event_date": "2026-07-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1350103",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bb0513fe146a",
              "venue_id": "venue_yoshis",
              "title": "Carl Verheyen",
              "event_time": "WED 7.22 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-22T19:30:00",
              "event_date": "2026-07-22",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "LIGHT SHINE TOUR",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27 - $54",
              "url": "https://yoshis.com/events/buy-tickets/carl-verheyen-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f2f159b177d",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Pigeon Pit, Propolis & Pacing",
              "event_time": "Wednesday July 22 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-22T20:00:00",
              "event_date": "2026-07-22",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; folk-punk; alt-folk punk; antifolk bedroom pop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260722.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a0505354dc52",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "The Sound of Music – Broadway San Jose",
              "event_time": "2026-07-22",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-07-22",
              "event_date": "2026-07-22",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Rodgers & Hammerstein’s classic musical returns in a North American tour of the cherished family favorite.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/the-sound-of-music-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-07-22",
              "run_id": "run_b981b07ebb9c",
              "run_label": "The Sound of Music – Broadway San Jose, Jul 21 – Jul 26",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b120310347f0",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 22, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-22",
              "event_date": "2026-07-22",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023326",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f522b45a0f6b",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-22",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-22",
              "event_date": "2026-07-22",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-22",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa3b14e85027",
              "venue_id": "venue_mountain_winery",
              "title": "Gladys Knight",
              "event_time": "Jul 22 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-22T17:30:00",
              "event_date": "2026-07-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The \"Empress of Soul\" performs her legendary Motown and R&B classics with the grace and power that have defined her career. Fans can expect a night of timeless hits and soulful storytelling.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Gladys_Knight",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-23": {
          "date": "2026-07-23",
          "updated_at": "2026-05-18T15:43:10.120155Z",
          "events": [
            {
              "event_id": "evt_35a0d764d763",
              "venue_id": "venue_mvcpa",
              "title": "A Year with Frog and Toad",
              "event_time": "2026-07-23T19:30:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-07-23T19:30:00",
              "event_date": "2026-07-23",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "PYT MainStage production based on Arnold Lobel’s books, with music by Robert Reale and book/lyrics by Willie Reale. The page confirms performances July 23-26, 2026, but no specific public showtimes are listed on the event page.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://pytnet.org/upcoming-shows/a-year-with-frog-and-toad/",
              "tags": [],
              "sources": [
                {
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-03-24T15:02:42.947500Z",
                  "strategy_used": "LLM",
                  "source_id": "v_mvcpa"
                },
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-03-25T03:02:22.813190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-07-23",
              "run_id": "run_f9f3a17d7df9",
              "run_label": "Peninsula Youth Theatre: A Year with Frog and Toad, Jul 23 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a748d8e5061b",
              "venue_id": "venue_the_independent",
              "title": "RIFF WOOD",
              "event_time": "7.23 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-23T20:00:00",
              "event_date": "2026-07-23",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "a/a $31.55 ($108.55 vip) 7:30pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/riff-wood/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d4bef2d5f9e9",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Bear vs Shark, awakebutstillinbed",
              "event_time": "Thursday July 23 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-23T19:00:00",
              "event_date": "2026-07-23",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; post-hardcore; punk emo screamo",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35 $41.81 in advance [35 face value + 6.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260723.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c850af6e9f7e",
              "venue_id": "venue_frost_amphitheater",
              "title": "James Bond Forever",
              "event_time": "2026-07-23T19:30:00",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-07-23T19:30:00",
              "event_date": "2026-07-23",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Classical performance presented by Stanford Live",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/james-bond-forever-san-francisco-symphony",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_frost_amphitheater",
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-05-06T07:04:09.449554Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_283d2de93481",
              "venue_id": "venue_the_chapel",
              "title": "Natural Information Society & Bitchin Bajas",
              "event_time": "Jul 23 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-07-23T19:00:00",
              "event_date": "2026-07-23",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$36.64 7pm/8pm",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$36.64",
              "url": "http://www.foopee.com/by-band.2.html#Natural_Information_Society",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_abee5030888b",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-23",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-23",
              "event_date": "2026-07-23",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-23",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_32ebeab49e70",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-07-23T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-07-23T19:00:00",
              "event_date": "2026-07-23",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9b65bc4a99a1",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-23",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-23",
              "event_date": "2026-07-23",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-23",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_78fee2d8d8fc",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-23",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-23",
              "event_date": "2026-07-23",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-23",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_940f826964da",
              "venue_id": "venue_greek_theatre",
              "title": "THE FRAY",
              "event_time": "July 23, 2026 6:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-07-23T18:00:00",
              "event_date": "2026-07-23",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "The Fray brings their piano-driven rock hits to the Greek Theatre.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/the-fray-260723",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-17T14:14:15.324242Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_greek_theatre|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b212e2feaaac",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-23",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-23",
              "event_date": "2026-07-23",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-23",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a75b468ead1f",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-23T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-23T19:30:00",
              "event_date": "2026-07-23",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-23",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b25851f3aa6d",
              "venue_id": "venue_the_sound_room",
              "title": "An Evening of Illusion",
              "event_time": "Thursday, July 23, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-07-23T19:30:00",
              "event_date": "2026-07-23",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "An Evening of Illusion features the Bay Area's top acts in magic. Our performers have been seen on the biggest stages and have appeared in film and television! In this off the rails unconventional magic show, we take you on a tour of the impossible.\n\nPerforming this evening are three great illusionists:\n\nChris Britt is an award-winning magician who has performed in England, India, Japan, Las Vegas and all across the country. He has been featured onstage at SF Sketchfest and Outside Lands Music Festival. Drawing from his theater training at Northwestern University and improv comedy training at The Second City Conservatory, Chris’s style is polished, interactive, and spontaneous.\n\nPerry Yan has been performing full time for the past 16 years. From private parties, school shows, to company events like microsoft, intel, salesforce and the SF giants.He has refined his craft by delivering over 350+ shows a year. His style is best described as highly visual sleight of hand combined with astonishing magic.Perry recently competed in the Oakland Magic Circle stage competition, where he was awarded first place.\n\nTimothy James is a sleight-of-hand artist with a knack for reading thoughts, predicting futures, and creating moments of wonder that defy explanation. He’s performed for fortune 500 companies, cruise ships, comedy clubs and performing art centers across the country. He is the winner of numerous awards for sleight of hand and variety entertainment including the Lance Burton Award of Excellence from the World Magic Seminar in Las Vegas.\n\nTickets at An Evening of Illusion",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/an-evening-of-illusion-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-05-18T10:15:38.868174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_95d13b5f2006",
              "venue_id": "venue_mountain_winery",
              "title": "Happy Together Tour 2026",
              "event_time": "Jul 23, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-23T19:30:00",
              "event_date": "2026-07-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Association, The Troggs, Chicago Lead Singer Jason Scheff, Gary Puckett, The Fortunes, Ron Dante, The Vogues, The Cowsills",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1324672",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_81d17abc1c9f",
              "venue_id": "venue_presidio_theater",
              "title": "Tony n' Tina's Wedding",
              "event_time": "2026-07-23",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-23T19:30:00",
              "event_date": "2026-07-23",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "This long-running interactive comedy invites the audience to become part of the family during a hilarious and immersive wedding celebration.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/tony-n-tinas-wedding",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-23",
              "run_id": "run_4a6ffdeff27f",
              "run_label": "Tony n' Tina's Wedding, Jul 23 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_09d7185be1a0",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "The Sound of Music – Broadway San Jose",
              "event_time": "2026-07-23",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-07-23",
              "event_date": "2026-07-23",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Rodgers & Hammerstein’s classic musical returns in a North American tour of the cherished family favorite.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/the-sound-of-music-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-07-23",
              "run_id": "run_b981b07ebb9c",
              "run_label": "The Sound of Music – Broadway San Jose, Jul 21 – Jul 26",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9faf06003672",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 23, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-23",
              "event_date": "2026-07-23",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-23-july-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_323b9a0901ae",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-23",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-23",
              "event_date": "2026-07-23",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-23",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_436e8513f943",
              "venue_id": "venue_greek_theatre",
              "title": "Fray, Dashboard Confessional",
              "event_time": "Jul 23 2026 4:30pm/6pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-07-23T16:30:00",
              "event_date": "2026-07-23",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a $78.15 4:30pm/6pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$78.15",
              "url": "http://www.foopee.com/by-band.1.html#Fray",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ecb9c7cdaca1",
              "venue_id": "venue_mountain_winery",
              "title": "60s Pop Legends Showcase",
              "event_time": "Jul 23 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-23T17:30:00",
              "event_date": "2026-07-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Dante, Vogues, Cowsills",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Association",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f9adfca12c34",
              "venue_id": "venue_thee_stork_club",
              "title": "Pocket Full Of Crumbs",
              "event_time": "Jul 23 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-23T20:00:00",
              "event_date": "2026-07-23",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Pocket Full Of Crumbs, Lost Objects, Crows",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12 8pm",
              "url": "http://www.foopee.com/by-band.2.html#Pocket_Full_Of_Crumbs",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-24": {
          "date": "2026-07-24",
          "updated_at": "2026-05-18T16:16:06.709508Z",
          "events": [
            {
              "event_id": "evt_e4d51e07468b",
              "venue_id": "venue_mvcpa",
              "title": "A Year with Frog and Toad",
              "event_time": "2026-07-24T19:30:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Based on Arnold Lobel's books, this musical follows the cheerful Frog and grumpy Toad through four fun-filled seasons, celebrating the differences that make them unique.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://pytnet.org/upcoming-shows/a-year-with-frog-and-toad/",
              "tags": [],
              "sources": [
                {
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-03-24T15:02:42.947500Z",
                  "strategy_used": "LLM",
                  "source_id": "v_mvcpa"
                },
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-03-25T03:02:22.813190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-07-24",
              "run_id": "run_f9f3a17d7df9",
              "run_label": "Peninsula Youth Theatre: A Year with Frog and Toad, Jul 23 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06168e27fd4c",
              "venue_id": "venue_rickshaw_stop",
              "title": "Spacemoth",
              "event_time": "Jul 24 2026 8pm/8:45pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-07-24T20:45:00",
              "event_date": "2026-07-24",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Celebrate the launch of Spacemoth's latest record with a live performance of their experimental and cosmic pop tracks.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "http://www.foopee.com/by-band.3.html#Spacemoth",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3da052630e45",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Scissors For Lefty, My First Earthquake",
              "event_time": "Friday July 24 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-24T20:00:00",
              "event_date": "2026-07-24",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; Balanced Breakfast; presents...; Indie Pop, Dirty Glam; electro pop; spinning the sleazy hits",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$20 $25.31 in advance [20 face value +5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260724.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_29a25c7e3f96",
              "venue_id": "venue_brick_and_mortar",
              "title": "Sace6, Shyeye",
              "event_time": "Jul 24 7:30pm/8:30pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "$26.74 (under 21 plus 5) 7:30pm/8:30pm ^",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$26.74 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.2.html#Sace6",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5bad71e3008c",
              "venue_id": "venue_the_chapel",
              "title": "James McMurtry & The Martial Law Review",
              "event_time": "Jul 24 7:30pm/8:30pm",
              "venue_name": "The Chapel",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$39.59 7:30pm/8:30pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39.59",
              "url": "http://www.foopee.com/by-band.1.html#James_McMurtry_And_The_Martial_Law_Review",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e3b0261cbe2e",
              "venue_id": "venue_the_fillmore",
              "title": "Chance Peña",
              "event_time": "2026-07-24",
              "venue_name": "The Fillmore",
              "event_start": "2026-07-24T20:00:00",
              "event_date": "2026-07-24",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Singer-songwriter Chance Peña performs his heartfelt folk-pop songs in an intimate live setting.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$44.50",
              "url": "http://www.foopee.com/by-band.0.html#Chance_Pena",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-14T10:28:31.042763Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a3b4d2358b19",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-24",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-24",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_71a0a9a1c68f",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-24",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-24",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7e58c17512dd",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-07-24 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-07-24",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ac3771588cde",
              "venue_id": "venue_first_church_berkeley",
              "title": "Handel's Tolomeo",
              "event_time": "2026-07-24T19:30:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "Music Director Peter Whelan opens the season with a semi-staged production of Handel's opera Tolomeo, re d'Egitto, starring countertenor Aryeh Nussbaum Cohen.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "$30 - $125",
              "url": "https://philharmonia.org/concert/handels-tolomeo-in-berkeley/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c1a4aa5fbef4",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "The Magic of Motown",
              "event_time": "2026-07-24T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "A journey through Motown's best including hits from The Temptations, The Jackson Five, and Diana Ross.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$49 - $79 USD",
              "url": "https://www.purplepass.com/#284753/Palace_of_Fine_Arts_Theatre-The_Magic_of_Motown-Palace_of_Fine_Arts_Theatre-July-24-2026.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1f4285f71b5e",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-07-24T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "San Francisco’s longest-running neighborhood jazz party!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7906cde680c4",
              "venue_id": "venue_new_farm",
              "title": "Jakub Kalousek Film Screening",
              "event_time": "2026-07-24T17:00:00",
              "venue_name": "The New Farm",
              "event_start": "2026-07-24T17:00:00",
              "event_date": "2026-07-24",
              "venue_address": "10 Cargo Way, San Francisco, CA 94124",
              "description": "A screening of 'Week Old Sushi & All Bagel Mix' by Czech transplant Jakub Kalousek, followed by a Q&A session. Part of the ongoing Friday Film Series to support the community center.",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "$20 suggested donation",
              "url": "https://bethcuster.com/gigs/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_farm",
                  "source_name": "The New Farm",
                  "fetched_at": "2026-05-17T11:02:48.701687Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_new_farm|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2a3c2aba9027",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-24",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-24",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7b1ab69fc403",
              "venue_id": "venue_sap_center",
              "title": "CrossFit Games",
              "event_time": "2026-07-24",
              "venue_name": "SAP Center",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-07-24",
              "run_id": "run_6ca4d8659b5b",
              "run_label": "CrossFit Games, Jul 24 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c625f534b24e",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-24",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-24",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9ee06f7c2b1c",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-24T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-24",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_11661523b426",
              "venue_id": "venue_mountain_winery",
              "title": "Lauren Daigle",
              "event_time": "Jul 24, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1383429",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9de76f7b91ae",
              "venue_id": "venue_paramount_theatre",
              "title": "THE MALTESE FALCON",
              "event_time": "July 24, 2026 7:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-07-24T19:00:00",
              "event_date": "2026-07-24",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Enjoy a screening of the definitive film noir classic featuring detective Sam Spade and his pursuit of a mysterious, jewel-encrusted statuette. This cinematic event at the Paramount Theatre brings the tension and mystery of the 1941 masterpiece to the big screen.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/the-maltese-falcon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5b031ae5b6e9",
              "venue_id": "venue_presidio_theater",
              "title": "Tony n' Tina's Wedding",
              "event_time": "2026-07-24",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-24T19:30:00",
              "event_date": "2026-07-24",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "This long-running interactive comedy invites the audience to become part of the family during a hilarious and immersive wedding celebration.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/tony-n-tinas-wedding",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-24",
              "run_id": "run_4a6ffdeff27f",
              "run_label": "Tony n' Tina's Wedding, Jul 23 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c7207e4eb048",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "The Sound of Music – Broadway San Jose",
              "event_time": "2026-07-24",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Rodgers & Hammerstein’s classic musical returns in a North American tour of the cherished family favorite.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/the-sound-of-music-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-07-24",
              "run_id": "run_b981b07ebb9c",
              "run_label": "The Sound of Music – Broadway San Jose, Jul 21 – Jul 26",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_42b0291e0446",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 24, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-24-july-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4270f1b216f0",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-24",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-24",
              "event_date": "2026-07-24",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-24",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_10f5fe8690e1",
              "venue_id": "venue_san_jose_civic",
              "title": "HIMEHINA: LIFETIME is BUBBLIN",
              "event_time": "Fri, Jul 24 • 3:00 PM, 2026",
              "venue_name": "San Jose Civic",
              "event_start": "2026-07-24T15:00:00",
              "event_date": "2026-07-24",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "The virtual duo HIMEHINA brings their 2026 world tour to the San Jose Civic for a unique digital music performance. This event features the popular VTuber personalities as part of their 'LIFETIME is BUBBLIN' show.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "From $44.52",
              "url": "https://www.eventbrite.com/e/himehina-world-tour-2026-lifetime-is-bubblin-in-san-jose-with-offkai-expo-tickets-1979131886750?aff=ebdssbdestsearch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-05-18T14:38:18.936838Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d5ba67f78718",
              "venue_id": "venue_mountain_winery",
              "title": "Lauren Daigle",
              "event_time": "Jul 24 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-24T17:30:00",
              "event_date": "2026-07-24",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The contemporary Christian music star performs her soulful, pop-infused hits that have crossed over to mainstream success. Her live show is known for its powerful vocals and uplifting atmosphere.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Lauren_Daigle",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66325cbe847b",
              "venue_id": "venue_thee_stork_club",
              "title": "M.U.T.T.",
              "event_time": "Jul 24 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-24T20:00:00",
              "event_date": "2026-07-24",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "M.U.T.T., Gloomhead, Western Addiction, Rotten Charms",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 8pm",
              "url": "http://www.foopee.com/by-band.2.html#M_U_T_T_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_284a57217570",
              "venue_id": "venue_the_ritz",
              "title": "Blade Rave",
              "event_time": "2026-07-24T21:00:57-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-24T21:00:57",
              "event_date": "2026-07-24",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "BLADE RAVE\n\n \n\nFRIDAY JULY 24, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20 Early Bird – $22.50 GA",
              "url": "https://www.ticketweb.com/event/blade-rave-the-ritz-tickets/14893983",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-18T15:41:10.895193Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f3738de7752c",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Careless Whisper",
              "event_time": "July 24, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-07-24T18:00:00",
              "event_date": "2026-07-24",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "with Art on the Square\n\nIf you like big hair, crazy fashions, and the best 80's rock and pop music, you're going to love Careless Whisper. Experience, or re-experience, a bump of the ultimate tribute to 80's rock and dance music! Performing a never-ending stream of everyone's favorite hits, Careless Whisper brings you a blast from the past.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.carelesswhisper80s.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-07-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-25": {
          "date": "2026-07-25",
          "updated_at": "2026-05-18T15:58:43.847836Z",
          "events": [
            {
              "event_id": "evt_2222bc600610",
              "venue_id": "venue_canada_theater",
              "title": "Summer Classics 2026",
              "event_time": "2026-07-25T19:30:00",
              "venue_name": "Cañada College Theater",
              "event_start": "2026-07-25T19:30:00",
              "event_date": "2026-07-25",
              "venue_address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
              "description": "Sergey Prokofiev Overture on Hebrew Themes\nWolfgang Amadeus Mozart (arr. Timo Andres) Piano Concerto no. 26 (“Coronation”)\nLouise Costigan-Kerns, piano\nLudwig van Beethoven Symphony No. 1\n\nProkofiev’s merry klezmer romp sets the stage for Timo Andres’ imaginative reframing of a problematic Mozart concerto. And Beethoven’s First Symphony was in the best tradition of the late Mozart and Beethoven’s current teacher, Haydn, while demonstrating just enough independence and slightly shocking “modernity” to attract key Viennese patronage. And it still delights, 226 years later!",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Paid",
              "url": "https://redwoodsymphony.org/concert/summer-classics-2026/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Redwood Symphony",
                  "fetched_at": "2026-03-24T04:37:31.014713Z",
                  "strategy_used": "LLM",
                  "source_id": "s_redwood_symphony"
                },
                {
                  "source_name": "Redwood Symphony 41",
                  "fetched_at": "2026-03-24T04:47:04.794246Z",
                  "strategy_used": "DIRECT",
                  "source_id": "s_redwood_symphony_41"
                },
                {
                  "source_name": "Cañada College Theater",
                  "fetched_at": "2026-03-24T15:44:41.951128Z",
                  "strategy_used": "LLM",
                  "source_id": "v_canada_theater"
                }
              ],
              "match_key": "venue_canada_theater|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57ff7a05be05",
              "venue_id": "venue_mvcpa",
              "title": "A Year with Frog and Toad",
              "event_time": "2026-07-25T13:00:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-07-25T13:00:00",
              "event_date": "2026-07-25",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Based on Arnold Lobel's books, this musical follows the cheerful Frog and grumpy Toad through four fun-filled seasons, celebrating the differences that make them unique.",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "$25 - $32",
              "url": "https://pytnet.org/boxoffice/a-year-with-frog-and-toad/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-03-25T03:02:22.813190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-03-25T09:49:14.469853Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e0beca8437b9",
              "venue_id": "venue_the_independent",
              "title": "Diggy Graves, Resentvul, Ryan Oakes",
              "event_time": "7.25 Show: 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-25T21:00:00",
              "event_date": "2026-07-25",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "A showcase of modern alternative and hip-hop influenced sounds featuring Diggy Graves, Resentvul, and Ryan Oakes.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/diggy-graves/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77ce70228fdb",
              "venue_id": "venue_the_fillmore",
              "title": "Chance Pena",
              "event_time": "Jul 25 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-07-25T19:00:00",
              "event_date": "2026-07-25",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Singer-songwriter Chance Peña performs his heartfelt folk-pop songs live at The Fillmore for an intimate concert experience.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$44.50",
              "url": "http://www.foopee.com/by-band.0.html#Chance_Pena",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-09T01:56:35.358428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0dcdb61ffe38",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Body, BIG BRAVE",
              "event_time": "Saturday July 25 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-25T20:00:00",
              "event_date": "2026-07-25",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; sludge metal; post-metal; xxx",
              "event_types": [
                "live_music",
                "rock",
                "experimental"
              ],
              "price_info": "$20 $25.31 in advance [20 face value + 5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260725.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f1f80f4409ef",
              "venue_id": "venue_4_star_theater",
              "title": "Gracie and Rachel",
              "event_time": "Jul 25, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-07-25T20:00:00",
              "event_date": "2026-07-25",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The 4 Star Theater hosts the orchestral pop duo Gracie and Rachel for a night of live music. The performance will feature their intricate arrangements of violin, piano, and vocal harmonies.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-gracie-and-rachel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-18T08:40:49.734396Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c2168db845f0",
              "venue_id": "venue_rickshaw_stop",
              "title": "RAY AND PAUL",
              "event_time": "Sat Jul 25 8:45PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-07-25T20:45:00",
              "event_date": "2026-07-25",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Ray and Paul perform a live set of music, likely showcasing their collaborative acoustic or indie style at The Independent.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$22.00-$25.00",
              "url": "https://wl.seetickets.us/event/ray-and-paul/689144?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-30T15:22:32.287368Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77e8f27c86bd",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Maria Muldaur & Her Jazzabelle Quintet",
              "event_time": "2026-07-25T19:30:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-07-25T19:30:00",
              "event_date": "2026-07-25",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "Grammy nominee Maria Muldaur presents 'BLUES & ALL THAT JAZZ' with her Jazzabelle Quintet.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$55 / $65 VIP",
              "url": "https://marinjazz.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a7469fedc88a",
              "venue_id": "venue_brick_and_mortar",
              "title": "Ben Chapman",
              "event_time": "Jul 25 7:30pm/8:30pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-07-25T19:30:00",
              "event_date": "2026-07-25",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "$26.74 (under 21 plus 5) 7:30pm/8:30pm ^",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$26.74 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#Ben_Chapman",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a213a14bc654",
              "venue_id": "venue_the_chapel",
              "title": "James McMurtry & The Martial Law Review",
              "event_time": "Jul 25 7:30pm/8:30pm",
              "venue_name": "The Chapel",
              "event_start": "2026-07-25T19:30:00",
              "event_date": "2026-07-25",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$39.59 7:30pm/8:30pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39.59",
              "url": "http://www.foopee.com/by-band.1.html#James_McMurtry_And_The_Martial_Law_Review",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a36ea6260687",
              "venue_id": "venue_madarae",
              "title": "Grossomoddo",
              "event_time": "2026-07-25T21:00:00",
              "venue_name": "Madarae",
              "event_start": "2026-07-25T21:00:00",
              "event_date": "2026-07-25",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "A special night with GROSSOMODDO, featuring a blend of Mediterranean and Balkan Afro House rhythms.",
              "event_types": [],
              "price_info": "From $17.85",
              "url": "https://www.eventbrite.com/e/grossomoddo-afro-house-madarae-nightclub-tickets-884901479497",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-05-13T13:11:14.181208Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-13T13:12:34.430118Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6b7fe44b2f2d",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-25",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-25",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de5b326cb22d",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-07-25T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-07-25T20:00:00",
              "event_date": "2026-07-25",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-07-25",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_776e5e585c21",
              "venue_id": "venue_z_space",
              "title": "Killing My Lobster: Sketch on Speed (July Edition)",
              "event_time": "2026-07-25T21:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-07-25T21:00:00",
              "event_date": "2026-07-25",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "The July edition of the fast-paced sketch comedy show created in 12 hours. Raw, uncut, and boundary-pushing comedy performed live at Z Below.",
              "event_types": [],
              "price_info": "$12.50 - $76.54",
              "url": "https://www.killingmylobster.com/shows-and-events/sketch-on-speed-july-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-05-15T12:16:16.750203Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_z_space|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ee715da32c7f",
              "venue_id": "venue_yerba_buena_center",
              "title": "Yerba Buena Gardens ChoreoFest 2026",
              "event_time": "2026-07-25T13:00:00",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-07-25T13:00:00",
              "event_date": "2026-07-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A site-specific dance and music festival featuring Mission Delirium, Jazz Mafia, and Brass Convergence.",
              "event_types": [
                "live_music",
                "jazz",
                "dance",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://ybgfestival.org/event/choreofest-2026-day-1/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_mission_delirium",
                  "source_name": "Mission Delirium",
                  "fetched_at": "2026-05-15T17:16:05.957480Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1b152946b9b2",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-25",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-25",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_58536ca423af",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-07-25 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-07-25",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e4802e872f24",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Short Show",
              "event_time": "2026-07-25T18:45:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-07-25T18:45:00",
              "event_date": "2026-07-25",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "A light summertime delight that bridges the time between happy hour and evening plans with fast-paced improv.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-short-show-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_57d3cc6066cb",
              "venue_id": "venue_bayfront_theater",
              "title": "BATS Improv presents: The Startup",
              "event_time": "2026-07-25T20:00:00",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-07-25T20:00:00",
              "event_date": "2026-07-25",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised show exploring the world of Silicon Valley startups and entrepreneurship, built from audience suggestions.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "$10 - $25",
              "url": "https://www.eventbrite.com/e/bats-improv-presents-the-startup-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-05-15T21:29:02.335353Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_52671d52683b",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz Club",
              "event_time": "2026-07-25T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-25T19:30:00",
              "event_date": "2026-07-25",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Saturday night Jazz Club. Each week it's a new sound, so come on down!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_76e95ac4cdd7",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-25",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-25",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_045e21eb4267",
              "venue_id": "venue_sap_center",
              "title": "CrossFit Games",
              "event_time": "2026-07-25",
              "venue_name": "SAP Center",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-07-25",
              "run_id": "run_6ca4d8659b5b",
              "run_label": "CrossFit Games, Jul 24 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ddb3b3c0a348",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-25",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-25",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c212e09b03d",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-25T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-25T19:30:00",
              "event_date": "2026-07-25",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-25",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1f13a9b04b37",
              "venue_id": "venue_presidio_theater",
              "title": "Tony n' Tina's Wedding",
              "event_time": "2026-07-25",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-25T19:30:00",
              "event_date": "2026-07-25",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "This long-running interactive comedy invites the audience to become part of the family during a hilarious and immersive wedding celebration.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/tony-n-tinas-wedding",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-25",
              "run_id": "run_4a6ffdeff27f",
              "run_label": "Tony n' Tina's Wedding, Jul 23 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b4483702cb28",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "The Sound of Music – Broadway San Jose",
              "event_time": "2026-07-25",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Rodgers & Hammerstein’s classic musical returns in a North American tour of the cherished family favorite.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/the-sound-of-music-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-07-25",
              "run_id": "run_b981b07ebb9c",
              "run_label": "The Sound of Music – Broadway San Jose, Jul 21 – Jul 26",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_daeb29196b12",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 25, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-25-july-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fb35c5e6a27f",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-25",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-25",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e534192dfd00",
              "venue_id": "venue_great_american_music_hall",
              "title": "Ringo Deathstarr and Friends",
              "event_time": "Jul 25 2026 5pm/6pm",
              "venue_name": "Great American",
              "event_start": "2026-07-25T17:00:00",
              "event_date": "2026-07-25",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $25/$30 5pm/6pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "http://www.foopee.com/by-band.2.html#Ringo_Deathstarr",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b901f71c3ba",
              "venue_id": "venue_levis_stadium",
              "title": "ED SHEERAN | LOOP TOUR",
              "event_time": "Jul 25, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-07-25",
              "event_date": "2026-07-25",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Global superstar Ed Sheeran brings his Loop Tour to Levi's Stadium for an evening of live music and acoustic performances.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/ed-sheeran/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57bbdf4d22d1",
              "venue_id": "venue_dna_lounge",
              "title": "Big Muscle Party: Uya Edition",
              "event_time": "07/25/2026 2pm-7pm",
              "venue_name": "DNA Lounge",
              "event_start": "2026-07-25T14:00:00",
              "event_date": "2026-07-25",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$30-40 | 21+",
              "url": "https://www.dnalounge.com/calendar/2026/07-25a.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-07-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-26": {
          "date": "2026-07-26",
          "updated_at": "2026-05-18T15:37:05.411355Z",
          "events": [
            {
              "event_id": "evt_8ae49bbf9f2e",
              "venue_id": "venue_mvcpa",
              "title": "A Year with Frog and Toad",
              "event_time": "2026-07-26T11:00:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-07-26T11:00:00",
              "event_date": "2026-07-26",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Based on Arnold Lobel's books, this musical follows the cheerful Frog and grumpy Toad through four fun-filled seasons, celebrating the differences that make them unique.",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "$25 - $32",
              "url": "https://pytnet.org/boxoffice/a-year-with-frog-and-toad/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_pyt_peninsula_youth_theatre",
                  "source_name": "PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-03-25T03:02:22.813190Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-03-25T09:49:14.469853Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s__pyt_peninsula_youth_theatre",
                  "source_name": "# PYT (Peninsula Youth Theatre)",
                  "fetched_at": "2026-04-13T01:51:23.511918Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_75fbf4c2eaf7",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Parts and Labor, Evicshen, HLLLYH",
              "event_time": "Sunday July 26 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-26T20:00:00",
              "event_date": "2026-07-26",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; Noise Pop, Experimental Rock; noise synths; experimental punk",
              "event_types": [
                "live_music",
                "rock",
                "experimental"
              ],
              "price_info": "$25 $30.81 in advance [25 face value + 5.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260726.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6272503a5429",
              "venue_id": "venue_yerba_buena_center",
              "title": "Yerba Buena Gardens ChoreoFest",
              "event_time": "2026-07-26T13:00:00",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-07-26T13:00:00",
              "event_date": "2026-07-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A two-weekend festival of site-specific dance work. This program features Jazz Mafia, Mission Delirium, and Brass Convergence in a collaborative finale.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world",
                "dance",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://ybgfestival.org/event/ybg-choreofest-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_mission_delirium",
                  "source_name": "Mission Delirium",
                  "fetched_at": "2026-04-30T20:44:40.670754Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-05-04T11:16:50.828130Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_58d9ba0b89ab",
              "venue_id": "venue_924_gilman",
              "title": "Jejune, Racecourse",
              "event_time": "Jul 26 2026 6:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-07-26T18:30:00",
              "event_date": "2026-07-26",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Jejune returns for a US show at 924 Gilman with support from Racecourse (Santa Cruz); all ages. Doors open at 6:30 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22/$25",
              "url": "http://www.foopee.com/by-band.1.html#Jejune",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-01T06:29:15.362316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-01T08:25:08.020214Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0d308e6e4a4f",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Michael Wolff, solo",
              "event_time": "2026-07-26T17:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-07-26T17:00:00",
              "event_date": "2026-07-26",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "An intimate solo piano performance by acclaimed jazz pianist and composer Michael Wolff.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/concerts/2026/7/26/michael-wolff",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-05-06T18:09:28.971011Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d78f68b85829",
              "venue_id": "venue_mitchell_park_center",
              "title": "Miko Marks",
              "event_time": "2026-07-26T14:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-07-26T14:00:00",
              "event_date": "2026-07-26",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Jazz performance",
              "event_types": [],
              "price_info": "Free",
              "url": "https://markweiss86.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-05-11T16:56:01.262503Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dd2ff93404f2",
              "venue_id": "venue_stay_gold_deli",
              "title": "Chemical-X",
              "event_time": "Jul 26 2026",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Live music performance by Chemical-X.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check at door",
              "url": "http://www.foopee.com/by-band.0.html#Chemical_X",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-13T12:51:33.580365Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5fbf6da0ddbd",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-26",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-26",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cae8c3127583",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-07-26T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-07-26T20:00:00",
              "event_date": "2026-07-26",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-07-26",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6e0439ba07ff",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-26",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-26",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f3fae95e9a63",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-07-26 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-07-26",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8de7d057b674",
              "venue_id": "venue_mvcpa",
              "title": "Accentuate the Positive",
              "event_time": "2026-07-26T15:00:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-07-26T15:00:00",
              "event_date": "2026-07-26",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "A hip, sophisticated take on the music that carried Americans through hard times, from the 1920s through the 1940s.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.mvcpa.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_jazz_at_the_ballroom",
                  "source_name": "Jazz at the Ballroom",
                  "fetched_at": "2026-05-15T21:45:23.325267Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0f8db31d8125",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jam Session hosted by the Vince Lateano Trio",
              "event_time": "2026-07-26T17:00:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-26T17:00:00",
              "event_date": "2026-07-26",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "All-comers Jam Session hosted by the Vince Lateano Trio on the Last Sunday of every month.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b02b6f651f2f",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-26",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-26",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df0b27371cde",
              "venue_id": "venue_sap_center",
              "title": "CrossFit Games",
              "event_time": "2026-07-26",
              "venue_name": "SAP Center",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-07-26",
              "run_id": "run_6ca4d8659b5b",
              "run_label": "CrossFit Games, Jul 24 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9017236ff918",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-26T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-26T19:30:00",
              "event_date": "2026-07-26",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-26",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c0ca428e851a",
              "venue_id": "venue_mountain_winery",
              "title": "Trevor Noah",
              "event_time": "Jul 26, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-26T20:00:00",
              "event_date": "2026-07-26",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "other"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1258078",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dae97eba0102",
              "venue_id": "venue_presidio_theater",
              "title": "Tony n' Tina's Wedding",
              "event_time": "2026-07-26",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-07-26T19:30:00",
              "event_date": "2026-07-26",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "This long-running interactive comedy invites the audience to become part of the family during a hilarious and immersive wedding celebration.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/tony-n-tinas-wedding",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-07-26",
              "run_id": "run_4a6ffdeff27f",
              "run_label": "Tony n' Tina's Wedding, Jul 23 – Jul 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ceb245d5af4",
              "venue_id": "venue_bach_dds",
              "title": "Ray Obiedo Band ft. Pete Escovedo",
              "event_time": "2026-07-26T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-07-26T16:30:00",
              "event_date": "2026-07-26",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "Contemporary jazz guitarist Ray Obiedo brings his high-energy Latin band to the stage, featuring the legendary percussionist Pete Escovedo for an afternoon of vibrant rhythmic blends.",
              "event_types": [],
              "price_info": "Check website for ticket prices",
              "url": "https://dothebay.com/events/2026/7/26/the-bach-dancing-dynamite-society-presents-ray-obiedo-band-ft",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_87794f621fd5",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "The Sound of Music – Broadway San Jose",
              "event_time": "2026-07-26",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Rodgers & Hammerstein’s classic musical returns in a North American tour of the cherished family favorite.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/the-sound-of-music-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-07-26",
              "run_id": "run_b981b07ebb9c",
              "run_label": "The Sound of Music – Broadway San Jose, Jul 21 – Jul 26",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_55e17adcd93a",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 26, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023337",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2a913fbb4ea4",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-26",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-26",
              "event_date": "2026-07-26",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-26",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d18ce98433f7",
              "venue_id": "venue_mountain_winery",
              "title": "Trevor Noah",
              "event_time": "Jul 26 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-26T18:00:00",
              "event_date": "2026-07-26",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The former Daily Show host and world-renowned comedian performs his latest stand-up material focusing on global politics and personal anecdotes. His sharp wit and insightful observations provide a night of thought-provoking laughter.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Trevor_Noah",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42183b910a52",
              "venue_id": "venue_stern_grove",
              "title": "Suki Waterhouse",
              "event_time": "Jul 26 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-07-26T14:00:00",
              "event_date": "2026-07-26",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Suki Waterhouse, dj Cheryl Waters",
              "event_types": [
                "live_music",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Suki_Waterhouse",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-07-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-27": {
          "date": "2026-07-27",
          "updated_at": "2026-05-18T14:49:06.959037Z",
          "events": [
            {
              "event_id": "evt_7a9d9b7bcb55",
              "venue_id": "venue_the_independent",
              "title": "Wu Lyf, Bondo",
              "event_time": "7.27 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-07-27T20:00:00",
              "event_date": "2026-07-27",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "The influential indie rock band Wu Lyf returns to the stage for a powerful live performance with support from Bondo.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "POSTPONED",
              "url": "https://www.theindependentsf.com/tm-event/wu-lyf/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-11T10:33:11.755519Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-13T12:36:31.853883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-07-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_044bb7af313d",
              "venue_id": "venue_musicians_union_hall",
              "title": "AFM Local 6 General Membership Meeting",
              "event_time": "2026-07-27T13:00:00",
              "venue_name": "Musicians Union Hall",
              "event_start": "2026-07-27T13:00:00",
              "event_date": "2026-07-27",
              "venue_address": "116 9th St, San Francisco, CA 94103",
              "description": "Quarterly general membership meeting for the Musicians Union Local 6. Members are invited to hear updates about the union and meet with representatives.",
              "event_types": [
                "community"
              ],
              "price_info": "Free for members",
              "url": "https://afm6.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_musicians_union_hall",
                  "source_name": "Musicians Union Hall",
                  "fetched_at": "2026-05-11T12:01:45.357016Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_musicians_union_hall|2026-07-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e533783a1fc8",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-27",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-27",
              "event_date": "2026-07-27",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-27",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91c0aacbe72e",
              "venue_id": "venue_mountain_winery",
              "title": "Trevor Noah",
              "event_time": "Jul 27, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-27T20:00:00",
              "event_date": "2026-07-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1258081",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a94d10d1cf6",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Jul 27 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-27T19:00:00",
              "event_date": "2026-07-27",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690182?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b9f0d3716e8a",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-07-27T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-07-27T19:00:00",
              "event_date": "2026-07-27",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-07-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8da175af2827",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-27",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-27",
              "event_date": "2026-07-27",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-27",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_118933ee3aa8",
              "venue_id": "venue_mountain_winery",
              "title": "Trevor Noah",
              "event_time": "Jul 27 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-27T18:00:00",
              "event_date": "2026-07-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The former Daily Show host and world-renowned comedian performs his latest stand-up material focusing on global politics and personal anecdotes. His sharp wit and insightful observations provide a night of thought-provoking laughter.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Trevor_Noah",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-28": {
          "date": "2026-07-28",
          "updated_at": "2026-05-18T15:21:08.064458Z",
          "events": [
            {
              "event_id": "evt_b9930cab750a",
              "venue_id": "venue_cornerstone",
              "title": "Six Feet Under, Wormhole",
              "event_time": "Jul 28 2026 6pm/7pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-07-28T18:00:00",
              "event_date": "2026-07-28",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "6pm/7pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Six_Feet_Under",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_44358034ce4c",
              "venue_id": "venue_san_jose_civic",
              "title": "Simple Plan",
              "event_time": "2026-07-28T19:00:00-07:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-07-28T19:00:00",
              "event_date": "2026-07-28",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Pop-punk icons Simple Plan celebrate their 25th anniversary with special guests Bowling For Soup and 3OH!3.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$83.50",
              "url": "https://sanjosetheaters.org/event/simple-plan-bigger-than-you-think-tour-the-sequel/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-04-28T12:52:58.947754Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dcb05046e4a3",
              "venue_id": "venue_the_uc_theatre",
              "title": "Jazz Is Dead: Marcos Valle",
              "event_time": "Jul 28 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-07-28T20:00:00",
              "event_date": "2026-07-28",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Marcos Valle",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "$35 + FEES",
              "url": "https://www.theuctheatre.org/shows/jazz-is-dead-marcos-valle-28-jul",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6fa2cd51a068",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-28",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-28",
              "event_date": "2026-07-28",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-28",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_04614e216ad5",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-28",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-28",
              "event_date": "2026-07-28",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-28",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_51f431a64d3b",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-28",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-28",
              "event_date": "2026-07-28",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-28",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_307f5a2b1991",
              "venue_id": "venue_mountain_winery",
              "title": "Trevor Noah",
              "event_time": "Jul 28, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-28T20:00:00",
              "event_date": "2026-07-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1258082",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a03c1df7be0d",
              "venue_id": "venue_yoshis",
              "title": "Miko Marks Residency",
              "event_time": "TUE 7.28 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-28T19:30:00",
              "event_date": "2026-07-28",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BLENDING GOSPEL, COUNTRY SOUL, BLUES, AND ROCK N ROLL",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "rock"
              ],
              "price_info": "$25 - $49",
              "url": "https://yoshis.com/events/buy-tickets/miko-marks-residency/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f38847e89f87",
              "venue_id": "venue_ivy_room",
              "title": "Brand New Heartache + Deer in the Headlights",
              "event_time": "Tuesday Jul 28 6:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-07-28T18:30:00",
              "event_date": "2026-07-28",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - Fundraiser for the Ivy Room!",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/182272",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3386bcdb90c3",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Jul 28 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-07-28T19:00:00",
              "event_date": "2026-07-28",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690207?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc63723ba9ae",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-07-28T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-07-28T20:00:00",
              "event_date": "2026-07-28",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e201ad8092e3",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 28, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-28",
              "event_date": "2026-07-28",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023328",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66c62cd087e2",
              "venue_id": "venue_mountain_winery",
              "title": "Trevor Noah",
              "event_time": "Jul 28 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-28T18:00:00",
              "event_date": "2026-07-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The former Daily Show host and world-renowned comedian performs his latest stand-up material focusing on global politics and personal anecdotes. His sharp wit and insightful observations provide a night of thought-provoking laughter.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Trevor_Noah",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-29": {
          "date": "2026-07-29",
          "updated_at": "2026-05-18T14:29:19.943977Z",
          "events": [
            {
              "event_id": "evt_36ea7cd98717",
              "venue_id": "venue_castro_theater",
              "title": "KIM GORDON",
              "event_time": "July 29, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-07-29T20:00:00",
              "event_date": "2026-07-29",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "$48.60 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/kim-gordon-260729",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-07-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b85b65852511",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-29",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-29",
              "event_date": "2026-07-29",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-29",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77691e145c7d",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-07-29T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-07-29T20:00:00",
              "event_date": "2026-07-29",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-07-29",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6492d0c79ec3",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-07-29 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-07-29",
              "event_date": "2026-07-29",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-07-29",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3687513daa10",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-29",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-29",
              "event_date": "2026-07-29",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-29",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_90680132c66e",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-29",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-29",
              "event_date": "2026-07-29",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-29",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3d60a6a5b217",
              "venue_id": "venue_the_uc_theatre",
              "title": "Moonchild: Waves Tour",
              "event_time": "Jul 29 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-07-29T20:00:00",
              "event_date": "2026-07-29",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Brittney Carter",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS $36 + FEES",
              "url": "https://www.theuctheatre.org/shows/moonchild-waves-tour-29-jul",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-18T10:50:56.913208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-07-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8b31e2a99e66",
              "venue_id": "venue_yoshis",
              "title": "Jeff Kashiwa & Steve Oliver",
              "event_time": "WED 7.29 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-29T19:30:00",
              "event_date": "2026-07-29",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "TWO OF THE MOST COMPELLING MUSICIANS IN CONTEMPORARY JAZZ",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$28 - $69",
              "url": "https://yoshis.com/events/buy-tickets/jeff-kashiwa-with-steve-oliver-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_722aaf6084f7",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Toro Y Moi",
              "event_time": "Wednesday July 29 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-29T20:00:00",
              "event_date": "2026-07-29",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; DJ Dials presents...; chillwave, psych rock, synth-funk R&B",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$45 $52.81 in advance [45 face value +7.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260729.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ca568227768a",
              "venue_id": "venue_rickshaw_stop",
              "title": "Witch Whores of Satan",
              "event_time": "Wed Jul 29 8:45PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-07-29T20:45:00",
              "event_date": "2026-07-29",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Meathook and the Vital organs, Puppet Fister Theater",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.00-$16.00",
              "url": "https://wl.seetickets.us/event/witch-whores-of-satan/691480?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-18T11:27:44.257743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-07-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a87ae871bce",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 29, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-29",
              "event_date": "2026-07-29",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-29-july-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_46e47db360bf",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-29",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-29",
              "event_date": "2026-07-29",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-29",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-30": {
          "date": "2026-07-30",
          "updated_at": "2026-05-18T15:21:08.147615Z",
          "events": [
            {
              "event_id": "evt_0c01f3b50a02",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Dark Satellite",
              "event_time": "Jul 30 8pm/8:30pm",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-30T20:30:00",
              "event_date": "2026-07-30",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Jul 30 Dark Satellite, Alvie & The Breakfast Pigs, Bloodsugar 21+ $13/$15 8pm/8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13/$15",
              "url": "http://www.bottomofthehill.com/20260730.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c620a423d59c",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-30",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-30",
              "event_date": "2026-07-30",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-30",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0d865b91743",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-07-30T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-07-30T20:00:00",
              "event_date": "2026-07-30",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-07-30",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_931282467b57",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-07-30T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-07-30T19:00:00",
              "event_date": "2026-07-30",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a310b46ee721",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-30",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-30",
              "event_date": "2026-07-30",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-30",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9be30b3fb2c8",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-07-30 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-07-30",
              "event_date": "2026-07-30",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-07-30",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f7276758d1b7",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-30",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-30",
              "event_date": "2026-07-30",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-30",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_24dc109e6046",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-30",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-30",
              "event_date": "2026-07-30",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-30",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9de0703a0685",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-30T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-30T19:30:00",
              "event_date": "2026-07-30",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-30",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cfb5d9d2c7e8",
              "venue_id": "venue_mountain_winery",
              "title": "Bill Burr Live",
              "event_time": "Jul 30, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-30T20:00:00",
              "event_date": "2026-07-30",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389174",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_724933480cc6",
              "venue_id": "venue_yoshis",
              "title": "Music Medicine Benefit",
              "event_time": "THU 7.30 8:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-07-30T20:00:00",
              "event_date": "2026-07-30",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "ALL PROCEEDS RAISED DIRECTLY BENEFIT THE PATIENTS AT UCSF BENIOFF CHILDREN’S HOSPITAL OAKLAND",
              "event_types": [
                "community"
              ],
              "price_info": "$45 - $65",
              "url": "https://yoshis.com/events/buy-tickets/music-medicine-benefit-for-oakland-s-children-s-hospital-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a31206e5e529",
              "venue_id": "venue_odc_theater",
              "title": "Summer Sampler",
              "event_time": "7/30/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-30T19:30:00",
              "event_date": "2026-07-30",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odc.dance/summersampler",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_488eb363e25a",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 30, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-30",
              "event_date": "2026-07-30",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023330",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_998b1f4e1587",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-30",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-30",
              "event_date": "2026-07-30",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-30",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d28d8f266e52",
              "venue_id": "venue_great_american_music_hall",
              "title": "Black Moth Super Rainbow, Giant Day",
              "event_time": "Jul 30 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-07-30T19:00:00",
              "event_date": "2026-07-30",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $29.50/$35 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$29.50/$35",
              "url": "http://www.foopee.com/by-band.0.html#Black_Moth_Super_Rainbow",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c04551d62f6d",
              "venue_id": "venue_mountain_winery",
              "title": "Bill Burr",
              "event_time": "Jul 30 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-30T18:00:00",
              "event_date": "2026-07-30",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The acclaimed comedian brings his sharp, unfiltered, and hilariously cynical observational humor to the stage. Known for his popular podcast and specials, Burr delivers a high-energy set of no-holds-barred comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Bill_Burr",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b84676730be",
              "venue_id": "venue_thee_stork_club",
              "title": "Tony Jay",
              "event_time": "Jul 30 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-07-30T20:00:00",
              "event_date": "2026-07-30",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Tony Jay, Sachi's Mirror, Above Me",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Tony_Jay",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-07-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-07-31": {
          "date": "2026-07-31",
          "updated_at": "2026-05-18T16:16:06.714804Z",
          "events": [
            {
              "event_id": "evt_e49427957f7d",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Woggles",
              "event_time": "Friday July 31 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-07-31T20:00:00",
              "event_date": "2026-07-31",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; 21 AND OVER; garage rock; noise-rock; garage punk post-punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 $25.31 in advance [20 face value + 5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260731.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_990deca76d62",
              "venue_id": "venue_the_mighty",
              "title": "Colorize: PRAANA, Mees Salomé",
              "event_time": "2026-07-31T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-07-31T21:00:00",
              "event_date": "2026-07-31",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "The Colorize label showcases its signature melodic house and progressive sounds with sets from Praana, Mees Salome, and Jack Willard. It is an evening dedicated to deep, atmospheric, and harmonic electronic music.",
              "event_types": [
                "dj_party",
                "electronic"
              ],
              "price_info": "Check website for details",
              "url": "https://www.eventbrite.com/e/colorize-san-francisco-praana-mees-salome-jack-willard-tickets-85123456789",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-04-10T22:14:31.761770Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e98c76b0139",
              "venue_id": "venue_cornerstone",
              "title": "Sigh, Dreadnought",
              "event_time": "Jul 31 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-07-31T20:00:00",
              "event_date": "2026-07-31",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Dreadnought",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Sigh",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6c89d3b4eed5",
              "venue_id": "venue_greek_theatre",
              "title": "Dark Star Orchestra",
              "event_time": "07/31/2026 5pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-07-31T17:00:00",
              "event_date": "2026-07-31",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Two Nights!\nA Benefit For The Rex Foundation - Melvin Seals and JGB",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.0.html#Dark_Star_Orchestra",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-01T06:47:01.731707Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-01T09:38:25.541444Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cee27df32a6b",
              "venue_id": "venue_rickshaw_stop",
              "title": "Super Greens",
              "event_time": "Jul 31 2026 8pm/8:30pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-07-31T20:30:00",
              "event_date": "2026-07-31",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Emerging indie bands Super Greens, Plaster, and Often Easy share the stage for a night of local music and discovery.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "http://www.foopee.com/by-band.3.html#Super_Greens",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0aba43b1e7c6",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Shelly Berg: History of Jazz Piano",
              "event_time": "2026-07-31T17:30:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-07-31T17:30:00",
              "event_date": "2026-07-31",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Pianist Shelly Berg takes the audience on a musical journey through the evolution and history of jazz piano.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/concerts/2026/7/31/shelly-berg",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-05-06T18:09:28.971011Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4a3f29c4d435",
              "venue_id": "venue_musicians_union_hall",
              "title": "LaborFest 2026 Closing Party",
              "event_time": "2026-07-31T19:30:00",
              "venue_name": "Musicians Union Hall",
              "event_start": "2026-07-31T19:30:00",
              "event_date": "2026-07-31",
              "venue_address": "116 9th St, San Francisco, CA 94103",
              "description": "The annual closing celebration of LaborFest, commemorating the 1934 San Francisco General Strike. The event typically features labor-themed music, poetry, and cultural presentations.",
              "event_types": [
                "live_music",
                "literary",
                "festival",
                "community"
              ],
              "price_info": "Free or suggested donation",
              "url": "http://www.laborfest.net/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_musicians_union_hall",
                  "source_name": "Musicians Union Hall",
                  "fetched_at": "2026-05-11T12:01:45.357016Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_musicians_union_hall|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dbdd69d39e43",
              "venue_id": "venue_the_ritz",
              "title": "Sweet Revenge: MCR Tribute",
              "event_time": "2026-07-31T20:00:03-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-07-31T20:00:03",
              "event_date": "2026-07-31",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Sweet Revenge takes the stage at the Ivy Room for a dedicated tribute performance celebrating the music of My Chemical Romance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 Advance",
              "url": "https://www.ticketweb.com/event/sweet-revenge-my-chemical-romance-the-ritz-tickets/14891613",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b7dada6504a",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-07-31",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-07-31",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_20dc150cf2a6",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-07-31T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-07-31T20:00:00",
              "event_date": "2026-07-31",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-07-31",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_12332babd78b",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-07-31",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-07-31",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_66681d766413",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-07-31 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-07-31",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_acb1fe49da31",
              "venue_id": "venue_1015_folsom",
              "title": "PEGASSI",
              "event_time": "07/31/2026 10pm",
              "venue_name": "1015 Folsom",
              "event_start": "2026-07-31T22:00:00",
              "event_date": "2026-07-31",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "eurodance, trance, techno",
              "event_types": [
                "dj_party"
              ],
              "price_info": "SIGN UP | Bottle Service",
              "url": "https://laylo.com/1015sf/JdUqCz",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-16T00:10:22.765248Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5750caca590a",
              "venue_id": "venue_bird_and_beckett",
              "title": "Jazz in the Bookshop",
              "event_time": "2026-07-31T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-07-31T19:30:00",
              "event_date": "2026-07-31",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "San Francisco’s longest-running neighborhood jazz party!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20-30 suggested; students $10-15; younger kids free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-05-16T10:21:06.693403Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fff6f9aa61f3",
              "venue_id": "venue_the_starry_plough",
              "title": "Burning Down The House",
              "event_time": "Fri, July 31 Show: 8:30pm",
              "venue_name": "The Starry Plough",
              "event_start": "2026-07-31T20:30:00",
              "event_date": "2026-07-31",
              "venue_address": "3101 Shattuck Ave, Berkeley, CA 94705",
              "description": "This event features a Bay Area tribute to the legendary art-rock band Talking Heads, performing their most famous hits. Fans can expect a high-energy celebration of the group's unique sound and stage presence at The Starry Plough.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20.74",
              "url": "https://thestarryplough.com/event/burning-down-the-house-the-bay-areas-tribute-to-talking-heads/the-starry-plough-pub/california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_starry_plough",
                  "source_name": "The Starry Plough",
                  "fetched_at": "2026-05-16T10:44:36.419036Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_starry_plough|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3368cfb47fbb",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-07-31",
              "venue_name": "Exploratorium",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-07-31",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7312bc913868",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-07-31",
              "venue_name": "David Brower Center",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-07-31",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d63d90f4e080",
              "venue_id": "venue_tommy_ts",
              "title": "ARNEZ J",
              "event_time": "2026-07-31 2026-08-01",
              "venue_name": "Tommy T's",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-07-31",
              "run_id": "run_1c0438f27763",
              "run_label": "ARNEZ J, Jul 31 – Aug 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4afcfced6c57",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-07-31T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-07-31T19:30:00",
              "event_date": "2026-07-31",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-07-31",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_688411bf964e",
              "venue_id": "venue_mountain_winery",
              "title": "Robby Krieger",
              "event_time": "Jul 31, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-31T19:30:00",
              "event_date": "2026-07-31",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Legendary Guitarist of The Doors | Performing All Of The Doors Hits | with Tripform featuring Pablo Manzarek",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1328083",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_178121a9b793",
              "venue_id": "venue_odc_theater",
              "title": "Summer Sampler",
              "event_time": "7/31/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-07-31T19:30:00",
              "event_date": "2026-07-31",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odc.dance/summersampler",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c3dc9fcbf98",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Jul 31, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7017833",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a7e73c78c167",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-07-31",
              "venue_name": "Club Fugazi",
              "event_start": "2026-07-31",
              "event_date": "2026-07-31",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-07-31",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4c78e74c7060",
              "venue_id": "venue_great_american_music_hall",
              "title": "Of Montreal, Sloppy Jane",
              "event_time": "Jul 31 2026 8pm/9pm",
              "venue_name": "Great American",
              "event_start": "2026-07-31T20:00:00",
              "event_date": "2026-07-31",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $27/$30 8pm/9pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27/$30",
              "url": "http://www.foopee.com/by-band.2.html#Of_Montreal",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4e4b1c6efc9f",
              "venue_id": "venue_mountain_winery",
              "title": "Robby Krieger & Tripform",
              "event_time": "Jul 31 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-07-31T17:30:00",
              "event_date": "2026-07-31",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The legendary guitarist of The Doors performs classic tracks and new material alongside the band Tripform. This show offers a rare opportunity to see a rock icon perform his psychedelic and blues-influenced hits.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Robby_Krieger",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89d509bae303",
              "venue_id": "venue_audio",
              "title": "Soraya, Chellzz, Xavier b2b Piste",
              "event_time": "07/31/2026 7:30pm-2am",
              "venue_name": "Audio",
              "event_start": "2026-07-31T19:30:00",
              "event_date": "2026-07-31",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "indie dance, progressive house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17 pre | 21+",
              "url": "https://ra.co/events/2431040",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_336f423b4c31",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Mercy and the Heartbeats",
              "event_time": "July 31, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-07-31T18:00:00",
              "event_date": "2026-07-31",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "There's a certain type of person that lives for the stage. Lives to entertain. Fueled by the smiles and energy of a crowd. Into this tradition steps Mercy & The Heartbeats, a dance band comprised of veteran musicians from some of the most popular and successful dance and touring bands in the Bay Area and beyond. If you've got Mercy, then you've got all your favorite songs - 70's and 80's classics, 90's singalongs, and the most current radio hits. A band not to be missed!\"",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://www.mercyandtheheartbeats.com/about",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-07-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-01": {
          "date": "2026-08-01",
          "updated_at": "2026-05-18T15:50:41.222778Z",
          "events": [
            {
              "event_id": "evt_dbdfce8341c8",
              "venue_id": "venue_ivy_room",
              "title": "RIKI + HOUSES OF HEAVEN + BESTIAL MOUTHS",
              "event_time": "Saturday Aug 1 8:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-08-01T20:00:00",
              "event_date": "2026-08-01",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "This dark electronic and synth-pop showcase features Riki, Houses Of Heaven, and a record release celebration for Bestial Mouths.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/170866",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_24049ec90f13",
              "venue_id": "venue_greek_theatre",
              "title": "Dark Star Orchestra",
              "event_time": "08/01/2026 5pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-08-01T17:00:00",
              "event_date": "2026-08-01",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Two Nights!\nA Benefit For The Rex Foundation - Sam Grisman & Peter Rowan",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.0.html#Dark_Star_Orchestra",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-01T06:47:01.731707Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-01T09:38:25.541444Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_44e4f2c0d53f",
              "venue_id": "venue_counterpulse",
              "title": "ARC Edge & Performing Diaspora 2026 Showcase",
              "event_time": "2026-08-01T20:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-08-01T20:00:00",
              "event_date": "2026-08-01",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "The culmination of the Artist Residency & Commissioning (ARC) program, featuring new experimental dance and performance works from resident artists exploring social change and cultural lineage.",
              "event_types": [
                "dance",
                "experimental",
                "live_music",
                "art"
              ],
              "price_info": "$0 – $35 Sliding Scale",
              "url": "https://counterpulse.org/arc-edge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e1fd913f8480",
              "venue_id": "venue_924_gilman",
              "title": "Stereosity, Melancholy Club",
              "event_time": "Aug 1 7pm/7:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-08-01T19:30:00",
              "event_date": "2026-08-01",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "All-ages show featuring Stereosity, Melancholy Club, and TBA. Doors at 7:00 PM; music at 7:30 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18/$22",
              "url": "http://www.foopee.com/by-band.3.html#Stereosity",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-10T11:51:06.501498Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b46a212ae904",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-01",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-01",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ef2de84d062",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-01T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-01T20:00:00",
              "event_date": "2026-08-01",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-01",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_432bcdc6ab1a",
              "venue_id": "venue_oakland_secret",
              "title": "Quartz: Queer Arts Market",
              "event_time": "2026-08-01",
              "venue_name": "Oakland Secret",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "577 5th St, Oakland, CA 94607",
              "description": "A monthly market featuring queer artists and makers. This recurring event takes place every first Saturday of the month.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Typically affordable or sliding scale",
              "url": "https://www.oaklandsecret.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_secret",
                  "source_name": "Oakland Secret",
                  "fetched_at": "2026-05-15T11:36:54.382509Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oakland_secret|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be28885f93c5",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-08-01",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-08-01",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0ec9b23f91c9",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-08-01 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-08-01",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c731b77aa2c3",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-01",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-01",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8470019a9b1",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-01",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-01",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_66d77f855883",
              "venue_id": "venue_tommy_ts",
              "title": "ARNEZ J",
              "event_time": "2026-08-01 2026-08-01",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-01",
              "run_id": "run_1c0438f27763",
              "run_label": "ARNEZ J, Jul 31 – Aug 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5763f8bcb1fb",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-01T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-01T19:30:00",
              "event_date": "2026-08-01",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-01",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bf76d43e535a",
              "venue_id": "venue_the_independent",
              "title": "AIR GUITAR NATIONAL FINALS",
              "event_time": "8.1 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-08-01T21:00:00",
              "event_date": "2026-08-01",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/air-guitar-national-finals/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97aa6c7fa341",
              "venue_id": "venue_mountain_winery",
              "title": "The Stray Cats",
              "event_time": "Aug 1, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-01T19:30:00",
              "event_date": "2026-08-01",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Pete Bernhard of The Devil Makes Three",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1350769",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cac8882ab654",
              "venue_id": "venue_odc_theater",
              "title": "Summer Sampler",
              "event_time": "8/1/2026 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-08-01T19:30:00",
              "event_date": "2026-08-01",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odc.dance/summersampler",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4ef6b71ccac8",
              "venue_id": "venue_historic_bal_theatre",
              "title": "HANNIBAL THOMPSON LIVE AKA ALLAMERICANP",
              "event_time": "Saturday, Aug 1 Show: 7:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-08-01T19:00:00",
              "event_date": "2026-08-01",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Comedian Hannibal Thompson, also known as AllAmericanP, performs a live stand-up set at the Historic BAL Theatre.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/hannibal-thompson-live-aka-allamericanp/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4fa6f64c7f22",
              "venue_id": "venue_castro_theater",
              "title": "THE FIXX",
              "event_time": "August 1, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-08-01T20:00:00",
              "event_date": "2026-08-01",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-fixx-260801",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_255eff0c2cac",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 01, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7017834",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c049efa96d08",
              "venue_id": "venue_belle_cora",
              "title": "HIPSTERIA with “Tender” Tim",
              "event_time": "2026-08-01T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-08-01T18:00:00",
              "event_date": "2026-08-01",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Live jazz performance by HIPSTERIA featuring “Tender” Tim. Enjoy cool arrangements of modern pop, rock, blues, and R&B with no cover charge in a cozy outdoor setting.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://hipsteriac.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fb4794cd06da",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-01",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-01",
              "event_date": "2026-08-01",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-01",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66784166a169",
              "venue_id": "venue_mountain_winery",
              "title": "Stray Cats",
              "event_time": "Aug 1 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-01T17:30:00",
              "event_date": "2026-08-01",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The iconic rockabilly trio reunites to perform their high-energy hits featuring Brian Setzer's signature guitar work. Their live show is a masterclass in 1950s-inspired rock and roll with a modern edge.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Stray_Cats",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ce7f07fc02c",
              "venue_id": "venue_rhythmix",
              "title": "Pour Your HeART Out",
              "event_time": "Saturday, August 1, 2026 2:00 pm to 5:00 pm",
              "venue_name": "Rhythmix",
              "event_start": "2026-08-01T14:00:00",
              "event_date": "2026-08-01",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Get ready for an unforgettable afternoon at this year’s Pour Your HeART Out Benefit for the Arts! Enjoy live music, savor delicious bites from Alameda’s amazing local eateries, sip on fine wines and craft beverages, dance to irresistible beats, and support arts education for Alameda County youth!\n\n \n\nThis year’s event features a dynamic lineup of world-class performers, headlined by the electrifying Maze Daiko, an Alameda-based ensemble known for blending Japanese taiko with global rhythms—from African marimba and djembe to Persian santur and Brazilian percussion. Their powerful, genre-defying sound has earned them recognition as true pioneers of contemporary taiko.\n\n \n\nYou’ll also experience the vibrant sounds of AZA, whose music fuses traditional North African Tamazight styles with global influences. With rich rhythms, intricate melodies, and soulful vocals, AZA delivers performances that are as visually captivating as they are musically compelling.",
              "event_types": [
                "live_music",
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/events/pyho-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-05-18T15:50:35.869963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rhythmix|2026-08-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-02": {
          "date": "2026-08-02",
          "updated_at": "2026-05-18T15:47:29.388480Z",
          "events": [
            {
              "event_id": "evt_05217e620e30",
              "venue_id": "venue_counterpulse",
              "title": "ARC Edge & Performing Diaspora 2026 Showcase",
              "event_time": "2026-08-02T14:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-08-02T14:00:00",
              "event_date": "2026-08-02",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "A matinee performance of the ARC residency showcase, featuring contemporary choreography and interdisciplinary art.",
              "event_types": [
                "dance",
                "experimental",
                "live_music"
              ],
              "price_info": "$0 – $35 Sliding Scale",
              "url": "https://counterpulse.org/arc-edge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e0a9bb5412f3",
              "venue_id": "venue_august_hall",
              "title": "Willow Avalon",
              "event_time": "Aug 2 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-08-02T19:00:00",
              "event_date": "2026-08-02",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Rising country-pop artist Willow Avalon brings her Pink Pocket Pistol Tour to August Hall for an intimate live performance.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/willow-avalon-pink-pocket-pistol-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-07T16:33:01.063714Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc97c151e07a",
              "venue_id": "venue_mitchell_park_center",
              "title": "Rock N Bike 3",
              "event_time": "2026-08-02T14:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-08-02T14:00:00",
              "event_date": "2026-08-02",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "TBA",
              "event_types": [],
              "price_info": "$20",
              "url": "https://markweiss86.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-05-11T16:56:01.262503Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_09b9a759b55b",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-02",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-02",
              "event_date": "2026-08-02",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-02",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fae0e61bf639",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-02T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-02T20:00:00",
              "event_date": "2026-08-02",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-02",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2b357e678f09",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Golden Gate Park Band: First Responders Tribute",
              "event_time": "2026-08-02T13:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-08-02T13:00:00",
              "event_date": "2026-08-02",
              "venue_address": "San Francisco, CA 94118",
              "description": "A concert dedicated to honoring first responders, performed by the Golden Gate Park Band.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://sfrecpark.org/1570/Golden-Gate-Bandshell-Concerts",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-05-15T15:15:23.116577Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5e1d8eba1f55",
              "venue_id": "venue_the_pear_theatre",
              "title": "Pear Slices 2026",
              "event_time": "2026-08-02",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-08-02",
              "event_date": "2026-08-02",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "The annual New Works Festival featuring eight 10-minute plays written by members of The Pear Playwrights’ Guild, directed by Joey Dipple and Tonya Mara.",
              "event_types": [
                "theater",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thepear.org/work",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-05-15T17:22:45.461826Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-08-02",
              "run_id": "run_3e1a8a7859d2",
              "run_label": "Pear Slices 2026, Jul 17 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_81c7292a713d",
              "venue_id": "venue_montgomery_theater",
              "title": "Legally Blonde",
              "event_time": "2026-08-02 2026-07-25T14:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-08-02",
              "event_date": "2026-08-02",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "CMT Mainstage presents the musical based on the film, following Elle Woods as she heads to Harvard Law and challenges stereotypes with humor, energy, and big musical numbers.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/legally-blonde-cmt-mainstage-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-08-02",
              "run_id": "run_bf7093f8a3dc",
              "run_label": "Legally Blonde, Jul 24 – Aug 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e6e077955555",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Sunday Organ Recital Series",
              "event_time": "2026-08-02T15:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-08-02T15:00:00",
              "event_date": "2026-08-02",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "A performance of classical and contemporary organ works on the 7,466-pipe Charles B. Alexander Memorial Organ.",
              "event_types": [],
              "price_info": "Free (Suggested donation $10)",
              "url": "https://gracecathedral.org/series/organ-recital-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-05-15T20:40:03.355611Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6337d40e1190",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "BOSCO",
              "event_time": "2026-08-02T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-08-02T20:00:00",
              "event_date": "2026-08-02",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "R&B/Soul artist BOSCO performs live.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/bosco/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_76ad87c39482",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-02",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-02",
              "event_date": "2026-08-02",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-02",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0136d8323dc9",
              "venue_id": "venue_rootstock_arts",
              "title": "Color Your Mind Festival",
              "event_time": "2026-08-02T12:00:00",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-08-02T12:00:00",
              "event_date": "2026-08-02",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "This multi-day festival celebrates the diversity of the arts through a series of performances, workshops, and cultural showcases. It aims to inspire creativity and foster community connection through various artistic mediums.",
              "event_types": [
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-05-17T14:54:49.670133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ed81a1e50fba",
              "venue_id": "venue_tommy_ts",
              "title": "ARNEZ J",
              "event_time": "2026-08-02 2026-08-01",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-02",
              "event_date": "2026-08-02",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-02",
              "run_id": "run_1c0438f27763",
              "run_label": "ARNEZ J, Jul 31 – Aug 2",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1da4e7b15a9f",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-02T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-02T19:30:00",
              "event_date": "2026-08-02",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-02",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_576a23fe0988",
              "venue_id": "venue_mountain_winery",
              "title": "Nile Rodgers & CHIC",
              "event_time": "Aug 2, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-02T19:30:00",
              "event_date": "2026-08-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1336379",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4d905fe80555",
              "venue_id": "venue_odc_theater",
              "title": "Summer Sampler",
              "event_time": "8/2/2026 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-08-02T14:00:00",
              "event_date": "2026-08-02",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odc.dance/summersampler",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-05-18T11:25:41.175514Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de5901b848b6",
              "venue_id": "venue_bach_dds",
              "title": "An Afternoon with Benny Green",
              "event_time": "2026-08-02T16:30:00",
              "venue_name": "Bach Dancing",
              "event_start": "2026-08-02T16:30:00",
              "event_date": "2026-08-02",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "Experience an intimate solo performance by acclaimed jazz pianist Benny Green. Known for his straight-ahead style and lyrical finesse, Green's solo work offers a deeply personal listening experience.",
              "event_types": [],
              "price_info": "Check website for ticket prices",
              "url": "https://dothebay.com/events/2026/8/2/the-bach-dancing-dynamite-society-presents-an-afternoon-with-benny-green",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-05-18T12:00:59.175245Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bach_dds|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fa95c0c4f2c4",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 02, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-02",
              "event_date": "2026-08-02",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/beauty-and-the-beast-02-august-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d67ffdbb6cb",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-02",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-02",
              "event_date": "2026-08-02",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-02",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d70f6620b3e",
              "venue_id": "venue_mountain_winery",
              "title": "Nile Rodgers & CHIC",
              "event_time": "Aug 2 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-02T17:30:00",
              "event_date": "2026-08-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The legendary producer and his band perform a night of disco, funk, and soul classics that have dominated the charts for decades. It is a high-energy dance party featuring some of the most recognizable grooves in music history.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Nile_Rodgers___CHIC",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_85f186083a95",
              "venue_id": "venue_stern_grove",
              "title": "Violent Femmes",
              "event_time": "Aug 2 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-08-02T14:00:00",
              "event_date": "2026-08-02",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Violent Femmes, Tune-Yards, j Lady Ryan",
              "event_types": [
                "rock",
                "live_music",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Violent_Femmes",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-08-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-03": {
          "date": "2026-08-03",
          "updated_at": "2026-05-18T14:29:19.963824Z",
          "events": [
            {
              "event_id": "evt_8da492d41e9d",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-03",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-03",
              "event_date": "2026-08-03",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-03",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dd53e12e12f5",
              "venue_id": "venue_yoshis",
              "title": "Rebel Rose",
              "event_time": "MON 8.3 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-03T20:00:00",
              "event_date": "2026-08-03",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "COMMANDING VOCALIST, SONGWRITER, AND INTERNATIONAL PERFORMER",
              "event_types": [
                "live_music"
              ],
              "price_info": "$50- $65",
              "url": "https://yoshis.com/events/buy-tickets/rebel-rose/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ca4ab77c20f",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Aug 3 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-03T19:00:00",
              "event_date": "2026-08-03",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690183?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2b40c61a43b1",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-08-03T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-08-03T19:00:00",
              "event_date": "2026-08-03",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-08-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2143d338f2e1",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-03",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-03",
              "event_date": "2026-08-03",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-03",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-04": {
          "date": "2026-08-04",
          "updated_at": "2026-05-18T13:44:34.626441Z",
          "events": [
            {
              "event_id": "evt_2602a9ff8b66",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Widowspeak / Dead Gowns",
              "event_time": "Tuesday August 4 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-04T19:00:00",
              "event_date": "2026-08-04",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; ALL AGES; Throwin' Bo's presents...; cosmic country dream pop shoegaze slowcore; folk-rock",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$22/$25",
              "url": "http://www.bottomofthehill.com/20260804.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dacbd331443c",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-04",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-04",
              "event_date": "2026-08-04",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-04",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e1139b528f1f",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-04",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-04",
              "event_date": "2026-08-04",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-04",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f160027a8fd4",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-04",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-04",
              "event_date": "2026-08-04",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-04",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_54deb455c837",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Aug 4 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-04T19:00:00",
              "event_date": "2026-08-04",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690208?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_400d14dff9ea",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-08-04T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-08-04T20:00:00",
              "event_date": "2026-08-04",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-08-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5f711c38b24e",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 04, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-04",
              "event_date": "2026-08-04",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023342",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-05": {
          "date": "2026-08-05",
          "updated_at": "2026-05-18T15:48:30.046018Z",
          "events": [
            {
              "event_id": "evt_3da1dd816674",
              "venue_id": "venue_the_fillmore",
              "title": "Old 97's",
              "event_time": "Aug 5 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-08-05T19:00:00",
              "event_date": "2026-08-05",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Alt-country pioneers Old 97's bring their raucous energy and storytelling lyrics to the historic Fillmore stage for a night of Texas-bred rock.",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "$49.50",
              "url": "http://www.foopee.com/by-band.2.html#Old_97_s",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-09T01:56:35.358428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e86d9e2155b0",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Poppy, Landmvrks, Thousand Below",
              "event_time": "Aug 5 2026 7pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-08-05T19:00:00",
              "event_date": "2026-08-05",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Constantly Nowhere Tour - LANDMVRKS Thousand Below",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$62.10",
              "url": "http://www.foopee.com/by-band.2.html#Poppy",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3be6f3091f05",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-05",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-05",
              "event_date": "2026-08-05",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-05",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f21b2fda904",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-05T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-05T20:00:00",
              "event_date": "2026-08-05",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-05",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0d97e4e7a924",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-05",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-05",
              "event_date": "2026-08-05",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-05",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a1818c0a45d",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-05",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-05",
              "event_date": "2026-08-05",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-05",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7718295df19d",
              "venue_id": "venue_mountain_winery",
              "title": "Classic Albums Live: The Eagles Greatest Hits",
              "event_time": "Aug 5, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-05T19:30:00",
              "event_date": "2026-08-05",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "An Evening With",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1374021",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22c58a2429f1",
              "venue_id": "venue_yoshis",
              "title": "Melba Moore",
              "event_time": "WED 8.5 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-05T19:30:00",
              "event_date": "2026-08-05",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "LEGENDARY SINGER & ACTRESS",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$45 - $79",
              "url": "https://yoshis.com/events/buy-tickets/melba-moore-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_08dff6165cca",
              "venue_id": "venue_yoshis",
              "title": "Melba Moore VIP Experience",
              "event_time": "WED 8.5 5:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-05T17:30:00",
              "event_date": "2026-08-05",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SHOW TICKET NOT INCLUDED",
              "event_types": [
                "community"
              ],
              "price_info": "$89",
              "url": "https://yoshis.com/events/buy-tickets/melba-moore-pre-show-vip-experience-show-ticket-not-included/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d209f0a9cb8",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 05, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-05",
              "event_date": "2026-08-05",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023347",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aff6d4e6d4c1",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-05",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-05",
              "event_date": "2026-08-05",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-05",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0698186c1d7b",
              "venue_id": "venue_mountain_winery",
              "title": "Classic Albums Live: The Eagles",
              "event_time": "Aug 5 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-05T17:30:00",
              "event_date": "2026-08-05",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This performance features a note-for-note, cut-for-cut live recreation of one of the best-selling albums of all time. A group of world-class musicians brings the Eagles' iconic harmonies and guitar parts to life with stunning precision.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Classic_Albums_Liv",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ecee39fb0ed",
              "venue_id": "venue_levis_stadium",
              "title": "AC/DC | POWER UP TOUR",
              "event_time": "Aug 05, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-08-05",
              "event_date": "2026-08-05",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Legendary rock band AC/DC performs live at Levi's Stadium as part of their high-energy Power Up Tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/ac-dc-power-up-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-08-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-06": {
          "date": "2026-08-06",
          "updated_at": "2026-05-18T15:21:08.214981Z",
          "events": [
            {
              "event_id": "evt_2d646bc74513",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Prewn",
              "event_time": "Thursday August 6 2026 7:00PM doors -- music at 7 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-06T19:00:00",
              "event_date": "2026-08-06",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; rock psychedelic; xxx; xxx",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$18",
              "url": "http://www.bottomofthehill.com/20260806.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7fe6ba8e248c",
              "venue_id": "venue_chase_center",
              "title": "Lionel Richie & Earth, Wind & Fire",
              "event_time": "Aug 6 2026 6:30pm/7:30pm",
              "venue_name": "Chase Center",
              "event_start": "2026-08-06T18:30:00",
              "event_date": "2026-08-06",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Lionel Richie and Earth, Wind & Fire perform their legendary hits at Chase Center.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$97.45+",
              "url": "https://www.chasecenter.com/events/lionel-richie-20260806",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fb926c7a8769",
              "venue_id": "venue_the_chapel",
              "title": "Alela Diane",
              "event_time": "Thu Aug 6 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-08-06T20:00:00",
              "event_date": "2026-08-06",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Supporting Talent: Shannon Lay - Alternative",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$25.00-$28.00",
              "url": "https://wl.seetickets.us/event/alela-diane/688615?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-25T23:00:07.126857Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9216aa45e230",
              "venue_id": "venue_counterpulse",
              "title": "ARC Edge & Performing Diaspora 2026 Showcase",
              "event_time": "2026-08-06T20:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-08-06T20:00:00",
              "event_date": "2026-08-06",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "The second weekend of the ARC residency showcase, featuring double-billed performances from the 2026 cohort.",
              "event_types": [
                "dance",
                "experimental",
                "live_music"
              ],
              "price_info": "$0 – $35 Sliding Scale",
              "url": "https://counterpulse.org/arc-edge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4febea7c96e5",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-06T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-06T20:00:00",
              "event_date": "2026-08-06",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-06",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_83b005ecfc5d",
              "venue_id": "venue_brick_and_mortar",
              "title": "Justine Skye",
              "event_time": "Aug 6 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-08-06T19:00:00",
              "event_date": "2026-08-06",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "(under 21 plus 5) 7pm/8pm ^",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$5",
              "url": "http://www.foopee.com/by-band.1.html#Justine_Skye",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f6376c80548",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-06",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-06",
              "event_date": "2026-08-06",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-06",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_431b27a8da44",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-06T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-06T20:00:00",
              "event_date": "2026-08-06",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-06",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_faf5ea0b36e9",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-08-06T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-08-06T19:00:00",
              "event_date": "2026-08-06",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_10e1b5353cca",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-06",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-06",
              "event_date": "2026-08-06",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-06",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5fbe91a21fc3",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-06",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-06",
              "event_date": "2026-08-06",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-06",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_589326c3fcbf",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-06T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-06T19:30:00",
              "event_date": "2026-08-06",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-06",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_87c43f5e6ebf",
              "venue_id": "venue_paramount_theatre",
              "title": "Jill Scott – To Whom This May Concern Tour",
              "event_time": "Aug 6, 2026 7:30 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-08-06T19:30:00",
              "event_date": "2026-08-06",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "All ages require a ticket; no children under 2 years.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/jill-scott-to-whom-it-may-concern-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a28345a998d6",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 06, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-06",
              "event_date": "2026-08-06",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023348",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_db0cba7ef631",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-06",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-06",
              "event_date": "2026-08-06",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-06",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-07": {
          "date": "2026-08-07",
          "updated_at": "2026-05-18T16:16:06.719928Z",
          "events": [
            {
              "event_id": "evt_c8c3ff1ca589",
              "venue_id": "venue_counterpulse",
              "title": "ARC Edge & Performing Diaspora 2026 Showcase",
              "event_time": "2026-08-07T20:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-08-07T20:00:00",
              "event_date": "2026-08-07",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "The final performance of the 2026 ARC residency showcase at CounterPulse.",
              "event_types": [
                "festival",
                "art",
                "community"
              ],
              "price_info": "$0 – $35 Sliding Scale",
              "url": "https://counterpulse.org/arc-edge/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c17bfdb78bfb",
              "venue_id": "venue_counterpulse",
              "title": "Block Fest: Tenderloin Arts Festival",
              "event_time": "2026-08-07T15:00:00",
              "venue_name": "CounterPulse",
              "event_start": "2026-08-07T15:00:00",
              "event_date": "2026-08-07",
              "venue_address": "80 Turk St, San Francisco, CA 94102",
              "description": "Monthly neighborhood arts festival featuring free art-making activities and community engagement.",
              "event_types": [
                "other"
              ],
              "price_info": "Free",
              "url": "https://counterpulse.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_counterpulse",
                  "source_name": "CounterPulse",
                  "fetched_at": "2026-05-07T11:48:15.269294Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_counterpulse|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8c88854e8c59",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-07T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-07T20:00:00",
              "event_date": "2026-08-07",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-07",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bcfed8068073",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight (August)",
              "event_time": "2026-08-07T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-08-07T10:30:00",
              "event_date": "2026-08-07",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "A morning session of coffee and conversation with director and educator Michelle Talgarow, discussing her work on 'Iphigenia in Splott' and her artistic journey.",
              "event_types": [
                "community",
                "theater"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/shotgun-spotlight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-08T10:31:58.984559Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-11T10:06:54.321733Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e5b1f3251b32",
              "venue_id": "venue_f8",
              "title": "INVT, Jubilee, Coffintexts",
              "event_time": "08/07/2026 10pm-4am",
              "venue_name": "F8",
              "event_start": "2026-08-07T22:00:00",
              "event_date": "2026-08-07",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "A collaborative event between SQUISH and PROGRAM featuring a high-energy lineup of club and bass music.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20 b4 11 | 21+",
              "url": "https://ra.co/events/2416127",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-11T14:22:02.561027Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_fake_and_gay",
                  "source_name": "Fake and Gay",
                  "fetched_at": "2026-05-12T11:40:52.110395Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_70377f0d0e27",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-07",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-07",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42d38ab4d576",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-07T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-07T20:00:00",
              "event_date": "2026-08-07",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-07",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3baa77233601",
              "venue_id": "venue_montgomery_theater",
              "title": "San Jose Jazz Summer Fest 2026",
              "event_time": "2026-08-07T13:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-08-07T13:00:00",
              "event_date": "2026-08-07",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "Montgomery Theater stage programming for Friday of San Jose Jazz Summer Fest 2026, with scheduled performers including Insun Park & The Generals and Cyrus Chestnut Trio.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/san-jose-jazz-summer-fest-2026-at-the-montgomery-theater-friday/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f3fb278e9725",
              "venue_id": "venue_lucie_stern_pa",
              "title": "2026 New Works Festival",
              "event_time": "2026-08-07",
              "venue_name": "Lucie Stern CC",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "1305 Middlefield Road, Palo Alto, CA 94301",
              "description": "The 23rd annual festival featuring readings and workshops of new plays and musicals in development, offering audiences a first look at potential future hits.",
              "event_types": [
                "theater",
                "workshop",
                "festival",
                "literary"
              ],
              "price_info": "Festival passes and single tickets available soon",
              "url": "https://theatreworks.org/new-works-festival/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-05-15T21:43:52.770776Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_lucie_stern_pa|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a04f597fa334",
              "venue_id": "venue_the_ritz",
              "title": "Anthony Green, Geoff Rickly & Friends",
              "event_time": "2026-08-07T18:30:02-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-08-07T18:30:02",
              "event_date": "2026-08-07",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "ANTHONY GREEN\nGEOFF RICKLY\nKEITH GOODWIN\n\n \n\nFRIDAY AUGUST 7, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 Advance – $35 Day-of-Show",
              "url": "https://www.ticketweb.com/event/anthony-green-geoff-rickly-keith-the-ritz-tickets/14915383",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-15T23:30:40.559805Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-17T14:02:20.813805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cc57fa1a97be",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-07",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-07",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3bf76d91f961",
              "venue_id": "venue_sap_center",
              "title": "Benson Boone",
              "event_time": "2026-08-07T19:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-08-07T19:00:00",
              "event_date": "2026-08-07",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Wanted Man Tour 2026",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6bf2ff7fac08",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-07",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-07",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7ae39fddbb44",
              "venue_id": "venue_tommy_ts",
              "title": "LaVELL CRAWFORD",
              "event_time": "2026-08-07 2026-08-08",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-07",
              "run_id": "run_f4a1908f12d4",
              "run_label": "LaVELL CRAWFORD, Aug 7 – Aug 9",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22e8bc944ff1",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-07T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-07T19:30:00",
              "event_date": "2026-08-07",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-07",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bc3ab53580e9",
              "venue_id": "venue_mountain_winery",
              "title": "Los Lobos & Los Lonely Boys",
              "event_time": "Aug 7, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-07T19:30:00",
              "event_date": "2026-08-07",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Brotherhood Tour",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259260",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22ee0eb4870d",
              "venue_id": "venue_paramount_theatre",
              "title": "Jill Scott – To Whom This May Concern Tour",
              "event_time": "Aug 7, 2026 7:30 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-08-07T19:30:00",
              "event_date": "2026-08-07",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "All ages require a ticket; no children under 2 years.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/jill-scott-to-whom-it-may-concern",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_556eb51ccd39",
              "venue_id": "venue_act_theater",
              "title": "TWELFTH NIGHT",
              "event_time": "AUG 7–16, 2026",
              "venue_name": "ACT Theater",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "ACT Theater presents Shakespeare's beloved comedy of errors, featuring shipwrecked twins and a series of romantic misunderstandings.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/conservatory-shows/twelfth-night",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_590dcffed642",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE MADONNA TRIBUTE CONCERT",
              "event_time": "Friday, Aug 7 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-08-07T20:00:00",
              "event_date": "2026-08-07",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This high-energy show celebrates the Queen of Pop with a tribute to Madonna's greatest hits and iconic fashion.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-madonna-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_76162058fc43",
              "venue_id": "venue_little_hill_lounge",
              "title": "Adam Faucett",
              "event_time": "2026-08-07T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-08-07T20:00:00",
              "event_date": "2026-08-07",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Live performance by Adam Faucett at Little Hill Lounge.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://www.shazam.com/concert/adam-faucett-el-cerrito-little-hill-lounge-16788227",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_761bf39e4b72",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 07, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023349",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_69bbb2654c38",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-07",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-07",
              "event_date": "2026-08-07",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-07",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_599d6b64f90b",
              "venue_id": "venue_mountain_winery",
              "title": "Los Lobos & Los Lonely Boys",
              "event_time": "Aug 7 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-07T17:30:00",
              "event_date": "2026-08-07",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This double bill celebrates Chicano rock and blues with two of the most respected bands in the genre. Audiences will enjoy a night of virtuosic guitar playing and a blend of traditional and contemporary sounds.",
              "event_types": [
                "live_music",
                "rock",
                "latin_world"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Los_Lobos",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b8e074b1d80",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Aja Vu",
              "event_time": "August 7, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-08-07T18:00:00",
              "event_date": "2026-08-07",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "The San Francisco Bay Area's AjaVu pays tribute to the timeless music of Steely Dan & Chicago.\n\nKnown for their faithful renditions, Aja Vu blends the rich harmonies, and classic horns that define the sound of these musical legends! Steely Dan is renowned for its sophisticated studio recordings and jazz-infused arrangements, while Chicago is celebrated for its brass section and blend of rock, jazz, and pop. Combining these two makes for a fantastic concert experience filled with familiar and beloved songs performed with a true appreciation for the artistry of the original recordings.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.ajavu.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-08-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-08": {
          "date": "2026-08-08",
          "updated_at": "2026-05-18T16:00:41.696875Z",
          "events": [
            {
              "event_id": "evt_170a1ec4df2a",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "MC Chris / Mega Ran",
              "event_time": "Saturday August 8 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-08T20:00:00",
              "event_date": "2026-08-08",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••; ALL AGES; 25th anniversary; hip hop, Nerdcore; hip hop, Nerdcore",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260808.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1a46ef0f9582",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Harry Potter and the Deathly Hallows",
              "event_time": "Sat, Aug 8 - Sun, Aug 9, 2026",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Watch the epic conclusion of the Harry Potter film series on a large screen while a live orchestra performs Alexandre Desplat’s score. This cinematic concert experience brings the magic of the wizarding world to the Orpheum Theatre.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Buy tickets",
              "url": "https://us.atgtickets.com/events/harry-potter-and-the-deathly-hallows-part-two/davies-hall/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T11:16:55.905170Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a8d954ad859",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-08T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-08T20:00:00",
              "event_date": "2026-08-08",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-08",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_142ddf00d3ea",
              "venue_id": "venue_the_fillmore",
              "title": "Corinne Bailey Rae",
              "event_time": "2026-08-08",
              "venue_name": "The Fillmore",
              "event_start": "2026-08-08T20:00:00",
              "event_date": "2026-08-08",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "This special event celebrates two decades of music from soulful singer-songwriter Corinne Bailey Rae, featuring her classic hits.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Corinne_Bailey_Rae",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-14T10:28:31.042763Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_37b73275760f",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-08",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-08",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d440e2c61781",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-08T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-08T20:00:00",
              "event_date": "2026-08-08",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-08",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4091b7c5e6c9",
              "venue_id": "venue_montgomery_theater",
              "title": "San Jose Jazz Summer Fest 2026",
              "event_time": "2026-08-08 2026-08-08T15:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "Saturday Montgomery Theater stage programming for San Jose Jazz Summer Fest 2026, featuring Mike Clark & His Post-Boptet, Nicole Zuraitis Quartet, Sylvia Cuenca’s Bridging Generations, and Bria Skonberg.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/san-jose-jazz-summer-fest-2026-at-the-montgomery-theater-saturday/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_728f1a45ab55",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Los Panchos",
              "event_time": "2026-08-08T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-08-08T19:30:00",
              "event_date": "2026-08-08",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "The legendary trio Los Panchos performs classic Baladas y Boleros.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/los-panchos/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_acbdc254628d",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-08",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-08",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_78b4c6a34c61",
              "venue_id": "venue_golden_gate_theater",
              "title": "Harry Potter: Deathly Hallows Part 2",
              "event_time": "2026-08-08T13:00:00",
              "venue_name": "Golden Gate Theatre",
              "event_start": "2026-08-08T13:00:00",
              "event_date": "2026-08-08",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "Experience the final chapter of the Harry Potter saga with a high-definition screening of the film accompanied by a live orchestra performing Alexandre Desplat's epic score.",
              "event_types": [],
              "price_info": "Tickets from $280",
              "url": "https://www.axs.com/events/7/harry-potter-and-the-deathly-hallows-part-2-san-francisco-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theatre",
                  "fetched_at": "2026-05-17T12:48:59.920591Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d44f881b4cff",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-08",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-08",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_918a247961cb",
              "venue_id": "venue_tommy_ts",
              "title": "LaVELL CRAWFORD",
              "event_time": "2026-08-08 2026-08-08",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-08",
              "run_id": "run_f4a1908f12d4",
              "run_label": "LaVELL CRAWFORD, Aug 7 – Aug 9",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a99470d5519",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-08T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-08T19:30:00",
              "event_date": "2026-08-08",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-08",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c16a5861eff2",
              "venue_id": "venue_mountain_winery",
              "title": "ZZ Top",
              "event_time": "Aug 8, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-08T19:30:00",
              "event_date": "2026-08-08",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Special Guest Cheap Trick",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1357386",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_940d226f3102",
              "venue_id": "venue_geoffreys_inner_circle",
              "title": "Necy Living Single Jazz",
              "event_time": "2026-08-08",
              "venue_name": "Geoffreys Inner Circle",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "410 14th St, Oakland, CA 94612",
              "description": "FREE HOUSE DRINK with each advanced purchased ticket!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/197035040377",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_geoffreys_inner_circle",
                  "source_name": "Geoffreys Inner Circle",
                  "fetched_at": "2026-05-18T11:48:10.924975Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_geoffreys_inner_circle|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e7ff40fbdee9",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE ZZ TOP TRIBUTE CONCERT",
              "event_time": "Saturday, Aug 8 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-08-08T20:00:00",
              "event_date": "2026-08-08",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Experience the blues-rock sound and signature style of ZZ Top in this dedicated live tribute performance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-zz-top-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_33fd51d2fbef",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 08, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023350",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63072bf35802",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-08",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-08",
              "event_date": "2026-08-08",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-08",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eb4cb56086bd",
              "venue_id": "venue_mountain_winery",
              "title": "ZZ Top & Cheap Trick",
              "event_time": "Aug 8 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-08T17:30:00",
              "event_date": "2026-08-08",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Two legendary rock bands join forces for a night of blues-infused boogie and power-pop anthems. This powerhouse lineup features decades of hits from the \"Little Ol' Band from Texas\" and the Rock and Roll Hall of Famers, Cheap Trick.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#ZZ_Top",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-09": {
          "date": "2026-08-09",
          "updated_at": "2026-05-18T15:37:05.420370Z",
          "events": [
            {
              "event_id": "evt_668a2305b44a",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-09",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-09",
              "event_date": "2026-08-09",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-09",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7995d56ffc9a",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-09T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-09T20:00:00",
              "event_date": "2026-08-09",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-09",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_17f0a0cd8593",
              "venue_id": "venue_temescal_arts_center",
              "title": "Shapeshifters Cinema",
              "event_time": "2026-08-09T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-08-09T20:00:00",
              "event_date": "2026-08-09",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Monthly Shapeshifters Cinema screening at Temescal Arts Center.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e4432ac08a38",
              "venue_id": "venue_montgomery_theater",
              "title": "San Jose Jazz Summer Fest 2026",
              "event_time": "2026-08-09 2026-08-09T15:00:00-07:00",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-08-09",
              "event_date": "2026-08-09",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "Sunday Montgomery Theater stage programming for San Jose Jazz Summer Fest 2026, featuring Marcus Shelby Nonet, Dani & Debora Gurgel Quarteto ft. The Cressmans, Taimane, and Masters of Hawaiian Music.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/san-jose-jazz-summer-fest-2026-at-the-montgomery-theater-sunday/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-05-15T17:50:04.572978Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_49a3069bc8b0",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-09",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-09",
              "event_date": "2026-08-09",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-09",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_27e4489d3c82",
              "venue_id": "venue_sap_center",
              "title": "Grupo Frontera",
              "event_time": "2026-08-09T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-08-09T20:00:00",
              "event_date": "2026-08-09",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c548e2c238f6",
              "venue_id": "venue_tommy_ts",
              "title": "LaVELL CRAWFORD",
              "event_time": "2026-08-09 2026-08-08",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-09",
              "event_date": "2026-08-09",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-09",
              "run_id": "run_f4a1908f12d4",
              "run_label": "LaVELL CRAWFORD, Aug 7 – Aug 9",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49b4ef20a695",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-09T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-09T19:30:00",
              "event_date": "2026-08-09",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-09",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_666b34272627",
              "venue_id": "venue_mountain_winery",
              "title": "George Thorogood & The Destroyers",
              "event_time": "Aug 9, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-09T19:30:00",
              "event_date": "2026-08-09",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Baddest Show On Earth | Special Guest: The Robert Cray Band",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1365878",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_70e87fc007ab",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Santana & The Doobie Brothers: Oneness Tour",
              "event_time": "Sun Aug 9, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-09",
              "event_date": "2026-08-09",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Legendary guitarist Santana joins forces with The Doobie Brothers for a collaborative performance during their 2026 Oneness Tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/santana-the-doobie-brothers-oneness-tour-mountain-view-california-08-09-2026/event/1C00644B9FA89E89",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea55827ce20b",
              "venue_id": "venue_orpheum_theater",
              "title": "BEAUTY AND THE BEAST",
              "event_time": "Aug 09, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-08-09",
              "event_date": "2026-08-09",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This beloved stage musical brings the enchanting \"tale as old as time\" to life with spectacular costumes and classic songs.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/tickets.php?event=7023339",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b48b9c8aaf2b",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-09",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-09",
              "event_date": "2026-08-09",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-09",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5dd7a28aacca",
              "venue_id": "venue_mountain_winery",
              "title": "George Thorogood & Robert Cray Band",
              "event_time": "Aug 9 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-09T17:30:00",
              "event_date": "2026-08-09",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This night of high-octane blues and rock features the gritty slide guitar of George Thorogood and the soulful, sophisticated blues of Robert Cray. It is a must-see event for fans of classic guitar-driven music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#George_Thorogood___The_Destroyers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_17a8b137f336",
              "venue_id": "venue_stern_grove",
              "title": "Patti LaBelle",
              "event_time": "Aug 9 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-08-09T14:00:00",
              "event_date": "2026-08-09",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Patti LaBelle, Destant Wolf, dj Malachai",
              "event_types": [
                "rnb_soul_funk",
                "live_music",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Patti_LaBelle",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_11b575f323f0",
              "venue_id": "venue_924_gilman",
              "title": "2Morrows June + Free The Witness + More!",
              "event_time": "2026-08-09T19:30:00",
              "venue_name": "924 Gilman",
              "event_start": "2026-08-09T19:30:00",
              "event_date": "2026-08-09",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Good Mourning America Tour featuring 2Morrows June, Outpatient X, Free The Witness, Knoxey, and Subtitles. Doors at 7:00 PM; music at 7:30 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12",
              "url": "https://app.showslinger.com/v4/free-the-witness?from=%2Fe1%2F460%2F924-gilman%2F8c96699fd6&promo_widget_v3_id=460",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-05-18T15:36:59.474010Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_924_gilman|2026-08-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-08-10": {
          "date": "2026-08-10",
          "updated_at": "2026-05-18T14:46:03.450165Z",
          "events": [
            {
              "event_id": "evt_bc56a9fdf51b",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Little Feat",
              "event_time": "Aug 10 2026 7pm/8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-08-10T19:00:00",
              "event_date": "2026-08-10",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "The Last Farewell Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$50.60",
              "url": "http://www.foopee.com/by-band.2.html#Little_Feat",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-08-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9816de83cc22",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-10",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-10",
              "event_date": "2026-08-10",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-10",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a4874de37a8d",
              "venue_id": "venue_yoshis",
              "title": "The Robert Cray Band",
              "event_time": "MON 8.10 8:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-10T20:00:00",
              "event_date": "2026-08-10",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BLUES ICON. SOUL MAN. ROCK AND ROLLER.",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "rock"
              ],
              "price_info": "$89 - $129",
              "url": "https://yoshis.com/events/buy-tickets/robert-cray-band-7/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88596d42bffd",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Aug 10 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-10T19:00:00",
              "event_date": "2026-08-10",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690184?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_31bc32f1d18e",
              "venue_id": "venue_belle_cora",
              "title": "Trivia Night @ Belle Cora",
              "event_time": "2026-08-10T19:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-08-10T19:00:00",
              "event_date": "2026-08-10",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Weekly Trivia Night hosted by Sunset Trivia. Gather your team to test your knowledge and win prizes while enjoying food and drinks in North Beach.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/trivia-night-belle-cora-tickets-166063625445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-08-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e8be3a6bd03c",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-10",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-10",
              "event_date": "2026-08-10",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-10",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-11": {
          "date": "2026-08-11",
          "updated_at": "2026-05-18T15:42:13.105927Z",
          "events": [
            {
              "event_id": "evt_c7ac045bf399",
              "venue_id": "venue_4_star_theater",
              "title": "John-Robert",
              "event_time": "Aug 11, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-08-11T20:00:00",
              "event_date": "2026-08-11",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Presented by THROWIN' BO'S, singer-songwriter John-Robert brings his soulful indie-pop sound to the 4 Star Theater. Fans can enjoy a live set from this rising artist in a classic cinema-turned-venue.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-john-robert",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-08-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f9a837774b62",
              "venue_id": "venue_san_jose_civic",
              "title": "The Beths & Beach Bunny",
              "event_time": "2026-08-11T19:00:00-07:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-08-11T19:00:00",
              "event_date": "2026-08-11",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "A co-headlining performance featuring New Zealand indie rockers The Beths and Chicago-based indie pop band Beach Bunny.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$53+",
              "url": "https://sanjosetheaters.org/event/the-beths-beach-bunny/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-04-28T12:52:58.947754Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-08-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7af35027e4fc",
              "venue_id": "venue_rickshaw_stop",
              "title": "Playlunch",
              "event_time": "Aug 11 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-08-11T19:00:00",
              "event_date": "2026-08-11",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Australian funk-punk band Playlunch brings their humorous lyrics and infectious energy to the stage for a lively performance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$23 7pm/8pm",
              "url": "http://www.foopee.com/by-band.2.html#Playlunch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-08-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89a4d71cee9a",
              "venue_id": "venue_the_warfield",
              "title": "INTERPOL",
              "event_time": "Tue, Aug 11, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-08-11T20:00:00",
              "event_date": "2026-08-11",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "North America Tour 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1427064",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-11T13:55:31.935320Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-08-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a9e72dbd8b8",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-11",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-11",
              "event_date": "2026-08-11",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-11",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fd21c015d537",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-11",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-11",
              "event_date": "2026-08-11",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-11",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01d91a0f15b0",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-11",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-11",
              "event_date": "2026-08-11",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-11",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b9712173e2cb",
              "venue_id": "venue_yoshis",
              "title": "The Blues Project",
              "event_time": "TUE 8.11 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-11T20:00:00",
              "event_date": "2026-08-11",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "TURNING MANY PEOPLE ON TO THE AMERICAN BLUES HERITAGE",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$29 - $49",
              "url": "https://yoshis.com/events/buy-tickets/the-blues-project-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9d1505d6ccb4",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Aug 11 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-11T19:00:00",
              "event_date": "2026-08-11",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690209?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e8ac8b7bec60",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-08-11T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-08-11T20:00:00",
              "event_date": "2026-08-11",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-08-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-08-12": {
          "date": "2026-08-12",
          "updated_at": "2026-05-18T15:43:10.134140Z",
          "events": [
            {
              "event_id": "evt_0d379fdb5367",
              "venue_id": "venue_greek_theatre",
              "title": "Tedeschi Trucks Band, Lukas Nelson",
              "event_time": "August 12, 2026 6:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-08-12T18:00:00",
              "event_date": "2026-08-12",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Future Soul 2026 Tour - Lukas Nelson",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/tedeschi-trucks-band-260812",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bbdcbc573b79",
              "venue_id": "venue_masonic_hall",
              "title": "O.A.R., Gavin DeGraw, Lisa Loeb",
              "event_time": "Aug 12 2026 5:30pm/6:30pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-08-12T17:30:00",
              "event_date": "2026-08-12",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Rock band O.A.R. celebrates thirty years of music with a performance featuring hits from their extensive career. The 'Three Decades Tour' highlights the band's signature jam-rock style and community-focused live shows.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/oar-three-decades-tour-san-francisco-california-08-12-2026/event/1C00635BC558A054",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-10T23:21:11.204082Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_98f61bca145a",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "John Mellencamp: Dancing Words Tour",
              "event_time": "2026-08-12T18:30:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-12T18:30:00",
              "event_date": "2026-08-12",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "John Mellencamp performs his most beloved songs during the Dancing Words Tour, celebrating his career as a staple of American heartland rock. The show features a collection of his greatest hits at the scenic Shoreline venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/john-mellencamp-dancing-words-tour-the-mountain-view-california-08-12-2026/event/1C006428F3F5D437",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a91e6376dd87",
              "venue_id": "venue_the_independent",
              "title": "GREG MENDEZ",
              "event_time": "8.12 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-08-12T20:00:00",
              "event_date": "2026-08-12",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Singer-songwriters Greg Mendez and Maria BC share the stage for an intimate evening of indie-folk and ambient music.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/greg-mendez/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e7eff37bfe8e",
              "venue_id": "venue_the_warfield",
              "title": "INTERPOL",
              "event_time": "Wed, Aug 12, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-08-12T20:00:00",
              "event_date": "2026-08-12",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "North America Tour 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1438397",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-11T13:55:31.935320Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30abfa356a95",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-12",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-12",
              "event_date": "2026-08-12",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-12",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_811ea4a7f9c0",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-12T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-12T20:00:00",
              "event_date": "2026-08-12",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-12",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_24d6a780889c",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-12",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-12",
              "event_date": "2026-08-12",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-12",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c73e127758d1",
              "venue_id": "venue_golden_gate_theater",
              "title": "An Evening with Michael Feinstein",
              "event_time": "2026-08-12T19:30:00",
              "venue_name": "Golden Gate Theatre",
              "event_start": "2026-08-12T19:30:00",
              "event_date": "2026-08-12",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "The 'Ambassador of the Great American Songbook' Michael Feinstein performs an intimate evening of classic standards and stories from his legendary career.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://dothebay.com/events/2026/8/12/an-intimate-evening-with-michael-feinstein-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theatre",
                  "fetched_at": "2026-05-17T12:48:59.920591Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_31911f3b6fc1",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-12",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-12",
              "event_date": "2026-08-12",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-12",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d7a5c38c6981",
              "venue_id": "venue_yoshis",
              "title": "Rotimi",
              "event_time": "WED 8.12 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-12T19:30:00",
              "event_date": "2026-08-12",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "POWERHOUSE ACTOR, SINGER, SONGWRITER FUSING AFROBEATS, HIP HOP, AND R&B WITH A SMOOTH URBAN SWAG",
              "event_types": [
                "live_music",
                "latin_world",
                "hiphop_rap",
                "rnb_soul_funk"
              ],
              "price_info": "$59 - $99",
              "url": "https://yoshis.com/events/buy-tickets/rotimi-with-red-lotus/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d787303f43f5",
              "venue_id": "venue_castro_theater",
              "title": "COMEDY BANG! BANG! GROUND BEEFING TOUR 2026",
              "event_time": "August 12, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-08-12T20:00:00",
              "event_date": "2026-08-12",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/comedy-bang-bang-260812",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_852c22a6fff7",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-12",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-12",
              "event_date": "2026-08-12",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-12",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b57389a3e754",
              "venue_id": "venue_rickshaw_stop",
              "title": "Babymorocco",
              "event_time": "Aug 12 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-08-12T19:00:00",
              "event_date": "2026-08-12",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Babymorocco, Harmony Tividad",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25 7pm/8pm",
              "url": "http://www.foopee.com/by-band.0.html#Babymorocco",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-08-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-13": {
          "date": "2026-08-13",
          "updated_at": "2026-05-18T15:48:30.048942Z",
          "events": [
            {
              "event_id": "evt_ff02586dd590",
              "venue_id": "venue_castro_theater",
              "title": "HEDWIG AND THE ANGRY INCH",
              "event_time": "August 13, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-08-13T19:00:00",
              "event_date": "2026-08-13",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Aug 13 John Cameron Mitchell, film screening and Q&A 18+ $84.65-$60.75 7pm #",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/hedwig-and-the-angry-inch-260813",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_330899f6bb26",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-13T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-13T20:00:00",
              "event_date": "2026-08-13",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-13",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_aebe67bc8ad6",
              "venue_id": "venue_august_hall",
              "title": "Saliva",
              "event_time": "Aug 13 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-08-13T19:00:00",
              "event_date": "2026-08-13",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Hard rock veterans Saliva bring their heavy riffs and radio hits to August Hall for an energetic live concert experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$39.80",
              "url": "http://www.foopee.com/by-band.3.html#Saliva",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-09T12:19:37.659143Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c3ff55f51729",
              "venue_id": "venue_rickshaw_stop",
              "title": "ALEX AMEN",
              "event_time": "Thu Aug 13 8:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-08-13T20:00:00",
              "event_date": "2026-08-13",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Musician Alex Amen performs a live set showcasing his unique musical style at this intimate San Francisco venue.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20.00-$25.00",
              "url": "https://www.ticketmaster.com/event/1C0064A8D643F6B4?camefrom=CFC_ANOTHERPLANET_artist&brand=anotherplanet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-14T10:46:20.204876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_44c14bbc1211",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-13",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-13",
              "event_date": "2026-08-13",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-13",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a6d6a43600c8",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-13T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-13T20:00:00",
              "event_date": "2026-08-13",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-13",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_91f890bc2efc",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-08-13T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-08-13T19:00:00",
              "event_date": "2026-08-13",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_47f4567175ea",
              "venue_id": "venue_st_josephs_arts_society",
              "title": "Flore Laurentienne",
              "event_time": "2026-08-13T19:00:00",
              "venue_name": "St Josephs Arts Society",
              "event_start": "2026-08-13T19:00:00",
              "event_date": "2026-08-13",
              "venue_address": "1401 Howard St, San Francisco, CA 94103",
              "description": "Saint Joseph's Art Society & Lo-Fi Oyster Co. present a live performance by Flore Laurentienne.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "https://thethirdplace.is/event/saint-josephs-art-society-lo-fi-oyster-co-present-flore-laurentienne",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_st_josephs_arts_society",
                  "source_name": "St Josephs Arts Society",
                  "fetched_at": "2026-05-16T00:40:52.568337Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_st_josephs_arts_society|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ddfaa1532d5e",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-13",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-13",
              "event_date": "2026-08-13",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-13",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e9e7c554c4b8",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-13",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-13",
              "event_date": "2026-08-13",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-13",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_46eda1e923cb",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-13T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-13T19:30:00",
              "event_date": "2026-08-13",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-13",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8b51f9102064",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-13",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-13",
              "event_date": "2026-08-13",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-13",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d1cfc8c683bb",
              "venue_id": "venue_sf_eagle",
              "title": "Custody Weekend, Goof, Tashow, Lower Companion",
              "event_time": "Aug 13 2026 8:30pm",
              "venue_name": "SF Eagle",
              "event_start": "2026-08-13T20:30:00",
              "event_date": "2026-08-13",
              "venue_address": "398 12th St, San Francisco, CA 94103",
              "description": "21+ $10 8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/by-band.0.html#Custody_Weekend",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_eagle|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1578245127d3",
              "venue_id": "venue_thee_stork_club",
              "title": "Spatulas",
              "event_time": "Aug 13 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-08-13T20:00:00",
              "event_date": "2026-08-13",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Spatulas, Chronophage, Famous Mammals",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Spatulas",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_11dedde4ebb4",
              "venue_id": "venue_bill_graham_civic",
              "title": "YEAT",
              "event_time": "August 13, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-08-13T19:00:00",
              "event_date": "2026-08-13",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "The LOVE/LYFE Tour - BNYX",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/yeat-260813",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-05-18T15:43:56.429713Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e1d408eed7c",
              "venue_id": "venue_levis_stadium",
              "title": "TENNESSEE TITANS VS. SAN FRANCISCO 49ERS",
              "event_time": "Aug 13, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-08-13",
              "event_date": "2026-08-13",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The San Francisco 49ers host the Tennessee Titans in an exciting NFL regular-season matchup at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/titans-vs-49ers-preseason-week-1-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-08-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-14": {
          "date": "2026-08-14",
          "updated_at": "2026-05-18T16:16:06.724385Z",
          "events": [
            {
              "event_id": "evt_a32e64af2373",
              "venue_id": "venue_rickshaw_stop",
              "title": "Smoked Out Soul & Friends",
              "event_time": "2026-08-14T20:45:00",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-08-14T20:45:00",
              "event_date": "2026-08-14",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "This collaborative showcase features the funk and soul grooves of Smoked Out Soul alongside Otis McDonald, Seal Party, and Lester Chambers. It is a night dedicated to soulful rhythms, bluesy vocals, and high-energy live instrumentation.",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "$20.00-$25.00",
              "url": "http://www.foopee.com/by-band.3.html#Smoked_Out_Soul",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-12T15:22:39.949681Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f6e56d47311",
              "venue_id": "venue_the_warfield",
              "title": "Tomahawk",
              "event_time": "Aug 14 2026 7pm/8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-08-14T19:00:00",
              "event_date": "2026-08-14",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "A Huge Waste of Your Time and Money Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$64.05",
              "url": "http://www.foopee.com/by-band.3.html#Tomahawk",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-01T09:31:47.357889Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b67111322e32",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-14T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-14T20:00:00",
              "event_date": "2026-08-14",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-14",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bc384da3b1aa",
              "venue_id": "venue_san_jose_civic",
              "title": "George Lopez",
              "event_time": "2026-08-14T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-08-14T20:00:00",
              "event_date": "2026-08-14",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Comedy legend George Lopez brings his signature stand-up performance to the San Jose Civic.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets from $86",
              "url": "https://sanjosetheaters.org/event/george-lopez/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-11T13:50:52.323809Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88ccc5c4464c",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-14",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-14",
              "event_date": "2026-08-14",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-14",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f44b41b5301",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-14T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-14T20:00:00",
              "event_date": "2026-08-14",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-14",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_398848bfe3ea",
              "venue_id": "venue_lucie_stern_pa",
              "title": "Cut From Away",
              "event_time": "2026-08-14T20:00:00",
              "venue_name": "Lucie Stern CC",
              "event_start": "2026-08-14T20:00:00",
              "event_date": "2026-08-14",
              "venue_address": "1305 Middlefield Road, Palo Alto, CA 94301",
              "description": "A special fundraising event where creators Irene Sankoff and David Hein share the 'stranded' songs, characters, and stories that were cut from the final Broadway production of 'Come From Away'. Includes a Gander-themed dinner at 6:00 PM.",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "Contact box office for ticket details",
              "url": "https://theatreworks.org/cut-from-away/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-05-15T21:43:52.770776Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_lucie_stern_pa|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6920b0a1cfd6",
              "venue_id": "venue_cafe_borrone",
              "title": "Clint Baker & The All Stars",
              "event_time": "2026-08-14T18:00:00",
              "venue_name": "Cafe Borrone",
              "event_start": "2026-08-14T18:00:00",
              "event_date": "2026-08-14",
              "venue_address": "1010 El Camino Real, Menlo Park, CA 94025",
              "description": "Live music performance",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.cafeborrone.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_borrone",
                  "source_name": "Cafe Borrone",
                  "fetched_at": "2026-05-16T10:32:43.331718Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_cafe_borrone|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a7c75d8d9a3b",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-14",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-14",
              "event_date": "2026-08-14",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-14",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa1113ab0e54",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-14",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-14",
              "event_date": "2026-08-14",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-14",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_475dba92a2bc",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-14T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-14T19:30:00",
              "event_date": "2026-08-14",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-14",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_04d5a6182c9e",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Plosivs & Tijuana Panthers",
              "event_time": "Friday August 14 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-14T19:30:00",
              "event_date": "2026-08-14",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; Garage Punk, Post-hardcore; surf rock, garage rock, and punkpunk; xxx",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260814.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a153ffd12bb",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "SOUNDING ARROW, GARY JULES, BREEZERS",
              "event_time": "Fri Aug 14 8:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-14T20:00:00",
              "event_date": "2026-08-14",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A Night of Sonic Impressionism",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $17.00",
              "url": "https://wl.seetickets.us/event/sounding-arrow-gary-jules-breezers/691696?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e953e727485b",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE SADE TRIBUTE CONCERT",
              "event_time": "Friday, Aug 14 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-08-14T20:00:00",
              "event_date": "2026-08-14",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "A smooth and soulful evening dedicated to the sophisticated jazz and R&B music of the legendary Sade.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-sade-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8a5b37ac05df",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Luke Bryan: Word On The Street Tour",
              "event_time": "Fri Aug 14, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-14",
              "event_date": "2026-08-14",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Country superstar Luke Bryan brings his high-energy \"Word On The Street Tour\" to Shoreline Amphitheatre for a night of modern country hits.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/luke-bryan-word-on-the-street-mountain-view-california-08-14-2026/event/1C006435B65EF104",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c631ce059cb",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-14",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-14",
              "event_date": "2026-08-14",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-14",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_367e02261cdb",
              "venue_id": "venue_rhythmix",
              "title": "String & Shadow Puppet Theater",
              "event_time": "Friday, August 14, 2026 6:30 pm to 8:00 pm",
              "venue_name": "Rhythmix",
              "event_start": "2026-08-14T18:30:00",
              "event_date": "2026-08-14",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Grab your chairs and blankets and head outdoors to celebrate the diverse cultural traditions of our community with live theater, music and dance from around the globe at Rhythmix in the Parks!\n\n \n\nString & Shadow Puppet Theater returns this summer with a brand-new production, Night at the Grand Opera! Set in an old European opera house during the golden age of Grand Opera, Night at the Grand Opera is a frenzied romp through a candlelit night at the Opera. Rococo extravagance is fashioned with elaborate cardboard sets that collapse and unfold to reveal the many great dramas of the opera house (not all of which happen on stage.). Love triangles, converging revolutionary plots, art-loving flies and disaffected vermin are brought to life with cardboard and papier-mache.",
              "event_types": [
                "live_music",
                "theater",
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/events/rhythmix-in-the-parks-string-shadow/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-05-18T15:50:35.869963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rhythmix|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5352fe87ec56",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Cisco Kid",
              "event_time": "August 14, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-08-14T18:00:00",
              "event_date": "2026-08-14",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "California's only WAR Tribute Band! Led by renowned recording artist, drummer, and vocalist Joey \"Jam\" Flores, CISCO KID is made up of some of the Bay Area's top professional musicians. Collectively, they've performed with legendary artists such as The Temptations, Joe Louis Walker, Smash Mouth, Edwin Starr, Al Green, Malo, Sheila E., Pete Escovedo, Third Eye Blind, WAR, and Lee Oskar, among others. CISCO KID brings audiences down memory lane with all the greatest hits of the legendary band WAR. When you talk about legendary California and Bay Area bands WAR absolutely stands among them, and CISCO KID delivers that legacy live.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "http://ciscokidband.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-08-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-15": {
          "date": "2026-08-15",
          "updated_at": "2026-05-18T15:58:43.864071Z",
          "events": [
            {
              "event_id": "evt_1d706b308f5f",
              "venue_id": "venue_frost_amphitheater",
              "title": "An Evening with Goose",
              "event_time": "Saturday, August 15 at 6:30 PM",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-08-15T18:30:00",
              "event_date": "2026-08-15",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Rock music performance presented by Stanford Live and Goldenvoice",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-frost/goose/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-03-24T06:10:30.038111Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_frost_amphitheater"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ac16b67f0d0b",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "TOTO + Christopher Cross + The Romantics",
              "event_time": "2026-08-15T17:15:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-15T17:15:00",
              "event_date": "2026-08-15",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Classic pop and rock icons Toto, Christopher Cross, and The Romantics perform their greatest hits in a nostalgic live concert. Attendees will enjoy an evening of chart-topping anthems and polished musicianship from these legendary acts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/toto-christopher-cross-the-romantics-mountain-view-california-08-15-2026/event/1C006382E6D5C13F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a88614167e1b",
              "venue_id": "venue_audio",
              "title": "Embrz",
              "event_time": "08/15/2026 2pm",
              "venue_name": "Audio",
              "event_start": "2026-08-15T14:00:00",
              "event_date": "2026-08-15",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "EMBRZ brings melodic and emotional electronic music to Audio SF.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19.83-53.93 | 21+",
              "url": "https://wl.eventim.us/event/embrz/686279?afflky=AudioSF",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-05-01T15:07:28.699668Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audio|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_867846bbae30",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Dillinger Four & Off With Their Heads",
              "event_time": "Saturday August 15 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-15T19:30:00",
              "event_date": "2026-08-15",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; punkrock; Punk Rock, Pop Punk; punk queercore",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33/$35",
              "url": "http://www.bottomofthehill.com/20260815.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e4ca433eb02",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-15T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-15T20:00:00",
              "event_date": "2026-08-15",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-15",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a9742c50d6cc",
              "venue_id": "venue_brick_and_mortar",
              "title": "Ejean",
              "event_time": "Aug 15 8pm/9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-08-15T20:00:00",
              "event_date": "2026-08-15",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "$34.27 (under 21 plus 5) 8pm/9pm ^",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34.27 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.1.html#Ejean",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5abc5dbca0cb",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-15",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-15",
              "event_date": "2026-08-15",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-15",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6bf99ec54627",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-15T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-15T20:00:00",
              "event_date": "2026-08-15",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-15",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_18b9d8cdf6fb",
              "venue_id": "venue_masonic_hall",
              "title": "T.I.: The King Succession Tour",
              "event_time": "2026-08-15",
              "venue_name": "Masonic Hall",
              "event_start": "2026-08-15",
              "event_date": "2026-08-15",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "T.I. The King Succession Tour",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_40e04c5721f4",
              "venue_id": "venue_gray_area",
              "title": "Matmos with Dick Slessig Combo",
              "event_time": "2026-08-15T20:00:00",
              "venue_name": "Gray Area",
              "event_start": "2026-08-15T20:00:00",
              "event_date": "2026-08-15",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Experimental electronic duo Matmos performs alongside the Dick Slessig Combo at Gray Area.",
              "event_types": [
                "electronic",
                "live_music",
                "experimental"
              ],
              "price_info": "Check website for details",
              "url": "https://grayarea.org/event/matmos-with-dick-slessig-combo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-05-17T10:21:44.258811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_recombinant",
                  "source_name": "Recombinant",
                  "fetched_at": "2026-05-17T15:06:25.362807Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_gray_area|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_58156760862b",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-15",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-15",
              "event_date": "2026-08-15",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-15",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e7719c919de",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-15",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-15",
              "event_date": "2026-08-15",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-15",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e3a9a1f5076d",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-15T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-15T19:30:00",
              "event_date": "2026-08-15",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-15",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f335862f7edb",
              "venue_id": "venue_the_independent",
              "title": "KROOKED KINGS",
              "event_time": "8.15 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-08-15T21:00:00",
              "event_date": "2026-08-15",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "IN ANOTHER LIFE TOUR",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/krooked-kings/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8e6f239a9a8c",
              "venue_id": "venue_mountain_winery",
              "title": "The Movement and Pepper",
              "event_time": "Aug 15, 2026 7:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-15T19:00:00",
              "event_date": "2026-08-15",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "HIGH TIDE SUMMER TOUR | with special guest Cydeways",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1371121",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64e5ae8f9c4c",
              "venue_id": "venue_yoshis",
              "title": "J. Holiday",
              "event_time": "SAT 8.15",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-15T19:30:00",
              "event_date": "2026-08-15",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GRAMMY©-NOMINATED R&B SINGER",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$39 - $79",
              "url": "https://yoshis.com/events/buy-tickets/j-holiday-12/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a9ed49fa9188",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE SADE TRIBUTE CONCERT",
              "event_time": "Saturday, Aug 15 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-08-15T20:00:00",
              "event_date": "2026-08-15",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "A smooth and soulful evening dedicated to the sophisticated jazz and R&B music of the legendary Sade.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-sade-tribute-concert-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eb0e8668b9a3",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-15",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-15",
              "event_date": "2026-08-15",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-15",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8864620b4142",
              "venue_id": "venue_greek_theatre",
              "title": "Thee Sacred Souls, La Lom, Womack Sisters",
              "event_time": "Aug 15 2026 5:30pm/7pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-08-15T17:30:00",
              "event_date": "2026-08-15",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a $77i.15 5:30pm/7pm #",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "latin_world"
              ],
              "price_info": "$77",
              "url": "http://www.foopee.com/by-band.3.html#Thee_Sacred_Souls",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_145309244138",
              "venue_id": "venue_mountain_winery",
              "title": "Movement, Pepper & Cydeways",
              "event_time": "Aug 15 5pm/7pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-15T17:00:00",
              "event_date": "2026-08-15",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Movement, Pepper, Cydeways",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Movement",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea5940eb5d01",
              "venue_id": "venue_stern_grove",
              "title": "Public Enemy",
              "event_time": "Aug 15 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-08-15T14:00:00",
              "event_date": "2026-08-15",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Public Enemy, dj Davey D",
              "event_types": [
                "hiphop_rap",
                "live_music",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Public_Enemy",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf309148418e",
              "venue_id": "venue_winters",
              "title": "Creepy Crawlies",
              "event_time": "Aug 15 2026 1pm",
              "venue_name": "Winters",
              "event_start": "2026-08-15T13:00:00",
              "event_date": "2026-08-15",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Creepy Crawlies, Hyperdrive Kittens, Mermaid & The Crashers, Fuzz Attack, Touch Me Hooker, Lost Puppy Forever, Sin-O-Matics, Agony Ants, Durango Dogs Catherine DeNuvaring, Charm World",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Creepy_Crawlies",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_winters|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_839d0b0221b7",
              "venue_id": "venue_greek_theatre",
              "title": "THEE SACRED SOULS",
              "event_time": "August 15, 2026 7:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-08-15T19:00:00",
              "event_date": "2026-08-15",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "LA LOM\nThe Womack Sisters",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/thee-sacred-souls-260815",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-18T15:43:05.721389Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_199121e27665",
              "venue_id": "venue_great_star_theater",
              "title": "Neckties vs. High Heels",
              "event_time": "August 15, 2026",
              "venue_name": "Great Star Theater",
              "event_start": "2026-08-15",
              "event_date": "2026-08-15",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "Sixteen years later, the play makes its triumphant return with a professional production team comprised of alumni from the Communication University of China, Beijing Film Academy, and the Central Academy of Drama. Joining forces with Bay Area tech elites, multi-talented \"slash\" youth, and artistic talents, this production promises yet another round of laughter and reflection. This is a story about marriage. This is a story about men and women. This is a story about human nature. This is a story about the future. This is not just a play—it’s a mirror that reflects us all.",
              "event_types": [
                "theater"
              ],
              "price_info": "Tickets",
              "url": "https://www.vdperformingarts.com/en/recent-activity",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-05-18T15:52:47.667779Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-08-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-16": {
          "date": "2026-08-16",
          "updated_at": "2026-05-18T15:58:43.868639Z",
          "events": [
            {
              "event_id": "evt_b9d52bec796d",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Passion Pit",
              "event_time": "Aug 16 2026 7:30pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-08-16T19:30:00",
              "event_date": "2026-08-16",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Indie electronic band Passion Pit performs their synth-pop hits in the unique setting of the historic Castro Theater. Fans can expect a nostalgic and high-energy show featuring the band's signature falsetto vocals.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$56.25",
              "url": "http://www.foopee.com/by-band.2.html#Passion_Pit",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c5c26d0827e",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Dillinger Four",
              "event_time": "Sunday August 16 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-16T19:30:00",
              "event_date": "2026-08-16",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; punkrock; Punk Rock, Pop Punk; pop-punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$36.91/$35",
              "url": "http://www.bottomofthehill.com/20260816.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_358eaf7175d6",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-16",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-16",
              "event_date": "2026-08-16",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-16",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dfc72e823816",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-16T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-16T20:00:00",
              "event_date": "2026-08-16",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-16",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1df499c17919",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott - Audio-Described Performance",
              "event_time": "2026-08-16T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-16T14:00:00",
              "event_date": "2026-08-16",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Performance featuring live audio description and a pre-show haptic tour at 1:00 PM.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_963dba0c21e8",
              "venue_id": "venue_temescal_arts_center",
              "title": "Dabke With Us!",
              "event_time": "2026-08-16T11:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-08-16T11:00:00",
              "event_date": "2026-08-16",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Free Palestinian folk dance workshop at Temescal Arts Center, taught by TAC Resident Artist Wael Buhaissy and members of Palestinian Dabke: Aljuthoor of the Arab Shatat. No experience necessary.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b8a2aeec96d4",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "2026-08-16T19:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-08-16T19:00:00",
              "event_date": "2026-08-16",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Open participation improvisation workshop hosted by Jacob Felix Heule for musicians and dancers of all levels; listen and/or play. Doors at 7, over by 10.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_77a88fcdf0b2",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "LYKN",
              "event_time": "2026-08-16T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-08-16T19:30:00",
              "event_date": "2026-08-16",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Pop group LYKN live in concert.",
              "event_types": [
                "live_music"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/lykn/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e68a11aa96db",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-16",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-16",
              "event_date": "2026-08-16",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-16",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c97dc28bb20a",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-16T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-16T19:30:00",
              "event_date": "2026-08-16",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-16",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ecfad27e635c",
              "venue_id": "venue_dalas_nest",
              "title": "Baxter Robertson & The CA Psychics",
              "event_time": "2026-08-16T15:30:00",
              "venue_name": "Dala's Nest",
              "event_start": "2026-08-16T15:30:00",
              "event_date": "2026-08-16",
              "venue_address": "Menlo Park, CA",
              "description": "Blues-Rock Fusion",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dalas_nest",
                  "source_name": "Dala's Nest",
                  "fetched_at": "2026-05-18T10:13:54.412437Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dalas_nest|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d66daece7e85",
              "venue_id": "venue_mountain_winery",
              "title": "The Head And The Heart",
              "event_time": "Aug 16, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-16T19:30:00",
              "event_date": "2026-08-16",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1324664",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_187114348b1f",
              "venue_id": "venue_yoshis",
              "title": "Chris Mitchell: Beggin for Sax",
              "event_time": "SUN 8.16",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-16T19:30:00",
              "event_date": "2026-08-16",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SEDUCTIVE VIBES FUSED WITH JAZZ ELEGANCE AND ROCKSTAR SWAGGER",
              "event_types": [
                "live_music",
                "jazz",
                "rock"
              ],
              "price_info": "$65 - $99",
              "url": "https://yoshis.com/events/buy-tickets/chris-mitchell-beggin-for-sax/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_708d308adc7e",
              "venue_id": "venue_presidio_theater",
              "title": "Bliss Festival",
              "event_time": "Aug 16, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-08-16T19:30:00",
              "event_date": "2026-08-16",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "The Bliss Festival at the Presidio Theatre showcases a diverse lineup of artistic performances and creative expressions for the community.",
              "event_types": [
                "festival"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/bliss-festival",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e29bffe7c40e",
              "venue_id": "venue_belle_cora",
              "title": "HIPSTERIA with “Tender” Tim",
              "event_time": "2026-08-16T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-08-16T18:00:00",
              "event_date": "2026-08-16",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Live jazz performance by HIPSTERIA featuring “Tender” Tim. Enjoy cool arrangements of modern pop, rock, blues, and R&B with no cover charge in a cozy outdoor setting.",
              "event_types": [],
              "price_info": "Free",
              "url": "https://hipsteriac.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-05-18T14:17:10.964987Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_20905fc589aa",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-16",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-16",
              "event_date": "2026-08-16",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-16",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_81c66f9378ab",
              "venue_id": "venue_mountain_winery",
              "title": "The Head and the Heart",
              "event_time": "Aug 16 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-16T17:30:00",
              "event_date": "2026-08-16",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The acclaimed indie folk band The Head and the Heart brings their signature harmonies and soulful songwriting to the Hotel Utah stage.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Head_And_The_Heart",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5295f883e6a",
              "venue_id": "venue_stern_grove",
              "title": "Al Green",
              "event_time": "Aug 16 2026 2pm",
              "venue_name": "Stern Grove",
              "event_start": "2026-08-16T14:00:00",
              "event_date": "2026-08-16",
              "venue_address": "2750 19th Ave, San Francisco, CA 94132",
              "description": "Al Green, Goapele, Glide Ensemble, dj Wonway Posibul",
              "event_types": [
                "rnb_soul_funk",
                "live_music",
                "dj_party",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Al_Green",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stern_grove|2026-08-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-17": {
          "date": "2026-08-17",
          "updated_at": "2026-05-18T14:46:03.191754Z",
          "events": [
            {
              "event_id": "evt_4ed22f787398",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-17",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-17",
              "event_date": "2026-08-17",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-17",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1f77445859ac",
              "venue_id": "venue_yoshis",
              "title": "Azure McCall",
              "event_time": "MON 8.17 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-17T20:00:00",
              "event_date": "2026-08-17",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "HAWAII’S FIRST LADY OF JAZZ, A MULTI-AWARD-WINNING VOCALIST",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$25 - $45",
              "url": "https://yoshis.com/events/buy-tickets/azure-mccall-8/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_79a6d366a06f",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Aug 17 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-17T19:00:00",
              "event_date": "2026-08-17",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690185?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_05bc0a76e590",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-08-17",
              "venue_name": "Club Fugazi",
              "event_start": "2026-08-17",
              "event_date": "2026-08-17",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-05-18T14:29:13.613233Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_club_fugazi|2026-08-17",
              "run_id": "run_757096b16928",
              "run_label": "Dear San Francisco, May 20 – Oct 31",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_28498a49f294",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Herbie Hancock",
              "event_time": "Aug 17 2026 7:30pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-08-17T19:30:00",
              "event_date": "2026-08-17",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "a/a $88.45+ 7:30pm #",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$88.45+",
              "url": "http://www.foopee.com/by-band.1.html#Herbie_Hancock",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-08-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-18": {
          "date": "2026-08-18",
          "updated_at": "2026-05-18T15:41:22.150242Z",
          "events": [
            {
              "event_id": "evt_fd96926195ee",
              "venue_id": "venue_the_ritz",
              "title": "IV and the Strange Band & Clownvis",
              "event_time": "2026-08-18T19:00:02-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-08-18T19:00:02",
              "event_date": "2026-08-18",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "IV and the Strange Band perform their signature country-rock sound at The Independent with support from the comedic musical act Clownvis Presley.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 Advance – $25 Day-of-Show",
              "url": "https://www.ticketweb.com/event/iv-and-the-strange-band-the-ritz-tickets/14902573",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-08-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c8b69809380a",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-18",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-18",
              "event_date": "2026-08-18",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-18",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d9b3de13da68",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-18",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-18",
              "event_date": "2026-08-18",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-18",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4858bb2654a9",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-18",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-18",
              "event_date": "2026-08-18",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-18",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fe91296f69da",
              "venue_id": "venue_shotgun_studios",
              "title": "Let's Break It Down: Iphigenia in Splott",
              "event_time": "2026-08-18",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-08-18",
              "event_date": "2026-08-18",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "An offstage offering at Shotgun Studios providing a deeper dive into the themes and creative process of 'Iphigenia in Splott'.",
              "event_types": [],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/iphigenia-in-splott",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-18T10:30:43.226682Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-08-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a7597bb52623",
              "venue_id": "venue_mountain_winery",
              "title": "Gipsy Kings Featuring Nicolas Reyes",
              "event_time": "Aug 18, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-18T19:30:00",
              "event_date": "2026-08-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1326860",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_83bd4fe466c6",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Ida",
              "event_time": "Tuesday August 18 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-18T20:00:00",
              "event_date": "2026-08-18",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; acoustic indie rock; xxx; xxx",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260818.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_694aa6a1f0e4",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Aug 18 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-18T19:00:00",
              "event_date": "2026-08-18",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690210?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4aca15354926",
              "venue_id": "venue_little_hill_lounge",
              "title": "Jazz Tuesdays",
              "event_time": "2026-08-18T20:00:00",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-08-18T20:00:00",
              "event_date": "2026-08-18",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "Weekly jazz night residency curated by Knowles.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.bayimproviser.com/VenueDetail.aspx?venue_id=1031",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_little_hill_lounge",
                  "source_name": "Little Hill Lounge",
                  "fetched_at": "2026-05-18T13:01:30.455905Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-08-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_47aab461303d",
              "venue_id": "venue_mountain_winery",
              "title": "Gipsy Kings",
              "event_time": "Aug 18 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-18T17:30:00",
              "event_date": "2026-08-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Experience a night of flamenco, salsa, and pop fusion with the world-renowned Gipsy Kings in an intimate venue setting.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Gipsy_Kings",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-19": {
          "date": "2026-08-19",
          "updated_at": "2026-05-18T15:21:08.078734Z",
          "events": [
            {
              "event_id": "evt_8074061a7743",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "NE-YO & AKON: Nights Like This Tour 2026",
              "event_time": "2026-08-19T19:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-19T19:00:00",
              "event_date": "2026-08-19",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "R&B stars NE-YO and AKON team up for the Nights Like This Tour 2026, bringing their smooth vocals and hit songs to Shoreline Amphitheatre. The concert promises a nostalgic and dance-filled evening featuring their biggest collaborations and solo tracks.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/neyo-akon-nights-like-this-tour-mountain-view-california-08-19-2026/event/1C00642D14BD5B11",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a5243b901bd0",
              "venue_id": "venue_the_independent",
              "title": "ANGINE DE POITRINE",
              "event_time": "8.19 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-08-19T20:00:00",
              "event_date": "2026-08-19",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "This event features a live performance by Angine De Poitrine, bringing their unique musical style to the Hotel Utah audience.",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/angine-de-poitrine/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ad8d35209b9",
              "venue_id": "venue_regency_ballroom",
              "title": "The Sword",
              "event_time": "2026-08-19T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-08-19T20:00:00",
              "event_date": "2026-08-19",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "A heavy rock showcase featuring the stoner metal riffs of The Sword and Red Fang takes place at JAX Vineyards. Supported by Spoon Benders, this event delivers a powerful and classic rock-and-roll experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Price TBD",
              "url": "http://www.foopee.com/by-band.3.html#Sword",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-26T10:50:55.888679Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-26T11:57:18.835616Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6ec0594ac9a6",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-19",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-19",
              "event_date": "2026-08-19",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-19",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_17df69e7071d",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-19T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-19T20:00:00",
              "event_date": "2026-08-19",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-19",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3bdd5a36369a",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-19",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-19",
              "event_date": "2026-08-19",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-19",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5e046ae3770e",
              "venue_id": "venue_san_jose_civic",
              "title": "Omar Courtz: Por Si Mañana No Estoy USA Tour",
              "event_time": "2026-08-19T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-08-19T20:00:00",
              "event_date": "2026-08-19",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Puerto Rican reggaeton and trap artist Omar Courtz performs live on his US tour.",
              "event_types": [
                "live_music",
                "hiphop_rap",
                "latin_world"
              ],
              "price_info": "Tickets from $50",
              "url": "https://www.axs.com/events/543220/omar-courtz-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7de5aa8a4ee3",
              "venue_id": "venue_sap_center",
              "title": "Omar Courtz",
              "event_time": "2026-08-19T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-08-19T20:00:00",
              "event_date": "2026-08-19",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Por Si Mañana No Estoy USA Tour",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-05-17T14:37:55.731790Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a090ac8be92b",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-19",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-19",
              "event_date": "2026-08-19",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-19",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_117a79516d49",
              "venue_id": "venue_mountain_winery",
              "title": "Men at Work",
              "event_time": "Aug 19, 2026 7:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-19T19:00:00",
              "event_date": "2026-08-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Toad the Wet Sprocket, Shonen Knife",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1339270",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7ab9c46fae72",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Silkworm & Nina Nastasia",
              "event_time": "Wednesday August 19 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-19T19:30:00",
              "event_date": "2026-08-19",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; Indie Rock, Post-Punk; folk and country-influenced with neo-Gothic",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260819.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d194a42a4b6b",
              "venue_id": "venue_mountain_winery",
              "title": "Men At Work, Toad The Wet Sprocket",
              "event_time": "Aug 19 5pm/7pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-19T17:00:00",
              "event_date": "2026-08-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This eclectic triple bill features 80s pop-rock icons Men At Work, alternative favorites Toad The Wet Sprocket, and Japanese pop-punk legends Shonen Knife.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Men_At_Work",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-20": {
          "date": "2026-08-20",
          "updated_at": "2026-05-18T15:58:43.872234Z",
          "events": [
            {
              "event_id": "evt_b3ca5ef57f48",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Tony Molina",
              "event_time": "Thursday August 20 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-20T19:00:00",
              "event_date": "2026-08-20",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Speakeasy Studios SF, Oakland Weekender,\n  Slumberland Records, KALX, and BFF.FM present...; SF Bay Pop Fest; rock metal pop; metal pop shoegaze; rock pop; metal punk rock shoegaze",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30 $36.31 in advance [30 face value + 6.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260820.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f0270c206fb2",
              "venue_id": "venue_1015_folsom",
              "title": "RIVAL CONSOLES LIVE A/V TOUR",
              "event_time": "08/20/2026 9pm",
              "venue_name": "1015 Folsom",
              "event_start": "2026-08-20T21:00:00",
              "event_date": "2026-08-20",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Rival Consoles presents a specialized live audio-visual performance at 1015 Folsom, blending intricate electronic compositions with synchronized visuals. This tour stop offers an immersive sensory experience for fans of experimental electronic music.",
              "event_types": [
                "live_music",
                "electronic",
                "film"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/rival-consoles-live-av-tour/686363?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-04-11T00:52:10.604824Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2fad610b676a",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Southern Hospitality Tour",
              "event_time": "2026-08-20T17:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-20T17:00:00",
              "event_date": "2026-08-20",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "The Black Crowes and Whiskey Myers headline the Southern Hospitality Tour, bringing a blend of rock and roll and country soul to Shoreline Amphitheatre. This event showcases the gritty, blues-infused sounds of two prominent Southern rock acts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/southern-hospitality-tour-the-black-crowes-mountain-view-california-08-20-2026/event/1C00643AED2A7A67",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_15fd6192d220",
              "venue_id": "venue_chase_center",
              "title": "Daniel Caesar with 070 Shake",
              "event_time": "2026-08-20T19:30:00",
              "venue_name": "Chase Center",
              "event_start": "2026-08-20T19:30:00",
              "event_date": "2026-08-20",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Daniel Caesar performs at Chase Center with special guest 070 Shake.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Tickets from $167",
              "url": "https://www.chasecenter.com/events/daniel-caesar-20260820",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f4a579ba058a",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-20T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-20T20:00:00",
              "event_date": "2026-08-20",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-20",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2724e5264780",
              "venue_id": "venue_the_chapel",
              "title": "Black Joe Lewis & The Honeybears",
              "event_time": "Thu Aug 20 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-08-20T20:00:00",
              "event_date": "2026-08-20",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Blues",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$25.00-$30.00",
              "url": "https://wl.seetickets.us/event/black-joe-lewis-and-the-honeybears/690098?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-13T10:22:43.984937Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8291e39c3e8",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-20",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-20",
              "event_date": "2026-08-20",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-20",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f7dea13b1b78",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-20T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-20T20:00:00",
              "event_date": "2026-08-20",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-20",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d2dba7c5f730",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-08-20T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-08-20T19:00:00",
              "event_date": "2026-08-20",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_de96ccd13aa2",
              "venue_id": "venue_peacock_lounge",
              "title": "Third Thursday Jazz Night",
              "event_time": "2026-08-20T20:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-08-20T20:00:00",
              "event_date": "2026-08-20",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "A recurring jazz music performance featuring local and touring jazz musicians in an intimate setting.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d9d5824915e0",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-20",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-20",
              "event_date": "2026-08-20",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-20",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_49aec1f59725",
              "venue_id": "venue_david_brower_center",
              "title": "ART/ACT: LOCAL 2026",
              "event_time": "2026-08-20",
              "venue_name": "David Brower Center",
              "event_start": "2026-08-20",
              "event_date": "2026-08-20",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Annual juried exhibition at the David Brower Center showcasing four Northern California artists whose works explore environmental themes; the 2026 prompt focuses on the impacts of borders on environmental issues. Exhibition open to the public from May 26 through August 20, 2026.",
              "event_types": [
                "art"
              ],
              "price_info": "Free / not stated",
              "url": "https://browercenter.org/submissions-open-for-art-act-local/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-05-17T14:46:00.845188Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-08-20",
              "run_id": "run_d87053ade3c7",
              "run_label": "ART/ACT: LOCAL 2026, May 26 – Aug 20",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f41cba8bc0f9",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-20T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-20T19:30:00",
              "event_date": "2026-08-20",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-20",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_12d475fc1fb0",
              "venue_id": "venue_great_american_music_hall",
              "title": "Portraits Of Past, Saddest Landscape, Drought",
              "event_time": "Aug 20 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-08-20T19:00:00",
              "event_date": "2026-08-20",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $23/$25 7pm/8pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$23/$25",
              "url": "http://www.foopee.com/by-band.2.html#Portraits_Of_Past",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_82debb06ed2b",
              "venue_id": "venue_the_independent",
              "title": "Brenn",
              "event_time": "Aug 20 8:30pm/9pm",
              "venue_name": "The Independent",
              "event_start": "2026-08-20T20:30:00",
              "event_date": "2026-08-20",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Emerging artist Brenn takes the stage for a live performance showcasing their latest musical projects.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$31.55",
              "url": "http://www.foopee.com/by-band.0.html#Brenn",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-21": {
          "date": "2026-08-21",
          "updated_at": "2026-05-18T16:16:06.728338Z",
          "events": [
            {
              "event_id": "evt_8bbe99f7ffc7",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Aislers Set",
              "event_time": "Friday August 21 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-21T19:00:00",
              "event_date": "2026-08-21",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Speakeasy Studios SF, Oakland Weekender,\n  Slumberland Records, KALX, and BFF.FM present...; SF Bay Pop Fest; pop; power-pop punk; jangle pop, power pop; pop glam glitter",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30 $36.31 in advance [30 face value + 6.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260821.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_24cc2067fd02",
              "venue_id": "venue_ivy_room",
              "title": "UNION JACK & THE RIPPERS",
              "event_time": "Friday Aug 21 8:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A night of high-octane rock featuring Union Jack & The Rippers and a tribute to The Ramones by the band Hormones.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/174774",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c3ad12aa8fa",
              "venue_id": "venue_bimbos_365",
              "title": "Mustache Harbor",
              "event_time": "August 21 - Show: 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Aug 21 Mustache Harbor 21+ 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/mustache-harbor-8/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-04-10T23:23:07.323100Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2b0f5efc4127",
              "venue_id": "venue_chase_center",
              "title": "Daniel Caesar with 070 Shake",
              "event_time": "2026-08-21T19:30:00",
              "venue_name": "Chase Center",
              "event_start": "2026-08-21T19:30:00",
              "event_date": "2026-08-21",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Daniel Caesar performs a second night at Chase Center with 070 Shake.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.chasecenter.com/events/daniel-caesar-20260821",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8377bcff6f8b",
              "venue_id": "venue_the_warfield",
              "title": "Dimmu Borgir",
              "event_time": "Aug 21 2026 6pm/7pm",
              "venue_name": "The Warfield",
              "event_start": "2026-08-21T18:00:00",
              "event_date": "2026-08-21",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Grand Serpent Rising Tour US 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.0.html#Dimmu_Borgir",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-01T09:31:47.357889Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_24c35eb67fc7",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-21T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-21",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2434afb1e3c7",
              "venue_id": "venue_california_theatre",
              "title": "Girls Gone Bible: Revival Tour",
              "event_time": "2026-08-21T19:00:00",
              "venue_name": "California Theatre",
              "event_start": "2026-08-21T19:00:00",
              "event_date": "2026-08-21",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "An invitation to experience faith through real stories, conversations, and shared worship on the Revival Tour.",
              "event_types": [
                "community"
              ],
              "price_info": "Starts at $65",
              "url": "https://www.axs.com/events/825412/girls-gone-bible-live-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-05-11T12:15:08.979417Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_84d0d8f1e545",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-21",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-21",
              "event_date": "2026-08-21",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-21",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_10b773b993b5",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-21T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-21",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_da3381987cfb",
              "venue_id": "venue_regency_ballroom",
              "title": "ANEES",
              "event_time": "2026-08-21T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Independent artist ANEES brings his soulful blend of pop and hip-hop to San Francisco.",
              "event_types": [
                "live_music",
                "hiphop_rap",
                "rnb_soul_funk"
              ],
              "price_info": "Check website for pricing",
              "url": "https://www.theregencyballroom.com/events/detail/anees-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-15T18:04:15.652436Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4c7d1bb14e51",
              "venue_id": "venue_the_saloon",
              "title": "Highwater Blues",
              "event_time": "2026-08-21T16:00:00",
              "venue_name": "The Saloon",
              "event_start": "2026-08-21T16:00:00",
              "event_date": "2026-08-21",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Afternoon blues and R&B set at San Francisco's oldest bar.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "No cover",
              "url": "https://highwaterblues.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_fc5cbefcf723",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: The Best of Hans Zimmer",
              "event_time": "2026-08-21T20:45:00",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-08-21T20:45:00",
              "event_date": "2026-08-21",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "A performance of the most iconic film scores by Hans Zimmer, including music from Interstellar and Pirates of the Caribbean.",
              "event_types": [],
              "price_info": "From $37.26",
              "url": "https://feverup.com/en/san-jose/candlelight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-05-15T20:59:49.057913Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hammer_theater|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a8440ed1e94e",
              "venue_id": "venue_the_fillmore",
              "title": "Nine Vicious",
              "event_time": "Aug 21 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-08-21T19:00:00",
              "event_date": "2026-08-21",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Musical act Nine Vicious brings their unique sound to The Fillmore as part of their latest concert tour.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Nine_Vicious",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-15T22:34:31.420058Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-05-16T10:33:35.578218Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_de6e689d384d",
              "venue_id": "venue_oracle_park",
              "title": "Noah Kahan | Friday, August 21",
              "event_time": "August 21",
              "venue_name": "Oracle Park",
              "event_start": "2026-08-21",
              "event_date": "2026-08-21",
              "venue_address": "24 Willie Mays Plaza, San Francisco, CA 94107",
              "description": "Noah Kahan is bringing The Great Divide Tour to Oracle Park on August 21, 2026 with Gigi Perez and Annabelle Dinda.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.mlb.com/giants/tickets/events/concerts/noahkahan",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oracle_park",
                  "source_name": "Oracle Park",
                  "fetched_at": "2026-05-16T01:34:07.013359Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oracle_park|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_677788ea6e5f",
              "venue_id": "venue_new_farm",
              "title": "Anne Milne Film Screening",
              "event_time": "2026-08-21T17:00:00",
              "venue_name": "The New Farm",
              "event_start": "2026-08-21T17:00:00",
              "event_date": "2026-08-21",
              "venue_address": "10 Cargo Way, San Francisco, CA 94124",
              "description": "Scottish filmmaker Anne Milne presents a selection of her award-winning films. The event includes live music, introductions, and a Q&A session with the filmmaker.",
              "event_types": [
                "film",
                "live_music",
                "community"
              ],
              "price_info": "$20 suggested donation",
              "url": "https://bethcuster.com/gigs/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_farm",
                  "source_name": "The New Farm",
                  "fetched_at": "2026-05-17T11:02:48.701687Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_new_farm|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5bce355f7629",
              "venue_id": "venue_halcyon",
              "title": "DATSKO",
              "event_time": "08/21/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-08-21T22:00:00",
              "event_date": "2026-08-21",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Join Datsko at Halcyon for a night of cutting-edge electronic music and driving dance floor rhythms.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/W2c3f9d9e0c8?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-05-17T11:52:23.715555Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2dd244aae094",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-21",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-21",
              "event_date": "2026-08-21",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-21",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cdc56edacdce",
              "venue_id": "venue_san_jose_civic",
              "title": "90s Corrido Tour",
              "event_time": "2026-08-21T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "A night of regional Mexican music featuring Lupillo Rivera, El As De La Sierra, and more.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Tickets from $124",
              "url": "https://www.axs.com/events/543221/90s-corrido-tour-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_12a349e522ab",
              "venue_id": "venue_tommy_ts",
              "title": "DC CURRY",
              "event_time": "2026-08-21 2026-08-22",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-21",
              "event_date": "2026-08-21",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-21",
              "run_id": "run_4648d236df00",
              "run_label": "DC CURRY, Aug 21 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0e1e3703e17d",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-21T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-21T19:30:00",
              "event_date": "2026-08-21",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-21",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7c7e013a335b",
              "venue_id": "venue_mountain_winery",
              "title": "Tucker Wetmore",
              "event_time": "Aug 21, 2026 6:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-21T18:30:00",
              "event_date": "2026-08-21",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Bay Country Presents | The Brunette World Tour | William Beckmann, Stella Lefty, Line dancing with Nanci in Adele's Garden 4:30pm-6:15pm",
              "event_types": [
                "live_music",
                "folk",
                "workshop",
                "community"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259272",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_988badbfe604",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE MORGAN WALLEN TRIBUTE CONCERT",
              "event_time": "Friday, Aug 21 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This concert features a tribute to the modern country hits and chart-topping songs of Morgan Wallen.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-morgan-wallen-tribute-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e427894ff30",
              "venue_id": "venue_the_freight__salvage",
              "title": "Zola Jesus (solo voice and piano)",
              "event_time": "Aug 21 2026 7pm/8pm",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-08-21T19:00:00",
              "event_date": "2026-08-21",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "a/a $39/$44 7pm/8pm",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$39/$44",
              "url": "http://www.foopee.com/by-band.3.html#Zola_Jesus",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8b0904a835d",
              "venue_id": "venue_mountain_winery",
              "title": "Tucker Wetmore, William Beckmann",
              "event_time": "Aug 21 4:30pm/6:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-21T16:30:00",
              "event_date": "2026-08-21",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Rising stars Tucker Wetmore, William Beckmann, and Stella Lefty showcase the future of country and Americana music.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Tucker_Wetmore",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_56c23ee2bf97",
              "venue_id": "venue_thee_stork_club",
              "title": "Steve Von Till",
              "event_time": "Aug 21 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-08-21T20:00:00",
              "event_date": "2026-08-21",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Steve Von Till, Six Organs Of Admittance",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Steve_Von_Till",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f360c3118fe0",
              "venue_id": "venue_levis_stadium",
              "title": "KAROL G | VIAJANDO POR EL MUNDO TROPITOUR | AUG 21",
              "event_time": "Aug 21, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-08-21",
              "event_date": "2026-08-21",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Colombian singer Karol G performs the first of two nights at Levi's Stadium on her Viajando Por El Mundo Tropitour.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/karol-g-viajando-por-el-mundo-tropitour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1ecd2917b39d",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Foreverland",
              "event_time": "August 21, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-08-21T18:00:00",
              "event_date": "2026-08-21",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "A different kind of tribute band, you won't see any impersonations here. Instead, Foreverland simply aims to honor and do justice to the music and spirit of the King of Pop. Throughout this truly unforgettable performance, die-hard fans will relive their favorite MJ moments, and younger crowds will rediscover the amazing music that remains timeless.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://www.foreverland.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-08-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-22": {
          "date": "2026-08-22",
          "updated_at": "2026-05-18T15:58:43.875798Z",
          "events": [
            {
              "event_id": "evt_f57f79ae472f",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Dear Nora",
              "event_time": "Saturday August 22 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-22T19:00:00",
              "event_date": "2026-08-22",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Speakeasy Studios SF, Oakland Weekender,\n  Slumberland Records, KALX, and BFF.FM present...; SF Bay Pop Fest; hyperpop; jangle pop; bedroom pop, jangle pop, lofi; indiepop",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30 $36.31 in advance [30 face value + 6.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260822.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4d266f0cfc8d",
              "venue_id": "venue_ivy_room",
              "title": "Mismiths & Debased",
              "event_time": "Saturday Aug 22 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-08-22T19:00:00",
              "event_date": "2026-08-22",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "This tribute night honors the sounds of The Smiths, Pixies, and Joy Division with performances by Mismiths, Debased, and Ceremony81.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/173519",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e663cb9d1891",
              "venue_id": "venue_castro_theater",
              "title": "THE BREEDERS",
              "event_time": "August 22, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-08-22T20:00:00",
              "event_date": "2026-08-22",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Aug 22 Breeders a/a 7pm/8pm # (sold out)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/the-breeders-260822",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a130c69a260",
              "venue_id": "venue_california_theatre",
              "title": "Marc Maron: Yammering into the Void Tour",
              "event_time": "2026-08-22T20:00:00",
              "venue_name": "California Theatre",
              "event_start": "2026-08-22T20:00:00",
              "event_date": "2026-08-22",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Renowned comedian and host of the 'WTF' podcast, Marc Maron, brings his distinctive blend of introspection and sharp social commentary.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/marc-maron/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-04-16T07:31:22.462994Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-04-30T23:21:16.806745Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e61f811538aa",
              "venue_id": "venue_the_freight__salvage",
              "title": "JEFF PARKER ETA IVTET",
              "event_time": "2026-08-22T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-08-22T19:00:00",
              "event_date": "2026-08-22",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "CO-PRESENTED WITH (((ifolkYEAH! )))",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15883/15884",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-06T05:55:19.571914Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cb85d1b9ef6a",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Oliver Tree",
              "event_time": "August 22, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-08-22T20:00:00",
              "event_date": "2026-08-22",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "LOVE YOU MADLY, HATE YOU BADLY WORLD’S FIRST WORLD TOUR",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "PRESALE 5/7",
              "url": "https://thefoxoakland.com/events/oliver-tree-260822",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-05-06T10:46:47.654446Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_99dc28afc919",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-22T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-22T20:00:00",
              "event_date": "2026-08-22",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-22",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_09d5caa27488",
              "venue_id": "venue_the_chapel",
              "title": "Sugar Hiccup, Mocteau Twins, dj Xander",
              "event_time": "Aug 22 8pm/9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-22T20:00:00",
              "event_date": "2026-08-22",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$27.22 8pm/9pm",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "$27.22",
              "url": "http://www.foopee.com/by-band.3.html#Sugar_Hiccup",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b88e27c00d36",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-22",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-22",
              "event_date": "2026-08-22",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-22",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3c63904f726b",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-22T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-22T20:00:00",
              "event_date": "2026-08-22",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-22",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_edd1425d62ef",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-22",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-22",
              "event_date": "2026-08-22",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-22",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba565d7cf046",
              "venue_id": "venue_tommy_ts",
              "title": "DC CURRY",
              "event_time": "2026-08-22 2026-08-22",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-22",
              "event_date": "2026-08-22",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-22",
              "run_id": "run_4648d236df00",
              "run_label": "DC CURRY, Aug 21 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6fe8f9c5ce23",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-22T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-22T19:30:00",
              "event_date": "2026-08-22",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-22",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_834a431ab8ae",
              "venue_id": "venue_the_independent",
              "title": "PEARL & THE OYSTERS",
              "event_time": "8.22 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-08-22T21:00:00",
              "event_date": "2026-08-22",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/pearl-the-oysters/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d8daeafa58e",
              "venue_id": "venue_mountain_winery",
              "title": "Ladies Night Out feat. Dru Hill, Ginuwine & Troop",
              "event_time": "Aug 22, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-22T19:30:00",
              "event_date": "2026-08-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389170",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_122c703d56a7",
              "venue_id": "venue_the_mighty",
              "title": "Dancing Queen: ABBA Glitter Disco",
              "event_time": "2026-08-22T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-08-22T21:00:00",
              "event_date": "2026-08-22",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "The ultimate ABBA-themed disco party with glitter, dance, and 70s/80s anthems.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starts at $23.30",
              "url": "https://ra.co/events/1894568",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-18T11:44:14.799981Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_mighty|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5ab5665a84e9",
              "venue_id": "venue_the_fillmore",
              "title": "Little Stranger, Tropidelic, Jarv, Damn Skippy",
              "event_time": "Aug 22 2026 6:30pm/7:30pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-08-22T18:30:00",
              "event_date": "2026-08-22",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 6:30pm/7:30pm #",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Little_Stranger",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_266d88aac392",
              "venue_id": "venue_mountain_winery",
              "title": "Dru Hill, Ginuwine & Troop",
              "event_time": "Aug 22 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-22T17:30:00",
              "event_date": "2026-08-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Hill, Ginuwine, Troop",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Dru_Hill",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_35692fccefe3",
              "venue_id": "venue_levis_stadium",
              "title": "KAROL G | VIAJANDO POR EL MUNDO TROPITOUR | AUG 22",
              "event_time": "Aug 22, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-08-22",
              "event_date": "2026-08-22",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Karol G returns to Levi's Stadium for a second night of Latin pop and reggaeton hits on August 22.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/karol-g-viajando-por-el-mundo-tropitour-aug-22/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_689d6828e227",
              "venue_id": "venue_audio",
              "title": "Karaba, G-stav, Atang",
              "event_time": "08/22/2026 7:30pm-2am",
              "venue_name": "Audio",
              "event_start": "2026-08-22T19:30:00",
              "event_date": "2026-08-22",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "afro house, tech house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17 pre | 21+",
              "url": "https://ra.co/events/2431360",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ca859db8e36a",
              "venue_id": "venue_f8",
              "title": "Dro: Chaos",
              "event_time": "08/22/2026 9pm-6am",
              "venue_name": "F8",
              "event_start": "2026-08-22T21:00:00",
              "event_date": "2026-08-22",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "hardstyle, uptempo, hard dance",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5.50 pre | 21+",
              "url": "https://ra.co/events/2433026",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-08-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-23": {
          "date": "2026-08-23",
          "updated_at": "2026-05-18T15:21:08.156792Z",
          "events": [
            {
              "event_id": "evt_c10600035197",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Umbrellas",
              "event_time": "Sunday August 23 2026 2:00PM doors -- music at 3 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-23T14:00:00",
              "event_date": "2026-08-23",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Aug 23 Aislers Set, Dear Nora, Tony Molina, Umbrellas, Jeanines, Lightheaded, Paper Jam, Wut, Galore, Wifey, Remedy & Wren, Kitchenettes, Monster Treasure, Pillow Fight, Artsick, Kids On A Crime Spree a/a ($110 4 day pass) 2pm/3pm (SF Bay Pop Fest)",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$20 $25.31 in advance [20 face value + 5.31 service fee]",
              "url": "http://www.bottomofthehill.com/20260823.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_73d5801719f2",
              "venue_id": "venue_castro_theater",
              "title": "THE BREEDERS",
              "event_time": "August 23, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-08-23T19:00:00",
              "event_date": "2026-08-23",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "2nd Show Added by Popular Demand! - Imperial Teen",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-breeders-260823",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d1797ae01c6",
              "venue_id": "venue_san_jose_civic",
              "title": "Undertale: The Determination Symphony",
              "event_time": "2026-08-23T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-08-23T20:00:00",
              "event_date": "2026-08-23",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "A symphonic concert experience featuring the beloved music from the video game Undertale.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/undertale/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-11T13:50:52.323809Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7464bcb6cd19",
              "venue_id": "venue_the_chapel",
              "title": "Built To Spill, Playdead",
              "event_time": "Aug 23 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-23T19:00:00",
              "event_date": "2026-08-23",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Built_To_Spill",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f73ff8ad59a",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-23",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-23",
              "event_date": "2026-08-23",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-23",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0750d91c0034",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-23T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-23T20:00:00",
              "event_date": "2026-08-23",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-23",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d65a3e0614eb",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-23",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-23",
              "event_date": "2026-08-23",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-23",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae320c245b7e",
              "venue_id": "venue_tommy_ts",
              "title": "DC CURRY",
              "event_time": "2026-08-23 2026-08-22",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-23",
              "event_date": "2026-08-23",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-23",
              "run_id": "run_4648d236df00",
              "run_label": "DC CURRY, Aug 21 – Aug 23",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9ac1802e3d23",
              "venue_id": "venue_city_lights_theater",
              "title": "Ride the Cyclone",
              "event_time": "2026-08-23T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-08-23T19:30:00",
              "event_date": "2026-08-23",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A quirky musical about a high-school choir group that dies in a roller-coaster accident. In a bizarre purgatory, a mechanical fortune teller invites them to compete for a chance to return to life by telling their stories through song.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/ride-the-cyclone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-08-23",
              "run_id": "run_988787b51f19",
              "run_label": "Ride the Cyclone, Jul 16 – Aug 23",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_aa3e9dc41764",
              "venue_id": "venue_mountain_winery",
              "title": "Allen Stone & The Dip",
              "event_time": "Aug 23, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-23T19:30:00",
              "event_date": "2026-08-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389964",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7dfb798d8e68",
              "venue_id": "venue_yoshis",
              "title": "Keyon Harrold",
              "event_time": "SUN 8.23 7:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-23T19:00:00",
              "event_date": "2026-08-23",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "AWARD-WINNING TRUMPETER, VOCALIST, SONGWRITER, AND PRODUCER",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$33 - $69",
              "url": "https://yoshis.com/events/buy-tickets/keyon-harrold-3/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_511433c8a5c3",
              "venue_id": "venue_presidio_theater",
              "title": "National Geographic Live: Concrete Jungle",
              "event_time": "Aug 23, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-08-23T19:30:00",
              "event_date": "2026-08-23",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "A National Geographic expert shares fascinating insights and visuals regarding the diverse wildlife thriving in urban environments.",
              "event_types": [
                "community"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.presidiotheatre.org/show-details/national-geographic-live-uncovering-our-concrete-jungle-with-chris-schell",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-05-18T11:49:57.321493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bca14872ac26",
              "venue_id": "venue_mountain_winery",
              "title": "Allen Stone & Dip",
              "event_time": "Aug 23 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-23T17:30:00",
              "event_date": "2026-08-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Soulful singer-songwriter Allen Stone joins forces with the band Dip for an evening of R&B-infused melodies and powerful vocals.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Allen_Stone",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02f82a6003b7",
              "venue_id": "venue_thee_stork_club",
              "title": "Teselations",
              "event_time": "Aug 23 2026",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-08-23",
              "event_date": "2026-08-23",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Teselations, Plankton Wat, Hair And Space Museum",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/by-band.3.html#Teselations",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-08-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-24": {
          "date": "2026-08-24",
          "updated_at": "2026-05-18T11:30:06.161622Z",
          "events": [
            {
              "event_id": "evt_a22befe5a6d8",
              "venue_id": "venue_the_chapel",
              "title": "Built To Spill, Playdead",
              "event_time": "Aug 24 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-24T19:00:00",
              "event_date": "2026-08-24",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Built_To_Spill",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_073e54f75e48",
              "venue_id": "venue_yoshis",
              "title": "Berkeley Mt Zion 80th Anniversary",
              "event_time": "MON 8.24 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-24T19:30:00",
              "event_date": "2026-08-24",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "LEGACY IN MOTION: 80 YEARS OF FAITH, SERVICE, AND COMMUNITY",
              "event_types": [
                "community"
              ],
              "price_info": "$100 - $125",
              "url": "https://yoshis.com/events/buy-tickets/berkeley-mt-zion-80th-anniversary-celebration/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18134e42d8bd",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Aug 24 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-24T19:00:00",
              "event_date": "2026-08-24",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690186?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-25": {
          "date": "2026-08-25",
          "updated_at": "2026-05-18T15:21:07.841853Z",
          "events": [
            {
              "event_id": "evt_73d42045bfe6",
              "venue_id": "venue_brick_and_mortar",
              "title": "Death Lens, Heart To Gold, Grave Secrets",
              "event_time": "Aug 25 7pm/7:30pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-08-25T19:30:00",
              "event_date": "2026-08-25",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "$29.87 (under 21 plus 5) 7pm/7:30pm ^",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$29.87 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.0.html#Death_Lens",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-08-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c60ce36a568f",
              "venue_id": "venue_the_chapel",
              "title": "Built To Spill, Playdead",
              "event_time": "Aug 25 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-25T19:00:00",
              "event_date": "2026-08-25",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Built_To_Spill",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9fc7b5d4a982",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-25",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-25",
              "event_date": "2026-08-25",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-25",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_99b0a46a694e",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-25",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-25",
              "event_date": "2026-08-25",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-25",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_625971c842dc",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Aug 25 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-25T19:00:00",
              "event_date": "2026-08-25",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690211?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b85bcdd92ecf",
              "venue_id": "venue_rickshaw_stop",
              "title": "Black Marble",
              "event_time": "Aug 25 2026 7pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-08-25T19:00:00",
              "event_date": "2026-08-25",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Black Marble, Serfs, Jimmy Cicero, dj Omar",
              "event_types": [
                "live_music",
                "electronic",
                "dj_party"
              ],
              "price_info": "$30 7pm",
              "url": "http://www.foopee.com/by-band.0.html#Black_Marble",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-08-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-26": {
          "date": "2026-08-26",
          "updated_at": "2026-05-18T15:21:08.084983Z",
          "events": [
            {
              "event_id": "evt_97236ff89f94",
              "venue_id": "venue_the_fillmore",
              "title": "Courtney Barnett: Creature of Habit Tour",
              "event_time": "Aug 26 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-08-26T19:00:00",
              "event_date": "2026-08-26",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Australian singer-songwriter Courtney Barnett brings her signature indie rock sound and witty, observational lyrics to The Fillmore for a live performance on her Creature of Habit Tour. Fans can expect an evening of deadpan vocals and intricate guitar work from this acclaimed alternative artist.",
              "event_types": [
                "live_music",
                "rock",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.0.html#Courtney_Barnet",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-04-09T01:56:35.358428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-08-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a6ac937cc408",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Train: Drops of Jupiter 25th Anniversary",
              "event_time": "2026-08-26T16:50:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-26T16:50:00",
              "event_date": "2026-08-26",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Train celebrates the 25th anniversary of their landmark album \"Drops of Jupiter\" with a special performance at Shoreline Amphitheatre. The show will feature the band's biggest hits and a tribute to the album that defined their career.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/train-drops-of-jupiter-25-years-mountain-view-california-08-26-2026/event/1C006364BB33BD91",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_41f86eb28a16",
              "venue_id": "venue_the_chapel",
              "title": "Osees, Traps PS",
              "event_time": "Aug 26 7:30pm/8:30pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-26T19:30:00",
              "event_date": "2026-08-26",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "51.96 7:30pm/8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$51.96",
              "url": "http://www.foopee.com/by-band.2.html#Osees",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_faa859cce6bb",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-26",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-26",
              "event_date": "2026-08-26",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-26",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63b0e03c4c4b",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-26T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-26T20:00:00",
              "event_date": "2026-08-26",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-26",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ca80de4351f4",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-26",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-26",
              "event_date": "2026-08-26",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-26",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_07da218e2e4d",
              "venue_id": "venue_ivy_room",
              "title": "Fred Frith’s Fremakajo + Jordan Glenn’s Beak",
              "event_time": "Wednesday Aug 26 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-08-26T19:00:00",
              "event_date": "2026-08-26",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Experimental music pioneers Fred Frith and Jordan Glenn present their respective avant-garde projects, Fremakajo and Beak.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/184183",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-08-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-27": {
          "date": "2026-08-27",
          "updated_at": "2026-05-18T15:21:08.159840Z",
          "events": [
            {
              "event_id": "evt_b89ac37d8cb0",
              "venue_id": "venue_ivy_room",
              "title": "Haunt, Savage Master & Nite",
              "event_time": "Aug 27 7:30pm/8pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-08-27T19:30:00",
              "event_date": "2026-08-27",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A heavy metal triple bill featuring the melodic riffs of Haunt, the traditional metal of Savage Master, and the dark sounds of Nite.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18",
              "url": "http://www.foopee.com/by-band.1.html#Haunt",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-20T12:47:34.774091Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-14T10:47:13.336431Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_da2e089011f9",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-27T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-27T20:00:00",
              "event_date": "2026-08-27",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental",
                "art",
                "dance"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-27",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4139b6a6d854",
              "venue_id": "venue_the_chapel",
              "title": "Osees, Traps PS",
              "event_time": "Aug 27 7:30pm/8:30pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-27T19:30:00",
              "event_date": "2026-08-27",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "51.96 7:30pm/8:30pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$51.96",
              "url": "http://www.foopee.com/by-band.2.html#Osees",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9026556aca4a",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-27",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-27",
              "event_date": "2026-08-27",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-27",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d9b28175c265",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-27T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-27T20:00:00",
              "event_date": "2026-08-27",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-27",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e54b7fe58331",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-08-27T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-08-27T19:00:00",
              "event_date": "2026-08-27",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_495fcd472e71",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-27",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-27",
              "event_date": "2026-08-27",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-27",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_693aeb92e560",
              "venue_id": "venue_mountain_winery",
              "title": "Ledisi",
              "event_time": "Aug 27, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-27T19:30:00",
              "event_date": "2026-08-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1374384",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ddee51e77730",
              "venue_id": "venue_yoshis",
              "title": "Miko Marks Residency",
              "event_time": "THU 8.27 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-27T19:30:00",
              "event_date": "2026-08-27",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BLENDING GOSPEL, COUNTRY SOUL, BLUES, AND ROCK N ROLL",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "folk",
                "rock"
              ],
              "price_info": "$25 - $49",
              "url": "https://yoshis.com/events/buy-tickets/miko-marks-residency-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2635318fc173",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Nerf Herder, Pulsars, Dog Party",
              "event_time": "Thursday August 27 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-27T19:00:00",
              "event_date": "2026-08-27",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Alternative Pop/Punk/Rock; new wave/indie rock; Indie Rock, Power Pop Punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260827.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0416728cee72",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE BEATLES TRIBUTE CONCERT BRITAIN FINEST",
              "event_time": "Thursday, Aug 27 Show: 7:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-08-27T19:00:00",
              "event_date": "2026-08-27",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Britain's Finest delivers an authentic tribute to The Beatles, recreating the look and sound of the legendary band's most famous eras.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-beatles-tribute-concert-britain-finest/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_608e59f5931c",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Muse: The Wow! Signal Tour",
              "event_time": "Thu Aug 27, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-27",
              "event_date": "2026-08-27",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "British rock band Muse brings their spectacular live production and anthemic sound to the venue for \"The Wow! Signal Tour.\"",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/muse-the-wow-signal-tour-mountain-view-california-08-27-2026/event/1C006478DEE6EB72",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8b07948ddac",
              "venue_id": "venue_the_fillmore",
              "title": "Courtney Barnet, Zoh Amba",
              "event_time": "Aug 27 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-08-27T19:00:00",
              "event_date": "2026-08-27",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Courtney_Barnet",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89d6e476d63d",
              "venue_id": "venue_mountain_winery",
              "title": "Ledisi",
              "event_time": "Aug 27 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-27T17:30:00",
              "event_date": "2026-08-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Grammy-winning R&B and jazz powerhouse Ledisi performs a captivating set showcasing her incredible vocal range and artistry.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Ledisi",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c5f285e59ca",
              "venue_id": "venue_thee_stork_club",
              "title": "Stepmother",
              "event_time": "Aug 27 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-08-27T20:00:00",
              "event_date": "2026-08-27",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Stepmother, Very Paranola, Replica Watch",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Stepmother",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-08-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-28": {
          "date": "2026-08-28",
          "updated_at": "2026-05-18T16:16:06.733325Z",
          "events": [
            {
              "event_id": "evt_a531f03a3699",
              "venue_id": "venue_the_independent",
              "title": "WAX + DJ HOPPA",
              "event_time": "8.28 Show: 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-08-28T21:00:00",
              "event_date": "2026-08-28",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Rapper Wax and producer DJ Hoppa join forces for a high-energy night of clever lyricism and hip-hop beats.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/wax-dj-hoppa/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-11T07:55:50.196786Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1d3c3eb4b4ba",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "5 Seconds Of Summer",
              "event_time": "2026-08-28T18:30:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-28T18:30:00",
              "event_date": "2026-08-28",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Pop-rock group 5 Seconds of Summer visits Shoreline Amphitheatre as part of their EVERYONE'S A STAR! World Tour. The band will perform fan favorites and tracks from their latest musical era for an energetic crowd.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/5-seconds-of-summer-everyones-a-mountain-view-california-08-28-2026/event/1C006356D601A793",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0184068a0a93",
              "venue_id": "venue_the_uc_theatre",
              "title": "Bill Callahan",
              "event_time": "Aug 28 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-08-28T20:00:00",
              "event_date": "2026-08-28",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Bill Callahan",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$30 + FEES",
              "url": "https://www.theuctheatre.org/shows/bill-callahan-28-aug",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_682d5c13c7a2",
              "venue_id": "venue_rickshaw_stop",
              "title": "My New Band Believe",
              "event_time": "Aug 28 2026 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-08-28T20:00:00",
              "event_date": "2026-08-28",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Experience a live musical performance by My New Band Believe as they take the stage at The Independent.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 8pm",
              "url": "http://www.foopee.com/by-band.2.html#My_New_Band_Believe",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c09bce4e15c4",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-28T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-28T20:00:00",
              "event_date": "2026-08-28",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental",
                "art",
                "dance"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-28",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_0477ec40a5fc",
              "venue_id": "venue_the_chapel",
              "title": "Osees, Traps PS",
              "event_time": "Aug 28 7:30pm/8:30pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-28T19:30:00",
              "event_date": "2026-08-28",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Osees",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_63382531bf30",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-28",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-28",
              "event_date": "2026-08-28",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-28",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_772f81c2a213",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-28T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-28T20:00:00",
              "event_date": "2026-08-28",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-28",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_94d215d42f4d",
              "venue_id": "venue_masonic_hall",
              "title": "Josh Johnson's Comedy Band Camp",
              "event_time": "2026-08-28",
              "venue_name": "Masonic Hall",
              "event_start": "2026-08-28",
              "event_date": "2026-08-28",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Josh Johnson's Comedy Band Camp",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_93e80c993d9b",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-28",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-28",
              "event_date": "2026-08-28",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-28",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a10be8546fea",
              "venue_id": "venue_tommy_ts",
              "title": "ALFRED ROBLES",
              "event_time": "2026-08-28 2026-08-29",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-28",
              "event_date": "2026-08-28",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-28",
              "run_id": "run_ab5a22e0f732",
              "run_label": "ALFRED ROBLES, Aug 28 – Aug 30",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0135a218f248",
              "venue_id": "venue_mountain_winery",
              "title": "FIA",
              "event_time": "Aug 28, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-28T19:30:00",
              "event_date": "2026-08-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Love Me Tour | Johnny Suite & Special Guests WESTERN CONFERENCE",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1405873",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7d75038e44fc",
              "venue_id": "venue_yoshis",
              "title": "Richard Elliot",
              "event_time": "FRI 8.28",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-28T19:30:00",
              "event_date": "2026-08-28",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "CHART-TOPPING GRAMMY-NOMINATED SAXOPHONIST",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$44 - $84",
              "url": "https://yoshis.com/events/buy-tickets/richard-elliot-9/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_127223f3f333",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Nerf Herder, Ridel High, The Kegels",
              "event_time": "Friday August 28 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-28T19:00:00",
              "event_date": "2026-08-28",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Alternative Pop/Punk/Rock; power pop; Punk Rock and Roll",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260828.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_06a40474db7e",
              "venue_id": "venue_the_fillmore",
              "title": "Courtney Barnet, Zoh Amba",
              "event_time": "Aug 28 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-08-28T19:00:00",
              "event_date": "2026-08-28",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Courtney_Barnet",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e72d6f0f4bab",
              "venue_id": "venue_mountain_winery",
              "title": "Fia & Western Conference",
              "event_time": "Aug 28 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-28T17:30:00",
              "event_date": "2026-08-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Reggae artist Fia teams up with Western Conference for a night of island-inspired rhythms and soulful grooves.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Fia",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf75677bf015",
              "venue_id": "venue_levis_stadium",
              "title": "CHRIS BROWN & USHER | THE R&B TOUR | AUG 28",
              "event_time": "Aug 28, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-08-28",
              "event_date": "2026-08-28",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "R&B icons Chris Brown and Usher team up for a massive co-headlining performance at Levi's Stadium.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/chris-brown-usher-the-randb-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a25c9a7b5a6",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Starman SF",
              "event_time": "August 28, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-08-28T18:00:00",
              "event_date": "2026-08-28",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "with ART on the Square\n\nStarman SF is a Bay Area–based David Bowie tribute delivering a high-energy, modern Bowie experience built for the stage and the dance floor. Featuring acclaimed frontman Cody Craven and a lineup of top-tier musicians, the band brings precision, style, and deep musicality to Bowie's iconic catalog. From Ziggy Stardust to Let's Dance, Starman SF captures the sound, spirit, and spectacle of Bowie in a show that keeps audiences moving—an immersive live experience that feels less like a tribute and more like stepping into the world of Bowie.",
              "event_types": [
                "live_music",
                "rock",
                "art"
              ],
              "price_info": "Free",
              "url": "https://www.starmansf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-08-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-29": {
          "date": "2026-08-29",
          "updated_at": "2026-05-18T15:48:30.065597Z",
          "events": [
            {
              "event_id": "evt_127eb36ad2ce",
              "venue_id": "venue_greek_theatre",
              "title": "Tori Amos, Bartees Strange",
              "event_time": "August 29, 2026 8:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-08-29T20:00:00",
              "event_date": "2026-08-29",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "In Times of Dragons Tour - Bartees Strange",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/tori-amos-260829",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_17cba548017b",
              "venue_id": "venue_sap_center",
              "title": "Sonu Nigam",
              "event_time": "2026-08-29T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-08-29T20:00:00",
              "event_date": "2026-08-29",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Renowned Indian playback singer Sonu Nigam performs live at the San Jose Civic as part of his 'Simply SONU' Revolution Tour. The concert features a selection of his greatest hits and popular Bollywood tracks.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$49.00 - $1,349.00",
              "url": "https://events.sulekha.com/sonu-nigam-live-concert-2026-in-bay-area-revolution-tour_event-in_san-jose-ca",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-04-11T11:47:33.099883Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_kalalaya",
                  "source_name": "Kalalaya",
                  "fetched_at": "2026-04-12T18:46:21.163750Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-05-15T22:02:09.631174Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sap_center|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf8724c2efae",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Nas & The Roots",
              "event_time": "2026-08-29T19:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-08-29T19:00:00",
              "event_date": "2026-08-29",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Hip-hop legends The Roots, Nas, and De La Soul share the stage for a monumental celebration of lyricism and live instrumentation. This lineup brings together some of the most influential figures in the history of the genre for a rare collaborative event.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/a-great-night-in-hip-hop-mountain-view-california-08-29-2026/event/1C00645A9EF8EB5C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0c90eeadacf5",
              "venue_id": "venue_rickshaw_stop",
              "title": "MINI TREES",
              "event_time": "Sat Aug 29 8:45PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-08-29T20:45:00",
              "event_date": "2026-08-29",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Lexi Vega brings her indie pop project Mini Trees to the vineyard for a performance of melodic and introspective songs.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20.00-$22.00",
              "url": "https://wl.seetickets.us/event/mini-trees/689148?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-04-30T15:22:32.287368Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_559fe49bb095",
              "venue_id": "venue_audium",
              "title": "Resident Artist Shows: golden lionheart collier",
              "event_time": "2026-08-29T20:00:00",
              "venue_name": "Audium",
              "event_start": "2026-08-29T20:00:00",
              "event_date": "2026-08-29",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "Resident artist golden lionheart collier presents work grounded in transdisciplinary research spanning ancestral movement, performance, print media, lens-based works, sonic art, interactive facilitation, and new media installation.",
              "event_types": [
                "live_music",
                "experimental",
                "art",
                "dance"
              ],
              "price_info": "",
              "url": "https://www.audium.org/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audium",
                  "source_name": "Audium",
                  "fetched_at": "2026-05-07T13:38:46.001160Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audium|2026-08-29",
              "run_id": "run_23c0699dfe8a",
              "run_label": "Resident Artist Shows: golden lionheart collier, Aug 6 – Aug 29",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_13fab217afee",
              "venue_id": "venue_the_chapel",
              "title": "Osees, Traps PS",
              "event_time": "Aug 29 7:30pm/8:30pm",
              "venue_name": "The Chapel",
              "event_start": "2026-08-29T19:30:00",
              "event_date": "2026-08-29",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Osees",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fc2af3ddbe2b",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-29",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-29",
              "event_date": "2026-08-29",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-29",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0abc652cd415",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-29T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-29T20:00:00",
              "event_date": "2026-08-29",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-29",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d5c7986a5400",
              "venue_id": "venue_masonic_hall",
              "title": "Josh Johnson's Comedy Band Camp",
              "event_time": "2026-08-29",
              "venue_name": "Masonic Hall",
              "event_start": "2026-08-29",
              "event_date": "2026-08-29",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Josh Johnson's Comedy Band Camp",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dead12e371a5",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-29",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-29",
              "event_date": "2026-08-29",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-29",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ae54328c6503",
              "venue_id": "venue_tommy_ts",
              "title": "ALFRED ROBLES",
              "event_time": "2026-08-29 2026-08-29",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-29",
              "event_date": "2026-08-29",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-29",
              "run_id": "run_ab5a22e0f732",
              "run_label": "ALFRED ROBLES, Aug 28 – Aug 30",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a96ae3e4c549",
              "venue_id": "venue_the_independent",
              "title": "BRENN!",
              "event_time": "8.29 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-08-29T21:00:00",
              "event_date": "2026-08-29",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "AMATEUR AT BEST TOUR",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/brenn/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ff609b9ea106",
              "venue_id": "venue_mountain_winery",
              "title": "I Love The 90's Tour feat. Vanilla Ice",
              "event_time": "Aug 29, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-29T19:30:00",
              "event_date": "2026-08-29",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Rob Base, Young MC, C&C Music Factory featuring Freedom Williams",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1365198",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b92e5682282a",
              "venue_id": "venue_paramount_theatre",
              "title": "Brad Mehldau: Ride Into The Sun",
              "event_time": "Aug 29, 2026 8:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-08-29T20:00:00",
              "event_date": "2026-08-29",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "All ages require a ticket; no children under 2 years.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/brad-mehldau-ride-into-the-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b6a5c07ba5f9",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Arnocorps, FleXx Bronco",
              "event_time": "Saturday August 29 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-08-29T20:00:00",
              "event_date": "2026-08-29",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; 25th anniversary; Action Adventure Hardcore Rock and Roll; 25th anniversary; country to rock, blues to pop; horror punk rock and roll",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260829.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8a86bde04e5",
              "venue_id": "venue_mountain_winery",
              "title": "90s Hip-Hop Throwback Party",
              "event_time": "Aug 29 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-29T17:30:00",
              "event_date": "2026-08-29",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Get ready for a high-energy throwback party featuring some of the most iconic names in 90s hip-hop and dance music.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Vanilla_Ice",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bd8393d46ad",
              "venue_id": "venue_the_ritz",
              "title": "We Touch Grass: Anime Rave",
              "event_time": "2026-08-29T21:00:38-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-08-29T21:00:38",
              "event_date": "2026-08-29",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "WE TOUCH GRASS: ANIME RAVE\n\n \n\nSATURDAY AUGUST 29, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20 Advance – $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/we-touch-grass-anime-rave-the-ritz-tickets/14822353",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-18T15:41:10.895193Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_868f9eecad6f",
              "venue_id": "venue_levis_stadium",
              "title": "CHRIS BROWN & USHER | THE R&B TOUR | AUG 29",
              "event_time": "Aug 29, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-08-29",
              "event_date": "2026-08-29",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The R&B Tour continues at Levi's Stadium with a second night featuring hit-filled sets from Chris Brown and Usher.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/chris-brown-usher-the-randb-tour-aug-29/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-08-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-30": {
          "date": "2026-08-30",
          "updated_at": "2026-05-18T14:49:07.354607Z",
          "events": [
            {
              "event_id": "evt_cba15623b6aa",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-08-30",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-08-30",
              "event_date": "2026-08-30",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-08-30",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_91ba57748986",
              "venue_id": "venue_ashby_stage",
              "title": "Iphigenia in Splott",
              "event_time": "2026-08-30T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-08-30T20:00:00",
              "event_date": "2026-08-30",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Written by Gary Owen and directed by Michelle Talgarow. Inspired by Euripides, this epic story follows Effie, a brash and reckless woman in the town of Splott, facing a wrenching face-off with reality.",
              "event_types": [],
              "price_info": "Pay-What-You-Can to $80",
              "url": "https://shotgunplayers.org/online/article/iphigenia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-08-30",
              "run_id": "run_fb648381ba28",
              "run_label": "Iphigenia in Splott, Jul 25 – Aug 30",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4b91603a4589",
              "venue_id": "venue_masonic_hall",
              "title": "Josh Johnson's Comedy Band Camp",
              "event_time": "2026-08-30",
              "venue_name": "Masonic Hall",
              "event_start": "2026-08-30",
              "event_date": "2026-08-30",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Josh Johnson's Comedy Band Camp",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-08-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_908727868738",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-08-30",
              "venue_name": "Exploratorium",
              "event_start": "2026-08-30",
              "event_date": "2026-08-30",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-08-30",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ebfbf656c7f8",
              "venue_id": "venue_tommy_ts",
              "title": "ALFRED ROBLES",
              "event_time": "2026-08-30 2026-08-29",
              "venue_name": "Tommy T's",
              "event_start": "2026-08-30",
              "event_date": "2026-08-30",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-08-30",
              "run_id": "run_ab5a22e0f732",
              "run_label": "ALFRED ROBLES, Aug 28 – Aug 30",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e8bebe1706bb",
              "venue_id": "venue_mountain_winery",
              "title": "Diana Ross",
              "event_time": "Aug 30, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-30T19:30:00",
              "event_date": "2026-08-30",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389143",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e9c23bf595e6",
              "venue_id": "venue_mountain_winery",
              "title": "Diana Ross",
              "event_time": "Aug 30 5:30pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-08-30T17:30:00",
              "event_date": "2026-08-30",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The legendary Motown superstar Diana Ross performs her timeless hits in a rare, intimate appearance at this historic venue.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Diana_Ross",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-08-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-08-31": {
          "date": "2026-08-31",
          "updated_at": "2026-05-18T11:30:06.164368Z",
          "events": [
            {
              "event_id": "evt_4e329fd430ce",
              "venue_id": "venue_yoshis",
              "title": "Mark Hummel's Blues All Stars",
              "event_time": "MON 8.31 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-08-31T19:30:00",
              "event_date": "2026-08-31",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "A SPECIALIST IN WEST COAST BLUES",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$30 - $49",
              "url": "https://yoshis.com/events/buy-tickets/mark-hummel-s-blues-all-stars/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-08-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_25f06c951fa4",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Aug 31 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-08-31T19:00:00",
              "event_date": "2026-08-31",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690187?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-08-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-01": {
          "date": "2026-09-01",
          "updated_at": "2026-05-18T15:48:30.069186Z",
          "events": [
            {
              "event_id": "evt_50f6400804d2",
              "venue_id": "venue_august_hall",
              "title": "Screeching Weasel, Queers, Jack Trippers",
              "event_time": "Sep 1 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-01T19:00:00",
              "event_date": "2026-09-01",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Legendary punk rock band Screeching Weasel brings their fast-paced, melodic sound to August Hall for a live performance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$39.80",
              "url": "http://www.foopee.com/by-band.3.html#Screeching_Weasel",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-11T13:39:39.973711Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-11T14:03:07.692063Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_630996c2d4d1",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-01",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-01",
              "event_date": "2026-09-01",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-01",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6569abb8bd51",
              "venue_id": "venue_roccapulco",
              "title": "Los Toros Band",
              "event_time": "2026-09-01T20:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-09-01T20:00:00",
              "event_date": "2026-09-01",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "A live concert performance by the popular tropical music group Los Toros Band.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Check website for details",
              "url": "https://ticketssanfrancisco.net/events/los-toros-band-san-francisco",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-05-14T13:16:30.337713Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-09-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_15aa694a282a",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-01",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-01",
              "event_date": "2026-09-01",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-01",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce3808041961",
              "venue_id": "venue_yoshis",
              "title": "Haley Reinhart",
              "event_time": "TUE 9.1 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-01T19:30:00",
              "event_date": "2026-09-01",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "TIMELESS VOICE KNOWN FOR HER WORK W/ POSTMODERN JUKEBOX",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$52 - $99",
              "url": "https://yoshis.com/events/buy-tickets/haley-reinhart-7/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_42bef69559d0",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 1 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-01T19:00:00",
              "event_date": "2026-09-01",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690212?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3fe33efe7ef7",
              "venue_id": "venue_the_fillmore",
              "title": "Eagles Of Death Metal",
              "event_time": "Sep 1 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-01T19:00:00",
              "event_date": "2026-09-01",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a $36+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$36+",
              "url": "http://www.foopee.com/by-band.1.html#Eagles_Of_Death_Metal",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bf51d4063f38",
              "venue_id": "venue_levis_stadium",
              "title": "CHRIS BROWN & USHER | THE R&B TOUR | SEP 1",
              "event_time": "Sep 01, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-09-01",
              "event_date": "2026-09-01",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Chris Brown and Usher conclude their run at Levi's Stadium with a final performance of The R&B Tour on September 1.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/chris-brown-usher-the-randb-tour-sep-1/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-09-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-02": {
          "date": "2026-09-02",
          "updated_at": "2026-05-18T15:21:08.218048Z",
          "events": [
            {
              "event_id": "evt_8394abd166b0",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Asian Man Records 30th Anniversary",
              "event_time": "Wednesday September 2 2026 7:00PM doors -- music at 7:45 PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-02T19:00:00",
              "event_date": "2026-09-02",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Asian Man Records 30 Anniversary Celebration; xxx; xxx; xxx; xxx",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260902.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9b75accbcfa9",
              "venue_id": "venue_chase_center",
              "title": "ZAYN",
              "event_time": "2026-09-02T20:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-09-02T20:00:00",
              "event_date": "2026-09-02",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "ZAYN performs live at Chase Center.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.chasecenter.com/events/zayn-20260902",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9e858b10b58f",
              "venue_id": "venue_castro_theater",
              "title": "LP",
              "event_time": "September 2, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-02T20:00:00",
              "event_date": "2026-09-02",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "All Is Not Lost Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/lp-260902",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f2de4119dc46",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-02",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-02",
              "event_date": "2026-09-02",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-02",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6d305465ee99",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-02",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-02",
              "event_date": "2026-09-02",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-02",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc5c2ffce8cd",
              "venue_id": "venue_mountain_winery",
              "title": "Roger Daltrey",
              "event_time": "Sep 2, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-02T19:30:00",
              "event_date": "2026-09-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "A Great Night Out",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1387168",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_38a7b40cf3a3",
              "venue_id": "venue_yoshis",
              "title": "Avery Wilson",
              "event_time": "WED 9.2 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-02T19:30:00",
              "event_date": "2026-09-02",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GRAMMY NOMINATED SINGER/ACTOR - FROM THE VOICE",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$49 - $89",
              "url": "https://yoshis.com/events/buy-tickets/avery-wilson/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5bed224c5bb6",
              "venue_id": "venue_yoshis",
              "title": "Avery Wilson VIP Experience",
              "event_time": "WED 9.2 5:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-02T17:30:00",
              "event_date": "2026-09-02",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SHOW TICKET NOT INCLUDED",
              "event_types": [
                "community"
              ],
              "price_info": "$89",
              "url": "https://yoshis.com/events/buy-tickets/avery-wilson-pre-show-vip-experience-show-ticket-not-included/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d5eba3a733ec",
              "venue_id": "venue_mountain_winery",
              "title": "Roger Daltrey",
              "event_time": "Sep 2 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-02T17:30:00",
              "event_date": "2026-09-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Who's legendary frontman Roger Daltrey takes the stage to perform classic rock anthems and solo favorites.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Roger_Daltrey",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-03": {
          "date": "2026-09-03",
          "updated_at": "2026-05-18T15:58:43.879779Z",
          "events": [
            {
              "event_id": "evt_89edfe320f2e",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Asian Man Records 30th Anniversary",
              "event_time": "Thursday September 3 2026 7:00PM doors -- music at 7:45 PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-03T19:00:00",
              "event_date": "2026-09-03",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Asian Man Records 30 Anniversary Celebration; xxx; xxx; xxx; xxx",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260903.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df6031878cd5",
              "venue_id": "venue_cornerstone",
              "title": "Tab Benoit, Zac Schulze Gang",
              "event_time": "Sep 3 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-03T19:00:00",
              "event_date": "2026-09-03",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Zac Schulze Gang",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Tab_Benoit",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-19T10:13:17.385844Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bac7daf7a2b9",
              "venue_id": "venue_regency_ballroom",
              "title": "HAYLA - The Dark Tour",
              "event_time": "Sep 3 7pm/8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-03T19:00:00",
              "event_date": "2026-09-03",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "British singer-songwriter Hayla brings her powerful vocals and dance-pop hits to the vineyard stage. Known for her collaborations with major electronic artists, she delivers a soaring and energetic live performance.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "18+",
              "url": "http://www.foopee.com/by-band.1.html#Hayla",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-01T07:05:07.300669Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-04T11:08:02.193821Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a07abf9c450e",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Paul Hanson, Michael Manring & Scott Amendola",
              "event_time": "2026-09-03T19:00:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-09-03T19:00:00",
              "event_date": "2026-09-03",
              "venue_address": "3478 School St, Oakland, CA 94602",
              "description": "A free-wheeling musical trio featuring electric bassoonist Paul Hanson, bassist Michael Manring, and drummer Scott Amendola.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Check website for tickets",
              "url": "https://paulhansonmusic.com/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-05-13T10:08:27.381932Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c780e5c10b1c",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-03",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-03",
              "event_date": "2026-09-03",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-03",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_85675c904fff",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-09-03T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-09-03T19:00:00",
              "event_date": "2026-09-03",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_00b0976df419",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-03",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-03",
              "event_date": "2026-09-03",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-03",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bc92ddbf0701",
              "venue_id": "venue_mountain_winery",
              "title": "TajMo: The Taj Mahal & Keb' Mo' Band",
              "event_time": "Sep 3, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-03T19:30:00",
              "event_date": "2026-09-03",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Room On The Porch Tour 2026",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1392050",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a2492d4d5665",
              "venue_id": "venue_yoshis",
              "title": "Sheena Easton",
              "event_time": "THU 9.3",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-03T19:30:00",
              "event_date": "2026-09-03",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "POP STAR KNOWN FOR HER HITS \"MORNING TRAIN,\" \"FOR YOUR EYES ONLY,\" AND \"SUGAR WALLS\"",
              "event_types": [
                "live_music"
              ],
              "price_info": "$52 - $99",
              "url": "https://yoshis.com/events/buy-tickets/sheena-easton-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_29915762eb9e",
              "venue_id": "venue_mountain_winery",
              "title": "Taj Mahal & Keb' Mo'",
              "event_time": "Sep 3 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-03T17:30:00",
              "event_date": "2026-09-03",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Blues legends Taj Mahal and Keb' Mo' perform together as Tajmo, delivering a masterclass in contemporary and traditional blues.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Tajmo",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-04": {
          "date": "2026-09-04",
          "updated_at": "2026-05-18T16:16:06.736835Z",
          "events": [
            {
              "event_id": "evt_3668d2610e29",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Asian Man Records 30th Anniversary",
              "event_time": "Friday September 4 2026 7:00PM doors -- music at 7:45 PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Asian Man Records 30 Anniversary Celebration; xxx; xxx; xxx; xxx",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260904.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64a007cd5c94",
              "venue_id": "venue_the_ritz",
              "title": "Devildriver",
              "event_time": "2026-09-04T18:00:18-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-04T18:00:18",
              "event_date": "2026-09-04",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "DEVILDRIVER\nUPON A BURNING BODY\nOV SULFUR\n\n \n\nFRIDAY SEPTEMBER 4, 2026\nDoors: 6PM // All Ages // $40 Advance – $45  Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$40 Advance – $45  Day-of-Show",
              "url": "https://www.ticketweb.com/event/devildriver-upon-a-burning-body-the-ritz-tickets/14854993",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-28T12:56:42.405550Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d7b659fa1606",
              "venue_id": "venue_regency_ballroom",
              "title": "Nitzer Ebb",
              "event_time": "Sep 4 7pm/8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Industrial and EBM pioneers Nitzer Ebb bring their rhythmic, synth-driven sound to JAX Vineyards. Their performance promises a high-intensity show rooted in the foundations of electronic body music.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Price varies",
              "url": "http://www.foopee.com/by-band.2.html#Nitzer_Ebb",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-04T11:08:02.193821Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f038c44e1eb",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight (September)",
              "event_time": "2026-09-04T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-09-04T10:30:00",
              "event_date": "2026-09-04",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "Join Shotgun Players for coffee, cookies, and conversation with performance maker, choreographer, and director Erika Chong Shuch.",
              "event_types": [
                "community",
                "theater"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/shotgun-spotlight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-08T10:31:58.984559Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-11T10:06:54.321733Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_147808c755c4",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-04",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-04",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba107739dcc1",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-04",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-04",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d819d008486b",
              "venue_id": "venue_tommy_ts",
              "title": "TK KIRKLAND",
              "event_time": "2026-09-04 2026-09-05",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-04",
              "run_id": "run_7266ba80552c",
              "run_label": "TK KIRKLAND, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_280dde00d593",
              "venue_id": "venue_1015_folsom",
              "title": "JASON ROSS",
              "event_time": "September 4, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "THE TRUE NORTH TOUR",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/jason-ross/690477?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-18T15:46:20.514159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bac615dad68",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Pride & Joy",
              "event_time": "September 4, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "The name says it all. During its many years of phenomenal success, Pride & Joy SF has remained the most popular party band on the Bay Area music scene. This group is the Pride of the Bay Area and a Joy to anyone who loves to dance. They have achieved this by presenting the most timeless pop/soul music of our time in an electrifying high-style show that pulls the audience directly into the heart of their performance.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://www.pridejoysf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-05-18T16:16:02.541915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-05": {
          "date": "2026-09-05",
          "updated_at": "2026-05-18T15:47:29.397899Z",
          "events": [
            {
              "event_id": "evt_e2f4280a1796",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Deep Purple, Kansas, Jefferson Starship",
              "event_time": "2026-09-05T17:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-05T17:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Progressive and hard rock pioneers Deep Purple, Kansas, and Jefferson Starship perform their legendary catalogs live. This show offers a journey through decades of rock history featuring iconic riffs and symphonic arrangements.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/deep-purple-with-special-guest-kansas-mountain-view-california-09-05-2026/event/1C006471E1BDF020",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ceab304ac10f",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Asian Man Records 30th Anniversary",
              "event_time": "Saturday September 5 2026 7:00PM doors -- music at 7:45 PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; Asian Man Records 30 Anniversary Celebration; xxx; xxx; xxx; xxx",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260905.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d6367adb2e85",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-05",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-05",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7792888a9617",
              "venue_id": "venue_sjz_break_room",
              "title": "SJZ Break Room Jazz Jam",
              "event_time": "2026-09-05T18:20:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-09-05T18:20:00",
              "event_date": "2026-09-05",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "Free South First Fridays showcase of youth talent featuring Michael Webster Quartet, followed by a Webster-led all-ages jazz jam from 7–9pm.",
              "event_types": [],
              "price_info": "Free Admission",
              "url": "https://sanjosejazz.org/events/u19s-sjz-break-room/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-05-15T20:48:12.874651Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_edae3cc021f8",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-05",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-05",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f9f47a29731e",
              "venue_id": "venue_tommy_ts",
              "title": "TK KIRKLAND",
              "event_time": "2026-09-05 2026-09-05",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-05",
              "run_id": "run_7266ba80552c",
              "run_label": "TK KIRKLAND, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_72001e8e7e0c",
              "venue_id": "venue_mountain_winery",
              "title": "Lost 80's Live",
              "event_time": "Sep 5, 2026 6:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "featuring Oingo Boingo Former Members, Big Country, The Vapors, The Icicle Works, Dramarama, China Crisis, Musical Youth, B-Movie, KATRINA formerly of Katrina & The Waves",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1339897",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e2aded8d0c3",
              "venue_id": "venue_the_fillmore",
              "title": "Kamelot, Visions Of Atlantis, Frozen Crown",
              "event_time": "Sep 5 2026 6pm/7pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a $52+ 6pm/7pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$52+",
              "url": "http://www.foopee.com/by-band.1.html#Kamelot",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5931681837f",
              "venue_id": "venue_mountain_winery",
              "title": "Oingo Boingo Former Members",
              "event_time": "Sep 5 4pm/6pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-05T16:00:00",
              "event_date": "2026-09-05",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Youth, B-Movie, Katrina",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Oingo_Boingo_Former_Members",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fbdb3dfb45fa",
              "venue_id": "venue_august_hall",
              "title": "Valerie: A Tribute to Amy Winehouse",
              "event_time": "SEPTEMBER 05, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This tribute concert honors the legacy of Amy Winehouse with live performances of her greatest hits featuring special guest Huney.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/valerie-a-tribute-to-amy-winehouse-w-special-guest-huney-knuckles/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-18T15:47:14.139244Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-06": {
          "date": "2026-09-06",
          "updated_at": "2026-05-18T11:09:18.505339Z",
          "events": [
            {
              "event_id": "evt_756236aa8b5c",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-06",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-06",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_90998a80e6ad",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-06",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-06",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7877cb872b26",
              "venue_id": "venue_tommy_ts",
              "title": "TK KIRKLAND",
              "event_time": "2026-09-06 2026-09-05",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-06",
              "run_id": "run_7266ba80552c",
              "run_label": "TK KIRKLAND, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1bbed5a7949e",
              "venue_id": "venue_yoshis",
              "title": "Sons of Champlin",
              "event_time": "SUN 9.6 7:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "A BLEND OF ROCK, JAZZ, SOUL, AND R&B",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$45 - $84",
              "url": "https://yoshis.com/events/buy-tickets/sons-of-champlin-w-bill-champlin-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-07": {
          "date": "2026-09-07",
          "updated_at": "2026-05-18T13:34:52.638338Z",
          "events": [
            {
              "event_id": "evt_12c1018beab6",
              "venue_id": "venue_castro_theater",
              "title": "THE CHARLATANS UK",
              "event_time": "September 7, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-07T20:00:00",
              "event_date": "2026-09-07",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "North American Tour 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-charlatans-260907",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3691f541f1ab",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 7 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690188?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-08": {
          "date": "2026-09-08",
          "updated_at": "2026-05-18T15:58:43.882211Z",
          "events": [
            {
              "event_id": "evt_132a63d27c14",
              "venue_id": "venue_regency_ballroom",
              "title": "Slayyyter, Pearly Drops",
              "event_time": "2026-09-08T19:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Pop artist Slayyyter performs her bold, electronic-infused tracks alongside the ethereal sounds of Pearly Drops. It is a night of modern pop aesthetics and vibrant energy in a scenic setting.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.3.html#Slayyyter",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-16T09:13:42.764342Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-04T11:08:02.193821Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b01296369dcc",
              "venue_id": "venue_the_independent",
              "title": "PAWPAW ROD",
              "event_time": "9.8 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "a/a $31.55 ($112.65 vip) 7:30pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/pawpaw-rod/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_edef2818187a",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-08",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-08",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_beee15932639",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-08",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-08",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01dc26b1eb9e",
              "venue_id": "venue_yoshis",
              "title": "Matt Schofield Trio",
              "event_time": "TUE 9.8 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "MULTI-AWARD-WINNING GUITAR VIRTUOSO, SINGER, SONGWRITER,  PRODUCER, AND BAND LEADER",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$29 - $59",
              "url": "https://yoshis.com/events/buy-tickets/matt-schofield-trio-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_94eaaec7dedf",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 8 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690213?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cbf3d2ceb380",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose",
              "event_time": "2026-09-08",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "New North American touring production of Disney’s classic stage musical with iconic songs by Alan Menken and Tim Rice.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/disneys-beauty-and-the-beast-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-08",
              "run_id": "run_8c6ba5fb7b15",
              "run_label": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose, Sep 8 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_42785cfcafc1",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Samara Joy with the SF Symphony",
              "event_time": "Sep 8 2026 7:30pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "a/a 7:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Samara_Joy_with_the_SF_Symphony",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa289894ba03",
              "venue_id": "venue_rickshaw_stop",
              "title": "Slayyyter",
              "event_time": "Sep 8 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Slayyyter, Pearly Drops",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Slayyyter",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55fb6839f335",
              "venue_id": "venue_bill_graham_civic",
              "title": "WAVE TO EARTH",
              "event_time": "September 8, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "The Theater at Bill Graham Civic Auditorium\nthe pieces tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "ON SALE 5/21",
              "url": "https://billgrahamcivic.com/events/wave-to-earth-260908",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-05-18T15:43:56.429713Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-09": {
          "date": "2026-09-09",
          "updated_at": "2026-05-18T15:43:10.145540Z",
          "events": [
            {
              "event_id": "evt_8fac6c5f34af",
              "venue_id": "venue_chase_center",
              "title": "Weezer with The Shins & Silversun",
              "event_time": "2026-09-09T19:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Weezer performs at Chase Center with special guests The Shins and Silversun Pickups.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Tickets from $79",
              "url": "https://www.chasecenter.com/events/weezer-20260909",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a7f6525d0f5c",
              "venue_id": "venue_greek_theatre",
              "title": "Liz Phair",
              "event_time": "09/09/2026 6:30pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-09T18:30:00",
              "event_date": "2026-09-09",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "The Flannel And The Fury 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.2.html#Liz_Phair",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-01T06:47:01.731707Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-01T09:38:25.541444Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ed3b51ee37c8",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Slayyyter",
              "event_time": "September 9, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "WOR$T GIRL IN THE WORLD TOUR - Pearly Drops",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "PRESALE 5/7",
              "url": "https://thefoxoakland.com/events/slayyyter-260909",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-05-06T10:46:47.654446Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0083113e43be",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-09",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-09",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c478a888d58c",
              "venue_id": "venue_exploratorium",
              "title": "Life in Space",
              "event_time": "2026-09-09",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Explore the science of how to survive living in space.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-05-17T12:09:03.449126Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-09",
              "run_id": "run_602037d2e5df",
              "run_label": "Life in Space, Jun 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5915789c1fe",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Kofy Brown Band & Skip The Needle",
              "event_time": "Wednesday September 9 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; hip-hop soul; rock n' roll-funk; xxx",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk",
                "hiphop_rap"
              ],
              "price_info": "$15 $19.81 in advance [15 face value + 4.81 service fee]",
              "url": "http://www.bottomofthehill.com/20260909.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b0b37aeac962",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose",
              "event_time": "2026-09-09",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "New North American touring production of Disney’s classic stage musical with iconic songs by Alan Menken and Tim Rice.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/disneys-beauty-and-the-beast-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-09",
              "run_id": "run_8c6ba5fb7b15",
              "run_label": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose, Sep 8 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a07003335c3c",
              "venue_id": "venue_great_american_music_hall",
              "title": "Eihwar",
              "event_time": "Sep 9 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $35/$40/$45 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35/$40/$45",
              "url": "http://www.foopee.com/by-band.1.html#Eihwar",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-10": {
          "date": "2026-09-10",
          "updated_at": "2026-05-18T12:57:22.086694Z",
          "events": [
            {
              "event_id": "evt_c8c6fa6afcd5",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-10",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-10",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e560a062c578",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_033905c77226",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose",
              "event_time": "2026-09-10",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "New North American touring production of Disney’s classic stage musical with iconic songs by Alan Menken and Tim Rice.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/disneys-beauty-and-the-beast-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-10",
              "run_id": "run_8c6ba5fb7b15",
              "run_label": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose, Sep 8 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-09-11": {
          "date": "2026-09-11",
          "updated_at": "2026-05-18T15:47:29.400333Z",
          "events": [
            {
              "event_id": "evt_a2476a809f50",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Bratmobile / The Okmonics",
              "event_time": "Friday September 11 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Sep 11 Bratmobile, Okmonics a/a $35 8pm/9pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35 $41.51 in advance [35 face value + 6.51 service fee]",
              "url": "http://www.bottomofthehill.com/20260911.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_69a3c12a1a8f",
              "venue_id": "venue_regency_ballroom",
              "title": "Altin Gun, Alex Maas",
              "event_time": "2026-09-11T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Experience a night of Anatolian rock and psychedelic folk featuring the Turkish-Dutch band Altin Gün alongside a performance by Alex Maas. This event brings a unique blend of global rhythms and indie-psych sounds to the Kilowatt stage.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "a/a",
              "url": "http://www.foopee.com/by-band.0.html#Altin_Gun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-13T04:13:31.972558Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c621ad393647",
              "venue_id": "venue_the_ritz",
              "title": "POWERMAN 5000",
              "event_time": "2026-09-11T19:00:04-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-11T19:00:04",
              "event_date": "2026-09-11",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Industrial metal band Powerman 5000 brings their high-octane sound and sci-fi aesthetic to the stage for a loud and energetic performance. Fans can expect a night of heavy riffs and electronic-infused rock anthems.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance –  $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/powerman-5000-the-ritz-tickets/14761163",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7db1035a61c3",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Michael Blaustein: Taste Me Tour",
              "event_time": "September 11, 2026 7:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Another Planet Entertainment & Outback present",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thefoxoakland.com/events/michael-blaustein-260911",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-18T07:48:06.867851Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96239c72daeb",
              "venue_id": "venue_bimbos_365",
              "title": "Super Diamond & Starman SF",
              "event_time": "Sep 11 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "The Neil Diamond Tribute | with Starman SF | 21 and up",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.3.html#Super_Diamond",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-05T11:33:54.468274Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-05-06T11:40:58.948379Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_85da080f4dff",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-11",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-11",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1406b9e4221d",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Crashing Out Live",
              "event_time": "2026-09-11T19:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "A live recording of the Crashing Out Podcast.",
              "event_types": [
                "community"
              ],
              "price_info": "$35 - $80 USD",
              "url": "https://www.purplepass.com/#284754/Palace_of_Fine_Arts_Theatre-Crashing_Out_Live-Palace_of_Fine_Arts_Theatre-September-11-2026.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d64de6c43c74",
              "venue_id": "venue_tommy_ts",
              "title": "COREY HOLCOMB",
              "event_time": "2026-09-11 2026-09-12",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-11",
              "run_id": "run_87b9292e207b",
              "run_label": "COREY HOLCOMB, Sep 11 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89c8e6f15161",
              "venue_id": "venue_mountain_winery",
              "title": "Jesse McCartney",
              "event_time": "Sep 11, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389185",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9615ef4165e5",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose",
              "event_time": "2026-09-11",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "New North American touring production of Disney’s classic stage musical with iconic songs by Alan Menken and Tim Rice.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/disneys-beauty-and-the-beast-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-11",
              "run_id": "run_8c6ba5fb7b15",
              "run_label": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose, Sep 8 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4bbe22f4819f",
              "venue_id": "venue_greek_theatre",
              "title": "Foster The People, Goth Babe",
              "event_time": "Sep 11 2026 6:30pm/8pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-11T18:30:00",
              "event_date": "2026-09-11",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a 6:30pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Foster_The_People",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ad85ad4d65ca",
              "venue_id": "venue_mountain_winery",
              "title": "Jesse McCartney",
              "event_time": "Sep 11 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-11T17:30:00",
              "event_date": "2026-09-11",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Pop singer and actor Jesse McCartney performs his chart-topping hits and soulful pop tracks for an evening of live music.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jesse_McCartney",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a0a1f71919d7",
              "venue_id": "venue_greek_theatre",
              "title": "FOSTER THE PEOPLE",
              "event_time": "September 11, 2026 8:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "LIVE 105 presents\nGood Mourning Sunshine Tour - Goth Babe",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/foster-the-people-260911",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-18T15:43:05.721389Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c0823218a223",
              "venue_id": "venue_august_hall",
              "title": "ASAL: KISS THE SUN TOUR",
              "event_time": "SEPTEMBER 11, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Artist ASAL brings the Kiss The Sun tour to August Hall for an evening of contemporary musical performance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/asal-kiss-the-sun-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-05-18T15:47:14.139244Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-12": {
          "date": "2026-09-12",
          "updated_at": "2026-05-18T15:58:43.885219Z",
          "events": [
            {
              "event_id": "evt_9db0668acc51",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Bratmobile / A La Tata",
              "event_time": "Saturday September 12 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Sep 12 Bratmobile, A La Tata a/a $35 8pm/9pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35 $41.51 in advance [35 face value + 6.51 service fee]",
              "url": "http://www.bottomofthehill.com/20260912.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5de47e9065b5",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Opera Ball",
              "event_time": "2026-09-12",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "Secure your place at San Francisco's biggest fundraiser of the year, with proceeds supporting the future of opera and opera education",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bba0d10bb501",
              "venue_id": "venue_audio",
              "title": "Joshwa at Audio SF",
              "event_time": "2026-09-12T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Joshwa brings his tech-house sounds to Audio SF for a Saturday night headline set.",
              "event_types": [
                "other"
              ],
              "price_info": "Check website for pricing",
              "url": "https://audiosf.com/event/joshwa/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-04-22T13:04:29.170442Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b0e864f2e422",
              "venue_id": "venue_the_warfield",
              "title": "San Holo",
              "event_time": "Sep 12 2026 7pm/8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "TRUE LOVE IN A MADE UP WORLD",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "18+",
              "url": "http://www.foopee.com/by-band.3.html#San_Holo",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-05T11:51:39.397411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f4a975de38e",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Thievery Corporation",
              "event_time": "September 12, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "30th Anniversary Tour - An all encompassing retrospective",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "PRESALE 5/14",
              "url": "https://thefoxoakland.com/events/thievery-corporation-260912",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-05-14T10:52:30.693014Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-14T12:48:00.417136Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c79f9120cfd1",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-12",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "In 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to dance her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-12",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1cbfdc064ad8",
              "venue_id": "venue_san_jose_civic",
              "title": "SABAI: IKIGAI",
              "event_time": "09/12/2026 8pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Electronic music producer SABAI brings his melodic bass sounds to the San Jose Civic.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$48 | 18+",
              "url": "https://www.ticketmaster.com/event/1C00647FE6758CE2",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b3de676f1ddd",
              "venue_id": "venue_tommy_ts",
              "title": "COREY HOLCOMB",
              "event_time": "2026-09-12 2026-09-12",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-12",
              "run_id": "run_87b9292e207b",
              "run_label": "COREY HOLCOMB, Sep 11 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a9fc851b9b5c",
              "venue_id": "venue_yoshis",
              "title": "Rose Royce",
              "event_time": "SAT 9.12",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GRAMMY-WINNING, MULTI PLATINUM LEGENDS OF THE “CAR WASH” SOUNDTRACK",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$56 - $99",
              "url": "https://yoshis.com/events/buy-tickets/rose-royce-4/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a1e1c42e8f97",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose",
              "event_time": "2026-09-12",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "New North American touring production of Disney’s classic stage musical with iconic songs by Alan Menken and Tim Rice.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/disneys-beauty-and-the-beast-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-12",
              "run_id": "run_8c6ba5fb7b15",
              "run_label": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose, Sep 8 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6a434ad07880",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE DOORS TRIBUTE – STRANGE DAZE BAND",
              "event_time": "Saturday, Sep 12 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "The Strange Daze Band performs a live tribute to the psychedelic rock and poetic lyrics of Jim Morrison and The Doors.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-doors-tribute-strange-daze-band/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_94a9cff2faf8",
              "venue_id": "venue_the_fillmore",
              "title": "Public Image Ltd.",
              "event_time": "Sep 12 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Public_Image_Ltd_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-13": {
          "date": "2026-09-13",
          "updated_at": "2026-05-18T14:49:07.366803Z",
          "events": [
            {
              "event_id": "evt_008299859fef",
              "venue_id": "venue_bimbos_365",
              "title": "Haute & Freddy",
              "event_time": "Sep 13 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents Big Disgrace Tour | All Ages",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT",
              "url": "http://www.foopee.com/by-band.1.html#Haute___Freddy",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-05T11:33:54.468274Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-05-06T11:40:58.948379Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f900a46e7f62",
              "venue_id": "venue_cafe_du_nord",
              "title": "Sub Urban",
              "event_time": "Sep 13 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Sub_Urban",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_984760bee703",
              "venue_id": "venue_the_chapel",
              "title": "Carla Dal Forno",
              "event_time": "Sep 13 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$29.69 7pm/8pm",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$29.69",
              "url": "http://www.foopee.com/by-band.0.html#Carla_Dal_Forno",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_843059bf17a9",
              "venue_id": "venue_temescal_arts_center",
              "title": "Shapeshifters Cinema",
              "event_time": "2026-09-13T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Monthly Shapeshifters Cinema screening at Temescal Arts Center.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3b2c5adc94dc",
              "venue_id": "venue_dalas_nest",
              "title": "Jaeger & Reid",
              "event_time": "2026-09-13T15:30:00",
              "venue_name": "Dala's Nest",
              "event_start": "2026-09-13T15:30:00",
              "event_date": "2026-09-13",
              "venue_address": "Menlo Park, CA",
              "description": "Indie Folk Duo",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dalas_nest",
                  "source_name": "Dala's Nest",
                  "fetched_at": "2026-05-18T10:13:54.412437Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dalas_nest|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee87c12475d8",
              "venue_id": "venue_mountain_winery",
              "title": "Smokey Robinson",
              "event_time": "Sep 13, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Legacy of Love Tour",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1366161",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f9a7e4b18ee",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose",
              "event_time": "2026-09-13",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "New North American touring production of Disney’s classic stage musical with iconic songs by Alan Menken and Tim Rice.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/disneys-beauty-and-the-beast-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-13",
              "run_id": "run_8c6ba5fb7b15",
              "run_label": "Disney’s BEAUTY AND THE BEAST – Broadway San Jose, Sep 8 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_685bcac7355b",
              "venue_id": "venue_great_american_music_hall",
              "title": "Bear McCreary",
              "event_time": "Sep 13 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $40/$45/$50 7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "$40/$45/$50",
              "url": "http://www.foopee.com/by-band.0.html#Bear_McCreary",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0292621c96e7",
              "venue_id": "venue_mountain_winery",
              "title": "Smokey Robinson",
              "event_time": "Sep 13 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-13T17:30:00",
              "event_date": "2026-09-13",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Motown icon Smokey Robinson brings his legendary smooth vocals and classic songwriting to the Hotel Utah stage.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Smokey_Robinson",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-14": {
          "date": "2026-09-14",
          "updated_at": "2026-05-18T11:30:06.170817Z",
          "events": [
            {
              "event_id": "evt_64ac6ef9efd6",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 14 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690189?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-15": {
          "date": "2026-09-15",
          "updated_at": "2026-05-18T15:43:10.150504Z",
          "events": [
            {
              "event_id": "evt_1d3863ec9f4c",
              "venue_id": "venue_greek_theatre",
              "title": "JOHNNY BLUE SKIES & THE DARK CLOUDS",
              "event_time": "September 15, 2026 7:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Mutiny For The Masses 2026 Tour\nAn Evening With",
              "event_types": [
                "live_music"
              ],
              "price_info": "PRESALE 4/9",
              "url": "https://thegreekberkeley.com/events/johnny-blue-skies-260915",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f04bcd4a14c0",
              "venue_id": "venue_the_independent",
              "title": "The Tear Garden",
              "event_time": "9.15 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/the-tear-garden-the-legendary-pink-dots-cevin-key/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cbf57ec0f102",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 15 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690214?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_55dd43376b59",
              "venue_id": "venue_the_warfield",
              "title": "Squeeze",
              "event_time": "Sep 15 2026 6pm/7pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-15T18:00:00",
              "event_date": "2026-09-15",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Squeeze, Adam Ant, Haircut 100",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Squeeze",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-16": {
          "date": "2026-09-16",
          "updated_at": "2026-05-18T14:46:03.535298Z",
          "events": [
            {
              "event_id": "evt_6b46e8e99f3f",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Five Finger Death Punch",
              "event_time": "2026-09-16T17:15:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-16T17:15:00",
              "event_date": "2026-09-16",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Heavy metal heavyweights Five Finger Death Punch bring their intense live show and hard-hitting anthems to Shoreline Amphitheatre. The performance will feature a selection of the band's most popular tracks and high-energy stage production.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/five-finger-death-punch-mountain-view-california-09-16-2026/event/1C006425ABDA837C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-18T08:24:47.395861Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-18T09:17:31.621254Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0da9a191ea30",
              "venue_id": "venue_great_american_music_hall",
              "title": "When Chai Met Toast",
              "event_time": "Sep 16 2026 7pm",
              "venue_name": "Great American",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $30-$40 7pm/pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "$30-$40",
              "url": "http://www.foopee.com/by-band.3.html#When_Chai_Met_Toast",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-17": {
          "date": "2026-09-17",
          "updated_at": "2026-05-18T16:00:41.700511Z",
          "events": [
            {
              "event_id": "evt_49be8c0cd5f3",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Unsane / CNTS / Facet",
              "event_time": "Thursday September 17 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; noise rock , punk and metal; punk rock, hardcore; Noise Rock, Post-Hardcore",
              "event_types": [
                "live_music",
                "rock",
                "experimental"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260917.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e364e1cb86e9",
              "venue_id": "venue_greek_theatre",
              "title": "Bleachers, Linda Lindas",
              "event_time": "September 17, 2026 6:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-17T18:30:00",
              "event_date": "2026-09-17",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "LIVE 105 presents\nBleachers Forever - The Linda Lindas",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/bleachers-260917",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_27ae191706ef",
              "venue_id": "venue_golden_gate_theater",
              "title": "My Hero Academia In Concert",
              "event_time": "2026-09-17T19:00:00",
              "venue_name": "Golden Gate Theatre",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "Celebrating 10 years of the hit anime, this immersive concert features a 15-piece live band performing Yuki Hayashi's iconic score synchronized with the series' most memorable scenes.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "More info",
              "url": "https://us.atgtickets.com/events/my-hero-academia/golden-gate-theatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theatre",
                  "fetched_at": "2026-04-22T13:28:07.693795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-22T13:56:34.286281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-22T14:37:42.000428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_37b795cd54f7",
              "venue_id": "venue_castro_theater",
              "title": "JOSH THOMAS: JIGGLE, JIGGLE",
              "event_time": "September 17, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "$48+ 7pm/8pm # (seated)",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/josh-thomas-260917",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_670144d03786",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-09-17T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be1410356b86",
              "venue_id": "venue_peacock_lounge",
              "title": "Third Thursday Jazz Night",
              "event_time": "2026-09-17T20:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "A recurring jazz music performance featuring local and touring jazz musicians in an intimate setting.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_eca0d39799a9",
              "venue_id": "venue_mountain_winery",
              "title": "The Temptations & Four Tops",
              "event_time": "Sep 17, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259541",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bbcea4e94793",
              "venue_id": "venue_paramount_theatre",
              "title": "The Bald and the Beautiful Live",
              "event_time": "Sep 17, 2026 7:30 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Ages 18 & Over. A valid Photo ID is required for entry.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/the-bald-and-the-beautiful-live",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c2255d76d732",
              "venue_id": "venue_ivy_room",
              "title": "Defiance + The Insane",
              "event_time": "Thursday Sep 17 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ciderup shows xxvi - HAT TRICKERS + ÖIL! + MOKOSOS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180700",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_66de6c09adcd",
              "venue_id": "venue_mountain_winery",
              "title": "The Temptations & The Four Tops",
              "event_time": "Sep 17 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-17T17:30:00",
              "event_date": "2026-09-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Two of the greatest vocal groups in Motown history share the stage for a night of legendary soul and R&B hits.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Temptations",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-18": {
          "date": "2026-09-18",
          "updated_at": "2026-05-18T15:21:07.854162Z",
          "events": [
            {
              "event_id": "evt_d8579110dcba",
              "venue_id": "venue_castro_theater",
              "title": "THE GROWLERS",
              "event_time": "September 18, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Sep 18 Growlers a/a $64+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-growlers-260918",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_77957106b5bd",
              "venue_id": "venue_regency_ballroom",
              "title": "Citizen - Halcyon Blues Tour",
              "event_time": "Sep 18 6pm/7pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Goldenvoice Presents Citizen on their Halcyon Blues tour, with Hotline TNT, Anxious, and Cryogeyser.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for pricing",
              "url": "http://www.foopee.com/by-band.0.html#Citizen",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-09T11:59:15.073609Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-11T12:13:46.781052Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3283b83179ca",
              "venue_id": "venue_mitchell_park_center",
              "title": "Splash",
              "event_time": "2026-09-18T20:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Jazz performance",
              "event_types": [],
              "price_info": "$20",
              "url": "https://markweiss86.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-05-11T16:56:01.262503Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a12bb4df404d",
              "venue_id": "venue_august_hall",
              "title": "Exploited, Total Chaos, Dwarves",
              "event_time": "Sep 18 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$33.65 7pm/8pm @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33.65",
              "url": "http://www.foopee.com/by-band.1.html#Exploited",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_20d447853ef6",
              "venue_id": "venue_rickshaw_stop",
              "title": "SWEEPING PROMISES",
              "event_time": "Fri Sep 18 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Post-punk duo Sweeping Promises delivers an energetic live performance featuring their signature lo-fi production style.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20.00-$25.00",
              "url": "https://wl.seetickets.us/event/sweeping-promises/691105?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-14T10:46:20.204876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b50aa44c2d43",
              "venue_id": "venue_ivy_room",
              "title": "Plan 9, Highway Ghosts, Suburban Robots",
              "event_time": "Sep 18 8:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A night of tribute performances featuring Plan 9 playing the music of the Misfits and Highway Ghosts covering The Gun Club.",
              "event_types": [],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/183707",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-15T12:45:06.254655Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-15T22:35:47.542571Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_490d92532476",
              "venue_id": "venue_san_jose_civic",
              "title": "Killers of Kill Tony",
              "event_time": "2026-09-18T19:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Stand-up comedy featuring David Lucas, Hans Kim, Martin Phillips, and Dedrick Flynn from the Kill Tony podcast.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets from $48",
              "url": "https://www.axs.com/events/543224/killers-of-kill-tony-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_8bde61e5cfe9",
              "venue_id": "venue_paramount_theatre",
              "title": "Mojo Brookzz: Outta Pocket Tour",
              "event_time": "Sep 18, 2026 7:30 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "All ages require a ticket; no children under 2 years.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/mojo-brookzz-outta-pocket-tour",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-19": {
          "date": "2026-09-19",
          "updated_at": "2026-05-18T15:50:41.230906Z",
          "events": [
            {
              "event_id": "evt_68ab9f6cc9ec",
              "venue_id": "venue_frost_amphitheater",
              "title": "Brandi Carlile, Cmat",
              "event_time": "Saturday, September 19 at 6:00 PM",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Folk music performance presented by Stanford Live and Goldenvoice",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-frost/brandi-carlile/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-03-24T06:10:30.038111Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_frost_amphitheater"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cda645b904bb",
              "venue_id": "venue_castro_theater",
              "title": "THE GROWLERS",
              "event_time": "September 19, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Sep 19 Growlers a/a $64+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-growlers-260919",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_765feec8b333",
              "venue_id": "venue_bill_graham_civic",
              "title": "STEVE AOKI",
              "event_time": "September 19, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Show Rescheduled from 2/20/26\nDIM MAK 30 TOUR - TIMMY TRUMPET\nRIOT TEN\nHIGHSOCIETY",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/steve-aoki-260220",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a6808d9ee0f",
              "venue_id": "venue_the_freight__salvage",
              "title": "T SISTERS",
              "event_time": "2026-09-19T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "a/a $39/$44 ($24 with student id) 7pm/8pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15932/15933",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-06T05:55:19.571914Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19246116fe8e",
              "venue_id": "venue_rickshaw_stop",
              "title": "BE YOUR OWN PET",
              "event_time": "Sat Sep 19 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "The reunited garage rock band brings its high-octane energy and punk-influenced tracks to the San Francisco stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.50-$30.00",
              "url": "https://wl.seetickets.us/event/be-your-own-pet/690464?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-14T10:46:20.204876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8fd52e29315d",
              "venue_id": "venue_masonic_hall",
              "title": "Jack Harlow: Monica Tour",
              "event_time": "2026-09-19",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Jack Harlow Monica Tour",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_88c15eb882e9",
              "venue_id": "venue_the_ritz",
              "title": "Elder & Blackwater Holylight",
              "event_time": "2026-09-19T19:00:50-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-19T19:00:50",
              "event_date": "2026-09-19",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "ELDER\nBLACKWATER HOLYLIGHT\n\n \n\nSARTURDAY SEPTEMBER 19, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 Advance – $35 Day-of-Show",
              "url": "https://www.ticketweb.com/event/elder-blackwater-holylight-the-ritz-tickets/14893923",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-15T23:30:40.559805Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-17T14:02:20.813805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a4c740286bca",
              "venue_id": "venue_mountain_winery",
              "title": "Jeff Dunham: Artificial Intelligence",
              "event_time": "Sep 19, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1382158",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_be939d592279",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Godsmack: The Rise of Rock Tour",
              "event_time": "Sat Sep 19, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Godsmack headlines this 2026 world tour stop, delivering a hard-hitting performance of their signature rock anthems.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/godsmack-the-rise-of-rock-world-mountain-view-california-09-19-2026/event/1C006434EBFBEE0C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a65c43a7c4ea",
              "venue_id": "venue_mountain_winery",
              "title": "Jeff Dunham",
              "event_time": "Sep 19 6pm/8pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Renowned ventriloquist and comedian Jeff Dunham brings his beloved cast of characters for a night of laughter and live comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jeff_Dunham",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4d765153fa71",
              "venue_id": "venue_the_warfield",
              "title": "Arlo Parks",
              "event_time": "Sep 19 2026 7pm/8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Arlo Parks",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Arlo_Parks",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_40b7d1e563c2",
              "venue_id": "venue_levis_stadium",
              "title": "SAN JOSE EARTHQUAKES VS. LAFC",
              "event_time": "Sep 19, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The San Jose Earthquakes take on LAFC in a Major League Soccer rivalry match hosted at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/san-jose-earthquakes-vs-lafc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cb714722cf89",
              "venue_id": "venue_rhythmix",
              "title": "Native Boogie and Beats",
              "event_time": "Saturday, September 19, 2026 12:00 pm to 2:00 pm",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Grab your chairs and blankets and head outdoors to celebrate the diverse cultural traditions of our community with live theater, music and dance from around the globe at Rhythmix in the Parks!\n\n \n\nFeel the richness and soul of traditional Powwow Dancing and Drumming with Bay Area-based Native Boogie and Beats. Learn the deep cultural roots of these songs and dances throughout the interactive performance.",
              "event_types": [
                "live_music",
                "theater",
                "dance",
                "community"
              ],
              "price_info": "$ FREE | Please RSVP",
              "url": "https://www.rhythmix.org/events/native-boogie-and-beats/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-05-18T15:50:35.869963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-20": {
          "date": "2026-09-20",
          "updated_at": "2026-05-18T15:48:30.074083Z",
          "events": [
            {
              "event_id": "evt_a72560afc3f1",
              "venue_id": "venue_the_independent",
              "title": "DECA JOINS",
              "event_time": "9.20 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Taiwanese indie rock band Deca Joins performs their atmospheric and melancholic tracks for a mesmerizing live experience.",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/deca-joins/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2bb08c90ba7e",
              "venue_id": "venue_temescal_arts_center",
              "title": "Dabke With Us!",
              "event_time": "2026-09-20T11:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-20T11:00:00",
              "event_date": "2026-09-20",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Free Palestinian folk dance workshop at Temescal Arts Center, taught by TAC Resident Artist Wael Buhaissy and members of Palestinian Dabke: Aljuthoor of the Arab Shatat. No experience necessary.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c1de9ce61cf7",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "2026-09-20T19:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Open participation improvisation workshop hosted by Jacob Felix Heule for musicians and dancers of all levels; listen and/or play. Doors at 7, over by 10.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5d8b5a2ff1c1",
              "venue_id": "venue_mountain_winery",
              "title": "America",
              "event_time": "Sep 20, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Happy Trails Tour 2026",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1344815",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_97ad5c45dfce",
              "venue_id": "venue_great_american_music_hall",
              "title": "Meltt",
              "event_time": "Sep 20 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $22/$25/$27 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22/$25/$27",
              "url": "http://www.foopee.com/by-band.2.html#Meltt",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_82b91f4ace17",
              "venue_id": "venue_mountain_winery",
              "title": "America",
              "event_time": "Sep 20 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-20T17:30:00",
              "event_date": "2026-09-20",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Classic rock band America performs their folk-rock hits and signature vocal harmonies in this historic music setting.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#America",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3727825e849f",
              "venue_id": "venue_levis_stadium",
              "title": "MIAMI DOLPHINS VS. SAN FRANCISCO 49ERS",
              "event_time": "Sep 20, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The San Francisco 49ers defend their home turf against the Miami Dolphins in this NFL showdown.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/dolphins-vs-49ers-week-2-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-21": {
          "date": "2026-09-21",
          "updated_at": "2026-05-18T15:21:07.859994Z",
          "events": [
            {
              "event_id": "evt_7c8455582791",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Jack Harlow",
              "event_time": "Sep 21 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.1.html#Jack_Harlow",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_37359efdf2a2",
              "venue_id": "venue_rickshaw_stop",
              "title": "Friko",
              "event_time": "Sep 21 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Rising indie rock band Friko performs a live set showcasing their emotive songwriting and dynamic musical arrangements.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$29 7pm/8pm",
              "url": "http://www.foopee.com/by-band.1.html#Friko",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fee79c3372e5",
              "venue_id": "venue_the_chapel",
              "title": "Marlon Magnee",
              "event_time": "Sep 21 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Marlon_Magnee",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_799baa28507e",
              "venue_id": "venue_the_independent",
              "title": "SONDRE LERCHE",
              "event_time": "9.21 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "ACROBATS '26 US TOUR",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/sondre-lerche/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9c4b5756d027",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 21 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690190?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1c9c6fa503b9",
              "venue_id": "venue_the_warfield",
              "title": "Peter Hook & The Light",
              "event_time": "Sep 21 2026 7pm/8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Peter Hook & The Light",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Peter_Hook___The_Light",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-22": {
          "date": "2026-09-22",
          "updated_at": "2026-05-18T14:49:07.374409Z",
          "events": [
            {
              "event_id": "evt_2cdcf6aeb4ab",
              "venue_id": "venue_the_chapel",
              "title": "Temples: The BLISS Tour",
              "event_time": "Tue Sep 22 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Psych Rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.00-$40.00",
              "url": "https://wl.seetickets.us/event/temples-the-bliss-tour/687358?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-18T07:10:52.541367Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ed18f1292eb",
              "venue_id": "venue_castro_theater",
              "title": "MELANIE C",
              "event_time": "September 22, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Melanie C World Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/melanie-c-260922",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2b417e9d68b4",
              "venue_id": "venue_masonic_hall",
              "title": "Chance The Rapper: Coloring Book Tour",
              "event_time": "2026-09-22",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Chance The Rapper Coloring Book 10 Year Anniversary Tour",
              "event_types": [],
              "price_info": "",
              "url": "https://sfmasonic.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_08696f01e77f",
              "venue_id": "venue_mountain_winery",
              "title": "Peter Hook & The Light",
              "event_time": "Sep 22, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-22T19:30:00",
              "event_date": "2026-09-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "North American Tour 2026 | Performing ‘Get Ready’ live and in full plus a selection of Joy Division and New Order’s Greatest Hits",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1106343",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_31869af6bea5",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 22 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-22T19:00:00",
              "event_date": "2026-09-22",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690215?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_09d54555efdc",
              "venue_id": "venue_act_theater",
              "title": "ALFRED HITCHCOCK'S NORTH BY NORTHWEST",
              "event_time": "SEP 22–OCT 18, 2026",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "This stage adaptation brings the classic cinematic thriller to life with suspenseful storytelling and creative staging at ACT Theater.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/2026-27-season/north-by-northwest",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01e27510d2d1",
              "venue_id": "venue_mountain_winery",
              "title": "Peter Hook & The Light",
              "event_time": "Sep 22 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-22T17:30:00",
              "event_date": "2026-09-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Peter Hook & The Light celebrate the legacy of Joy Division and New Order with a performance of post-punk classics.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Peter_Hook___The_Light",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-23": {
          "date": "2026-09-23",
          "updated_at": "2026-05-18T15:41:22.164693Z",
          "events": [
            {
              "event_id": "evt_92bb31397927",
              "venue_id": "venue_the_chapel",
              "title": "Temples: The BLISS Tour",
              "event_time": "Wed Sep 23 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Psych Rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.00-$40.00",
              "url": "https://wl.seetickets.us/event/Temples-The-BLISS-Tour/687377?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-18T07:10:52.541367Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-18T09:12:00.066474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b3837d52b61",
              "venue_id": "venue_the_ritz",
              "title": "Wednesday 13",
              "event_time": "2026-09-23T18:30:01-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-23T18:30:01",
              "event_date": "2026-09-23",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Horror punk icon Wednesday 13 brings a theatrical rock performance to the Ivy Room with special guests Above Snakes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance – $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/wednesday-13-above-snakes-the-ritz-tickets/14887063",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-13T12:37:49.809879Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_723703d40303",
              "venue_id": "venue_masonic_hall",
              "title": "Boz Scaggs",
              "event_time": "Sep 23 7pm/8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Legendary singer and guitarist Boz Scaggs performs his sophisticated blend of rock, soul, and blues at this historic San Francisco venue.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$64+",
              "url": "http://www.foopee.com/by-band.0.html#Boz_Scaggs",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d3ee1fa97442",
              "venue_id": "venue_the_independent",
              "title": "GHOSTLY KISSES",
              "event_time": "9.23 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "GHOSTLY KISSES - NORTH AMERICA TOUR 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/ghostly-kisses/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cb8ab1c860f4",
              "venue_id": "venue_mountain_winery",
              "title": "José González",
              "event_time": "Sep 23, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Against The Dying Of The Light Tour",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1384687",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7079418b7e1e",
              "venue_id": "venue_yoshis",
              "title": "Lydia Pense & Cold Blood",
              "event_time": "WED 9.23 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "PIONEERS OF THE BAY AREA'S BRAND OF FUNK/SOUL AND R&B",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$28 - $49",
              "url": "https://yoshis.com/events/buy-tickets/cold-blood/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4967d94e34d6",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Cola & Artificial Go",
              "event_time": "Wednesday September 23 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  ALL AGES; post-punk; post-punk chamber pop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20260923.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_975ac4e49441",
              "venue_id": "venue_great_american_music_hall",
              "title": "Frights, Archer Oh",
              "event_time": "Sep 23 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $33.50/$38 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33.50/$38",
              "url": "http://www.foopee.com/by-band.1.html#Frights",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-24": {
          "date": "2026-09-24",
          "updated_at": "2026-05-18T15:44:00.530894Z",
          "events": [
            {
              "event_id": "evt_d77123b5dae0",
              "venue_id": "venue_masonic_hall",
              "title": "Stephen Wilson Jr.: Gary The Torch Tour",
              "event_time": "2026-09-24T19:30:00",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "This concert showcases the soulful sounds of Stephen Wilson Jr. and the folk-rock harmonies of The Lone Bellow. Kashus Culpepper joins the bill for an evening of Americana and roots music.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Price varies",
              "url": "http://www.foopee.com/by-band.3.html#Stephen_Wilson_Jr_",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-13T22:39:47.231083Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-16T08:20:26.688992Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f08447ea5d0f",
              "venue_id": "venue_bill_graham_civic",
              "title": "JACK WHITE",
              "event_time": "September 24, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "LIVE 105 presents\nJACK WHITE LIVE 2026",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/jack-white-260924",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_689d3a7eceac",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Mötley Crüe: Carnival of Sins",
              "event_time": "2026-09-24T17:30:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-24T17:30:00",
              "event_date": "2026-09-24",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Mötley Crüe brings their legendary \"Carnival Of Sins\" production back to the stage at Shoreline Amphitheatre for a night of heavy metal mayhem. The show promises the high-octane energy and theatricality the band is famous for.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-return-of-the-carnival-of-mountain-view-california-09-24-2026/event/1C00636ED2F8F19C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-18T08:24:47.395861Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-18T09:17:31.621254Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_494ef7b1e4dd",
              "venue_id": "venue_bimbos_365",
              "title": "Elder Island",
              "event_time": "Sep 24 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents HELLO BABY OKAY | 21 and up",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.1.html#Elder_Island",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-05-07T14:14:59.161966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6726b55d90e9",
              "venue_id": "venue_bazaar_cafe",
              "title": "Bazaar Cafe Open Mic",
              "event_time": "2026-09-24T19:00:00",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "All-originals open mic held every Thursday evening at Bazaar Cafe. Performances are all-acoustic; sign-up details are handled by the cafe.",
              "event_types": [],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/bazaar-cafe-open-mic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-05-15T14:37:44.626280Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_05f40f55d56c",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-24T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-24",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b9b55a77d468",
              "venue_id": "venue_mountain_winery",
              "title": "Starship & ASIA",
              "event_time": "Sep 24, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389167",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6dd3cb877916",
              "venue_id": "venue_yoshis",
              "title": "Wild Night: Van Morrison Tribute",
              "event_time": "THU 9.24 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SOULFUL MELODIES, SMOOTH RHYTHMS, AND ICONIC HITS",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$30 - $69",
              "url": "https://yoshis.com/events/buy-tickets/wild-night-a-van-morrison-tribute/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef359ec3e24b",
              "venue_id": "venue_mountain_winery",
              "title": "Starship & Asia",
              "event_time": "Sep 24 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-24T17:30:00",
              "event_date": "2026-09-24",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "A double bill of classic rock featuring hit-making bands Starship and Asia performing their most famous arena anthems.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Starship",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8e821f4517f",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Brincos Dieras",
              "event_time": "September 24, 2026",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Popular Mexican comedian and clown Brincos Dieras brings his unique brand of adult-oriented humor and high-energy interaction to the Fox Theater. The show features his signature makeup and irreverent comedy style for a night of laughter.",
              "event_types": [
                "comedy"
              ],
              "price_info": "GET TICKETS",
              "url": "https://foxrwc.showare.com/eventperformances.asp?evt=275",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-25": {
          "date": "2026-09-25",
          "updated_at": "2026-05-18T15:58:43.888384Z",
          "events": [
            {
              "event_id": "evt_4ac692c5eb48",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Kruder & Dorfmeister",
              "event_time": "Sep 25 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "The influential Austrian duo Kruder & Dorfmeister performs their celebrated mix of downtempo, trip-hop, and atmospheric electronic beats.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.1.html#Kruder___Dorfmeister",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f3f9b653074",
              "venue_id": "venue_zellerbach",
              "title": "Oscar© by The Australian Ballet",
              "event_time": "2026-09-25T19:30:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "Berkeley Symphony Orchestra performs the live score for the North American premiere of Christopher Wheeldon's 'Oscar'. This full-length ballet, performed by The Australian Ballet, explores the life and literary legacy of Oscar Wilde, blending his biography with characters from his most famous works.",
              "event_types": [
                "live_music",
                "classical",
                "dance",
                "theater"
              ],
              "price_info": "Subscription and single tickets available.",
              "url": "https://calperformances.org/events/the-australian-ballet-oscar-by-christopher-wheeldon/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-04-30T11:55:39.113695Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-04-30T12:03:35.821869Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_zellerbach|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_75e1597d847a",
              "venue_id": "venue_cafe_borrone",
              "title": "Clint Baker & The All Stars",
              "event_time": "2026-09-25T18:00:00",
              "venue_name": "Cafe Borrone",
              "event_start": "2026-09-25T18:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1010 El Camino Real, Menlo Park, CA 94025",
              "description": "Live music performance",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.cafeborrone.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_borrone",
                  "source_name": "Cafe Borrone",
                  "fetched_at": "2026-05-16T10:32:43.331718Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_cafe_borrone|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_64fc02e9b8a0",
              "venue_id": "venue_tommy_ts",
              "title": "JOEY GATTO",
              "event_time": "2026-09-25 2026-09-26",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-25",
              "run_id": "run_e2c3a7865e8a",
              "run_label": "JOEY GATTO, Sep 25 – Sep 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a711014f027f",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-25T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-25",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a80d9b796042",
              "venue_id": "venue_yoshis",
              "title": "Syleena Johnson",
              "event_time": "FRI 9.25 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GRAMMY-NOMINATED R&B/SOUL SONGSTRESS",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$45 - $85",
              "url": "https://yoshis.com/events/buy-tickets/syleen-johnson/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6eda2feef276",
              "venue_id": "venue_cafe_du_nord",
              "title": "Slow Magic",
              "event_time": "09/25/2026 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "pop EDM, future bass",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "21+",
              "url": "https://www.ticketweb.com/event/slow-magic-cafe-du-nord-tickets/14773493",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_715a6564f1a0",
              "venue_id": "venue_dna_lounge",
              "title": "Brut SF Folsom Friday",
              "event_time": "09/25/2026 9pm-3am",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "house, tech house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$50-70 pre / $85+ | 21+",
              "url": "https://www.dnalounge.com/calendar/2026/09-25.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-18T15:58:15.170180Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-26": {
          "date": "2026-09-26",
          "updated_at": "2026-05-18T16:00:41.703064Z",
          "events": [
            {
              "event_id": "evt_7e65daff6eee",
              "venue_id": "venue_orpheum_theater",
              "title": "Bluey's Big Play",
              "event_time": "Sat, Sep 26 - Sun, Sep 27, 2026",
              "venue_name": "Orpheum Theater",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This live stage show brings the popular children's television series to life with impressive puppetry and an original story featuring the Heeler family. It offers an interactive and fun theatrical experience designed for young fans and their families.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy tickets",
              "url": "https://broadwaysf.com/events/blueys-big-play/orpheum-theatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theater",
                  "fetched_at": "2026-04-11T10:43:41.294540Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-13T07:47:46.039722Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9504eede2d7c",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Sibelius, Higdon, and Bartók",
              "event_time": "2026-09-26T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "The 40th anniversary season opens with Sibelius's The Oceanides, the Northern California premiere of Jennifer Higdon's Cello Concerto, and Bartók's Concerto for Orchestra.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Single tickets $50-$110; Subscriptions available",
              "url": "https://www.californiasymphony.org/event/sibelius-higdon-and-bartok/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-05-07T13:08:53.489767Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-07T13:52:27.009707Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa13fa8b4744",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-26",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-26",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_29d654179752",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show (Previews)",
              "event_time": "2026-09-26 2026-09-27T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Created by Erika Chong Shuch and Charles Mee. An intimate examination of an older couple's unexpected romance unfolding against a maelstrom of memory and movement.",
              "event_types": [],
              "price_info": "$40 - $80; $15 MAD tickets",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-09-26",
              "run_id": "run_3a70fe81632a",
              "run_label": "The Fall Show (Previews), Sep 26 – Oct 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9fd99f3f5668",
              "venue_id": "venue_zellerbach",
              "title": "The Australian Ballet: Oscar",
              "event_time": "2026-09-26T13:00:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-09-26T13:00:00",
              "event_date": "2026-09-26",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "The North American premiere of Christopher Wheeldon's full-length narrative ballet inspired by the life and work of Oscar Wilde. The production features a live performance of Joby Talbot's orchestral score by the Berkeley Symphony.",
              "event_types": [
                "live_music",
                "classical",
                "dance"
              ],
              "price_info": "Tickets start at $60",
              "url": "https://calperformances.org/performances/2026-27/the-australian-ballet-oscar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-15T10:51:21.101832Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-05-16T10:38:20.555104Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_zellerbach|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5b532879a727",
              "venue_id": "venue_tommy_ts",
              "title": "JOEY GATTO",
              "event_time": "2026-09-26 2026-09-26",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-05-17T15:01:53.358653Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-26",
              "run_id": "run_e2c3a7865e8a",
              "run_label": "JOEY GATTO, Sep 25 – Sep 26",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_89bda39acf29",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-26T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-26",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4a1b2a888d8b",
              "venue_id": "venue_the_independent",
              "title": "WEST 22ND",
              "event_time": "9.26 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "PLACES TO BE TOUR",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "ON SALE 5.21",
              "url": "https://www.theindependentsf.com/tm-event/west-22nd/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_066b0b3220ea",
              "venue_id": "venue_mountain_winery",
              "title": "The Concert: A Tribute to ABBA",
              "event_time": "Sep 26, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "An Evening With",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1261101",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_969e065a6b66",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Fantastic Negrito with the SF Symphony",
              "event_time": "Sep 26 2026 7:30pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "a/a 7:30pm",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Fantastic_Negrito_with_the_SF_Symphony",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c1e5dedd82bc",
              "venue_id": "venue_mountain_winery",
              "title": "Tribute Concert",
              "event_time": "Sep 26 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-26T17:30:00",
              "event_date": "2026-09-26",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This special tribute performance honors the music and legacy of a legendary artist at this intimate San Francisco venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Concert",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3586279bce3d",
              "venue_id": "venue_the_warfield",
              "title": "Sugar",
              "event_time": "Sep 26 2026 7pm/8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Sugar, J. Robbins",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$89.76",
              "url": "http://www.foopee.com/by-band.3.html#Sugar",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-27": {
          "date": "2026-09-27",
          "updated_at": "2026-05-18T16:00:41.705809Z",
          "events": [
            {
              "event_id": "evt_603ea430d1b9",
              "venue_id": "venue_golden_gate_theater",
              "title": "Art Garfunkel",
              "event_time": "2026-09-27T19:30:00",
              "venue_name": "Golden Gate Theater",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "Legendary singer and eight-time Grammy Award winner Art Garfunkel brings his 'What a Wonderful World' tour to San Francisco for a night of iconic music and storytelling.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy tickets",
              "url": "https://us.atgtickets.com/venues/golden-gate-theatre/whats-on/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theater",
                  "fetched_at": "2026-04-10T23:56:08.475546Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_60d4a83c96ca",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Sibelius, Higdon, and Bartók",
              "event_time": "2026-09-27T16:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-27T16:00:00",
              "event_date": "2026-09-27",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Sunday matinee performance of the season opener featuring cellist Julian Schwarz.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Single tickets: $50–$110; Students: $25",
              "url": "https://www.californiasymphony.org/concerts/sibelius-higdon-and-bartok/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-05-11T11:34:28.381703Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4f47fc1fbfed",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-27",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-27",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_01e05b276f55",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show (Previews)",
              "event_time": "2026-09-27 2026-09-27T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-09-27T17:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Created by Erika Chong Shuch and Charles Mee. An intimate examination of an older couple's unexpected romance unfolding against a maelstrom of memory and movement.",
              "event_types": [],
              "price_info": "$40 - $80; $15 MAD tickets",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-09-27",
              "run_id": "run_3a70fe81632a",
              "run_label": "The Fall Show (Previews), Sep 26 – Oct 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_071b8ac6ffbf",
              "venue_id": "venue_zellerbach",
              "title": "The Australian Ballet: Oscar",
              "event_time": "2026-09-27T15:00:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-09-27T15:00:00",
              "event_date": "2026-09-27",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "The North American premiere of Christopher Wheeldon's full-length narrative ballet inspired by the life and work of Oscar Wilde. The production features a live performance of Joby Talbot's orchestral score by the Berkeley Symphony.",
              "event_types": [
                "live_music",
                "classical",
                "dance"
              ],
              "price_info": "Tickets start at $60",
              "url": "https://calperformances.org/performances/2026-27/the-australian-ballet-oscar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-15T10:51:21.101832Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-05-16T10:38:20.555104Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_zellerbach|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d608dd5e06ba",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-27T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-27",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cace10a19560",
              "venue_id": "venue_hertz_hall",
              "title": "Lester Lynch & Kevin Korth",
              "event_time": "2026-09-27T15:00:00",
              "venue_name": "Hertz Hall",
              "event_start": "2026-09-27T15:00:00",
              "event_date": "2026-09-27",
              "venue_address": "UC Berkeley Campus, Berkeley, CA 94720",
              "description": "Dramatic baritone Lester Lynch presents a recital exploring themes of love, loss, and mortality with works by Schubert, Brahms, and Barber.",
              "event_types": [],
              "price_info": "$42.00 - $68.00",
              "url": "https://calperformances.org/performances/2026-27/recital/lester-lynch-baritone/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hertz_hall|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b145fad795ab",
              "venue_id": "venue_mountain_winery",
              "title": "A.J. Croce Presents CROCE PLAYS CROCE",
              "event_time": "Sep 27, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Leo Kottke",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1345380",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_be5272009d47",
              "venue_id": "venue_yoshis",
              "title": "Isaiah Collier",
              "event_time": "SUN 9.27 7:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "COMPOSER, ARRANGER, EDUCATOR, AND SELF-DESCRIBED “SONIC SCIENTIST\"",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$39 - $79",
              "url": "https://yoshis.com/events/buy-tickets/isaiah-collier/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_15af02fedc2e",
              "venue_id": "venue_orpheum_theater",
              "title": "BLUEY'S BIG PLAY",
              "event_time": "Sep 27, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Join Bluey and Bingo in this brand-new theatrical adaptation featuring puppets and an original story for the whole family.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/blueys-big-play-27-september-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-05-18T13:44:20.517559Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14794e1018b0",
              "venue_id": "venue_mountain_winery",
              "title": "Croce Plays Croce & Leo Kottke",
              "event_time": "Sep 27 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-27T17:30:00",
              "event_date": "2026-09-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "A.J. Croce pays tribute to his father Jim Croce's legacy, joined by the fingerstyle guitar mastery of Leo Kottke.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Croce_Plays_Croce",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d01b3f866708",
              "venue_id": "venue_levis_stadium",
              "title": "ARIZONA CARDINALS VS. SAN FRANCISCO 49ERS",
              "event_time": "Sep 27, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Division rivals meet at Levi's Stadium as the San Francisco 49ers host the Arizona Cardinals.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/cardinals-vs-49ers-week-3-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-28": {
          "date": "2026-09-28",
          "updated_at": "2026-05-18T16:00:41.708389Z",
          "events": [
            {
              "event_id": "evt_0da4450e9efb",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Rock Orchestra by Candlelight",
              "event_time": "Mon, Sep 28, 2026",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-09-28",
              "event_date": "2026-09-28",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "A chamber orchestra performs iconic rock and metal anthems in an atmospheric setting illuminated by thousands of candles. This unique concert at the Orpheum Theatre reimagines hits from bands like Metallica, AC/DC, and Pink Floyd.",
              "event_types": [
                "live_music",
                "rock",
                "classical"
              ],
              "price_info": "More info",
              "url": "https://us.atgtickets.com/events/rock-orchestra/war-memorial-opera-house/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-16T09:15:27.725138Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-16T09:55:49.860603Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_65ff4c34a0ad",
              "venue_id": "venue_castro_theater",
              "title": "ALDOUS HARDING",
              "event_time": "September 28, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "$60-$41 7pm/8pm #",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/aldous-harding-260928",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bae3a43265bc",
              "venue_id": "venue_bing_concert_hall",
              "title": "An Intimate Evening With Molly Tuttle",
              "event_time": "09/28/2026 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-09-28T19:30:00",
              "event_date": "2026-09-28",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/molly-tuttle/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_feff30902036",
              "venue_id": "venue_toms_place",
              "title": "Devin Gray (perc) and Lorin Benedict (voice)",
              "event_time": "mon sep 28, 2026 8:00 PM",
              "venue_name": "Tom's Place",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "3133 Deakin St, Berkeley",
              "description": "",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "http://www.bayimproviser.com/EventView.aspx?e=xxxxx",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_toms_place",
                  "source_name": "Tom's Place",
                  "fetched_at": "2026-05-17T10:15:54.593453Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_toms_place|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4166be710576",
              "venue_id": "venue_yoshis",
              "title": "Fred Wesley's New JBs & Martha High",
              "event_time": "MON 9.28 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-28T19:30:00",
              "event_date": "2026-09-28",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "POWER-PACKED SHOW FROM THOSE PLAYED AND SANG WITH THE GODFATHER OF SOUL, JAMES BROWN",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$44 - $89",
              "url": "https://yoshis.com/events/buy-tickets/martha-high-the-funky-divas-w-fred-wesley-and-the-new-jbs/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ed49e99aa415",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 28 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690191?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2661846d37c2",
              "venue_id": "venue_masonic_hall",
              "title": "Social Distortion, Descendants, Chats",
              "event_time": "Sep 28 7:30pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-28T19:30:00",
              "event_date": "2026-09-28",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Distortion, Descendants, Chats",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$75.75",
              "url": "http://www.foopee.com/by-band.3.html#Social_Distortion",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-29": {
          "date": "2026-09-29",
          "updated_at": "2026-05-18T14:46:03.465187Z",
          "events": [
            {
              "event_id": "evt_3044a49968c8",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Social Distortion, Descendants, Chats",
              "event_time": "Sep 29 2026 7pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-29T19:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Born To Kill World Tour - Descendents The Chats",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$78.60",
              "url": "http://www.foopee.com/by-band.3.html#Social_Distortion",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30b512cdf72d",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-29",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-29",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e7e06f841a90",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 29 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-29T19:00:00",
              "event_date": "2026-09-29",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690216?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-09-30": {
          "date": "2026-09-30",
          "updated_at": "2026-05-18T15:43:10.154550Z",
          "events": [
            {
              "event_id": "evt_dc522e642355",
              "venue_id": "venue_greek_theatre",
              "title": "Jack Johnson, G. Love",
              "event_time": "September 30, 2026 6:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-30T18:30:00",
              "event_date": "2026-09-30",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Two Nights!\nSURFILMUSIC Tour 2026 - G. Love",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/jack-johnson-260930",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e297a998cc59",
              "venue_id": "venue_the_independent",
              "title": "CHASING ABBEY",
              "event_time": "9.30 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "The Irish dance-pop trio Chasing Abbey brings their catchy hooks and high-energy performance to the stage.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/chasing-abbey/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5998e3594fdf",
              "venue_id": "venue_the_chapel",
              "title": "Failure: Rising Skyline",
              "event_time": "Wed Sep 30 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Supporting Talent: quannnic - Alternative",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.00-$235.00",
              "url": "https://wl.seetickets.us/event/failure-rising-skyline-2026/688890?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-25T23:00:07.126857Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fae8a5cf6381",
              "venue_id": "venue_bimbos_365",
              "title": "Emei",
              "event_time": "Sep 30 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Emei",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3fa8f65d10b9",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-30",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-30",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a6e2874911a3",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show (Previews)",
              "event_time": "2026-09-30 2026-09-27T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Created by Erika Chong Shuch and Charles Mee. An intimate examination of an older couple's unexpected romance unfolding against a maelstrom of memory and movement.",
              "event_types": [],
              "price_info": "$40 - $80; $15 MAD tickets",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-09-30",
              "run_id": "run_3a70fe81632a",
              "run_label": "The Fall Show (Previews), Sep 26 – Oct 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2ee3846bc883",
              "venue_id": "venue_mountain_winery",
              "title": "Pat Benatar & Neil Giraldo",
              "event_time": "Sep 30, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-30T19:30:00",
              "event_date": "2026-09-30",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1386322",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b3ac640f66c",
              "venue_id": "venue_great_american_music_hall",
              "title": "Beth Orton",
              "event_time": "Sep 30 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $39.50/$45 7pm/8pm (seated)",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39.50/$45",
              "url": "http://www.foopee.com/by-band.0.html#Beth_Orton",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_80c2ab6b089f",
              "venue_id": "venue_mountain_winery",
              "title": "Pat Benatar & Neil Giraldo",
              "event_time": "Sep 30 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-30T17:30:00",
              "event_date": "2026-09-30",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Rock icons Pat Benatar and Neil Giraldo deliver a powerful performance of their legendary hits and rock-and-roll classics.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Pat_Benatar",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b87e224fca76",
              "venue_id": "venue_the_warfield",
              "title": "JPEGMAFIA",
              "event_time": "Sep 30 2026 6:30pm/7:30pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-30T18:30:00",
              "event_date": "2026-09-30",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Jpegmafia, Redveil, Matt Proxy",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jpegmafia",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-01": {
          "date": "2026-10-01",
          "updated_at": "2026-05-18T15:56:57.955410Z",
          "events": [
            {
              "event_id": "evt_2b145ba0b5c3",
              "venue_id": "venue_greek_theatre",
              "title": "Jack Johnson, G. Love",
              "event_time": "October 1, 2026 6:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-01T18:30:00",
              "event_date": "2026-10-01",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Two Nights!\nSURFILMUSIC Tour 2026 - G. Love",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/jack-johnson-251001",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6326b08e5f24",
              "venue_id": "venue_the_uc_theatre",
              "title": "Fruit Bats",
              "event_time": "Oct 01 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Fruit Bats",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$40 + FEES",
              "url": "https://www.theuctheatre.org/shows/fruit-bats-01-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_afa5a35e0f11",
              "venue_id": "venue_august_hall",
              "title": "Don West",
              "event_time": "Oct 1 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$33.65 7pm/8pm",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$33.65",
              "url": "http://www.foopee.com/by-band.1.html#Don_West",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_92f41e2252ec",
              "venue_id": "venue_the_chapel",
              "title": "Soda Blonde",
              "event_time": "Oct 1 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$29.69 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$29.69",
              "url": "http://www.foopee.com/by-band.3.html#Soda_Blonde",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1819c5c94f96",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-01",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-01",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ce2863fcd64",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show (Previews)",
              "event_time": "2026-10-01 2026-09-27T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Created by Erika Chong Shuch and Charles Mee. An intimate examination of an older couple's unexpected romance unfolding against a maelstrom of memory and movement.",
              "event_types": [],
              "price_info": "$40 - $80; $15 MAD tickets",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-01",
              "run_id": "run_3a70fe81632a",
              "run_label": "The Fall Show (Previews), Sep 26 – Oct 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_89a1a9c21117",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Gromkie",
              "event_time": "2026-10-01T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Gromkie live in San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "See website for pricing",
              "url": "https://eventcartel.com/events/gromkie-in-san-francisco-tickets-9012/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_a938b1475c25",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-01T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-01",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_63c983472c37",
              "venue_id": "venue_mountain_winery",
              "title": "Lynyrd Skynyrd",
              "event_time": "Oct 1, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1385233",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1b2c06cfd392",
              "venue_id": "venue_yoshis",
              "title": "Vincent Ingala",
              "event_time": "THU 10.1 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "ONE OF THE MOST EXCITING ARTISTS TO EMERGE THIS PAST DECADE",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$39 - $79",
              "url": "https://yoshis.com/events/buy-tickets/vincent-ingala-3/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_59c5d818d7ea",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "$uicideboy$: Grey Day Tour 2026",
              "event_time": "Thu Oct 1, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "The Grey Day Tour returns in 2026 featuring $uicideboy$ alongside Shoreline Mafia and other special guests for a night of underground hip-hop.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/uicideboy-present-grey-day-tour-2026-mountain-view-california-10-01-2026/event/1C00647BF6B3CC5B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_535e8fd72d29",
              "venue_id": "venue_mountain_winery",
              "title": "Lynyrd Skynyrd",
              "event_time": "Oct 1 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-01T17:30:00",
              "event_date": "2026-10-01",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Southern rock pioneers Lynyrd Skynyrd bring their iconic sound and classic rock anthems to the stage for a high-energy show.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Lynyrd_Skynyrd",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3e35f44da545",
              "venue_id": "venue_thee_stork_club",
              "title": "M.sayyid",
              "event_time": "Oct 1 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "M.sayyid, Jel, Heavy Arts Ensemble, Mars Kumari",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$20 8pm",
              "url": "http://www.foopee.com/by-band.2.html#M_sayyid",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_801beede8b5e",
              "venue_id": "venue_cow_palace",
              "title": "Junior Livestock Show",
              "event_time": "2026-10-01",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Young livestock exhibitors compete in a jackpot-style show, demonstrating their skill in raising and handling livestock.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.cowpalace.com/events/2026/junior-livestock-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-01",
              "run_id": "run_428e549fa2af",
              "run_label": "Junior Livestock Show, Oct 1 – Oct 4",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-02": {
          "date": "2026-10-02",
          "updated_at": "2026-05-18T15:58:43.890632Z",
          "events": [
            {
              "event_id": "evt_c78227f32076",
              "venue_id": "venue_cornerstone",
              "title": "Jesse Barrera, Albert Posis, Gabe Bondoc",
              "event_time": "Oct 2 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $33.96 ($92.67 vip) 7pm/8pm",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$33.96 ($92.67 vip)",
              "url": "http://www.foopee.com/by-band.1.html#Jesse_Barrera",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2b97c025d7e2",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight (October)",
              "event_time": "2026-10-02T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-10-02T10:30:00",
              "event_date": "2026-10-02",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "A monthly gathering for coffee and cookies featuring interviews and discussions with influential theater makers in the Bay Area.",
              "event_types": [
                "community",
                "theater"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/shotgun-spotlight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-08T10:31:58.984559Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-11T10:06:54.321733Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_84a789840628",
              "venue_id": "venue_bill_graham_civic",
              "title": "Madeon: Victory Live",
              "event_time": "October 2, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "synthpop, house, electro house",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "SIGNUP",
              "url": "https://billgrahamcivic.com/events/madeon-261002",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-05-09T12:17:53.363475Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-11T13:45:41.648640Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_314d4441b169",
              "venue_id": "venue_mitchell_park_center",
              "title": "Hannah Marks Quintet",
              "event_time": "2026-10-02T20:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Jazz performance",
              "event_types": [],
              "price_info": "$20",
              "url": "https://markweiss86.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-05-11T16:56:01.262503Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_518000f66542",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-02",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-02",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba91d3a6d00d",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show (Previews)",
              "event_time": "2026-10-02 2026-09-27T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Created by Erika Chong Shuch and Charles Mee. An intimate examination of an older couple's unexpected romance unfolding against a maelstrom of memory and movement.",
              "event_types": [],
              "price_info": "$40 - $80; $15 MAD tickets",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-02",
              "run_id": "run_3a70fe81632a",
              "run_label": "The Fall Show (Previews), Sep 26 – Oct 2",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7d658dbc2703",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Bassem Youssef",
              "event_time": "2026-10-02T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Comedian and satirist Bassem Youssef performs live.",
              "event_types": [
                "comedy"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/bassem-youssef/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_07f2cf3bd61a",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-02T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-02",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4915ec844d93",
              "venue_id": "venue_mountain_winery",
              "title": "Get The Led Out",
              "event_time": "Oct 2, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "A Celebration Of \"The Mighty Zep\"",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259545",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_40d240aa19c4",
              "venue_id": "venue_paramount_theatre",
              "title": "Snarky Puppy",
              "event_time": "Oct 2, 2026 8:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "All ages require a ticket; no children under 2 years.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/snarky-puppy-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-18T10:52:49.411556Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1eca40cfef7b",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "The Hayley Williams Show",
              "event_time": "Fri Oct 2, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Paramore frontwoman Hayley Williams takes the stage for a solo performance showcasing her unique vocal style and artistry.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-hayley-williams-show-mountain-view-california-10-02-2026/event/1C0064A4D17F6796",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0b72a4b419c",
              "venue_id": "venue_kilowatt",
              "title": "Tristen",
              "event_time": "Oct 2 7pm/8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Singer-songwriter Tristen performs an intimate live set at the venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.72",
              "url": "http://www.foopee.com/by-band.3.html#Tristen",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_528b530ed5e3",
              "venue_id": "venue_mountain_winery",
              "title": "Get The Led Out",
              "event_time": "Oct 2 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-02T17:30:00",
              "event_date": "2026-10-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Acclaimed tribute band Get The Led Out meticulously recreates the studio recordings of Led Zeppelin in a live concert experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Get_The_Led_Out",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eab23dc27080",
              "venue_id": "venue_cow_palace",
              "title": "Junior Livestock Show",
              "event_time": "2026-10-02",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Young livestock exhibitors compete in a jackpot-style show, demonstrating their skill in raising and handling livestock.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.cowpalace.com/events/2026/junior-livestock-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-02",
              "run_id": "run_428e549fa2af",
              "run_label": "Junior Livestock Show, Oct 1 – Oct 4",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-03": {
          "date": "2026-10-03",
          "updated_at": "2026-05-18T15:56:57.961753Z",
          "events": [
            {
              "event_id": "evt_18aa3beae020",
              "venue_id": "venue_4_star_theater",
              "title": "LIVE MUSIC: The Sleeves",
              "event_time": "Oct 3, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The Sleeves perform a live set at the 4 Star Theater, bringing their unique musical energy to the venue. This event offers a night of live entertainment from the featured band in a classic theater environment.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-the-sleeves",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_48e90c755ac8",
              "venue_id": "venue_greek_theatre",
              "title": "Jon Batiste",
              "event_time": "Oct 3 2026 8pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a $66.75+ 8pm #",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "http://www.foopee.com/by-band.1.html#Jon_Batiste",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-11T00:22:26.316761Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-11T00:48:26.312249Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d67ab9b48e2e",
              "venue_id": "venue_california_theatre",
              "title": "The New World - Symphony San Jose",
              "event_time": "2026-10-03T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Symphony San Jose opens its 2026/2027 season with Copland’s Billy the Kid Suite, the Bay Area premiere of Jonathan Leshnoff’s Rhapsody on America with pianist Joyce Yang, and Dvořák’s Symphony No. 9 “From the New World.”",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Contact venue for pricing",
              "url": "https://www.symphonysanjose.org/concerts/the-new-world/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-04-11T09:57:53.864931Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-04-12T19:09:10.200571Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_eaa7bcb654c8",
              "venue_id": "venue_the_independent",
              "title": "ROYA",
              "event_time": "10.3 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "The indie rock group Roya performs a live set featuring their signature post-punk and garage-influenced sound.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/roya/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-13T10:32:34.851154Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-13T12:36:31.853883Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_889d2ecb6515",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-03",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-03",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2314a248201b",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show - Opening Night",
              "event_time": "2026-10-03T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "The official opening night of 'The Fall Show', a movement-based exploration of long-lasting love.",
              "event_types": [],
              "price_info": "$40 - $80",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_dfb4a55eb3ef",
              "venue_id": "venue_the_ritz",
              "title": "All Shall Perish",
              "event_time": "2026-10-03T19:00:31-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-10-03T19:00:31",
              "event_date": "2026-10-03",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "ALL SHALL PERISH\nSATURDAY OCTOBER 3, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35 Advance – $40 Day-of-Show",
              "url": "https://www.ticketweb.com/event/all-shall-perish-carnifex-extermination-the-ritz-tickets/14887193",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-15T23:30:40.559805Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-17T14:02:20.813805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96e43fafe5f6",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-03T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-03",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6be1fedca138",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE ROLLING STONES TRIBUTE",
              "event_time": "Saturday, Oct 3 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This rock-and-roll tribute concert celebrates the enduring legacy and massive hits of The Rolling Stones.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-rolling-stones-tribute/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-05-18T12:58:09.980384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dbd2f1f0bea1",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "Oct 3 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#My_Moring_Jacket",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02654f36c1c9",
              "venue_id": "venue_cow_palace",
              "title": "Junior Livestock Show",
              "event_time": "2026-10-03",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Young livestock exhibitors compete in a jackpot-style show, demonstrating their skill in raising and handling livestock.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.cowpalace.com/events/2026/junior-livestock-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-03",
              "run_id": "run_428e549fa2af",
              "run_label": "Junior Livestock Show, Oct 1 – Oct 4",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-04": {
          "date": "2026-10-04",
          "updated_at": "2026-05-18T15:56:57.964588Z",
          "events": [
            {
              "event_id": "evt_b0a01ed373af",
              "venue_id": "venue_masonic_hall",
              "title": "Bilmuri - Kinda Hard Tour",
              "event_time": "Oct 4 2026 7pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Bilmuri and Knuckle Puck team up for a high-energy show blending pop-punk and experimental rock. Expect a dynamic performance with plenty of crowd interaction.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for ticket prices",
              "url": "http://www.foopee.com/by-band.0.html#Bilmuri",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-13T07:12:45.598271Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a2895d5e30fb",
              "venue_id": "venue_the_ritz",
              "title": "HAMMERFALL + EVERGREY + ELVENKING",
              "event_time": "2026-10-04T19:00:23-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-10-04T19:00:23",
              "event_date": "2026-10-04",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "A powerful night of heavy metal featuring the melodic and symphonic sounds of Hammerfall, Evergrey, and Elvenking. This triple-bill offers a showcase of technical mastery and epic storytelling within the power metal genre.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 Advance – $35 Day-of-Show",
              "url": "https://www.ticketweb.com/event/hammerfall-evergrey-elvenking-the-ritz-tickets/14831803",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-11T13:42:22.638273Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0ef5f5b89f46",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Acid Mothers Temple",
              "event_time": "Sunday October 4 2026 7:30PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; Psychedelic rock · space rock; acid rock; alt rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22/$25",
              "url": "http://www.bottomofthehill.com/20261004.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8dd81d23b215",
              "venue_id": "venue_bing_concert_hall",
              "title": "Sounds of California",
              "event_time": "10/04/2026 2:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-10-04T14:30:00",
              "event_date": "2026-10-04",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/sounds-of-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b987646c14a1",
              "venue_id": "venue_the_chapel",
              "title": "Rum Jungle",
              "event_time": "Sun Oct 4 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$35.05 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$23.00-$28.00",
              "url": "https://wl.seetickets.us/event/rum-jungle/689221?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-13T10:22:43.984937Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9f3303f114b1",
              "venue_id": "venue_brick_and_mortar",
              "title": "Hotel Fictiion",
              "event_time": "Oct 4 7pm/8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "$23.97 (under 21 plus 5) 7pm/8pm ^",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$23.97 (under 21 plus $5)",
              "url": "http://www.foopee.com/by-band.1.html#Hotel_Fictiion",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ddbd9d3b5963",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-04",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-04",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a698945f8aef",
              "venue_id": "venue_stay_gold_deli",
              "title": "Drunken Film Fest Oakland",
              "event_time": "2026-10-04",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "A week-long film festival featuring local and international films, with screenings hosted at Stay Gold Deli.",
              "event_types": [],
              "price_info": "$5 - $20",
              "url": "https://filmfreeway.com/DrunkenFilmFestOakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-15T23:29:51.094583Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-10-04",
              "run_id": "run_3f7e4ca55d78",
              "run_label": "Drunken Film Fest Oakland, Oct 4 – Oct 9",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c21df357c6e",
              "venue_id": "venue_the_uc_theatre",
              "title": "The Green - TITLES Tour 2026",
              "event_time": "Oct 04 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Green, Johnny Suite",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS $32.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/the-green-04-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-17T10:24:27.652407Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-17T14:02:20.813805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6c1ae966b42b",
              "venue_id": "venue_san_jose_civic",
              "title": "Gaurav Kapoor",
              "event_time": "2026-10-04T17:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-04T17:00:00",
              "event_date": "2026-10-04",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Popular Indian stand-up comedian Gaurav Kapoor performs his latest set.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets from $62",
              "url": "https://www.axs.com/events/543225/gaurav-kapoor-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3c9cbc9c99fb",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-04T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-04",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f78747d4cea4",
              "venue_id": "venue_hertz_hall",
              "title": "Tom Borrow",
              "event_time": "2026-10-04T15:00:00",
              "venue_name": "Hertz Hall",
              "event_start": "2026-10-04T15:00:00",
              "event_date": "2026-10-04",
              "venue_address": "UC Berkeley Campus, Berkeley, CA 94720",
              "description": "Rising star pianist Tom Borrow makes his Cal Performances debut in a solo recital.",
              "event_types": [],
              "price_info": "$42.00 - $68.00",
              "url": "https://calperformances.org/performances/2026-27/recital/tom-borrow-piano/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hertz_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b1fa37c96886",
              "venue_id": "venue_the_independent",
              "title": "RUSOWSKY",
              "event_time": "10.4 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/rusowsky/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_83202ca7571d",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "Oct 4 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#My_Moring_Jacket",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_930500211299",
              "venue_id": "venue_thee_stork_club",
              "title": "Shearling",
              "event_time": "Oct 4 2026 7pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Shearling",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$18 7pm",
              "url": "http://www.foopee.com/by-band.3.html#Shearling",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43e6d45a88c3",
              "venue_id": "venue_levis_stadium",
              "title": "DENVER BRONCOS VS. SAN FRANCISCO 49ERS",
              "event_time": "Oct 04, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The Denver Broncos travel to Santa Clara to face the San Francisco 49ers in an NFL gridiron battle.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/broncos-vs-49ers-week-4-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f65ff0a83bc",
              "venue_id": "venue_cow_palace",
              "title": "Junior Livestock Show",
              "event_time": "2026-10-04",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Young livestock exhibitors compete in a jackpot-style show, demonstrating their skill in raising and handling livestock.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://www.cowpalace.com/events/2026/junior-livestock-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-04",
              "run_id": "run_428e549fa2af",
              "run_label": "Junior Livestock Show, Oct 1 – Oct 4",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-05": {
          "date": "2026-10-05",
          "updated_at": "2026-05-18T11:30:06.179612Z",
          "events": [
            {
              "event_id": "evt_f9a63e2c6957",
              "venue_id": "venue_stay_gold_deli",
              "title": "Drunken Film Fest Oakland",
              "event_time": "2026-10-05",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-10-05",
              "event_date": "2026-10-05",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "A week-long film festival featuring local and international films, with screenings hosted at Stay Gold Deli.",
              "event_types": [],
              "price_info": "$5 - $20",
              "url": "https://filmfreeway.com/DrunkenFilmFestOakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-15T23:29:51.094583Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-10-05",
              "run_id": "run_3f7e4ca55d78",
              "run_label": "Drunken Film Fest Oakland, Oct 4 – Oct 9",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4d5c87c6a641",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Oct 5 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-10-05T19:00:00",
              "event_date": "2026-10-05",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690192?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-06": {
          "date": "2026-10-06",
          "updated_at": "2026-05-18T15:43:10.163075Z",
          "events": [
            {
              "event_id": "evt_d3c9810933e4",
              "venue_id": "venue_ashby_stage",
              "title": "How Memories Make Us",
              "event_time": "2026-10-06T19:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "In a magical twist, characters in our sci-fi fable The Motion, begin to lose key memories from their lives. This disorienting phenomenon brings about startling shifts in their identities. How much do your memories define you? Join renowned storyteller Josh Kornbluth to recount key memories from your life that have played a central role in making you the person you are today.",
              "event_types": [
                "literary"
              ],
              "price_info": "See website for details",
              "url": "https://shotgunplayers.org/online/article/break-it-down",
              "tags": [],
              "sources": [
                {
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-03-24T09:22:04.768655Z",
                  "strategy_used": "EXTRACT",
                  "source_id": "v_ashby_stage"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-03-25T08:42:26.376356Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ab43566a39f",
              "venue_id": "venue_the_independent",
              "title": "ENTER SHIKARI",
              "event_time": "10.6 7:30 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-06T19:30:00",
              "event_date": "2026-10-06",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "NORTH AMERICA 2026 - with Initiate",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/enter-shikari/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0b00bb656fda",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Cavetown",
              "event_time": "October 6, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Running With Scissors Tour - chloe moriondo",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thefoxoakland.com/events/cavetown-261006",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-18T07:48:06.867851Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-18T09:13:31.884925Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f9b6def69c24",
              "venue_id": "venue_the_uc_theatre",
              "title": "PRESIDENT: North American Campaign 2026",
              "event_time": "Oct 06 7:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "President, Showing Teeth, Cenobia",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$37.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/president-06-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ee580f549c22",
              "venue_id": "venue_rickshaw_stop",
              "title": "Dua Saleh",
              "event_time": "Oct 6 2026 7pm/8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Multi-disciplinary artist Dua Saleh brings their unique blend of rap, pop, and electronic music to the venue.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$28 7pm/8pm",
              "url": "http://www.foopee.com/by-band.1.html#Dua_Saleh",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_099f77ec4641",
              "venue_id": "venue_castro_theater",
              "title": "SAMMY RAE & THE FRIENDS",
              "event_time": "October 6, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "2nd Show Added by Popular Demand! - Melt",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/sammy-rae-261006",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_397e658bb328",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-06",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-06",
              "event_date": "2026-10-06",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-06",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba227b7cf268",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Oct 6 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690217?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_65a939c10219",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "Oct 6 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#My_Moring_Jacket",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ea3e5f6cd82a",
              "venue_id": "venue_great_american_music_hall",
              "title": "Menzingers, Hot Water Music, Weakened Friends",
              "event_time": "Oct 6 2026 6pm/7pm",
              "venue_name": "Great American",
              "event_start": "2026-10-06T18:00:00",
              "event_date": "2026-10-06",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $40/$45 6pm/7pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$40/$45",
              "url": "http://www.foopee.com/by-band.2.html#Menzingers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f6e074e1ad10",
              "venue_id": "venue_greek_theatre",
              "title": "Jungle, Rio Kosta",
              "event_time": "Oct 6 2026 5:30pm/7pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-06T17:30:00",
              "event_date": "2026-10-06",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a 5:30pm/7pm # (sold out)",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "electronic"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jungle",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_98722f33fb4d",
              "venue_id": "venue_swedish_american",
              "title": "Friqtao",
              "event_time": "Oct 6 2026 8pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Friqtao, Raffaele Magliuolo",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Friqtao",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1380e2b517e8",
              "venue_id": "venue_greek_theatre",
              "title": "JUNGLE – WORLD TOUR 2026",
              "event_time": "October 6, 2026 7:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Two Nights! - RIO KOSTA",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/jungle-261006",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-18T15:43:05.721389Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-07": {
          "date": "2026-10-07",
          "updated_at": "2026-05-18T15:44:00.536472Z",
          "events": [
            {
              "event_id": "evt_dde8c05501e8",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of the Opera",
              "event_time": "2026-10-07T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-07T19:30:00",
              "event_date": "2026-10-07",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "The Lucie Stern Community Center hosts a theatrical production of the classic gothic horror story featuring the world's most famous vampire. This stage adaptation brings Bram Stoker's suspenseful tale of Count Dracula to life for local audiences.",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-03-22T20:32:01.508551Z",
                  "strategy_used": "LLM",
                  "source_id": "v_center_for_the_performing_arts"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-04-07T10:31:36.860678Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-04-16T07:31:22.462994Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-07",
              "run_id": "run_4bf50d8b06a2",
              "run_label": "Phantom of the Opera, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_84c69035924f",
              "venue_id": "venue_castro_theater",
              "title": "SAMMY RAE & THE FRIENDS",
              "event_time": "October 7, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Oct 7 Sammy Rae & The Friends, Melt a/a 8pm #",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/sammy-rae-and-the-friends-261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8f28a2c7bc3a",
              "venue_id": "venue_bill_graham_civic",
              "title": "THE NEIGHBOURHOOD",
              "event_time": "October 7, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-07T19:00:00",
              "event_date": "2026-10-07",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "LIVE 105 presents\nTHE WOURLD TOUR - AFTER\nNOISE DEPT.",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "Sold Out!",
              "url": "https://billgrahamcivic.com/events/the-neighbourhood-261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9fba35f4efef",
              "venue_id": "venue_the_independent",
              "title": "DEER TICK",
              "event_time": "10.7 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "21+ $36.05 ($116.55 vip) 7:30pm/8pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/deer-tick/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_94169584d8d2",
              "venue_id": "venue_the_chapel",
              "title": "Lloyd Cole (solo electric)",
              "event_time": "Oct 7 7pm/8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-10-07T19:00:00",
              "event_date": "2026-10-07",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "$30 ($45 seated) 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 ($45 seated)",
              "url": "http://www.foopee.com/by-band.2.html#Lloyd_Cole",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_62a2ed5e05b8",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-07",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-07",
              "event_date": "2026-10-07",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-07",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a9b7fa131bf8",
              "venue_id": "venue_stay_gold_deli",
              "title": "Drunken Film Fest Oakland",
              "event_time": "2026-10-07",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-10-07",
              "event_date": "2026-10-07",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "A week-long film festival featuring local and international films, with screenings hosted at Stay Gold Deli.",
              "event_types": [],
              "price_info": "$5 - $20",
              "url": "https://filmfreeway.com/DrunkenFilmFestOakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-15T23:29:51.094583Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-10-07",
              "run_id": "run_3f7e4ca55d78",
              "run_label": "Drunken Film Fest Oakland, Oct 4 – Oct 9",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ba893a43625d",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "Oct 7 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-07T19:00:00",
              "event_date": "2026-10-07",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#My_Moring_Jacket",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7102107fe3c9",
              "venue_id": "venue_greek_theatre",
              "title": "Jungle, Rio Kosta",
              "event_time": "Oct 7 2026 5:30pm/7pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-07T17:30:00",
              "event_date": "2026-10-07",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a 5:30pm/7pm #",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "electronic"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jungle",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d4fe210596ab",
              "venue_id": "venue_greek_theatre",
              "title": "JUNGLE – WORLD TOUR 2026",
              "event_time": "October 7, 2026 7:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-07T19:00:00",
              "event_date": "2026-10-07",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "2nd Show Added by Popular Demand! - RIO KOSTA",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/jungle-261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-18T15:43:05.721389Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-08": {
          "date": "2026-10-08",
          "updated_at": "2026-05-18T15:58:43.893558Z",
          "events": [
            {
              "event_id": "evt_a9ebc414a385",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Mumford & Sons - Prizefighter Tour",
              "event_time": "2026-10-08T19:30:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-08T19:30:00",
              "event_date": "2026-10-08",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Folk-rock favorites Mumford & Sons bring their Prizefighter Tour to Shoreline Amphitheatre for an evening of anthemic songs and acoustic melodies. The band will perform hits from across their discography in their signature high-energy style.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/mumford-sons-prizefighter-tour-mountain-view-california-10-08-2026/event/1C006458A97DD4E3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-04-13T22:53:48.428843Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f76fe9cd617",
              "venue_id": "venue_san_jose_civic",
              "title": "The Living Tombstone",
              "event_time": "Oct 8 2026 7pm/8pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-08T19:00:00",
              "event_date": "2026-10-08",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "electronic rock, nerdcore, electropop, glitch hop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$61.47",
              "url": "http://www.foopee.com/by-band.2.html#Living_Tombstone",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_391ee2cc8e65",
              "venue_id": "venue_rickshaw_stop",
              "title": "PALOMA MORPHY",
              "event_time": "Thu Oct 8 8:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-08T20:00:00",
              "event_date": "2026-10-08",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Paloma Morrhy performs a live musical set for fans at The Independent.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$22.00-$25.00",
              "url": "https://urldefense.com/v3/__https://wl.eventim.us/event/paloma-morphy/689810?afflky=POPSCENEPresents__;!!AEl5w8WD!pDQPuTyGaZB85bnLDZ_3dvt46vSPVodQTvxf0kqgBrWAYCxVlef2T6-kBW9vRcXZB5DR1R2tiKcBLIzU0KYFvMs1kbZ3BAE$",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-14T10:46:20.204876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_521c2107bfc5",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-08",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-08",
              "event_date": "2026-10-08",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-08",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_48bc5ba071f8",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show - MAD Night",
              "event_time": "2026-10-08T19:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-08T19:00:00",
              "event_date": "2026-10-08",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Special performance for ages 25 and under including pizza and a drink.",
              "event_types": [],
              "price_info": "$15 for ages 25 and under",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_1f2387f17d57",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-08T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-08T19:30:00",
              "event_date": "2026-10-08",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-08",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f13e3057ea22",
              "venue_id": "venue_the_uc_theatre",
              "title": "DYING FETUS AND SANGUISUGABOGG",
              "event_time": "Oct 08 - Show: 6:30 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-08T18:30:00",
              "event_date": "2026-10-08",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Crowbar, Left to Suffer, Deterioration",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS $39.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/dying-fetus-and-sanguisugabogg-08-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-18T10:50:56.913208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f53858c556da",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-08",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-08",
              "event_date": "2026-10-08",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-08",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_be87d70ebb55",
              "venue_id": "venue_castro_theater",
              "title": "MON ROVÎA",
              "event_time": "October 8, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-08T20:00:00",
              "event_date": "2026-10-08",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Bloodline Tour - Sydney RoseSarah Julia",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/mon-rovia-261008",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-09": {
          "date": "2026-10-09",
          "updated_at": "2026-05-18T15:56:57.967986Z",
          "events": [
            {
              "event_id": "evt_22c689978f11",
              "venue_id": "venue_ivy_room",
              "title": "Erasure-esque & Just Like Heaven",
              "event_time": "Friday Oct 9 8:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-10-09T20:00:00",
              "event_date": "2026-10-09",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Fans of 80s synth-pop and alternative can enjoy tributes to Erasure and The Cure, along with a performance by Krome.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/174726",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-07T08:23:51.624224Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T00:23:45.019992Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-10-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_79b8b80e14bb",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-09",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-09",
              "event_date": "2026-10-09",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-09",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_31894cb4338a",
              "venue_id": "venue_stay_gold_deli",
              "title": "Drunken Film Fest Oakland",
              "event_time": "2026-10-09",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-10-09",
              "event_date": "2026-10-09",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "A week-long film festival featuring local and international films, with screenings hosted at Stay Gold Deli.",
              "event_types": [],
              "price_info": "$5 - $20",
              "url": "https://filmfreeway.com/DrunkenFilmFestOakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-15T23:29:51.094583Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-10-09",
              "run_id": "run_3f7e4ca55d78",
              "run_label": "Drunken Film Fest Oakland, Oct 4 – Oct 9",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f85c6cc243a0",
              "venue_id": "venue_san_jose_civic",
              "title": "The Price Is Right Live",
              "event_time": "2026-10-09T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-09T20:00:00",
              "event_date": "2026-10-09",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "The interactive stage show that gives eligible individuals the chance to 'Come On Down' and win prizes.",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "Tickets from $79",
              "url": "https://www.axs.com/events/543226/the-price-is-right-live-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_d885eb0353fe",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-09T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-09T19:30:00",
              "event_date": "2026-10-09",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-09",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e42c935424c7",
              "venue_id": "venue_mountain_winery",
              "title": "Rumours of Fleetwood Mac",
              "event_time": "Oct 9, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-09T19:30:00",
              "event_date": "2026-10-09",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "An Evening With",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1386829",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d0319503df82",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-09",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-09",
              "event_date": "2026-10-09",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-09",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_73c80ad5d2f3",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "Oct 9 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-09T19:00:00",
              "event_date": "2026-10-09",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#My_Moring_Jacket",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6bc5b42cf265",
              "venue_id": "venue_mountain_winery",
              "title": "Rumours Of Fleetwood Mac",
              "event_time": "Oct 9 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-09T17:30:00",
              "event_date": "2026-10-09",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "This premier tribute act offers an authentic and polished performance of the timeless music of Fleetwood Mac.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Rumours_Of_Fleetwood_Mac",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b19fe50d24c9",
              "venue_id": "venue_cow_palace",
              "title": "The Grand National Rodeo",
              "event_time": "2026-10-09T19:30:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-09T19:30:00",
              "event_date": "2026-10-09",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "An action-packed night of professional rodeo competition and family entertainment, featuring bull riding, barrel racing, and bronc riding.",
              "event_types": [],
              "price_info": "$15 - $25",
              "url": "https://www.cowpalace.com/events/2026/the-grand-national-rodeo",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-10": {
          "date": "2026-10-10",
          "updated_at": "2026-05-18T15:58:43.895960Z",
          "events": [
            {
              "event_id": "evt_4a172fbedffb",
              "venue_id": "venue_canada_theater",
              "title": "42nd Season Opener",
              "event_time": "2026-10-10T19:30:00",
              "venue_name": "Cañada College Theater",
              "event_start": "2026-10-10T19:30:00",
              "event_date": "2026-10-10",
              "venue_address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
              "description": "The opening concert of the 2026-27 season featuring Leonard Bernstein's Danzon from Fancy Free, Aaron Copland's Suite from Billy the Kid, Jennifer Higdon's Blue Cathedral, and Sergey Rachmaninoff's Rhapsody on a Theme by Paganini with pianist Julia Greer.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "http://www.redwoodsymphony.org/concerts/42nd-season-opener/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_redwood_symphony",
                  "source_name": "Redwood Symphony",
                  "fetched_at": "2026-04-12T10:45:31.947514Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_canada_theater",
                  "source_name": "Cañada College Theater",
                  "fetched_at": "2026-04-12T18:24:17.255591Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_canada_theater|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ad10d388211f",
              "venue_id": "venue_bill_graham_civic",
              "title": "BONNIE RAITT",
              "event_time": "October 10, 2026 7:30pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-10T19:30:00",
              "event_date": "2026-10-10",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "The Theater at Bill Graham Civic Auditorium\nBonnie Raitt: Live 2026 Tour - JON CLEARY & THE ABSOLUTE MONSTER GENTLEMEN",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/bonnie-raitt-261010",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f25adcc61151",
              "venue_id": "venue_the_midway",
              "title": "Tinlicker",
              "event_time": "Oct 10 10pm",
              "venue_name": "The Midway",
              "event_start": "2026-10-10T22:00:00",
              "event_date": "2026-10-10",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "Dutch electronic duo Tinlicker brings their melodic techno and progressive house sounds to the venue. Their performance promises an immersive journey through modern electronic music.",
              "event_types": [
                "electronic"
              ],
              "price_info": "Check website for pricing",
              "url": "http://www.foopee.com/by-band.3.html#Tinlicker",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-01T07:05:07.300669Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-05-01T10:14:03.885856Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0c650047cdac",
              "venue_id": "venue_frost_amphitheater",
              "title": "Taking Back Sunday",
              "event_time": "Oct 10 2026 6pm/7pm",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-10-10T18:00:00",
              "event_date": "2026-10-10",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Rock music performance presented by Stanford Live and Goldenvoice",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Taking_Back_Sunday",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-05T11:35:58.723868Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_frost_amphitheater",
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-05-06T07:04:09.449554Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8bf41a38a00f",
              "venue_id": "venue_castro_theater",
              "title": "JACOB COLLIER",
              "event_time": "October 10, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-10T20:00:00",
              "event_date": "2026-10-10",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "The Light For Days Tour - A Series Of Solo Performances In Intimate Spaces",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/jacob-collier-261010",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9757b3f72717",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-10",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-10",
              "event_date": "2026-10-10",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-10",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_df6b1bf5b3d8",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-10T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-10T19:30:00",
              "event_date": "2026-10-10",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-10",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b8763e598fcc",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-10",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-10",
              "event_date": "2026-10-10",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-10",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_96a3bce2a28e",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "Oct 10 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-10T19:00:00",
              "event_date": "2026-10-10",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#My_Moring_Jacket",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c5aa779b7d1f",
              "venue_id": "venue_the_warfield",
              "title": "Palace",
              "event_time": "Oct 10 2026 7pm/8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-10-10T19:00:00",
              "event_date": "2026-10-10",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Palace",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Palace",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9b4996e3f995",
              "venue_id": "venue_levis_stadium",
              "title": "BRUNO MARS | THE ROMANTIC TOUR | OCT 10",
              "event_time": "Oct 10, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-10-10",
              "event_date": "2026-10-10",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Bruno Mars brings his soulful vocals and dynamic stage presence to Levi's Stadium for The Romantic Tour on October 10.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/bruno-mars-the-romantic-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3d8c0e6c79b8",
              "venue_id": "venue_cow_palace",
              "title": "The Grand National Rodeo",
              "event_time": "2026-10-10T19:30:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-10T19:30:00",
              "event_date": "2026-10-10",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "The second night of the historic Grand National Rodeo, showcasing top athletes in classic rodeo disciplines.",
              "event_types": [],
              "price_info": "$15 - $25",
              "url": "https://www.cowpalace.com/events/2026/the-grand-national-rodeo",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-05-18T15:56:57.223719Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-11": {
          "date": "2026-10-11",
          "updated_at": "2026-05-18T15:48:30.085100Z",
          "events": [
            {
              "event_id": "evt_ba07f4f31708",
              "venue_id": "venue_bing_concert_hall",
              "title": "Placeless",
              "event_time": "10/11/2026 2:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-10-11T14:30:00",
              "event_date": "2026-10-11",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "The world-renowned Kronos Quartet joins forces with Iranian vocalists Mahsa and Marjan Vahdat for 'Placeless,' a performance featuring contemporary settings of classical Persian poetry. The program bridges cultural boundaries through a blend of string quartet arrangements and traditional vocal melodies.",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/kronos-quartet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-05-16T10:26:19.170707Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c83005adbcf6",
              "venue_id": "venue_the_independent",
              "title": "SANTIAGO CRUZ",
              "event_time": "10.11 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-11T20:00:00",
              "event_date": "2026-10-11",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Renowned singer-songwriter Santiago Cruz brings his emotive lyrics and acoustic melodies to the Hotel Utah stage.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/santiago-cruz/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-13T10:32:34.851154Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-13T12:36:31.853883Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-14T12:49:19.057725Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7a34acf3db58",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-11",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-11",
              "event_date": "2026-10-11",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-11",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dc5efc4b5685",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show - Masked-Audience Performance",
              "event_time": "2026-10-11T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-11T14:00:00",
              "event_date": "2026-10-11",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "A performance of 'The Fall Show' with mandatory masking for all attendees.",
              "event_types": [],
              "price_info": "$40 - $80",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bc09cc3bf7ca",
              "venue_id": "venue_temescal_arts_center",
              "title": "Shapeshifters Cinema",
              "event_time": "2026-10-11T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-10-11T20:00:00",
              "event_date": "2026-10-11",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Monthly Shapeshifters Cinema screening at Temescal Arts Center.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_32b3ac37555a",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-11T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-11T19:30:00",
              "event_date": "2026-10-11",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-11",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ba5546bf11d7",
              "venue_id": "venue_hertz_hall",
              "title": "Takács Quartet & Jeremy Denk",
              "event_time": "2026-10-11T15:00:00",
              "venue_name": "Hertz Hall",
              "event_start": "2026-10-11T15:00:00",
              "event_date": "2026-10-11",
              "venue_address": "UC Berkeley Campus, Berkeley, CA 94720",
              "description": "The beloved Takács Quartet returns with pianist Jeremy Denk for a program of chamber music masterpieces.",
              "event_types": [],
              "price_info": "$45.00 - $95.00",
              "url": "https://calperformances.org/performances/2026-27/orchestra-chamber-music/takacs-quartet-jeremy-denk/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hertz_hall|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_af67a249984f",
              "venue_id": "venue_mountain_winery",
              "title": "Air Supply",
              "event_time": "Oct 11, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-11T19:30:00",
              "event_date": "2026-10-11",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "A Matter of Time Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1378828",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_32999702dc7d",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-11",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-11",
              "event_date": "2026-10-11",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-11",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_838b8b9f844a",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "Oct 11 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-11T19:00:00",
              "event_date": "2026-10-11",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#My_Moring_Jacket",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bdc4a671b4b8",
              "venue_id": "venue_mountain_winery",
              "title": "Air Supply",
              "event_time": "Oct 11 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-11T17:30:00",
              "event_date": "2026-10-11",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The legendary soft rock duo Air Supply performs their classic romantic ballads and chart-topping hits.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Air_Supply",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa9c7e6bd5fb",
              "venue_id": "venue_levis_stadium",
              "title": "BRUNO MARS | THE ROMANTIC TOUR | OCT 11",
              "event_time": "Oct 11, 2026",
              "venue_name": "Levis Stadium",
              "event_start": "2026-10-11",
              "event_date": "2026-10-11",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Bruno Mars performs a second night of his Romantic Tour at Levi's Stadium on October 11.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/bruno-mars-the-romantic-tour-october-11th/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-05-18T15:48:16.555831Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-10-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-12": {
          "date": "2026-10-12",
          "updated_at": "2026-05-18T11:30:06.183567Z",
          "events": [
            {
              "event_id": "evt_4219f9ef5f21",
              "venue_id": "venue_bimbos_365",
              "title": "Maro",
              "event_time": "Oct 12 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-10-12T19:00:00",
              "event_date": "2026-10-12",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "$41.25 7pm/8pm (was apr 28 at the Castro)",
              "event_types": [
                "live_music"
              ],
              "price_info": "$41.25",
              "url": "http://www.foopee.com/by-band.2.html#Maro",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-10-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4d998d378819",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Oct 12 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-10-12T19:00:00",
              "event_date": "2026-10-12",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690193?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-05-18T11:29:58.909509Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-10-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-13": {
          "date": "2026-10-13",
          "updated_at": "2026-05-18T16:00:41.710197Z",
          "events": [
            {
              "event_id": "evt_ac118bce98c8",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "Tue, Oct 13 - Sun, Nov 1, 2026",
              "venue_name": "Curran Theater",
              "event_start": "2026-10-13",
              "event_date": "2026-10-13",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Cole Escola stars in this dark comedy play that offers a wildly fictionalized and hilarious look at the life of Mary Todd Lincoln. The production brings its irreverent humor and sharp wit to the Orpheum Theatre stage.",
              "event_types": [
                "theater"
              ],
              "price_info": "Subscribe",
              "url": "https://us.atgtickets.com/events/oh-mary/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theater",
                  "fetched_at": "2026-04-10T23:55:12.607576Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18aa41d3ebc4",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-13",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-13",
              "event_date": "2026-10-13",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-13",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d78016bee753",
              "venue_id": "venue_california_theatre",
              "title": "Georgian National Ballet Sukhishvili",
              "event_time": "2026-10-13T20:00:00-07:00",
              "venue_name": "California Theatre",
              "event_start": "2026-10-13T20:00:00",
              "event_date": "2026-10-13",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "The world-famous Georgian National Ballet “Sukhishvili” celebrates its 80th anniversary with a performance rooted in traditional Georgian dance, costumes, and storytelling.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/georgian-national-ballet-sukhishvili/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-05-15T18:16:04.395210Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-10-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_4af261e2fe7d",
              "venue_id": "venue_act_theater",
              "title": "OH, MARY!",
              "event_time": "OCT 13–NOV 1, 2026",
              "venue_name": "ACT Theater",
              "event_start": "2026-10-13",
              "event_date": "2026-10-13",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "This dark comedy offers a wildly irreverent and fictionalized look at the life of Mary Todd Lincoln.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/2026-27-season/oh-mary",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-10-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9b5463107073",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-13",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-13",
              "event_date": "2026-10-13",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-13",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-14": {
          "date": "2026-10-14",
          "updated_at": "2026-05-18T15:21:08.205734Z",
          "events": [
            {
              "event_id": "evt_ec0bd4476181",
              "venue_id": "venue_castro_theater",
              "title": "FINN WOLFHARD",
              "event_time": "October 14, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-14T20:00:00",
              "event_date": "2026-10-14",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "The Common Side Effects Tour - Malcy",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/finn-wolfhard-261014",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-09T11:18:30.344881Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2386068430e3",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-14",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-14",
              "event_date": "2026-10-14",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-14",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_79750cc61b27",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Sukhishvili",
              "event_time": "2026-10-14T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-10-14T20:00:00",
              "event_date": "2026-10-14",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "The Georgian National Ballet Sukhishvili performs in San Francisco.",
              "event_types": [
                "dance"
              ],
              "price_info": "See website for pricing",
              "url": "https://eventcartel.com/events/sukhishvili-in-san-francisco-tickets-9055/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-10-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_94fca0bc3bff",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-14",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-14",
              "event_date": "2026-10-14",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-14",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8c9dda86d827",
              "venue_id": "venue_san_jose_civic",
              "title": "Juanes: North America Tour 2026",
              "event_time": "2026-10-14T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-14T20:00:00",
              "event_date": "2026-10-14",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Colombian rock superstar Juanes performs live as part of his North American tour.",
              "event_types": [
                "live_music",
                "rock",
                "latin_world"
              ],
              "price_info": "Tickets from $65",
              "url": "https://www.axs.com/events/543228/juanes-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e6d433dca32c",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-14",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-14",
              "event_date": "2026-10-14",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-14",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_bcd7ed34e5c1",
              "venue_id": "venue_the_warfield",
              "title": "Sex Pistols",
              "event_time": "Oct 14 2026 8:30pm",
              "venue_name": "The Warfield",
              "event_start": "2026-10-14T20:30:00",
              "event_date": "2026-10-14",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Sex Pistols (Steve Jones, Paul Cook, Glen Matlock, Frank Carter)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$83.57",
              "url": "http://www.foopee.com/by-band.3.html#Sex_Pistols__Steve_Jones__Paul_Cook",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-10-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-15": {
          "date": "2026-10-15",
          "updated_at": "2026-05-18T15:44:00.541741Z",
          "events": [
            {
              "event_id": "evt_0ba5b85596c7",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-15",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-15",
              "event_date": "2026-10-15",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-15",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7994757fe888",
              "venue_id": "venue_the_uc_theatre",
              "title": "Jahnavi Harrison",
              "event_time": "Oct 15 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-15T20:00:00",
              "event_date": "2026-10-15",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Jahnavi Harrison",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "BUY TICKETS $35 + FEES",
              "url": "https://www.theuctheatre.org/shows/jahnavi-harrison-15-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-17T10:24:27.652407Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-17T14:02:20.813805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f6c58395c93",
              "venue_id": "venue_peacock_lounge",
              "title": "Third Thursday Jazz Night",
              "event_time": "2026-10-15T20:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-10-15T20:00:00",
              "event_date": "2026-10-15",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "A recurring jazz music performance featuring local and touring jazz musicians in an intimate setting.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-05-17T10:49:02.239916Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-10-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_2acca9be6612",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-15",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-15",
              "event_date": "2026-10-15",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-15",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f6599d416210",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-15T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-15T19:30:00",
              "event_date": "2026-10-15",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-15",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_5e04fc6e3ed7",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-15",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-15",
              "event_date": "2026-10-15",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-15",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_f1441000d12c",
              "venue_id": "venue_chase_center",
              "title": "Young Miko",
              "event_time": "Oct 15 2026 8pm",
              "venue_name": "Chase Center",
              "event_start": "2026-10-15T20:00:00",
              "event_date": "2026-10-15",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Young Miko",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$47.50+",
              "url": "http://www.foopee.com/by-band.3.html#Young_Miko",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-10-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a34fe758b740",
              "venue_id": "venue_bill_graham_civic",
              "title": "RAWAYANA",
              "event_time": "October 15, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-15T20:00:00",
              "event_date": "2026-10-15",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "¿Dónde es el after? World Tour",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/rawayana-261015",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-05-18T15:43:56.429713Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-16": {
          "date": "2026-10-16",
          "updated_at": "2026-05-18T15:43:10.168641Z",
          "events": [
            {
              "event_id": "evt_fc2dac5dcc93",
              "venue_id": "venue_paramount_theatre",
              "title": "DEFIANCE (2026-2027 Season Opening)",
              "event_time": "2026-10-16T19:30:00",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-10-16T19:30:00",
              "event_date": "2026-10-16",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "The 2026-2027 Season Opening concert, 'Defiance', features works that explore themes of resistance and creative freedom. The program includes Anthony Davis's 'Prison Aria' from the opera Malcolm X, Karim Al-Zand's Lamentations on the Disaster of War, a medley of songs by Elaine Brown, Tracy Chapman, and Lauryn Hill, and Dmitri Shostakovich's Symphony No. 11, 'The Year 1905'.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Check website for subscription and single ticket pricing",
              "url": "https://www.oaklandsymphony.org/event/defiance/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Oakland Symphony",
                  "fetched_at": "2026-03-22T20:18:26.895149Z",
                  "strategy_used": "LLM",
                  "source_id": "s_oakland_symphony"
                },
                {
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-03-24T10:24:59.750045Z",
                  "strategy_used": "LLM",
                  "source_id": "v_paramount_theatre"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b4d7a67092ca",
              "venue_id": "venue_castro_theater",
              "title": "IRON & WINE",
              "event_time": "October 16, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-16T20:00:00",
              "event_date": "2026-10-16",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Oct 16 Iron & Wine, Ken Pomeroy a/a $59.60 8pm #",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/iron-and-wine-261016",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1f9649e0148b",
              "venue_id": "venue_ivy_room",
              "title": "The Stitches",
              "event_time": "Friday Oct 16 8:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-10-16T20:00:00",
              "event_date": "2026-10-16",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "A high-energy punk rock showcase featuring live performances by Stitches, Hunting Lions, Loud Graves, and SF Rejects.",
              "event_types": [
                "other"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "http://www.foopee.com/by-band.3.html#Stiches",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-13T22:39:47.231083Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-04-14T07:27:00.009667Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-22T13:50:59.162795Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_049666a9fa90",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-16",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-16",
              "event_date": "2026-10-16",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-16",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c4a32423c5c3",
              "venue_id": "venue_the_saloon",
              "title": "Highwater Blues",
              "event_time": "2026-10-16T16:00:00",
              "venue_name": "The Saloon",
              "event_start": "2026-10-16T16:00:00",
              "event_date": "2026-10-16",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Afternoon blues and R&B set at San Francisco's oldest bar.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "No cover",
              "url": "https://highwaterblues.com/calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_saloon",
                  "source_name": "The Saloon",
                  "fetched_at": "2026-05-15T19:08:35.724712Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_saloon|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_24d3d8a5e811",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Rush Tribute Project",
              "event_time": "2026-10-16T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-10-16T19:30:00",
              "event_date": "2026-10-16",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "A tribute to the legendary rock band Rush.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "See website for pricing",
              "url": "https://palaceoffinearts.org/event/rush-tribute-project/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-05-15T21:30:22.380563Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7db0fcc7a239",
              "venue_id": "venue_the_uc_theatre",
              "title": "Glaive – GOD SAVE THE THREE TOUR",
              "event_time": "Oct 16 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-16T20:00:00",
              "event_date": "2026-10-16",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Glaive, Kurtains",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS $27.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/glaive-16-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-17T10:24:27.652407Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-17T14:02:20.813805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_559dd1128400",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-16",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-16",
              "event_date": "2026-10-16",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-16",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_36d93b3fdddd",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-16T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-16T19:30:00",
              "event_date": "2026-10-16",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-16",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ff5ea75bff12",
              "venue_id": "venue_the_independent",
              "title": "THIS IS LORELEI",
              "event_time": "10.16 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-16T21:00:00",
              "event_date": "2026-10-16",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "with Colin Miller",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/this-is-lorelei/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_436e3b720733",
              "venue_id": "venue_mountain_winery",
              "title": "The Wallflowers",
              "event_time": "Oct 16, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-16T19:30:00",
              "event_date": "2026-10-16",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Bringing Down the Horse 30th Anniversary Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1261246",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_991ef56496fc",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-16",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-16",
              "event_date": "2026-10-16",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-16",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7ac3f3f39fc6",
              "venue_id": "venue_greek_theatre",
              "title": "Vulfpeck",
              "event_time": "Oct 16 2026 6:30pm/8pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-16T18:30:00",
              "event_date": "2026-10-16",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "a/a 6:30pm/8pm #",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Vulfpeck",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0332be69ca9b",
              "venue_id": "venue_mountain_winery",
              "title": "The Wallflowers",
              "event_time": "Oct 16 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-16T17:30:00",
              "event_date": "2026-10-16",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Jakob Dylan and The Wallflowers bring their signature roots-rock sound and alternative hits to the Hotel Utah stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Wallflowers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_bedfa9eaa5e2",
              "venue_id": "venue_thee_stork_club",
              "title": "Spike Hellis",
              "event_time": "Oct 16 2026 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-16T20:00:00",
              "event_date": "2026-10-16",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Spike Hellis, Normal Bias, Pink Stiletto, dj Hot Goth GF",
              "event_types": [
                "live_music",
                "electronic",
                "rock",
                "dj_party"
              ],
              "price_info": "$22 8pm",
              "url": "http://www.foopee.com/by-band.3.html#Spike_Hellis",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_765d871d7da8",
              "venue_id": "venue_the_warfield",
              "title": "Jessie Ware",
              "event_time": "Oct 16 2026",
              "venue_name": "The Warfield",
              "event_start": "2026-10-16",
              "event_date": "2026-10-16",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Jessie Ware, Dhruv",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Jessie_Ware",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5a278d2de902",
              "venue_id": "venue_greek_theatre",
              "title": "VULFPECK",
              "event_time": "October 16, 2026 8:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-16T20:00:00",
              "event_date": "2026-10-16",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/vulfpeck-261016",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-18T15:43:05.721389Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-17": {
          "date": "2026-10-17",
          "updated_at": "2026-05-18T15:42:13.123619Z",
          "events": [
            {
              "event_id": "evt_79469ee825d2",
              "venue_id": "venue_rickshaw_stop",
              "title": "FLOWER FACE",
              "event_time": "Sat Oct 17 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-17T21:00:00",
              "event_date": "2026-10-17",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "The folk-pop project of Ruby McKinnon brings its melancholic and dreamlike melodies to the venue for a live performance.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20.00-$25.00",
              "url": "https://wl.eventim.us/event/flower-face/690076?afflky=POPSCENEPresents",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-06T10:36:39.838308Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-06T12:21:21.666524Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-15T22:38:47.182499Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d32f7cb5dfa9",
              "venue_id": "venue_august_hall",
              "title": "Akeem Ali",
              "event_time": "Oct 17 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-17T19:00:00",
              "event_date": "2026-10-17",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$34.70 7pm/8pm",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$34.70",
              "url": "http://www.foopee.com/by-band.0.html#Akeem_Ali",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_13b1d7f7ab9b",
              "venue_id": "venue_the_warfield",
              "title": "Jessie Ware",
              "event_time": "Sat, Oct 17, 2026 8:30 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-10-17T20:30:00",
              "event_date": "2026-10-17",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "The Superbloom Tour",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.1.html#Jessie_Ware",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-13T12:53:25.382543Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-10-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4af4007da02c",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-17",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-17",
              "event_date": "2026-10-17",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-17",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0f4fa1d658ed",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-17",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-17",
              "event_date": "2026-10-17",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-17",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5472af5ffdd3",
              "venue_id": "venue_san_jose_civic",
              "title": "Kanan Gill",
              "event_time": "2026-10-17T19:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-17T19:00:00",
              "event_date": "2026-10-17",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Indian stand-up comedian and actor Kanan Gill brings his sharp wit to San Jose.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets from $60",
              "url": "https://www.axs.com/events/543227/kanan-gill-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7b9ac6651bfe",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-17T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-17T19:30:00",
              "event_date": "2026-10-17",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-17",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_915183cba666",
              "venue_id": "venue_mountain_winery",
              "title": "Nelly",
              "event_time": "Oct 17, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-17T19:30:00",
              "event_date": "2026-10-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1383134",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fe2052d08e24",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-17",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-17",
              "event_date": "2026-10-17",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-17",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9306be25e87d",
              "venue_id": "venue_mountain_winery",
              "title": "Nelly",
              "event_time": "Oct 17 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-17T17:30:00",
              "event_date": "2026-10-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Multi-platinum rapper Nelly performs his high-energy hip-hop hits and club favorites in a live musical performance.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Nelly",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-18": {
          "date": "2026-10-18",
          "updated_at": "2026-05-18T15:42:13.126109Z",
          "events": [
            {
              "event_id": "evt_224ff13ee9bc",
              "venue_id": "venue_the_warfield",
              "title": "Sunset Rollercoaster",
              "event_time": "Sun, Oct 18, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-10-18T20:00:00",
              "event_date": "2026-10-18",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Q Comes Q Goes / 2026 Sunset Rollercoaster US & Canada Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1385214",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-04-28T12:57:37.834317Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f8a4ba26fb4e",
              "venue_id": "venue_frost_amphitheater",
              "title": "Muna, Hemlocke Springs",
              "event_time": "Oct 18 2026 6pm/7pm",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-10-18T18:00:00",
              "event_date": "2026-10-18",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Gets So Hot Tour with hemlocke springs",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Muna",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-11T13:41:08.553496Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e59e3f179960",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-18",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-18",
              "event_date": "2026-10-18",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-18",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_43ce0c8e4773",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show - Audio-Described Performance",
              "event_time": "2026-10-18T14:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-18T14:00:00",
              "event_date": "2026-10-18",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Performance featuring live audio description and a pre-show haptic tour at 1:00 PM.",
              "event_types": [],
              "price_info": "$40 - $80",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_9d2dc721fd25",
              "venue_id": "venue_temescal_arts_center",
              "title": "Dabke With Us!",
              "event_time": "2026-10-18T11:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-10-18T11:00:00",
              "event_date": "2026-10-18",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Free Palestinian folk dance workshop at Temescal Arts Center, taught by TAC Resident Artist Wael Buhaissy and members of Palestinian Dabke: Aljuthoor of the Arab Shatat. No experience necessary.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7d4025041306",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "2026-10-18T19:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-10-18T19:00:00",
              "event_date": "2026-10-18",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Open participation improvisation workshop hosted by Jacob Felix Heule for musicians and dancers of all levels; listen and/or play. Doors at 7, over by 10.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_266a7320cb5f",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-18",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-18",
              "event_date": "2026-10-18",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-18",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_feb45bd8199d",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-18T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-18T19:30:00",
              "event_date": "2026-10-18",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "A comedy by Jonathan Spector set at a progressive private school in Berkeley. When a mumps outbreak occurs, the school's commitment to consensus is put to the ultimate test as parents clash over vaccination beliefs.",
              "event_types": [],
              "price_info": "Tickets typically range from $30-$60.",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-05-18T04:38:00.726415Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-18",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_118d2534be23",
              "venue_id": "venue_dalas_nest",
              "title": "Caliban",
              "event_time": "2026-10-18T15:30:00",
              "venue_name": "Dala's Nest",
              "event_start": "2026-10-18T15:30:00",
              "event_date": "2026-10-18",
              "venue_address": "Menlo Park, CA",
              "description": "Celtic & Nordic Folk-Rock Fusion",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dalas_nest",
                  "source_name": "Dala's Nest",
                  "fetched_at": "2026-05-18T10:13:54.412437Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dalas_nest|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_adb881f2b3b0",
              "venue_id": "venue_zellerbach",
              "title": "Judy Collins",
              "event_time": "2026-10-18T15:00:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-10-18T15:00:00",
              "event_date": "2026-10-18",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "Folk legend Judy Collins performs her greatest hits in a special farewell tour appearance.",
              "event_types": [],
              "price_info": "$45.00 - $110.00",
              "url": "https://calperformances.org/performances/2026-27/vocal-celebration/judy-collins/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_zellerbach|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_c92970b9d780",
              "venue_id": "venue_hertz_hall",
              "title": "Ben Bliss & Christopher Allen",
              "event_time": "2026-10-18T15:00:00",
              "venue_name": "Hertz Hall",
              "event_start": "2026-10-18T15:00:00",
              "event_date": "2026-10-18",
              "venue_address": "UC Berkeley Campus, Berkeley, CA 94720",
              "description": "Acclaimed American tenor Ben Bliss performs a recital of art songs and operatic favorites.",
              "event_types": [],
              "price_info": "$42.00 - $68.00",
              "url": "https://calperformances.org/performances/2026-27/recital/ben-bliss-tenor/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hertz_hall|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_37229004dc83",
              "venue_id": "venue_mountain_winery",
              "title": "John Mulaney: Mister Whatever",
              "event_time": "Oct 18, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-18T19:30:00",
              "event_date": "2026-10-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1379991",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_36be32c123c1",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of The Opera – Broadway San Jose",
              "event_time": "2026-10-18",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-18",
              "event_date": "2026-10-18",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A new touring production of Andrew Lloyd Webber’s landmark musical presented by Broadway San Jose.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera-broadway-san-jose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-18",
              "run_id": "run_949b46c78367",
              "run_label": "Phantom of The Opera – Broadway San Jose, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b98232ebb0c5",
              "venue_id": "venue_the_fillmore",
              "title": "Wallflowers",
              "event_time": "Oct 18 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-18T19:00:00",
              "event_date": "2026-10-18",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Wallflowers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a6c921ad5b59",
              "venue_id": "venue_mountain_winery",
              "title": "John Mulaney",
              "event_time": "Oct 18 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-18T17:30:00",
              "event_date": "2026-10-18",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Acclaimed comedian John Mulaney brings his sharp wit and celebrated storytelling to the venue for an evening of stand-up comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#John_Mulaney",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-19": {
          "date": "2026-10-19",
          "updated_at": "2026-05-18T15:21:08.222214Z",
          "events": [
            {
              "event_id": "evt_aecc43795ae0",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Geese",
              "event_time": "October 19, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-19T20:00:00",
              "event_date": "2026-10-19",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Two Nights!\nGetting Killed Again Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PRESALE 4/30",
              "url": "https://thefoxoakland.com/events/geese-261019",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-30T16:28:17.625426Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-01T06:47:01.731707Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1302e3c8c7ff",
              "venue_id": "venue_the_chapel",
              "title": "Hovvdy",
              "event_time": "Mon Oct 19 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-10-19T20:00:00",
              "event_date": "2026-10-19",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Indie",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$26.00-$75.00",
              "url": "https://wl.seetickets.us/event/hovvdy/691044?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-18T10:24:42.800944Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a29e364f7092",
              "venue_id": "venue_chase_center",
              "title": "Doja Cat",
              "event_time": "Oct 19 2026",
              "venue_name": "Chase Center",
              "event_start": "2026-10-19",
              "event_date": "2026-10-19",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Doja Cat",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Doja_Cat",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-10-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-20": {
          "date": "2026-10-20",
          "updated_at": "2026-05-18T13:34:52.667255Z",
          "events": [
            {
              "event_id": "evt_ca4447594c4c",
              "venue_id": "venue_shotgun_studios",
              "title": "Let’s Break It Down: The Fall Show",
              "event_time": "2026-10-20T19:00:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-10-20T19:00:00",
              "event_date": "2026-10-20",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "A one-night Let’s Break It Down event presented in conjunction with The Fall Show, created by Erika Chong Shuch and Charles Mee, at Shotgun Studios.",
              "event_types": [
                "theater"
              ],
              "price_info": "Tickets on sale soon",
              "url": "https://shotgunplayers.org/show/2026-lets-break-it-down-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-04-15T11:14:36.939234Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-04-16T00:16:23.802943Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-10-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e7defeef8cd1",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-20",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-20",
              "event_date": "2026-10-20",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-20",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5798631f4743",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show - Let's Break It Down",
              "event_time": "2026-10-20T19:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-20T19:00:00",
              "event_date": "2026-10-20",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "A post-show discussion and deep dive into the themes of 'The Fall Show'.",
              "event_types": [],
              "price_info": "Included with ticket",
              "url": "https://shotgunplayers.org/online/article/fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-05-15T10:44:51.727652Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_69188926258e",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-20",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-20",
              "event_date": "2026-10-20",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-20",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_87059e17e466",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Geese",
              "event_time": "October 20, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-20T20:00:00",
              "event_date": "2026-10-20",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "2nd Show Added by Popular Demand! Getting Killed Again Tour",
              "event_types": [],
              "price_info": "SOLD OUT!",
              "url": "https://thefoxoakland.com/events/geese-261020",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-05-18T11:41:25.772493Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_90097dfee04a",
              "venue_id": "venue_castro_theater",
              "title": "SHAKEY GRAVES",
              "event_time": "October 20, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-20T20:00:00",
              "event_date": "2026-10-20",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Fondness, Etc.  Tour - Wild Pink",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://thecastro.com/events/shakey-graves-261020",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-18T13:34:43.385479Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-21": {
          "date": "2026-10-21",
          "updated_at": "2026-05-18T14:46:03.481065Z",
          "events": [
            {
              "event_id": "evt_f6de7ceff866",
              "venue_id": "venue_the_freight__salvage",
              "title": "BEDOUINE",
              "event_time": "2026-10-21T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-21T19:00:00",
              "event_date": "2026-10-21",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "CO-PRESENTED WITH (((ifolkYEAH! ))) | Other Delights",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39/$44 ($59/$64 premium)",
              "url": "https://secure.thefreight.org/15906/15907",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-06T05:55:19.571914Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-06T12:19:09.507836Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8ae879a5fa48",
              "venue_id": "venue_bing_concert_hall",
              "title": "Julian Lage Quartet",
              "event_time": "10/21/2026 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-10-21T19:30:00",
              "event_date": "2026-10-21",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "with John Medeski, Jorge Roeder, and Kenny Wollesen",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/julian-lage-quartet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-10-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fd79ac5ff519",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-21",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-21",
              "event_date": "2026-10-21",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-21",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_07f095a1e3a1",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-21",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-21",
              "event_date": "2026-10-21",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-21",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-22": {
          "date": "2026-10-22",
          "updated_at": "2026-05-18T15:44:00.543807Z",
          "events": [
            {
              "event_id": "evt_5f68a3f0eb42",
              "venue_id": "venue_masonic_hall",
              "title": "Rise Against, Alkaline Trio",
              "event_time": "Oct 22 2026 6pm/7pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-10-22T18:00:00",
              "event_date": "2026-10-22",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Two giants of the punk rock scene, Rise Against and Alkaline Trio, share the stage for a powerful double-bill. The night will be filled with anthemic choruses and fast-paced energy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for ticket prices",
              "url": "http://www.foopee.com/by-band.2.html#Rise_Against",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-11T11:14:23.601153Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-13T07:12:45.598271Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-10-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22e20d87197c",
              "venue_id": "venue_bill_graham_civic",
              "title": "MONSTA X",
              "event_time": "October 22, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-22T20:00:00",
              "event_date": "2026-10-22",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "The Theater at Bill Graham Civic Auditorium\n2026 MONSTA X WORLD TOUR [THE X : NEXUS] IN SAN FRANCISCO",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/monsta-x-261022",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-16T09:07:36.380288Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a162db8a73b3",
              "venue_id": "venue_august_hall",
              "title": "Gnash",
              "event_time": "Oct 22 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-22T19:00:00",
              "event_date": "2026-10-22",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$32.10 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$32.10",
              "url": "http://www.foopee.com/by-band.1.html#Gnash",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ac46cc6c52db",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-22",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-22",
              "event_date": "2026-10-22",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-22",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ec6008203ec0",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-22",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-22",
              "event_date": "2026-10-22",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-22",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_e4008de1788c",
              "venue_id": "venue_the_independent",
              "title": "Frankie Cosmos",
              "event_time": "10.22 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-22T20:00:00",
              "event_date": "2026-10-22",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/frankie-cosmos-celebrating-10-years-of-next-thing/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-18T10:50:01.581716Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30a535b6a38e",
              "venue_id": "venue_mountain_winery",
              "title": "Switchfoot",
              "event_time": "Oct 22, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-22T19:30:00",
              "event_date": "2026-10-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "with Anberlin",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1383144",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_22a1c134ec3a",
              "venue_id": "venue_guild_theatre",
              "title": "Steely Dead",
              "event_time": "Oct 22 2026 7pm/8pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-10-22T19:00:00",
              "event_date": "2026-10-22",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "a/a (under 18 with parent) $46+ 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$46+",
              "url": "http://www.foopee.com/by-band.3.html#Steely_Dead",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-10-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_27a2aa3b00eb",
              "venue_id": "venue_mountain_winery",
              "title": "Switchfoot & Anberlin",
              "event_time": "Oct 22 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-22T17:30:00",
              "event_date": "2026-10-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Alternative rock favorites Switchfoot and Anberlin team up for a night of powerful melodies and high-energy rock performances.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Switchfoot",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-23": {
          "date": "2026-10-23",
          "updated_at": "2026-05-18T15:42:13.129172Z",
          "events": [
            {
              "event_id": "evt_246e25c52321",
              "venue_id": "venue_cornerstone",
              "title": "Cheekface, Bodega",
              "event_time": "Oct 23 2026 8pm/9pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-10-23T20:00:00",
              "event_date": "2026-10-23",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "a/a $36 8pm/9pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$36",
              "url": "http://www.foopee.com/by-band.0.html#Cheekface",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_1dc917b6ce2c",
              "venue_id": "venue_the_warfield",
              "title": "Julia Wolf",
              "event_time": "Fri, Oct 23, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-10-23T20:00:00",
              "event_date": "2026-10-23",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Julia Wolf, Bee Blackwell",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1407735",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-04-28T12:57:37.834317Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-01T07:25:54.985848Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_658dc0242fdd",
              "venue_id": "venue_august_hall",
              "title": "Slift",
              "event_time": "Oct 23 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-23T19:00:00",
              "event_date": "2026-10-23",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$34.70 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34.70",
              "url": "http://www.foopee.com/by-band.3.html#Slift",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a8c4c4876a39",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-23",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-23",
              "event_date": "2026-10-23",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-23",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_38928c5f54df",
              "venue_id": "venue_san_jose_civic",
              "title": "The Price Is Right - Live Stage Show",
              "event_time": "2026-10-23T20:00:00",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-23T20:00:00",
              "event_date": "2026-10-23",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "The hit interactive stage show that gives eligible individuals the chance to 'Come On Down' and win prizes.",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "From $70",
              "url": "https://sanjosetheaters.org/event/the-price-is-right-live-stage-show/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-05-15T15:58:38.161699Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_97c0873a6332",
              "venue_id": "venue_the_uc_theatre",
              "title": "Basement",
              "event_time": "Oct 23 - Show: 7:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-23T19:00:00",
              "event_date": "2026-10-23",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Basement, High Vis, Big Boy, First Day Back",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS $39.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/basement-23-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-17T10:24:27.652407Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-17T14:02:20.813805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_32b223849d80",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-23",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-23",
              "event_date": "2026-10-23",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-23",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_8386c9742074",
              "venue_id": "venue_zellerbach",
              "title": "Mariachi Herencia de México",
              "event_time": "2026-10-23T19:30:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-10-23T19:30:00",
              "event_date": "2026-10-23",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "A rousing fusion of traditional mariachi and modern styles celebrating the Day of the Dead.",
              "event_types": [],
              "price_info": "$32.00 - $78.00",
              "url": "https://calperformances.org/performances/2026-27/seasonal-holidays/mariachi-herencia-de-mexico/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_zellerbach|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_6f1a61731224",
              "venue_id": "venue_mountain_winery",
              "title": "UB40",
              "event_time": "Oct 23, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-23T19:30:00",
              "event_date": "2026-10-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Unstoppable Tour 2026 | with CRSB",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1261253",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_879e4fd5484b",
              "venue_id": "venue_great_american_music_hall",
              "title": "Julia Wolf, Bee Blackwell",
              "event_time": "Oct 23 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-10-23T19:00:00",
              "event_date": "2026-10-23",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a 7pm/8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Julia_Wolf",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fd4f528733af",
              "venue_id": "venue_mountain_winery",
              "title": "UB40 & CRSB",
              "event_time": "Oct 23 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-23T17:30:00",
              "event_date": "2026-10-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Reggae legends UB40 join forces with CRSB for an evening of island vibes, soulful melodies, and classic hits.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#UB40",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-24": {
          "date": "2026-10-24",
          "updated_at": "2026-05-18T15:58:43.898638Z",
          "events": [
            {
              "event_id": "evt_dca5874510d1",
              "venue_id": "venue_the_chapel",
              "title": "Weatherday: Hornet Disaster Tour 2026",
              "event_time": "Sat Oct 24 2026 9:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-10-24T21:00:00",
              "event_date": "2026-10-24",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Alternative",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25.00-$30.00",
              "url": "https://wl.seetickets.us/event/weatherday-hornet-disaster-tour-2026/687518?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-10T21:02:02.380779Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-11T00:20:50.258209Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5d8ff2071e79",
              "venue_id": "venue_california_theatre",
              "title": "Symphonic Spooktacular",
              "event_time": "2026-10-24T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-10-24T19:30:00",
              "event_date": "2026-10-24",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "A Halloween-themed symphonic program led by Peter Jaffe with vocalist Bianca Orsi, featuring music associated with heroes, villains, and spooky favorites including William Tell Overture, Ride of the Valkyries, Funeral March of a Marionette, Conga del Fuego Nuevo, and The Sorcerer’s Apprentice.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Contact venue for pricing",
              "url": "https://www.symphonysanjose.org/concerts/symphonic-spooktacular/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-04-11T09:57:53.864931Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-04-12T19:09:10.200571Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-10-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_cf0a657d4238",
              "venue_id": "venue_cow_palace",
              "title": "Sofi Tuckker, Drama, Kito",
              "event_time": "Oct 24 2026 8pm",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-24T20:00:00",
              "event_date": "2026-10-24",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "SOFI TUKKER performs their first full 'Animal Talk' show with special guests Drama and Kito. $1 from every ticket sold supports local animal shelters.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$68 ($484/$202 vip)",
              "url": "http://www.foopee.com/by-band.3.html#Sofi_Tuckker",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-26T11:56:02.401149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-04-26T12:29:47.904894Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-28T12:42:23.830301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0619b49c27c5",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-24",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-24",
              "event_date": "2026-10-24",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-24",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_122b97327df0",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-24",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-24",
              "event_date": "2026-10-24",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-24",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_14f889e26279",
              "venue_id": "venue_zellerbach",
              "title": "Steve Reich at 90",
              "event_time": "2026-10-24T19:30:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-10-24T19:30:00",
              "event_date": "2026-10-24",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "Bang on a Can All-Stars and Ensemble Signal celebrate the 90th birthday of minimalist pioneer Steve Reich.",
              "event_types": [],
              "price_info": "$40.00 - $95.00",
              "url": "https://calperformances.org/performances/2026-27/new-music/steve-reich-at-90/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cal_performances",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-05-18T10:42:39.536630Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_zellerbach|2026-10-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_16417c29f771",
              "venue_id": "venue_bill_graham_civic",
              "title": "DERMOT KENNEDY",
              "event_time": "October 24, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-24T20:00:00",
              "event_date": "2026-10-24",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "The Weight of the Woods Tour - JONAH KAGEN",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/dermot-kennedy-261024",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-05-18T15:43:56.429713Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-25": {
          "date": "2026-10-25",
          "updated_at": "2026-05-18T14:49:07.392377Z",
          "events": [
            {
              "event_id": "evt_aef7876ba54b",
              "venue_id": "venue_cornerstone",
              "title": "Black Flag",
              "event_time": "Oct 25 2026 7pm/8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-10-25T19:00:00",
              "event_date": "2026-10-25",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "David Rodriquez, Bryce Weston)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$45.80",
              "url": "http://www.foopee.com/by-band.0.html#Black_Flag__Greg_Ginn__Max_Zanelly",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-20T12:46:15.167025Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-22T13:49:20.153390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-10-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6a2957bb72a3",
              "venue_id": "venue_old_first_concerts",
              "title": "LIEDER ALIVE! Fall Festival I",
              "event_time": "2026-10-25T16:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-10-25T16:00:00",
              "event_date": "2026-10-25",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Featuring Heather Hjelle and John Parr as part of the 15th Annual Liederabend Series.",
              "event_types": [
                "live_music",
                "classical",
                "festival"
              ],
              "price_info": "General Admission: $30; Seniors (65+): $25; Students: $10",
              "url": "https://www.oldfirstconcerts.org/performance/lieder-alive-fall-festival-i/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-05-07T10:32:26.729121Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-10-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_66369a92e8fb",
              "venue_id": "venue_lucie_stern_pa",
              "title": "Adam O'Farrill",
              "event_time": "2026-10-25T14:00:00",
              "venue_name": "Lucie Stern CC",
              "event_start": "2026-10-25T14:00:00",
              "event_date": "2026-10-25",
              "venue_address": "1305 Middlefield Road, Palo Alto, CA 94301",
              "description": "Jazz performance",
              "event_types": [],
              "price_info": "$20",
              "url": "https://markweiss86.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-05-11T16:56:01.262503Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_lucie_stern_pa|2026-10-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a747c02830e6",
              "venue_id": "venue_bing_concert_hall",
              "title": "Rob Kapilow: What Makes It Great?",
              "event_time": "10/25/2026 2:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-10-25T14:30:00",
              "event_date": "2026-10-25",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "The Music of Lerner and Loewe",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/rob-kapilow-lerner-lowe/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-10-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3ece6a162afc",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-25",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-25",
              "event_date": "2026-10-25",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-25",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fd5b28a8c571",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-25",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-25",
              "event_date": "2026-10-25",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-25",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_da40abb25813",
              "venue_id": "venue_mountain_winery",
              "title": "Everclear",
              "event_time": "Oct 25, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-25T19:30:00",
              "event_date": "2026-10-25",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "with special guest American Hi-Fi",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1339432",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_204552ac9ad5",
              "venue_id": "venue_the_fillmore",
              "title": "Kishi Bashi",
              "event_time": "Oct 25 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-25T19:00:00",
              "event_date": "2026-10-25",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Kishi_Bashi",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_acb58e63f290",
              "venue_id": "venue_mountain_winery",
              "title": "Everclear & American Hi-Fi",
              "event_time": "Oct 25 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-25T17:30:00",
              "event_date": "2026-10-25",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Alternative rock mainstays Everclear and American Hi-Fi bring a night of nostalgic 90s and 2000s hits to the stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Everclear",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-27": {
          "date": "2026-10-27",
          "updated_at": "2026-05-18T15:21:07.870776Z",
          "events": [
            {
              "event_id": "evt_c80893ec2e35",
              "venue_id": "venue_rickshaw_stop",
              "title": "Otha",
              "event_time": "Oct 27 2026 8pm/9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-27T20:00:00",
              "event_date": "2026-10-27",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Norwegian artist Otha delivers a live performance of her minimalist and infectious electronic dance-pop.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 8pm/9pm",
              "url": "http://www.foopee.com/by-band.2.html#Otha",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-02T10:48:26.990263Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-03T12:22:03.188268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_303cac827148",
              "venue_id": "venue_castro_theater",
              "title": "Fred Armisen: Comedy for Musicians",
              "event_time": "October 27, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-27T20:00:00",
              "event_date": "2026-10-27",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "2nd Show Added by Popular Demand!",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/fred-armisen-261027",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-09T11:18:30.344881Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-09T11:56:18.618359Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_96e463d50e57",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-27",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-27",
              "event_date": "2026-10-27",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-27",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f871ea06e211",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-27",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-27",
              "event_date": "2026-10-27",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-27",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1198edddfcb",
              "venue_id": "venue_the_fillmore",
              "title": "Slow Pulp, Snuggle",
              "event_time": "Oct 27 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-27T19:00:00",
              "event_date": "2026-10-27",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Slow_Pulp",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-28": {
          "date": "2026-10-28",
          "updated_at": "2026-05-18T14:49:07.394376Z",
          "events": [
            {
              "event_id": "evt_cbb323b570e8",
              "venue_id": "venue_castro_theater",
              "title": "Fred Armisen: Comedy for Musicians",
              "event_time": "October 28, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-28T20:00:00",
              "event_date": "2026-10-28",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "$65.25+ 8pm # (seated)",
              "event_types": [
                "comedy"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/fred-armisen-261028",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_57d2af96fb87",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-28",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-28",
              "event_date": "2026-10-28",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-28",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_aee04b162530",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-28",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-28",
              "event_date": "2026-10-28",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-28",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9890f4f5d942",
              "venue_id": "venue_mountain_winery",
              "title": "Foreigner",
              "event_time": "Oct 28, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-28T19:30:00",
              "event_date": "2026-10-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "CELEBRATING FIFTY YEARS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1390753",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-18T10:51:54.314297Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4a6af07da791",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Logic & G-Eazy: Endless Summer Tour",
              "event_time": "Wed Oct 28, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-28",
              "event_date": "2026-10-28",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Rappers Logic and G-Eazy reunite for the second installment of their \"Endless Summer Tour,\" bringing a night of hip-hop hits to the venue.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/logic-geazy-the-endless-summer-tour-mountain-view-california-10-28-2026/event/1C006495CF2CA18F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-05-18T12:59:09.936821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_914cb8a655f3",
              "venue_id": "venue_mountain_winery",
              "title": "Foreigner",
              "event_time": "Oct 28 5:30pm/7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-28T17:30:00",
              "event_date": "2026-10-28",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The legendary rock band Foreigner performs an intimate set featuring their classic radio anthems at Hotel Utah.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Foreigner",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-29": {
          "date": "2026-10-29",
          "updated_at": "2026-05-18T14:46:03.429190Z",
          "events": [
            {
              "event_id": "evt_8ef441de6b09",
              "venue_id": "venue_castro_theater",
              "title": "Dadi Freyr, Briet",
              "event_time": "October 29, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-29T20:00:00",
              "event_date": "2026-10-29",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Oct 29 Dadi Freyr, Briet a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/dadi-freyr-261029",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_397e6f2654f8",
              "venue_id": "venue_august_hall",
              "title": "A Twink And A Redhead",
              "event_time": "Oct 29 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-29T19:00:00",
              "event_date": "2026-10-29",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$44.95 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$44.95",
              "url": "http://www.foopee.com/by-band.0.html#A_Twink_And_A_Redhead",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3b4d02e1169b",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-29",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-29",
              "event_date": "2026-10-29",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-29",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ab10020553a3",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-29",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-29",
              "event_date": "2026-10-29",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-29",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_048804926b5b",
              "venue_id": "venue_the_fillmore",
              "title": "Dilated Peoples",
              "event_time": "Oct 29 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-29T19:00:00",
              "event_date": "2026-10-29",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Dilated_Peoples",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-10-30": {
          "date": "2026-10-30",
          "updated_at": "2026-05-18T15:58:43.900899Z",
          "events": [
            {
              "event_id": "evt_6acb968c6a34",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Shpongle",
              "event_time": "Oct 30 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-30T20:00:00",
              "event_date": "2026-10-30",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Experience the intricate and psychedelic soundscapes of Shpongle as Simon Posford presents a captivating electronic music performance.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.3.html#Shpongle",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_129a7cb53372",
              "venue_id": "venue_august_hall",
              "title": "Parra For Cuva",
              "event_time": "Oct 30 2026 8pm/9pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-30T20:00:00",
              "event_date": "2026-10-30",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "downtempo, tech house",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$34.70",
              "url": "http://www.foopee.com/by-band.2.html#Parra_For_Cuva",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-01T06:29:15.362316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4f2e642dc3b9",
              "venue_id": "venue_bing_concert_hall",
              "title": "Let the Poets Speak",
              "event_time": "10/30/2026 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-10-30T19:30:00",
              "event_date": "2026-10-30",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "Featuring Timo Andres, Taylor Mac, and the San Francisco Girls Chorus",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/let-the-poets-speak/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-10-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_617367b1b330",
              "venue_id": "venue_cafe_du_nord",
              "title": "Lime Garden",
              "event_time": "Oct 30 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-10-30T20:00:00",
              "event_date": "2026-10-30",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "8pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.2.html#Lime_Garden",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-10-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_6297bf8e42e4",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-30",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-30",
              "event_date": "2026-10-30",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-30",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ddb3d145f91c",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-30",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-30",
              "event_date": "2026-10-30",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-30",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d5e063a0f527",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Bluey’s Big Play",
              "event_time": "2026-10-30T10:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-30T10:00:00",
              "event_date": "2026-10-30",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Live theatrical adaptation of the Emmy Award-winning children’s series featuring puppets, an original story by Joe Brumm, and new music by Joff Bush.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/blueys-big-play-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-30",
              "run_id": "run_2a33022ff29d",
              "run_label": "Bluey’s Big Play, Oct 30 – Nov 1",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_58dd05235e03",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Bluey’s Big Play",
              "event_time": "2026-10-30T14:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-30T14:00:00",
              "event_date": "2026-10-30",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Live theatrical adaptation of the Emmy Award-winning children’s series featuring puppets, an original story by Joe Brumm, and new music by Joff Bush.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/blueys-big-play-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-30",
              "run_id": "run_2a33022ff29d",
              "run_label": "Bluey’s Big Play, Oct 30 – Nov 1",
              "showtime_index": 1,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-10-31": {
          "date": "2026-10-31",
          "updated_at": "2026-05-18T15:58:43.903212Z",
          "events": [
            {
              "event_id": "evt_d8f065399c68",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Shpongle",
              "event_time": "Oct 31 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-31T20:00:00",
              "event_date": "2026-10-31",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Experience the intricate and psychedelic soundscapes of Shpongle as Simon Posford presents a captivating electronic music performance.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "http://www.foopee.com/by-band.3.html#Shpongle",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-04-08T03:46:15.894119Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ba561dcec93e",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-31",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-31",
              "event_date": "2026-10-31",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-31",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_683b595cb622",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-10-31",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-31",
              "event_date": "2026-10-31",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-31",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ef5dab5c71c2",
              "venue_id": "venue_the_mighty",
              "title": "SQUISH: Halloween",
              "event_time": "2026-10-31T21:00:00",
              "venue_name": "The Great Northern",
              "event_start": "2026-10-31T21:00:00",
              "event_date": "2026-10-31",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "A special Halloween edition of the SQUISH party series at The Great Northern.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Check website for pricing",
              "url": "https://ra.co/events/1894569",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-05-18T11:44:14.799981Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_mighty|2026-10-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_7dc407c8ce12",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Bluey’s Big Play",
              "event_time": "2026-10-31T10:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-31T10:00:00",
              "event_date": "2026-10-31",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Live theatrical adaptation of the Emmy Award-winning children’s series featuring puppets, an original story by Joe Brumm, and new music by Joff Bush.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/blueys-big-play-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-31",
              "run_id": "run_2a33022ff29d",
              "run_label": "Bluey’s Big Play, Oct 30 – Nov 1",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e07d21d4174e",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Bluey’s Big Play",
              "event_time": "2026-10-31T14:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-31T14:00:00",
              "event_date": "2026-10-31",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Live theatrical adaptation of the Emmy Award-winning children’s series featuring puppets, an original story by Joe Brumm, and new music by Joff Bush.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/blueys-big-play-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-31",
              "run_id": "run_2a33022ff29d",
              "run_label": "Bluey’s Big Play, Oct 30 – Nov 1",
              "showtime_index": 1,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_ababace803a6",
              "venue_id": "venue_guild_theatre",
              "title": "Stu Allen, Mars Hotel",
              "event_time": "Oct 31 2026 7pm/8pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-10-31T19:00:00",
              "event_date": "2026-10-31",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "a/a (under 18 with parent) $61+ 7pm/8pm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$61+",
              "url": "http://www.foopee.com/by-band.3.html#Stu_Allen",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-10-31",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-01": {
          "date": "2026-11-01",
          "updated_at": "2026-05-18T12:57:22.128531Z",
          "events": [
            {
              "event_id": "evt_393e711da95a",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-01",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-01",
              "event_date": "2026-11-01",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-01",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b1fff7441742",
              "venue_id": "venue_curran_theater",
              "title": "Oh, Mary!",
              "event_time": "2026-11-01",
              "venue_name": "Curran Theatre",
              "event_start": "2026-11-01",
              "event_date": "2026-11-01",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Play",
              "event_types": [],
              "price_info": "",
              "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/oh-mary/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-05-17T12:41:22.490831Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-11-01",
              "run_id": "run_4e32d465b12e",
              "run_label": "Oh, Mary!, Oct 13 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_91d33883f870",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Bluey’s Big Play",
              "event_time": "2026-11-01T10:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-11-01T10:00:00",
              "event_date": "2026-11-01",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Live theatrical adaptation of the Emmy Award-winning children’s series featuring puppets, an original story by Joe Brumm, and new music by Joff Bush.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/blueys-big-play-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-11-01",
              "run_id": "run_2a33022ff29d",
              "run_label": "Bluey’s Big Play, Oct 30 – Nov 1",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_63c634a4f4cc",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Bluey’s Big Play",
              "event_time": "2026-11-01T14:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-11-01T14:00:00",
              "event_date": "2026-11-01",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Live theatrical adaptation of the Emmy Award-winning children’s series featuring puppets, an original story by Joe Brumm, and new music by Joff Bush.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/blueys-big-play-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-11-01",
              "run_id": "run_2a33022ff29d",
              "run_label": "Bluey’s Big Play, Oct 30 – Nov 1",
              "showtime_index": 1,
              "certainty": "uncertain"
            }
          ]
        },
        "2026-11-03": {
          "date": "2026-11-03",
          "updated_at": "2026-05-14T11:05:02.160232Z",
          "events": [
            {
              "event_id": "evt_9f2c63fef61f",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-03",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-03",
              "event_date": "2026-11-03",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-03",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-04": {
          "date": "2026-11-04",
          "updated_at": "2026-05-18T11:09:18.526016Z",
          "events": [
            {
              "event_id": "evt_ee86645adfd5",
              "venue_id": "venue_bing_concert_hall",
              "title": "Raphaël Feuillâtre: Latin Passions",
              "event_time": "11/04/2026 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-11-04T19:30:00",
              "event_date": "2026-11-04",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/raphael-feuillatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-11-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_da1232dd6178",
              "venue_id": "venue_august_hall",
              "title": "Josh Garrels, Taylor Armstrong",
              "event_time": "Nov 4 6pm/7pm",
              "venue_name": "August Hall",
              "event_start": "2026-11-04T18:00:00",
              "event_date": "2026-11-04",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$37.25 6pm/7pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$37.25",
              "url": "http://www.foopee.com/by-band.1.html#Josh_Garrels",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-11-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_fa6114208d6c",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-04",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-04",
              "event_date": "2026-11-04",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-04",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4b29e04648ab",
              "venue_id": "venue_yoshis",
              "title": "Cherronda G: I'm Every Woman",
              "event_time": "WED 11.4 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-11-04T20:00:00",
              "event_date": "2026-11-04",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "RISING R&B STAR",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$34 - $54",
              "url": "https://yoshis.com/events/buy-tickets/cherronda-g-i-m-every-woman/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-11-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-05": {
          "date": "2026-11-05",
          "updated_at": "2026-05-18T14:49:07.413534Z",
          "events": [
            {
              "event_id": "evt_99088ed03380",
              "venue_id": "venue_regency_ballroom",
              "title": "Goldenvoice Presents The Black Angels",
              "event_time": "2026-11-05T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-11-05T20:00:00",
              "event_date": "2026-11-05",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Experience an evening of psychedelic rock featuring the hypnotic sounds of The Black Angels and Ghostwoman at Kilowatt. This live performance showcases a blend of drone-heavy rhythms and vintage-inspired melodies.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Black_Angels",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-18T08:26:00.015113Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-04-18T09:14:51.026225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-11-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_18ea1a526872",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-05",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-05",
              "event_date": "2026-11-05",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-05",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-06": {
          "date": "2026-11-06",
          "updated_at": "2026-05-18T15:42:13.131565Z",
          "events": [
            {
              "event_id": "evt_496eba19fd5b",
              "venue_id": "venue_castro_theater",
              "title": "Syml (solo)",
              "event_time": "November 6, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-11-06T20:00:00",
              "event_date": "2026-11-06",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Solo in North America",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PRESALE 4/30",
              "url": "https://thecastro.com/events/syml-261106",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-26T11:08:45.688088Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-26T11:54:32.017217Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-11-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b8a187884ae3",
              "venue_id": "venue_the_warfield",
              "title": "Buena Vista Orchestra",
              "event_time": "Fri, Nov 6, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-11-06T20:00:00",
              "event_date": "2026-11-06",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Buena Vista Orchestra",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1428072",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-11T13:55:31.935320Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-13T12:41:09.485411Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-11-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7e3216fe0812",
              "venue_id": "venue_august_hall",
              "title": "Bahamas",
              "event_time": "Nov 6 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-11-06T19:00:00",
              "event_date": "2026-11-06",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$44.95 7pm/8pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$44.95",
              "url": "http://www.foopee.com/by-band.0.html#Bahamas",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-11-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_c94e75f5490a",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-06",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-06",
              "event_date": "2026-11-06",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-06",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a7852e0e9310",
              "venue_id": "venue_the_fillmore",
              "title": "Thee Sinseers, Charities",
              "event_time": "Nov 6 2026 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-11-06T20:00:00",
              "event_date": "2026-11-06",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 8pm #",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.3.html#Thee_Sinseers",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-11-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-07": {
          "date": "2026-11-07",
          "updated_at": "2026-05-18T15:35:32.517051Z",
          "events": [
            {
              "event_id": "evt_a41ca8bd0d69",
              "venue_id": "venue_david_brower_center",
              "title": "Hirschfeld's Broadway",
              "event_time": "2026-11-07T19:00:00",
              "venue_name": "David Brower Center",
              "event_start": "2026-11-07T19:00:00",
              "event_date": "2026-11-07",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Shotgun Players presents a special multi-media presentation hosted by David Leopold of the Al Hirschfeld Foundation. The event features behind-the-scenes stories of Al Hirschfeld's legendary theatrical artwork, along with a pop-up art gallery where limited-edition prints will be available for purchase.",
              "event_types": [
                "art",
                "theater"
              ],
              "price_info": "Check website for details",
              "url": "https://shotgunplayers.org/tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-03-29T07:01:47.291112Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-03-29T12:05:01.105787Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-11-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7db8fdd41875",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight – Susannah Martin",
              "event_time": "2026-11-07T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-11-07T10:30:00",
              "event_date": "2026-11-07",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "Coffee-and-cookies conversation with director and theatre maker Susannah Martin as part of Shotgun Spotlight at Shotgun Studios. Includes interview, audience questions, and group discussion.",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/shotgun-spotlight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-03-30T07:37:39.765590Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-03-31T07:02:08.932618Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-11-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3234a9c173ca",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "OSYO String Orchestra Concert",
              "event_time": "2026-11-07T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-11-07T19:30:00",
              "event_date": "2026-11-07",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A program of classical contemporaries featuring Arensky's Variations on a Theme by Tchaikovsky, Copland's Clarinet Concerto, and Tchaikovsky's Serenade for Strings.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Generally free or low-cost",
              "url": "https://www.oaklandsymphony.org/event/osyo-string-orchestra-concert-nov-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_oakland_symphony",
                  "source_name": "Oakland Symphony",
                  "fetched_at": "2026-04-29T10:39:27.773446Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-04-30T19:48:18.119939Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-11-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5850a11a0a2e",
              "venue_id": "venue_castro_theater",
              "title": "PJ MORTON",
              "event_time": "November 7, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-11-07T20:00:00",
              "event_date": "2026-11-07",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Saturday Night Sunday Morning Tour",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/pj-morton-261107",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-11-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_27e2771bbd12",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-07",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-07",
              "event_date": "2026-11-07",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-07",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a0fd6d17a36b",
              "venue_id": "venue_valley_center",
              "title": "OSYO String Orchestra Concert",
              "event_time": "2026-11-07T19:30:00",
              "venue_name": "Valley Center for Performing Arts",
              "event_start": "2026-11-07T19:30:00",
              "event_date": "2026-11-07",
              "venue_address": "3500 Mountain Blvd, Oakland, CA 94602",
              "description": "The Oakland Symphony Youth Orchestra String Orchestra performs its first concert of the 2026-2027 season.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Generally free and open to the public",
              "url": "https://www.oaklandsymphony.org/event/osyo-string-orchestra-concert-nov-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_oakland_symphony",
                  "source_name": "Oakland Symphony",
                  "fetched_at": "2026-05-15T15:55:04.224161Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_valley_center|2026-11-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_b5a289f3e21c",
              "venue_id": "venue_the_chapel",
              "title": "Alex Cameron",
              "event_time": "Sat Nov 7 2026 9:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-11-07T21:00:00",
              "event_date": "2026-11-07",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Indie",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25.00-$28.00",
              "url": "https://wl.seetickets.us/event/alex-cameron/691429?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-18T10:24:42.800944Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-11-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_19353a4c3869",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Southern Culture On The Skids",
              "event_time": "Saturday November 7 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-11-07T19:00:00",
              "event_date": "2026-11-07",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; Southern-fried Rock : rockabilly, country, blues; swing punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 $30.81 in advance [25 face value +5.81 service fee]",
              "url": "http://www.bottomofthehill.com/20261107.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-11-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-08": {
          "date": "2026-11-08",
          "updated_at": "2026-05-18T15:39:17.584191Z",
          "events": [
            {
              "event_id": "evt_721bb06ad65d",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Armand Hammer / TBA",
              "event_time": "Sunday November 8 2026 7:00PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-11-08T19:00:00",
              "event_date": "2026-11-08",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Nov 8 Armand Hammer a/a $25/$30 7pm/8pm",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$25/$30",
              "url": "http://www.bottomofthehill.com/20261108.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-04-08T03:31:44.699576Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_30c749afbf5b",
              "venue_id": "venue_old_first_concerts",
              "title": "LIEDER ALIVE! Fall Festival II",
              "event_time": "2026-11-08T16:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-11-08T16:00:00",
              "event_date": "2026-11-08",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Featuring Olivier Zerouali and Ji Youn Lee as part of the 15th Annual Liederabend Series.",
              "event_types": [
                "live_music",
                "classical",
                "festival"
              ],
              "price_info": "General Admission: $30; Seniors (65+): $25; Students: $10",
              "url": "https://www.oldfirstconcerts.org/performance/lieder-alive-fall-festival-ii/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-05-07T10:32:26.729121Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_3a2d3be03394",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Tchaikovsky to Copland",
              "event_time": "2026-11-08T16:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-11-08T16:00:00",
              "event_date": "2026-11-08",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Sunday matinee performance featuring clarinetist Cory Tiffin and the music of Tchaikovsky and Copland.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Single tickets: $50–$110; Students: $25",
              "url": "https://www.californiasymphony.org/concerts/from-tchaikovsky-to-copland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-05-11T11:34:28.381703Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_e63785737086",
              "venue_id": "venue_mitchell_park_center",
              "title": "Brandon Woody",
              "event_time": "2026-11-08T14:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-11-08T14:00:00",
              "event_date": "2026-11-08",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Jazz performance",
              "event_types": [],
              "price_info": "$20",
              "url": "https://markweiss86.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-05-11T16:56:01.262503Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_088e05ac02e8",
              "venue_id": "venue_bing_concert_hall",
              "title": "Orpheus Chamber Orchestra",
              "event_time": "11/08/2026 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-11-08T19:30:00",
              "event_date": "2026-11-08",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "Home, Suite Home",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/orpheus-chamber-orchestra/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2f7df7d76e4c",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-08",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-08",
              "event_date": "2026-11-08",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-08",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_d222987419f5",
              "venue_id": "venue_temescal_arts_center",
              "title": "Shapeshifters Cinema",
              "event_time": "2026-11-08T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-11-08T20:00:00",
              "event_date": "2026-11-08",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Monthly Shapeshifters Cinema screening at Temescal Arts Center.",
              "event_types": [],
              "price_info": "FREE",
              "url": "https://www.temescalartcenter.org/events.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-05-15T10:56:02.065296Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_977171023abb",
              "venue_id": "venue_valley_center",
              "title": "OSYO Fall Concert",
              "event_time": "2026-11-08T14:00:00",
              "venue_name": "Valley Center for Performing Arts",
              "event_start": "2026-11-08T14:00:00",
              "event_date": "2026-11-08",
              "venue_address": "3500 Mountain Blvd, Oakland, CA 94602",
              "description": "The full Oakland Symphony Youth Orchestra performs its fall concert under the direction of Omid Zoufonoun.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Generally free and open to the public",
              "url": "https://www.oaklandsymphony.org/event/osyo-fall-concert-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_oakland_symphony",
                  "source_name": "Oakland Symphony",
                  "fetched_at": "2026-05-15T15:55:04.224161Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_valley_center|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_63c4cd5f12d3",
              "venue_id": "venue_great_american_music_hall",
              "title": "Foy Vance",
              "event_time": "Nov 8 2026 6pm/7pm",
              "venue_name": "Great American",
              "event_start": "2026-11-08T18:00:00",
              "event_date": "2026-11-08",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $36/$40/$45 6pm/7pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$36/$40/$45",
              "url": "http://www.foopee.com/by-band.1.html#Foy_Vance",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5072dbc2cdc2",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Leonid & Friends",
              "event_time": "November 8, 2026",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-11-08",
              "event_date": "2026-11-08",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Leonid & Friends 2026 Tour",
              "event_types": [
                "live_music"
              ],
              "price_info": "GET TICKETS",
              "url": "https://foxrwc.showare.com/eventperformances.asp?evt=404",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-05-18T15:38:46.733214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-11-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-09": {
          "date": "2026-11-09",
          "updated_at": "2026-05-12T11:35:37.108903Z",
          "events": [
            {
              "event_id": "evt_9f591492dc80",
              "venue_id": "venue_bing_concert_hall",
              "title": "Piano Masterclass with Isata Kanneh-Mason",
              "event_time": "11/09/2026 10:30 AM",
              "venue_name": "Bing Hall",
              "event_start": "2026-11-09T10:30:00",
              "event_date": "2026-11-09",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/education-and-engagement/on-campus-and-in-the-community/2026-2027-season/isata-kanneh-mason-masterclass/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-11-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-10": {
          "date": "2026-11-10",
          "updated_at": "2026-05-18T15:21:08.223427Z",
          "events": [
            {
              "event_id": "evt_98dea8c2b951",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Hit the Lights",
              "event_time": "Tuesday November 10 2026 7:30PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-11-10T19:30:00",
              "event_date": "2026-11-10",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; emo-tinged punk-pop; pop punk; jangly indie-rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "http://www.bottomofthehill.com/20261110.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-03T12:18:47.776674Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-11-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5c02e2e8ae2c",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-10",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-10",
              "event_date": "2026-11-10",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-10",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_b86642dc5636",
              "venue_id": "venue_chase_center",
              "title": "Teddy Swims",
              "event_time": "Nov 10 2026 6pm/7pm",
              "venue_name": "Chase Center",
              "event_start": "2026-11-10T18:00:00",
              "event_date": "2026-11-10",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Teddy Swims",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$67+",
              "url": "http://www.foopee.com/by-band.3.html#Teddy_Swims",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_3",
                  "source_name": "Foopee Club 3",
                  "fetched_at": "2026-05-18T15:20:32.381609Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-11-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-11": {
          "date": "2026-11-11",
          "updated_at": "2026-05-18T15:35:32.540300Z",
          "events": [
            {
              "event_id": "evt_81466c441095",
              "venue_id": "venue_castro_theater",
              "title": "ÓLAFUR ARNALDS",
              "event_time": "November 11, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-11-11T20:00:00",
              "event_date": "2026-11-11",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "2nd Show Added by Popular Demand!",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/olafur-arnalds-261111",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-11-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_795eaac26de2",
              "venue_id": "venue_bing_concert_hall",
              "title": "Handel's The Power of Music",
              "event_time": "11/11/2026 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-11-11T19:30:00",
              "event_date": "2026-11-11",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "",
              "event_types": [],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/philharmonia-baroque-orchestra-and-chorale-handels-the-power-of-music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-11-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4bddb70b034b",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-11",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-11",
              "event_date": "2026-11-11",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-11",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0cbdc569cb70",
              "venue_id": "venue_the_fillmore",
              "title": "Damned, Flamin' Groovies, Courettes",
              "event_time": "Nov 11 2026 7pm/8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-11-11T19:00:00",
              "event_date": "2026-11-11",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 7pm/8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.0.html#Damned",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-11-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_dbf671336564",
              "venue_id": "venue_great_american_music_hall",
              "title": "Jake Xerxes Fussell",
              "event_time": "Nov 11 2026 7pm/8pm",
              "venue_name": "Great American",
              "event_start": "2026-11-11T19:00:00",
              "event_date": "2026-11-11",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "a/a $25/$30 7pm/8pm (fully seated)",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$25/$30",
              "url": "http://www.foopee.com/by-band.1.html#Jake_Xerxes_Fussell",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-11-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-12": {
          "date": "2026-11-12",
          "updated_at": "2026-05-18T15:35:32.520350Z",
          "events": [
            {
              "event_id": "evt_3bb5ddcaeb4f",
              "venue_id": "venue_castro_theater",
              "title": "ÓLAFUR ARNALDS",
              "event_time": "November 12, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-11-12T20:00:00",
              "event_date": "2026-11-12",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "$64.75+ 7pm/8pm #",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/olafur-arnalds-261112",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-06T12:17:36.183241Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-11-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_9b5702708240",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-12",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-12",
              "event_date": "2026-11-12",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-12",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_a1f7c294b768",
              "venue_id": "venue_stay_gold_deli",
              "title": "Danbert Nobacon with Normal Bird + Zen & Sarafin",
              "event_time": "2026-11-12",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-11-12",
              "event_date": "2026-11-12",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Danbert Nobacon (of Chumbawamba) performs live with guests Normal Bird and Zen & Sarafin.",
              "event_types": [],
              "price_info": "Check website for details",
              "url": "https://danbertnobacon.com/tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-05-15T23:29:51.094583Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-11-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_cd25155be11a",
              "venue_id": "venue_act_theater",
              "title": "JOHN PROCTOR IS THE VILLAIN",
              "event_time": "NOV 12—DEC 6, 2026",
              "venue_name": "ACT Theater",
              "event_start": "2026-11-12",
              "event_date": "2026-11-12",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Set in a rural high school, this contemporary play explores power dynamics and scandal as students study a classic piece of literature.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on/2026-27-season/john-proctor-is-the-villain",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-05-18T12:47:34.237523Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_act_theater|2026-11-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_02440f86f725",
              "venue_id": "venue_the_fillmore",
              "title": "Gene",
              "event_time": "Nov 12 2026 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-11-12T20:00:00",
              "event_date": "2026-11-12",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "a/a 8pm #",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#Gene",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_1",
                  "source_name": "Foopee Club 1",
                  "fetched_at": "2026-05-18T14:45:42.127018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-11-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-13": {
          "date": "2026-11-13",
          "updated_at": "2026-05-18T16:00:41.711795Z",
          "events": [
            {
              "event_id": "evt_acc057fd0026",
              "venue_id": "venue_golden_gate_theater",
              "title": "Outlander In Concert",
              "event_time": "2026-11-13T19:30:00",
              "venue_name": "Golden Gate Theater",
              "event_start": "2026-11-13T19:30:00",
              "event_date": "2026-11-13",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "A symphonic experience featuring Bear McCreary's iconic score performed live by an orchestra while the series' most stirring moments unfold on a cinema-sized screen.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Buy tickets",
              "url": "https://us.atgtickets.com/venues/golden-gate-theatre/whats-on/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theater",
                  "fetched_at": "2026-04-10T23:56:08.475546Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-11-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_3a9de2c53b7d",
              "venue_id": "venue_august_hall",
              "title": "Tank And The Bangas, Ariel J.",
              "event_time": "Nov 13 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-11-13T19:00:00",
              "event_date": "2026-11-13",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$39+ 7pm/8pm",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$39+",
              "url": "http://www.foopee.com/by-band.3.html#Tank_And_The_Bangas",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-11-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_4515b1b55fd7",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-13",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-13",
              "event_date": "2026-11-13",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-13",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_5827c982c13d",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Jon Spencer & Fuckwolf",
              "event_time": "Friday November 13 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-11-13T20:00:00",
              "event_date": "2026-11-13",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "•••  21 AND OVER; punk blues garage; xxx; psych rock post-punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.bottomofthehill.com/20261113.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-18T11:26:39.324883Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-11-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_0366c4daf28d",
              "venue_id": "venue_regency_ballroom",
              "title": "L7",
              "event_time": "Nov 13 7pm/8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-11-13T19:00:00",
              "event_date": "2026-11-13",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Grunge legends L7 bring their fierce energy and iconic punk-influenced rock to the Hotel Utah stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "http://www.foopee.com/by-band.1.html#L7",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_2",
                  "source_name": "Foopee Club 2",
                  "fetched_at": "2026-05-18T14:46:59.139537Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-11-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_15ab2ab1dc37",
              "venue_id": "venue_the_warfield",
              "title": "KINO",
              "event_time": "Fri, Nov 13, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-11-13T20:00:00",
              "event_date": "2026-11-13",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "KINO USA TOUR",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1394481",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-18T15:42:08.398682Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-11-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            }
          ]
        },
        "2026-11-14": {
          "date": "2026-11-14",
          "updated_at": "2026-05-18T16:00:41.713559Z",
          "events": [
            {
              "event_id": "evt_daa18dcc9448",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "An Evening with David Sedaris",
              "event_time": "Sat, Nov 14, 2026",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-11-14",
              "event_date": "2026-11-14",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "Acclaimed humorist and author David Sedaris returns to the Orpheum Theatre for an evening of readings and observations. The event includes a selection of new and unpublished works followed by a Q&A session.",
              "event_types": [
                "literary"
              ],
              "price_info": "More info",
              "url": "https://us.atgtickets.com/events/david-sedaris/war-memorial-opera-house/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-16T09:15:27.725138Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-16T09:55:49.860603Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-11-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_f587521f2550",
              "venue_id": "venue_august_hall",
              "title": "Inna",
              "event_time": "Nov 14 7pm/8pm",
              "venue_name": "August Hall",
              "event_start": "2026-11-14T19:00:00",
              "event_date": "2026-11-14",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "$89.50 7pm/8pm",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$89.50",
              "url": "http://www.foopee.com/by-band.1.html#Inna",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_foopee_club_0",
                  "source_name": "Foopee Club 0",
                  "fetched_at": "2026-05-13T12:34:56.643562Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-11-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_ce033c5babce",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-11-14",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-11-14",
              "event_date": "2026-11-14",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A theater troupe takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-05-14T11:04:36.222546Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-11-14",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_7aca0bd1f8a7",
              "venue_id": "venue_first_church_berkeley",
              "title": "Handel's The Power of Music",
              "event_time": "2026-11-14T19:30:00",
              "venue_name": "First Cong Ch Berkeley",
              "event_start": "2026-11-14T19:30:00",
              "event_date": "2026-11-14",
              "venue_address": "2345 Channing Way, Berkeley, CA 94704",
              "description": "The U.S. premiere of the 1742 Dublin version of Handel's Alexander's Feast (The Power of Music), featuring soprano Sherezade Panthaki.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$30 - $125",
              "url": "https://philharmonia.org/concert/handels-the-power-of-music-in-berkeley/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_church_berkeley",
                  "source_name": "First Cong Ch Berkeley",
                  "fetched_at": "2026-05-15T20:29:42.350279Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_church_berkeley|2026-11-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            },
            {
              "event_id": "evt_86d21bfb0476",
              "venue_id": "venue_yoshis",
              "title": "Day26",
              "event_time": "SAT 11.14",
              "venue_name": "Yoshi's",
              "event_start": "2026-11-14T19:30:00",
              "event_date": "2026-11-14",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "DISCOVERED AND BROUGHT TOGETHER ON MTV’S HIT REALITY SERIES MAKING THE BAND 4",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$40 - $89",
              "url": "https://yoshis.com/events/buy-tickets/day26-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-11-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_909e62e70a0e",
              "venue_id": "venue_yoshis",
              "title": "Day26 VIP Experience",
              "event_time": "SAT 11.14 5:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-11-14T17:30:00",
              "event_date": "2026-11-14",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "$89",
              "url": "https://yoshis.com/events/buy-tickets/day26-pre-show-vip-experience-show-ticet-not-included/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-05-18T11:09:02.603154Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-11-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_092aca7a5398",
              "venue_id": "venue_ivy_room",
              "title": "Drag the River",
              "event_time": "Saturday Nov 14 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-11-14T19:00:00",
              "event_date": "2026-11-14",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - FEAT. CHAD PRICE + JON SNODGRASS & SURPRISES",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/184199",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-18T11:28:37.293990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-11-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed"
            },
            {
              "event_id": "evt_2ea6dda3465f",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Nutcracker! Magical Christmas Ballet",
              "event_time": "2026-11-14T15:00:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-11-14T15:00:00",
              "event_date": "2026-11-14",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Large-scale holiday ballet spectacle with international dancers, acrobatics, elaborate costumes, and Tchaikovsky’s iconic score.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://sanjosetheaters.org/event/nutcracker-magical-christmas-ballet-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-18T12:57:21.517579Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-11-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain"
            }
          ]
        }
      }
    }
  },
  "sha256": "30889acbc36c4f030aee32c52dc31f48ccdf250b6f6adebbd61f82b825e19900"
}