import urllib.request
import re

url = "https://charity-boat-race.base44.app/assets/index-DASgGjMp.js"
req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})
try:
    with urllib.request.urlopen(req) as response:
        js = response.read().decode('utf-8')
        
        # Find the Activities section block in the JS
        # Look for "Fun Day" or "Rickshaw Ride"
        match = re.search(r'.{0,300}Fun Day.{0,300}', js)
        if match:
            print("FOUND CONTENT AROUND 'Fun Day':")
            print(match.group(0))
        else:
            print("Could not find 'Fun Day'")
except Exception as e:
    print(f"Error: {e}")
