Liss, Alex (NYC-HUG) commited on
Commit
a553f0d
·
0 Parent(s):

Fresh initial commit after wiping old Git history

Browse files
.env.example ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OpenAI API credentials
2
+ OPENAI_API_KEY="your_openai_api_key_here"
3
+ OPENAI_MODEL="gpt-4o"
4
+
5
+ # Neo4j Aura database credentials
6
+ AURA_CONNECTION_URI="your_neo4j_uri_here"
7
+ AURA_USERNAME="your_neo4j_username_here"
8
+ AURA_PASSWORD="your_neo4j_password_here"
9
+
10
+ # Optional: Zep memory service (if using)
11
+ ZEP_API_KEY="your_zep_api_key_here"
.gitignore ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment variables
2
+ .env
3
+ **/.env
4
+
5
+ # Python cache files
6
+ __pycache__/
7
+ *.py[cod]
8
+ *$py.class
9
+ *.so
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+
27
+ # Jupyter Notebook
28
+ .ipynb_checkpoints
29
+
30
+ # Virtual Environment
31
+ venv/
32
+ ENV/
33
+ env/
34
+
35
+ # IDE files
36
+ .idea/
37
+ .vscode/
38
+ *.swp
39
+ *.swo
40
+
41
+ # OS specific files
42
+ .DS_Store
43
+ .DS_Store?
44
+ ._*
45
+ .Spotlight-V100
46
+ .Trashes
47
+ ehthumbs.db
48
+ Thumbs.db
49
+
50
+ # Streamlit secrets
51
+ .streamlit/secrets.toml
52
+
53
+ # Database files
54
+ *.db
55
+ *.db-shm
56
+ *.db-wal
57
+
58
+ # Logs
59
+ logs/
60
+ *.log
61
+
62
+ # Output files that may contain sensitive data
63
+ **/niners_output/game_summary_embeddings.csv
64
+ **/niners_output/schedule_with_result_embedding.csv
65
+ **/niners_output/schedule_with_result_embedding.gsheet
.streamlit/config.toml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [theme]
2
+ primaryColor = "#E31837" # 49ers red
3
+ backgroundColor = "#FFFFFF"
4
+ secondaryBackgroundColor = "#F5F5F5"
5
+ textColor = "#262730"
6
+ font = "sans serif"
7
+
8
+ [server]
9
+ enableCORS = false
10
+ enableXsrfProtection = true
11
+
12
+ [browser]
13
+ gatherUsageStats = false
README.md ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 49ers FanAI Hub - Streamlit Version
2
+
3
+ This is a Streamlit-based chatbot application that provides information about the San Francisco 49ers, players, games, and fans. The application uses LangChain, Neo4j, and Zep for memory management.
4
+
5
+ ## Features
6
+
7
+ - Chat interface for asking questions about the 49ers
8
+ - Integration with Neo4j graph database for structured data queries
9
+ - Vector search for finding game summaries
10
+ - Memory management with Zep for conversation history
11
+
12
+ ## Prerequisites
13
+
14
+ - Python 3.9+
15
+ - Neo4j database (local or Aura)
16
+ - OpenAI API key
17
+ - Zep API key
18
+
19
+ ## Installation
20
+
21
+ 1. Clone the repository
22
+ 2. Install the required packages:
23
+
24
+ ```bash
25
+ pip install -r requirements.txt
26
+ ```
27
+
28
+ 3. Set up your environment variables:
29
+ - Copy `.env.example` to `.env` in the root directory
30
+ - Copy `data/.env.example` to `data/.env` in the data directory
31
+ - Fill in your API keys and credentials in both `.env` files
32
+
33
+ Example `.env` file:
34
+ ```
35
+ OPENAI_API_KEY=your_openai_api_key
36
+ OPENAI_MODEL=gpt-4o
37
+ AURA_CONNECTION_URI=your_neo4j_uri
38
+ AURA_USERNAME=your_neo4j_username
39
+ AURA_PASSWORD=your_neo4j_password
40
+ ZEP_API_KEY=your_zep_api_key
41
+ ```
42
+
43
+ Alternatively, you can set up your credentials in the `.streamlit/secrets.toml` file:
44
+
45
+ ```toml
46
+ # OpenAI API credentials
47
+ OPENAI_API_KEY = "your_openai_api_key"
48
+ OPENAI_MODEL = "gpt-4o" # Or your preferred model
49
+
50
+ # Neo4j credentials
51
+ NEO4J_URI = "your_neo4j_uri"
52
+ NEO4J_USERNAME = "your_neo4j_username"
53
+ NEO4J_PASSWORD = "your_neo4j_password"
54
+
55
+ # Zep API key
56
+ ZEP_API_KEY = "your_zep_api_key"
57
+ ```
58
+
59
+ > **IMPORTANT**: Never commit your actual API keys or credentials to the repository. The `.env` files and `.streamlit/secrets.toml` are included in `.gitignore` to prevent accidental exposure of sensitive information.
60
+
61
+ ## Running the Application
62
+
63
+ To run the Streamlit application:
64
+
65
+ ```bash
66
+ streamlit run app.py
67
+ ```
68
+
69
+ This will start the Streamlit server and open the application in your default web browser.
70
+
71
+ ## Project Structure
72
+
73
+ - `app.py`: Main Streamlit application
74
+ - `agent.py`: Agent implementation using LangChain
75
+ - `graph.py`: Neo4j graph connection
76
+ - `llm.py`: Language model configuration
77
+ - `utils.py`: Utility functions
78
+ - `prompts.py`: System prompts for the agent
79
+ - `tools/`: Specialized tools for the agent
80
+ - `cypher.py`: Tool for Cypher queries to Neo4j
81
+ - `vector.py`: Tool for vector search of game summaries
82
+ - `data/`: Data files and scripts
83
+ - `create_embeddings.py`: Script to create embeddings for game summaries
84
+ - `upload_embeddings.py`: Script to upload embeddings to Neo4j
85
+ - `neo4j_ingestion.py`: Script to ingest data into Neo4j
86
+ - Various CSV files with 49ers data
87
+
88
+ ## Security Considerations
89
+
90
+ This repository includes:
91
+ - `.gitignore` file to prevent committing sensitive information
92
+ - `.env.example` files showing required environment variables without actual values
93
+ - No hardcoded API keys or credentials in the code
94
+
95
+ Before pushing to a public repository:
96
+ 1. Ensure all sensitive information is in `.env` files (which are ignored by git)
97
+ 2. Verify no API keys or credentials are hardcoded in any files
98
+ 3. Check that large data files or binary files are properly ignored if needed
99
+
100
+ ## Usage
101
+
102
+ 1. Start the application
103
+ 2. Ask questions about the 49ers, such as:
104
+ - "Who are the current players on the 49ers roster?"
105
+ - "Tell me about the 49ers game against the Chiefs"
106
+ - "Which fan communities have the most members?"
107
+ - "Who is the most popular player among fans?"
108
+
109
+ The application will use the appropriate tools to answer your questions based on the data in the Neo4j database.
agent.py ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Agent implementation for 49ers chatbot using LangChain and Neo4j.
3
+ """
4
+ import os
5
+ from langchain.agents import AgentExecutor, create_react_agent
6
+ from langchain_core.prompts import PromptTemplate
7
+ from langchain.tools import Tool
8
+ from langchain_core.runnables.history import RunnableWithMessageHistory
9
+ from langchain_neo4j import Neo4jChatMessageHistory
10
+ from langchain.callbacks.manager import CallbackManager
11
+ from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
12
+
13
+ from llm import llm
14
+ from graph import graph
15
+ from prompts import AGENT_SYSTEM_PROMPT, CHAT_SYSTEM_PROMPT
16
+ from utils import get_session_id
17
+
18
+ # Import tools
19
+ from tools.cypher import cypher_qa_wrapper
20
+ from tools.vector import get_game_summary
21
+
22
+ # Create a basic chat chain for general football discussion
23
+ from langchain_core.prompts import ChatPromptTemplate
24
+ from langchain.schema import StrOutputParser
25
+
26
+ chat_prompt = ChatPromptTemplate.from_messages(
27
+ [
28
+ ("system", CHAT_SYSTEM_PROMPT),
29
+ ("human", "{input}"),
30
+ ]
31
+ )
32
+
33
+ # Create a non-streaming LLM for the agent
34
+ from langchain_openai import ChatOpenAI
35
+ import streamlit as st
36
+
37
+ # Get API key from environment or Streamlit secrets
38
+ def get_api_key(key_name):
39
+ """Get API key from environment or Streamlit secrets"""
40
+ # First try to get from Streamlit secrets
41
+ if hasattr(st, 'secrets') and key_name in st.secrets:
42
+ return st.secrets[key_name]
43
+ # Then try to get from environment
44
+ return os.environ.get(key_name)
45
+
46
+ OPENAI_API_KEY = get_api_key("OPENAI_API_KEY")
47
+ OPENAI_MODEL = get_api_key("OPENAI_MODEL") or "gpt-4-turbo"
48
+
49
+ agent_llm = ChatOpenAI(
50
+ openai_api_key=OPENAI_API_KEY,
51
+ model=OPENAI_MODEL,
52
+ temperature=0.1,
53
+ streaming=False # Disable streaming for agent
54
+ )
55
+
56
+ movie_chat = chat_prompt | llm | StrOutputParser()
57
+
58
+ def football_chat_wrapper(input_text):
59
+ """Wrapper function for football chat with error handling"""
60
+ try:
61
+ return {"output": movie_chat.invoke({"input": input_text})}
62
+ except Exception as e:
63
+ print(f"Error in football_chat: {str(e)}")
64
+ return {"output": "I apologize, but I encountered an error while processing your question. Could you please rephrase it?"}
65
+
66
+ # Define the tools
67
+ tools = [
68
+ Tool.from_function(
69
+ name="General Football Chat",
70
+ description="For general football chat not covered by other tools",
71
+ func=football_chat_wrapper,
72
+ ),
73
+ Tool.from_function(
74
+ name="Game Summary Search",
75
+ description="ONLY use this when specifically searching for details about a particular game or match result",
76
+ func=get_game_summary,
77
+ ),
78
+ Tool.from_function(
79
+ name="49ers Graph Search",
80
+ description="Use this for ANY questions about 49ers players, games, schedules team info, fans, or relationships - this should be your DEFAULT tool for 49ers-related queries",
81
+ func=cypher_qa_wrapper
82
+ )
83
+ ]
84
+
85
+ # Create the memory manager
86
+ def get_memory(session_id):
87
+ """Get the chat history from Neo4j for the given session"""
88
+ return Neo4jChatMessageHistory(session_id=session_id, graph=graph)
89
+
90
+ # Create the agent prompt
91
+ agent_prompt = PromptTemplate.from_template(AGENT_SYSTEM_PROMPT)
92
+
93
+ # Create the agent with non-streaming LLM
94
+ agent = create_react_agent(agent_llm, tools, agent_prompt)
95
+ agent_executor = AgentExecutor(
96
+ agent=agent,
97
+ tools=tools,
98
+ verbose=True,
99
+ handle_parsing_errors=True,
100
+ max_iterations=3 # Limit the number of iterations to prevent infinite loops
101
+ )
102
+
103
+ # Create a chat agent with memory
104
+ chat_agent = RunnableWithMessageHistory(
105
+ agent_executor,
106
+ get_memory,
107
+ input_messages_key="input",
108
+ history_messages_key="chat_history",
109
+ )
110
+
111
+ def generate_response(user_input, session_id=None):
112
+ """
113
+ Generate a response using the agent and tools
114
+
115
+ Args:
116
+ user_input (str): The user's message
117
+ session_id (str, optional): The session ID for memory
118
+
119
+ Returns:
120
+ dict: The full response object from the agent
121
+ """
122
+ print('Starting generate_response function...')
123
+ print(f'User input: {user_input}')
124
+ print(f'Session ID: {session_id}')
125
+
126
+ if not session_id:
127
+ session_id = get_session_id()
128
+ print(f'Generated new session ID: {session_id}')
129
+
130
+ # Add retry logic
131
+ max_retries = 3
132
+ for attempt in range(max_retries):
133
+ try:
134
+ print('Invoking chat_agent...')
135
+ response = chat_agent.invoke(
136
+ {"input": user_input},
137
+ {"configurable": {"session_id": session_id}},
138
+ )
139
+ print(f'Raw response from chat_agent: {response}')
140
+
141
+ # Extract the output and format it for Streamlit
142
+ if isinstance(response, dict):
143
+ print('Response is a dictionary, extracting fields...')
144
+ output = response.get('output', '')
145
+ intermediate_steps = response.get('intermediate_steps', [])
146
+ print(f'Extracted output: {output}')
147
+ print(f'Extracted intermediate steps: {intermediate_steps}')
148
+
149
+ # Create a formatted response
150
+ formatted_response = {
151
+ "output": output,
152
+ "intermediate_steps": intermediate_steps,
153
+ "metadata": {
154
+ "tools_used": [step[0].tool for step in intermediate_steps] if intermediate_steps else ["None"]
155
+ }
156
+ }
157
+ print(f'Formatted response: {formatted_response}')
158
+ return formatted_response
159
+ else:
160
+ print('Response is not a dictionary, converting to string...')
161
+ return {
162
+ "output": str(response),
163
+ "intermediate_steps": [],
164
+ "metadata": {"tools_used": ["None"]}
165
+ }
166
+
167
+ except Exception as e:
168
+ if attempt == max_retries - 1: # Last attempt
169
+ print(f"Error in generate_response after {max_retries} attempts: {str(e)}")
170
+ return {
171
+ "output": "I apologize, but I encountered an error while processing your request. Could you please try again?",
172
+ "intermediate_steps": [],
173
+ "metadata": {"tools_used": ["None"]}
174
+ }
175
+ print(f"Attempt {attempt + 1} failed, retrying...")
176
+ continue
app.py ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Movie Chatbot powered by Langchain, Neo4j, Streamlit, and Zep.
3
+ """
4
+
5
+ import os
6
+ import uuid
7
+ import streamlit as st
8
+ from zep_cloud.client import AsyncZep
9
+ from zep_cloud.types import Message
10
+ import asyncio
11
+
12
+ # Import our components
13
+ from agent import generate_response
14
+ from utils import get_session_id, get_user_id, write_message
15
+ from graph import graph
16
+
17
+ # Page configuration
18
+ st.set_page_config(
19
+ page_title="49ers FanAI Hub",
20
+ page_icon="🏈",
21
+ layout="wide"
22
+ )
23
+
24
+ # Initialize Zep client
25
+ zep_api_key = os.environ.get("ZEP_API_KEY")
26
+ if not zep_api_key:
27
+ st.error("ZEP_API_KEY environment variable is not set. Please set it to use memory features.")
28
+ zep = None
29
+ else:
30
+ zep = AsyncZep(api_key=zep_api_key)
31
+
32
+ # Initialize session state for messages if it doesn't exist
33
+ if "messages" not in st.session_state:
34
+ st.session_state.messages = []
35
+
36
+ if "initialized" not in st.session_state:
37
+ st.session_state.initialized = False
38
+
39
+ # Function to initialize the chat session
40
+ async def initialize_chat():
41
+ """Set up the chat session when a user connects"""
42
+ try:
43
+ # Generate unique identifiers for the user and session
44
+ user_id = get_user_id()
45
+ session_id = get_session_id()
46
+
47
+ print(f"Starting new chat session. User ID: {user_id}, Session ID: {session_id}")
48
+
49
+ # Register user in Zep if available
50
+ if zep:
51
+ await zep.user.add(
52
+ user_id=user_id,
53
+ email="[email protected]",
54
+ first_name="User",
55
+ last_name="MovieFan",
56
+ )
57
+
58
+ # Start a new session in Zep
59
+ await zep.memory.add_session(
60
+ session_id=session_id,
61
+ user_id=user_id,
62
+ )
63
+
64
+ # Add welcome message to session state
65
+ welcome_message = """
66
+ # 🏈 Welcome to the 49ers FanAI Hub!
67
+
68
+ I can help you with:
69
+ - Information about the 49ers, players, and fans
70
+ - Finding 49ers games based on plot descriptions or themes
71
+ - Discovering connections between people in the 49ers industry
72
+
73
+ What would you like to know about today?
74
+ """
75
+ st.session_state.messages.append({"role": "assistant", "content": welcome_message})
76
+ st.session_state.initialized = True
77
+
78
+ except Exception as e:
79
+ import traceback
80
+ print(f"Error in initialize_chat: {str(e)}")
81
+ print(f"Traceback: {traceback.format_exc()}")
82
+ st.session_state.messages.append({
83
+ "role": "system",
84
+ "content": "There was an error starting the chat. Please refresh the page and try again."
85
+ })
86
+
87
+ # Function to process user messages
88
+ async def process_message(message):
89
+ """Process user messages and generate responses with the agent"""
90
+ print("Starting message processing...")
91
+ session_id = get_session_id()
92
+ print(f"Session ID: {session_id}")
93
+
94
+ try:
95
+ # Store user message in Zep memory if available
96
+ if zep:
97
+ print("Storing user message in Zep...")
98
+ await zep.memory.add(
99
+ session_id=session_id,
100
+ messages=[Message(role_type="user", content=message, role="user")]
101
+ )
102
+
103
+ # Process with the agent
104
+ print('Calling generate_response function...')
105
+ agent_response = generate_response(message, session_id)
106
+ print(f"Agent response received: {agent_response}")
107
+
108
+ # Extract the output and metadata
109
+ output = agent_response.get("output", "")
110
+ metadata = agent_response.get("metadata", {})
111
+ print(f"Extracted output: {output}")
112
+ print(f"Extracted metadata: {metadata}")
113
+
114
+ # Add assistant response to session state
115
+ st.session_state.messages.append({"role": "assistant", "content": output})
116
+
117
+ # Store assistant's response in Zep memory if available
118
+ if zep:
119
+ print("Storing assistant response in Zep...")
120
+ await zep.memory.add(
121
+ session_id=session_id,
122
+ messages=[Message(role_type="assistant", content=output, role="assistant")]
123
+ )
124
+ print("Assistant response stored in Zep")
125
+
126
+ except Exception as e:
127
+ import traceback
128
+ print(f"Error in process_message: {str(e)}")
129
+ print(f"Traceback: {traceback.format_exc()}")
130
+ st.session_state.messages.append({
131
+ "role": "assistant",
132
+ "content": "I apologize, but I encountered an error. Could you please try again?"
133
+ })
134
+
135
+ # Initialize the chat session if not already initialized
136
+ if not st.session_state.initialized:
137
+ asyncio.run(initialize_chat())
138
+
139
+ # Display chat messages
140
+ for message in st.session_state.messages:
141
+ write_message(message["role"], message["content"], save=False)
142
+
143
+ # Chat input
144
+ if prompt := st.chat_input("Ask me about the 49ers..."):
145
+ # Display user message and save to history
146
+ write_message("user", prompt)
147
+
148
+ # Process the message and display response
149
+ with st.spinner("Thinking..."):
150
+ # Process the message asynchronously
151
+ asyncio.run(process_message(prompt))
152
+
153
+ # Force a rerun to display the new message
154
+ st.rerun()
data/.env.example ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OpenAI API credentials
2
+ OPENAI_API_KEY="your_openai_api_key_here"
3
+ OPENAI_MODEL="gpt-4o"
4
+
5
+ # Neo4j Aura database credentials
6
+ AURA_CONNECTION_URI="your_neo4j_uri_here"
7
+ AURA_USERNAME="your_neo4j_username_here"
8
+ AURA_PASSWORD="your_neo4j_password_here"
9
+
10
+ # Optional: Zep memory service (if using)
11
+ ZEP_API_KEY="your_zep_api_key_here"
data/49ers roster - Sheet1.csv ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Player,#,Pos,HT,WT,Age,Exp,College,status
2
+ Israel Abanikanda,20,RB,5-10,216,22,2,Pittsburgh,Active
3
+ Brandon Allen,17,QB,6-2,209,32,8,Arkansas,Active
4
+ Evan Anderson,69,DL,6-3,326,23,R,Florida Atlantic,Active
5
+ Tre Avery,36,CB,5-11,181,28,3,Rutgers,Active
6
+ Robert Beal Jr.,51,DL,6-4,250,25,2,Georgia,Active
7
+ Tatum Bethune,48,LB,6-0,299,24,R,Florida State,Active
8
+ Nick Bosa,97,DL,6-4,266,27,6,Ohio State,Active
9
+ Jake Brendel,64,OL,6-4,299,32,7,UCLA,Active
10
+ Ji'Ayir Brown,27,S,5-11,202,25,2,Penn State,Active
11
+ Chris Conley,18,WR,6-3,205,32,10,Georgia,Active
12
+ Jacob Cowing,19,WR,5-9,171,24,R,Arizona,Active
13
+ Kalia Davis,93,DL,6-2,310,26,3,Central Florida,Active
14
+ Khalil Davis,50,DL,6-2,315,28,4,Nebraska,Active
15
+ Joshua Dobbs,5,QB,6-3,220,30,8,Tennessee,Active
16
+ Jordan Elliott,92,DL,6-4,303,27,5,Missouri,Active
17
+ Luke Farrell,89,TE,6-5,250,27,4,Ohio State,Active
18
+ Tashaun Gipson Sr.,43,S,6-1,212,34,13,Wyoming,Active
19
+ Jalen Graham,41,LB,6-3,220,25,2,Purdue,Active
20
+ Richie Grant,27,S,6-0,200,27,4,UCF,Active
21
+ Renardo Green,0,CB,6-0,186,24,R,Florida State,Active
22
+ Yetur Gross-Matos,94,DL,6-5,265,27,5,Penn State,Active
23
+ Isaac Guerendo,31,RB,6-0,221,24,R,Louisville,Active
24
+ Charlie Heck,75,OL,6-8,311,28,5,North Carolina,Active
25
+ Matt Hennessy,61,OL,6-3,315,27,4,Temple,Active
26
+ Jauan Jennings,15,WR,6-3,212,27,4,Tennessee,Active
27
+ Mac Jones,10,QB,6-3,200,26,4,Alabama,Active
28
+ George Kittle,85,TE,6-4,250,31,8,Iowa,Active
29
+ Deommodore Lenoir,2,DB,5-10,200,25,4,Oregon,Active
30
+ Nick McCloud,35,CB,6-1,193,26,4,Notre Dame,Active
31
+ Colton McKivitz,68,OL,6-6,301,28,5,West Virginia,Active
32
+ Jake Moody,4,K,6-1,210,25,2,Michigan,Active
33
+ Malik Mustapha,6,S,5-10,206,22,R,Wake Forest,Active
34
+ Pat O'Donnell,40,P,6-4,220,34,10,Miami,Active
35
+ Sam Okuayinonu,91,DL,6-1,269,26,2,Maryland,Active
36
+ Ricky Pearsall,14,WR,6-3,192,24,R,Florida,Active
37
+ Jason Pinnock,41,CB,6-0,205,25,4,Pittsburgh,Active
38
+ Austen Pleasants,62,OT,6-7,328,27,1,Ohio,Active
39
+ Dominick Puni,77,OL,6-5,313,25,R,Kansas,Active
40
+ Brock Purdy,13,QB,6-1,220,25,3,Iowa State,Active
41
+ Demarcus Robinson,14,WR,6-1,203,30,9,Florida,Active
42
+ Eric Saubert,82,TE,6-5,248,30,7,Drake,Active
43
+ Patrick Taylor Jr.,32,RB,6-2,217,26,4,Memphis,Active
44
+ Tre Tomlinson,,CB,5-9,177,25,2,TCU,Active
45
+ Jake Tonges,88,TE,6-4,240,25,2,California,Active
46
+ Fred Warner,54,LB,6-3,230,28,7,Brigham Young,Active
47
+ Jon Weeks,46,LS,5-10,245,39,15,Baylor,Active
48
+ Brayden Willis,9,TE,6-4,240,25,2,Oklahoma,Active
49
+ Dee Winters,53,LB,5-11,227,24,2,TCU,Active
50
+ Rock Ya-Sin,33,CB,5-11,195,28,6,Temple,Active
51
+ Isaac Yiadom,22,CB,6-1,232,29,7,Boston College,Active
52
+ Nick Zakelj,63,OL,6-6,316,25,3,Fordham,Active
53
+ Player,#,Pos,HT,WT,Age,Exp,College,Reserve/Future
54
+ Isaac Alarcon,67,OL,6-7,320,26,1,Tecnológico de Monterrey,Reserve/Future
55
+ Russell Gage,84,WR,6-0,184,29,7,LSU,Reserve/Future
56
+ Isaiah Hodgins,87,WR,6-3,200,26,4,Oregon State,Reserve/Future
57
+ Quindell Johnson,,S,6-2,208,25,2,Memphis,Reserve/Future
58
+ Jalen McKenzie,76,OT,6-5,315,25,1,USC,Reserve/Future
59
+ Brandon Aiyuk,11,WR,6-0,200,27,5,Arizona State,Reserve/Injured
60
+ Aaron Banks,65,OL,6-5,325,27,4,Notre Dame,Reserve/Injured
61
+ Ben Bartch,78,OL,6-6,315,26,5,St. John's (MN),Reserve/Injured
62
+ Tre Brown,22,CB,5-10,185,27,4,Oklahoma,Reserve/Injured
63
+ Spencer Burford,74,OL,6-4,300,24,3,Texas-San Antonio,Reserve/Injured
64
+ Luke Gifford,57,LB,6-3,243,29,6,Nebraska,Reserve/Injured
65
+ Kevin Givens,90,DL,6-1,285,28,5,Penn State,Reserve/Injured
66
+ Darrell Luter Jr.,28,CB,6-0,190,24,2,South Alabama,Reserve/Injured
67
+ Jordan Mason,24,RB,5-11,223,25,3,Georgia Tech,Reserve/Injured
68
+ Christian McCaffrey,23,RB,5-11,210,28,8,Stanford,Reserve/Injured
69
+ Elijah Mitchell,25,RB,5-10,200,26,4,Louisiana,Reserve/Injured
70
+ Jaylon Moore,76,OL,6-4,311,27,4,Western Michigan,Reserve/Injured
71
+ George Odum,30,S,6-1,202,31,7,Central Arkansas,Reserve/Injured
72
+ Curtis Robinson,36,LB,6-3,235,26,3,Stanford,Reserve/Injured
73
+ Trent Williams,71,T,6-5,320,36,15,Oklahoma,Reserve/Injured
74
+ Mitch Wishnowsky,3,P,6-2,220,33,6,Utah,Reserve/Injured
data/49ers_fan_communities_clean_GOOD.csv ADDED
@@ -0,0 +1,384 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Phone Number,Website,Meeting Location Address (Address),Meeting Location Address (Address2),Meeting Location Address (City),Meeting Location Address (State),Meeting Location Address (Zip),Meeting Location Address (Country),Fan Chapter Name,President First Name,President Last Name,Email Address,City,State,Country,Venue,Venue Location,Total Fans,Facebook,Instagram,X (Twitter),TikTok,WhatsApp,YouTube
2
+ ,52 4492612712,,,,,,,,49ers Aguascalientes,Cesar,Romo,[email protected],Aguascalientes,,Mexico,Vikingo Bar,"Av de la Convención de 1914 Sur 312-A, Las Américas, 20230 Aguascalientes, Ags., Mexico",174.0,https://www.facebook.com/share/1Wa7TPzBMX/,,,,,
3
+ ,52 (46) 1219 7801,,,,,,,,Bajio Faithful,Hector,Camarena,[email protected],"Celaya, GTO",,Mexico,California Prime Rib Restaurant,"Av. Constituyentes 1000 A, 3 Guerras, 38080 Celaya, Gto., Mexico",20.0,,,,,,
4
+ ,52 (96) 1654-1513,,,,,,,,Niner Empire Chiapas,Aroshi,Narvaez,[email protected],Chiapas,,Mexico,Alitas Tuxtla,"Blvd. Belisario Dominguez 1861 Loc K1 Tuxtl Fracc, Bugambilias, 29060 Tuxtla Gutiérrez, Chis., Mexico",250.0,Niner Empire Chiapas,https://www.instagram.com/49erschiapas/?hl=en,Niner Empire Chiapas,,,
5
+ ,52 (61) 4404-1411,,,,,,,,49ers Faithful Chihuahua Oficial,Jorge,Otamendi,[email protected],Chihuahua,,Mexico,El Coliseo Karaoke Sports Bar,"C. Jose Maria Morelos 111, Zona Centro, 31000 Chihuahua, Chih., Mexico",300.0,https://www.facebook.com/share/g/14tnsAwWFc/,https://www.instagram.com/49ersfaithfulchihuahua?igsh=bHE5ZWd6eTUxOWl3,,https://www.tiktok.com/@49ers.faithful.ch?_t=8rv1vcLFfBI&_r=1,,
6
+ ,52 (61) 41901197,,,,,,,,Gold Rush Chihuahua Spartans,Juan,García,[email protected],Chihuahua,,Mexico,34 Billiards & Drinks,"Av. Tecnológico 4903, Las Granjas 31100",976.0,https://www.facebook.com/groups/170430893136916/,,,,,
7
+ ,52 (55) 6477-1279,,,,,,,,Club 49ers Mexico,German,Rodriguez,[email protected],"Ciudad de Mexico, Mexico",,Mexico,Bar 49,16 Septiembre #27 Colonia Centro Historico Ciudad de Mexico,800.0,,club49ersmexico,club49ersmexico,Club49ersmexicooficial,,
8
+ ,52 (55) 6904-5174,,,,,,,,Club 49ers Durango Oficial,Victor,Arballo,[email protected],Durango,,Mexico,Restaurante Buffalucas Constitución,"C. Constitución 107B, Zona Centro, 34000 Durango, Dgo., Mexico",170.0,https://www.facebook.com/share/1TaDBVZmx2/?mibextid=LQQJ4d,https://www.instagram.com/49ers_dgo?igsh=ams1dHdibXZmN28w,,,,
9
+ ,52 (55) 707169,,,,,,,,Niner Empire Edo Mex,Alberto,Velasco,[email protected],Estado de Mexico,,Mexico,Beer Garden Satélite,"Cto. Circunvalación Ote. 10-L-4, Cd. Satélite, 53100 Naucalpan de Juárez, Méx., Mexico",250.0,,https://www.instagram.com/ninerempireedomex/,https://x.com/ninerempedomex,,,
10
+ ,52 (33) 2225-4392,,,,,,,,Club 49ers Jalisco,Marcela,Medina,[email protected],"Guadalajara, Jalisco",,Mexico,Restaurante Modo Avión Zapopan,"Calzada Nte 14, Granja, 45010 Zapopan, Jal., Mexico",40.0,,club49ersjalisco,Club 49ers Jalisco,,,
11
+ ,52 (33) 1046 3607,,,,,,,,Niner Empire Jalisco,Alonso,Partida,[email protected],"Guadalajara, Jalisco",,Mexico,SkyGames Sports Bar,"Av. Vallarta 874 entre Camarena y, C. Escorza, Centro, 44100 Guadalajara, Jal., Mexico",200.0,,niner_empire_jalisco,NinerEmpireJal,ninerempirejal,,
12
+ ,52 (65) 6228-3719,,,,,,,,Niner Empire Juarez Oficial,Hugo,Montero,[email protected],Juarez,,Mexico,Sport Bar Silver Fox,"Av. Paseo Triunfo de la República 430, Las Fuentes, 32530 Juárez, Chih., Mexico",300.0,,,,,,
13
+ ,52 (99) 9172-2810,,,,,,,,49ers Merida Oficial,Liliana,Vargas,[email protected],Merida,,Mexico,Taproom Mastache,"Av. Cámara de Comercio 263, San Ramón Nte, 97117 Mérida, Yuc., Mexico",290.0,,,,,,
14
+ ,52 (686) 243 7235,,,,,,,,Niner Empire Mexicali,Gabriel,Carbajal,[email protected],Mexicali,,Mexico,La Gambeta Terraza Sports Bar,"Calz. Cuauhtémoc 328, Aviación, 21230 Mexicali, B.C., Mexico",45.0,,,,,,
15
+ ,52 (81) 1500-4400,,,,,,,,49ers Monterrey Oficial,Luis,González,[email protected],Monterrey,,Mexico,Buffalo Wild Wings Insurgentes,"Av Insurgentes 3961, Sin Nombre de Col 31, 64620 Monterrey, N.L., Mexico",1200.0,,,,,,
16
+ ,52 (22) 21914254,,,,,,,,Club 49ers Puebla,Elias,Mendez,[email protected],Puebla,,Mexico,Bar John Barrigón,"Av. Juárez 2925, La Paz, 72160 Heroica Puebla de Zaragoza, Pue., Mexico",,,,,,,
17
+ ,52 (84) 4130-0064,,,,,,,,Niners Empire Saltillo,Carlos,Carrizales,[email protected],Saltillo,,Mexico,Cervecería La Huérfana,"Blvd. Venustiano Carranza 7046-Int 9, Los Rodríguez, 25200 Saltillo, Coah., Mexico",,,,,,,
18
+ ,52 (44) 4257-3609,,,,,,,,San Luis Potosi Oficial,Jose,Robledo,[email protected],San Luis Potosi,,Mexico,Bar VIC,"Av Nereo Rodríguez Barragán 1399, Fuentes del Bosque, 78220 San Luis Potosí, S.L.P., Mexico",,,,,,,
19
+ ,52 (66) 4220-6991,,,,,,,,49ers Tijuana Fans Oficial,Anthony,Daniel,[email protected],Tijuana,,Mexico,Titan Sports Bar,"J. Gorostiza 1209, Zona Urbana Rio Tijuana, 22320 Tijuana, B.C., Mexico",460.0,https://www.facebook.com/groups/49erstijuanafans/?ref=share&mibextid=NSMWBT,https://www.instagram.com/49erstijuanafansoficial/?igshid=OGQ5ZDc2ODk2ZA%3D%3D&fbclid=IwZXh0bgNhZW0CMTEAAR0SXTcgDss1aAUjjzK6Ge0Uhx9JkNszzeQgTRq94F_5Zzat-arK9kXEqWk_aem_sKUysPZe1NpmFRPlJppOYw&sfnsn=scwspwa,-,-,-,-
20
+ ,52 (72) 2498-5443,,,,,,,,49ers Club Toluca Oficial,Fernando,Salazar,[email protected],Toluca,,Mexico,Revel Wings Carranza,"Calle Gral. Venustiano Carranza 20 Pte. 905, Residencial Colón y Col Ciprés, 50120 Toluca de Lerdo, Méx., Mexico",,,,,,,
21
+ ,52 (228) 159-8578,,,,,,,,Cluib de Fans 49ers Veracruz,Luis,Mata,[email protected],Veracruz,,Mexico,Wings Army del Urban Center,"C. Lázaro Cárdenas 102, Rafael Lucio, 91110 Xalapa-Enríquez, Ver., Mexico",,,,,,,
22
+ ,6646124565,,,,,,,,49ersFanZone.net,Clemens,Kaposi,[email protected],Bad Vigaun,,Austria,,Neuwirtsweg 315,183.0,,,,,,
23
+ ,33 (0)6 365 269 84,,,,,,,,The Niner Empire France,Gilles,Schlienger,[email protected],Nousseviller Saint Nabor,,France,4 voie romaine,4 voie romaine,250.0,https://www.facebook.com/groups/295995597696338,,,,,
24
+ ,1704753958,,,,,,,,Niner Empire Germany-Bavaria Chapter,Mike,Beckmann,[email protected],Ismaning,,Germany,49er's Sports & Partybar,Muenchener Strasse 79,35.0,,,,,,
25
+ ,1735106462,,,,,,,,4T9 Mob Germany Family,Chris,Grawert,[email protected],Hamburg,,Germany,Jolly Roger,Budapester Str. 44,6.0,https://www.facebook.com/4T9MOBGermany,,,,,
26
+ ,49 15758229310,,,,,,,,49 Niner Empire,Andra,Theunert,[email protected],Cologne State: NRW,,Germany,Joe Camps Sports Bar,Joe Champs,104.0,,,,,,
27
+ ,1795908826,,,,,,,,The Niner Empire Germany Berlin Chapter,Jermaine,Benthin,[email protected],Berlin,,Germany,Sportsbar Tor133,Torstrasse 133,17.0,,,,,,
28
+ ,1607512643,,,,,,,,,Heltewig,Thorsten,[email protected],Bornhöved,,Germany,Comeback,Mühlenstraße 11,20.0,,,,,,
29
+ ,1738803983,,,,,,,,49ers Fans Bavaria,Thomas,Igerl,[email protected],Ampfing,,Germany,Holzheim 1a/Ampfing,Holzheim 1a,30.0,https://www.facebook.com/49ersfansbavaria,,,,,
30
+ ,1234567899,http://germany.theninerempire.com/,,,,,,,The Niner Empire Germany - North Rhine-Westphalia Chapter,Timo,Allhoff,[email protected],Duesseldorf,,Germany,Knoten,Kurze Strasse 1A,62.0,,,,,,
31
+ ,1708859408,,,,,,,,Niner Empire Germany-NRW Chapter,Hermann,van,[email protected],Cologne,,Germany,Joe Champs Sportsbar Cologne,Hohenzollernring 1 -3,27.0,,,,,,
32
+ ,3.53E+11,,,,,,,,The Irish Faithful,Colly,Mc,[email protected],Dublin 13,,Ireland,Busker On The Ball,13 - 17 Fleet Street,59.0,,,https://twitter.com/49ersIre,,,
33
+ ,0039 3282181898,,,,,,,,49ers Italian Fan Club,Enzo,Marrocchino,[email protected] + [email protected],Fiorano Modenese,,Italy,The Beer Corner,"Via Roma, 2/A",50.0,https://www.facebook.com/groups/49ersItalianFanClub,,,,,
34
+ ,649058694,https://laminapodcast.wixsite.com/lamina,,,,,,,Mineros Spanish Faithful,Luis,Miguel,[email protected] + [email protected],Madrid,,Spain,Penalti Lounge Bar,Avenida Reina 15,15.0,,,,,,
35
+ ,6507841235,http://www.sportssf.com.br,,,,,,,Equipe Sports SF,Alessandro,Marques,[email protected],Sao Paulo,,Brazil,"Website, Podcast, Facebook Page, Twitter","Rua Hitoshi Ishibashi, 11 B",14.0,,,,,,
36
+ ,1197444761,http://www.49ersbrasil.com.br,,,,,,,49ers Brasil,Fabio,Moraes,[email protected],"Campo Limpo, Sao Paulo",,Brazil,Bars and Restaurants in São Paulo - SP,,870.0,,,,,,
37
+ ,5511992650,,,,,,,,San Francisco 49ers Brasil,Otavio,Alban,[email protected],"Sao Bernardo do Campo, Sao Paulo",,Brazil,Multiple locations around south and southeast states of Brazil,,104.0,https://www.facebook.com/groups/49ninersbrasil/,,,,,
38
+ ,6046266697,http://www.theninerempire.com,,,,,,,"Niner Empire --Vanouver,BC Chapter",Hector,Alvarado/Neil,[email protected],"Vancouver, BC",,Canada,"The Sharks Club--Langley, BC",20169 88 Avenue,31.0,,,,,,
39
+ ,4167796921,,,,,,,,True North Niners,Shawn,Vromman,[email protected],"Bolton, Ontario",,Canada,Maguire's Pub,284 Queen st E,25.0,,,,,,
40
+ ,507 66737171,,,,,,,,Faithful Panama,Ricardo,Vallarino,[email protected],,,Panama,5inco Panama,8530 NW 72ND ST,249.0,,,,,,
41
+ ,6493015128,,,,,,,,Niner Empire New Zealand,Karam,Chand,[email protected],Auckland,,New Zealand,The Kingslander,470 New North Road,15.0,https://www.facebook.com/#!/groups/212472585456813/,,,,,
42
+ ,6768804977,,,,,,,,49er Fans-Tonga,Nusi,Taumoepeau,[email protected],Nuku'alofa,,Tonga,Tali'eva Bar,14 Taufa'ahau Rd,8.0,,,,,,
43
+ ,7857047023,,,,,,,,49ers Faithful UK,Mike,Palmer,[email protected],Greater Manchester,,United Kingdom,the green,Ducie street Manchester Greater Manchester Lancashire m1 United Kingdom,100.0,,,,,,
44
+ ,7506116581,www.49erfaithfuluk.co.uk,,,,,,,49er Faithful UK,Lee,Gowland,[email protected],Newcastle,,United Kingdom,Grosvenor Casino,100 St James' Blvd Newcastle Tyne & Wear CA 95054 United Kingdom,3000.0,,,,,,
45
+ ,8774734977,,,,,,,,49ers of United Kingdom,Nauman,Malik,[email protected],London,,United Kingdom,The Sports Cafe,80 Haymarket London SW1Y 4TE United Kingdom,8.0,,,,,,
46
+ ,1616553629,,,,,,,,Niner Empire UK,Mike,Palmer,[email protected],Manchester,,United Kingdom,The Green,"Bridge House 26 Ducie Street, Manchester, Manchester M1 2dq United Kingdom",30.0,,,,,,
47
+ ,6264841085,,,,,,,,"San Francisco 49er Fans of Charleston, SC",Kurtis,Johnson,[email protected],Charleston,SC,United States,Recovery Room Tavern,685 King St,12.0,https://www.facebook.com/profile.php?id=100095655455065,,,,,
48
+ ,5309536097,,,,,,,,530 Empire,Oscar,Mendoza,[email protected],Chico,Ca,United States,Nash's,1717 Esplanade,45.0,,https://www.instagram.com/530empire?igsh=OGQ5ZDc2ODk2ZA%3D%3D&utm_source=qr,,,,
49
+ ,(720) 345-2580,,,,,,,,303 Denver Chapter Niner Empire,Andy,Martinez,[email protected],Aurora,CO,United States,Moes Bbq,2727 s Parker rd,30.0,,,,,,
50
+ ,3238332262,,,,,,,,40NINERS L.A. CHAPTER,JOSE,DIAZ,[email protected],bell,ca,United States,KRAZY WINGS SPORTS & GRILL,7016 ATLANTIC AVE,25.0,,,,,,
51
+ ,(434) 441-1187,,,,,,,,434 Virginia Niner Empire,Thomas,Hunt,[email protected],Danville,VA,United States,Kickbacks Jacks,140 Crown Dr,20.0,,,,,,
52
+ ,(925) 457-6175,,,,,,,,480 Gilbert Niner Empire LLC,Betty,OLIVARES,[email protected],Gilbert,AZ,United States,The Brass Tap,313 n Gilbert rd,100.0,,,,,,
53
+ ,8126048419,,,,,,,,Midwest Empire,Travis,Bonnell,[email protected],Evansville,IN,United States,Hooters Evansville,2112 Bremmerton Dr,6.0,https://www.facebook.com/share/5KGRDSPtyHgFYRSP/?mibextid=K35XfP,,,,,
54
+ ,7075921442,,,,,,,,49er Booster Club of Vacaville,Josh,Ojeda,[email protected],Vacaville,CA,United States,Blondies Bar and Grill,555 Main Street,75.0,,,,,,
55
+ ,7602655202,,,,,,,,49er Empire High Desert,TJ,Hilliard,[email protected],Hesperia,California,United States,Whiskey Barrel,12055 Mariposa Rd.,89.0,https://www.facebook.com/groups/49erEmpireHighDesertChapter/,,,,,
56
+ ,5308239740,,,,,,,,Cool 49er Booster Club,Paul,Jones,[email protected],Cool,CA,United States,The Cool Beerworks,5020 Ellinghouse Dr Suite H,59.0,,,,,,
57
+ ,8183269651,,,,,,,,49ersBeachCitiesSoCal,Rick,Mitchell,[email protected],Hermosa Beach,CA,United States,American Junkie Sky Light Bar,American Junkie,100.0,,,,,,
58
+ ,7202278251,,,,,,,,49ers Denver Empire,Miguel,Alaniz,[email protected],Aurora,Co,United States,Moe's Original BBQ Aurora,2727 S Parker Rd,30.0,,,,,,
59
+ ,3605679487,,,,,,,,49ers Forever Faithfuls,Wayne,Yelloweyes-Ripoyla,[email protected],Vancouver,Wa,United States,Hooligan's sports bar and grill,"8220 NE Vancouver Plaza Dr, Vancouver, WA 98662",10.0,,,,,,
60
+ ,9566600391,,,,,,,,South Texas 49ers Chapter,Patty,Torres,[email protected],Harlingen,TX,United States,Wing barn,412 sunny side ln,350.0,https://www.facebook.com/groups/2815298045413319/?ref=share,,,,,
61
+ ,3109547822,,,,,,,,49ers Los Angeles,Jeff,Cheung,[email protected],Hollywood,CA,United States,Dave & Buster's Hollywood,6801 Hollywood Blvd.,27.0,,,,,,
62
+ ,3234765148,,,,,,,,49ers United Of Frisco TX,Frank,Murillo,[email protected],Frisco,TX,United States,The Frisco Bar and Grill,6750 Gaylord Pkwy,1020.0,https://www.facebook.com/groups/49ersunitedoffriscotx/?ref=share&mibextid=hubsqH,,,,,
63
+ ,6193151122,,,,,,,,619ers San Diego Niner Empire,Ana,Pino,[email protected],San Diego,California,United States,Bridges Bar & Grill,4800 Art Street,20.0,,,,,,
64
+ ,6266742121,,,,,,,,626 FAITHFUL'S,Isaac,C. De La Fuente,[email protected],City of Industry,California,United States,Hacienda Heights Pizza Co.,15239 E Gale Ave,40.0,,,,,,
65
+ ,6507438522,,,,,,,,Niner Empire 650 Chapter,Vanessa,Corea,[email protected],Redwood City,CA,United States,5th Quarter,976 Woodside Rd,35.0,,http://www.instagram.com/650ninerempire,,,,
66
+ ,6199949071,,,,,,,,714 Niner Empire,Daniel,Hernandez,[email protected],Oxnard,CA,United States,"Bottoms Up Tavern, 2162 West Lincoln Ave, Anaheim CA 92801",3206 Lisbon Lane,4.0,,,,,,
67
+ ,9513704443,,,,,,,,9er Elite Niner Empire,Penny,Mapes,[email protected],Lake Elsinore,California,United States,Pin 'n' Pockets,32250 Mission Trail,25.0,,,,,,
68
+ ,4806780578,,,,,,,,Az 49er Faithful,Kimberly,"""""Kimi"""" Daniel",[email protected],Gilbert,Az,United States,Fox and Hound!,1017 E Baseline Rd,58.0,,,,,,
69
+ ,7078896983,,,,,,,,Niners Winers,A.m.,Early,[email protected],Forestville,Ca,United States,Bars and wineries in sonoma and napa counties,River road,25.0,,,,,,
70
+ ,2144897300,,,,,,,,a_49er fan,Angel,Barba,[email protected],wylie,texas,United States,Wylie,922 cedar creek dr.,12.0,,,,,,
71
+ ,4153206471,,,,,,,,Niner Empire Marin,Aaron,Clark,[email protected],Novato,CA,United States,Moylan's Brewery & Restaurant,15 Rowland Way,13.0,,,,,,
72
+ ,2095344459,,,,,,,,4T9 Mob,Angel,Cruz,[email protected],Modesto,ca,United States,Jack's pizza cafe,2001 Mchenry ave,30.0,,,,,,
73
+ ,5708529383,,,,,,,,North Eastern Pennsyvania chapter,Benjamin,Simon,[email protected],Larksville,PA,United States,Zlo joes sports bar,234 Nesbitt St,25.0,,,,,,
74
+ ,5039150229,,,,,,,,PDX Frisco Fanatics,Adam,Hunter,[email protected],Portland,Or,United States,Suki's bar and Grill,2401 sw 4th ave,8.0,,,,,,
75
+ ,(408) 981-0615,,,,,,,,The 101 Niner Empire,ANDRONICO [Adrian],FERNANDEZ,[email protected],Morgan Hill,CA,United States,Huntington Station restaurant and sports pub,Huntington Station restaurant and sports pub,10.0,https://www.facebook.com/THE101NINEREMPIRE/,,,,,
76
+ ,8147901621,,,,,,,,Faithful Tri-State Empire,Armando,Holguin,[email protected],Erie,PA,United States,Buffalo Wild Wings,2099 Interchange Rd,10.0,https://www.facebook.com/groups/1145565166387786/,,,,,
77
+ ,9282100493,,,,,,,,YUMA Faithfuls,Steven,Navarro,[email protected],Yuma,AZ,United States,Hooters,1519 S Yuma Palms Pkwy,305.0,Yuma Faithfuls (FaceBook group page),,,,,
78
+ ,5103146643,,,,,,,,49ER EMPIRE SF Bay Area Core Chapter,AJ,Esperanza,[email protected],Fremont,california,United States,Jack's Brewery,39176 Argonaut Way,1500.0,,,,,,
79
+ ,8506982520,,,,,,,,Niner Empire Orlando Chapter,Aaron,Hill,[email protected],Orlando,FL,United States,Underground Public House,19 S Orange Ave,50.0,,,,,,
80
+ ,5805913565,,,,,,,,Niner Artillery Empire,Alicia/Airieus,DeLeon/Ervin,[email protected],517 E Gore Blvd,OK,United States,Sweet Play/ Mike's Sports Grill,2610 Sw Lee Blvd Suite 3 / 517 E Gore Blvd,25.0,,,,,,
81
+ ,5104993415,,,,,,,,510 Empire,Alex,Banks,[email protected],Alameda,CA,United States,McGee's Bar and Grill,1645 Park ST,10.0,,,,,,
82
+ ,5105082055,,,,,,,,Garlic City Faithful,Abdul,Momeni,[email protected],Gilroy,CA,United States,Straw Hat Pizza,1053 1st Street,3.0,,,,,,
83
+ ,2092918080,,,,,,,,Faithful to the Bay,Angel,Alvarez,[email protected],Merced,CA,United States,Home,Mountain mikes pizza,15.0,,,,,,
84
+ ,5627391639,,,,,,,,O.C. NINER EMPIRE FAITHFUL'S,Angel,Grijalva,[email protected],Buena park,CA,United States,Ciro's pizza,6969 la Palma Ave,10.0,,,,,,
85
+ ,408-209-1677,,,,,,,,408 Faithfuls,Angelina,Arevalo,[email protected],Milpitas,CA,United States,Big Al's Silicon Valley,27 Ranch Drive,50.0,IG- @408faithfuls,,,,,
86
+ ,6507841235,,,,,,,,415 chapter,Angelo,Hernandez,[email protected],san francisco,California,United States,49er Faithful house,2090 Bryant street,200.0,,,,,,
87
+ ,3038641585,,,,,,,,HairWorks,Annie,,[email protected],Denver,Co,United States,hairworks,2201 Lafayette at,1.0,,,,,,
88
+ ,(925) 481-0343,,,,,,,,49ers Room The Next Generation Of Faithfuls,Antonio,Caballero,[email protected],Tlalnepantla de Baz,CA,United States,Buffalo Wild Wings Mindo E,Blvd. Manuel Avila Camacho 1007,12.0,,,,,,
89
+ ,2098182020,,,,,,,,Niner Empire 209 Modesto Chapter,Paul,Marin,[email protected],Modesto,CA,United States,Rivets American Grill,2307 Oakdale Rd,50.0,https://www.facebook.com/niner.ninjas?ref=bookmarks,,,,,
90
+ ,2539616009,,,,,,,,Lady Niners of Washington,April,Costello,[email protected],Auburn,Wa,United States,Sports Page,2802 Auburn Way N,13.0,,,,,,
91
+ ,4803290483,,,,,,,,AZ 49ER EMPIRE,GARY,MARTINEZ,[email protected],Phoenix,AZ,United States,The Native New Yorker (Ahwatukee),5030 E Ray Rd.,130.0,,,,,,
92
+ ,9096214821,,,,,,,,The Bulls Eye Bar 49ers,Armando,M. Macias,[email protected],Montclair,California,United States,Black Angus Montclair California,9415 Monte Vista Ave.,20.0,,,,,,
93
+ ,5404245114,,,,,,,,NoVa Tru9er Empire,Jay,balthrop,[email protected],Woodbridge,va,United States,Morgan's sports bar & lounge,3081 galansky blvd,40.0,,,,,,
94
+ ,(951) 691-6631,,,,,,,,Niner Empire 951 Faithfuls,Samuel,Betancourt,[email protected],Hemet,CA,United States,"George's Pizza 2920 E. Florida Ave. Hemet, Ca.",2920 E. Florida Ave.,30.0,https://www.facebook.com/951Faithfuls/,,,,,
95
+ ,8174956499,,,,,,,,Spartan Niner Empire Texas,Adreana,Corralejo,[email protected],Arlington,TX,United States,Bombshells Restaurant & Bar,701 N. Watson Rd.,12.0,,,,,,
96
+ ,3234720160,,,,,,,,THEE EMPIRE FAITHFUL LOS ANGELES COUNTY,Dennis,Guerrero II,[email protected],Los Angeles,CA,United States,Home,1422 Saybrook Ave,25.0,,,,,,
97
+ ,5103756841,,,,,,,,Niner Empire Richmond 510 Chapter,David,Watkins,[email protected],San Pablo,Ca,United States,Noya Lounge,14350 Laurie Lane,50.0,,,,,,
98
+ ,9254810343,,,,,,,,Thee Empire Faithful The Bay Area,Ant,Caballero,[email protected],Oakley,Ca,United States,Sabrina's Pizzeria,2587 Main St,20.0,,,,,,
99
+ ,8049013890,,,,,,,,The Mid Atlantic Niner Empire Chapter,Jacob,Tyree,[email protected],Mechanicsville,Va,United States,The Ville,7526 Mechanicsville Turnpike,10.0,https://www.facebook.com/#!/groups/290644124347980/,,,,,
100
+ ,6058683729,,,,,,,,Big Sky SF 49ers,Jo,Poor Bear,[email protected],Billings,MT,United States,Old Chicago - Billings,920 S 24th Street W,10.0,,,,,,
101
+ ,808-387-7075,,,,,,,,Hawaii Niner Empire,Bryson,Kerston,[email protected],Waipahu,HI,United States,The Hale,94-983 kahuailani st,25.0,,,,,,
102
+ ,5597896991,,,,,,,,Niner Empire Porterville Cen Cal 559,Olivia,"""""bo"""" Ortiz or Patricia Sanchez",[email protected],Porterville,Ca,United States,Pizza Factory/ Local Bar & Grill,897 W. Henderson,34.0,,,,,,
103
+ ,4132734010,,,,,,,,W.MA CHAPTER NINER EMPIRE,BECKY,OSORIO,[email protected],CHICOPEE,MA,United States,MAXIMUM CAPACITY,116 SCHOOL ST,36.0,,,,,,
104
+ ,(757) 708-0662,,,,,,,,Hampton Roads Niner Empire (Southside Chapter),Braxton,Gaskins,[email protected],Norfolk,VA,United States,Azalea Inn / Timeout Sports Bar,Azalea Inn / Timeout Sports Bar,40.0,,,,,,
105
+ ,5598042288,,,,,,,,Central Valley Niners,Jesse,moreno,[email protected],Visalia,Ca,United States,Pizza factory,3121 w noble,35.0,,,,,,
106
+ ,6094038767,,,,,,,,Niner Knights,Bryan,Teel,[email protected],Ewing Twp,NJ,United States,Game Room of River Edge Apts,1009 Country Lane,35.0,,,,,,
107
+ ,3463344898,,,,,,,,Lone Star Niner Empire,Myrna,Martinez,[email protected],Houston,TX,United States,Post oak ice house,5610 Richmond Ave.,33.0,,,,,,
108
+ ,8082657452,,,,,,,,Hawaii Faithfuls,Rey,Buzon,[email protected],Honolulu,HI,United States,Champions Bar & Grill,1108 Keeaumoku Street,30.0,,,,,,
109
+ ,9099571468,,,,,,,,49er Faithful of Murrieta,Colleen,Hancock,[email protected],Murrieta,CA,United States,Sidelines Bar & Grill,24910 Washington Ave,30.0,,,,,,
110
+ ,9168221256,,,,,,,,Capitol City 49ers,Erica,Medina,[email protected],Sacramento,CA,United States,Tom's Watch Bar DOCO,Tom's Watch Bar 414 K St suite 180,1300.0,https://www.facebook.com/groups/1226671178132767/?ref=share,,,,,
111
+ ,3103496959,,,,,,,,Huntington Beach Faithfuls,Carlos,Pizarro,[email protected],Huntington Beach,CA,United States,BEACHFRONT 301,301 Main St. Suite 101,100.0,,,,,,
112
+ ,(210) 375-6746,,,,,,,,Niner Empire Saltillo,Carlos,Carrizales,[email protected],Saltillo,TX,United States,Cadillac Saltillo Bar,Cadillac Saltillo Bar,116.0,Club 49ers Saltillo @ Facebook,,,,,
113
+ ,9035527931,,,,,,,,Germantown 49er's Club,CM,Rosenthal,[email protected],Memphis,TN,United States,Mr. P's Sports Bar Hacks Cross Rd.,3284 Hacks Cross Road,103.0,,,,,,
114
+ ,12093462496,,,,,,,,49ers faithful,Ray,Castillo,[email protected],KEYES,CA,United States,Mt mikes ceres ca,4618 Blanca Ct,8.0,,,,,,
115
+ ,2094561796,,,,,,,,Ladies Of The Empire,Catherine,Tate,[email protected],Manteca,Ca,United States,Central Valley and Bay Area,1660 W. Yosemite Ave,247.0,,,,,,
116
+ ,7027735380,,,,,,,,Las Vegas Niner Empire 702,blu,villegas,[email protected],Las Vegas,NV,United States,Calico Jack's,8200 W. Charleston rd,300.0,,,,,,
117
+ ,3107487035,,,,,,,,49ers Faithfuls in DC,Catie,Bailard,[email protected],Washington,DC,United States,Town Tavern,2323 18th Street NW,150.0,,,,,,
118
+ ,6619722639,,,,,,,,49er Booster Club of Roseville,Cece,Moats,[email protected],Roseville,CA,United States,Bunz Sports Pub & Grub,311 Judah Street,32.0,,,,,,
119
+ ,6613033911,,,,,,,,Kern County Niner Empire,Sal,Luna,[email protected],Bakersfield,Ca,United States,Firehouse Restaurant,7701 White Lane,100.0,,,,,,
120
+ ,8315126139,,,,,,,,Central Coast Niner Empire 831,Rafael,Garcia,[email protected],Salinas,CA,United States,Buffalo Wild Wings,1988 North Main St,11.0,Facebook.com/CentralCoastNinerEmpire831,,,,,
121
+ ,8315126139,,,,,,,,Central Coast Niner Empire 831,Rafael,Garcia,[email protected],Salinas,CA,United States,Pizza Factory,1945 Natividad Rd,22.0,Facebook.com/CentralCoastNinerEmpire831,,,,,
122
+ ,2817509505,,,,,,,,Houston Niner Empire,Carlos,Duarte,[email protected],Houston,TX,United States,Home Plate Bar & Grill,1800 Texas Street,107.0,https://m.facebook.com/HoustonNinerEmpire/,,,,,
123
+ ,4068535155,,,,,,,,Train Whistle Faithful,Christopher,Gunnare,[email protected],Mountain View,CA,United States,Savvy Cellar,750 W. Evelyn Avenue,13.0,,,,,,
124
+ ,3104659461,,,,,,,,Corpus Christi Chapter Niner Empire,Arturo,Hernandez,[email protected],Corpus Christi,TX,United States,Cheers,419 Starr St.,37.0,,,,,,
125
+ ,3528070372,,,,,,,,Niner Empire Dade City,Fernando,Chavez,[email protected],Dade City,Florida,United States,Beef O Brady's Sports Bar,14136 7th Street,22.0,,,,,,
126
+ ,5309536097,,,,,,,,Chico Faithfuls,Oscar,Mendoza,[email protected],Chico,CA,United States,Mountain Mikes Pizza,1722 Mangrove Ave,32.0,http://facebook.com/chicofaithfuls,,,,,
127
+ ,8473099909,,,,,,,,Chicago Niners,Chris,Johnston,[email protected],Chicago,IL,United States,Cheesie's Pub & Grub 958 W Belmont Ave Chicago IL 60657,958 W Belmont Ave,75.0,,,,,,
128
+ ,7076556423,,,,,,,,Niner Empire 916 Sac Town,Lehi,Amado/Anthony Moreno,[email protected],Sacramento,CA,United States,El Toritos,1598 Arden blvd,40.0,http://www.Facebook.com,,,,,
129
+ ,7193377546,,,,,,,,49ER EMPIRE COLORADO CHAPTER,CHARLES,M. DUNCAN,[email protected],Colorado Springs,Co.,United States,FOX & HOUND COLORADO SPRINGS,3101 New Center Pt.,25.0,,,,,,
130
+ ,3364512567,,,,,,,,49ers NC Triad Chapter,Christopher,Miller,[email protected],Greensboro,NC,United States,Kickback Jack's,1600 Battleground Ave.,10.0,,,,,,
131
+ ,4588992022,,,,,,,,Central Oregon 49ers Faithful,George,Bravo,[email protected],Redmond,OR,United States,Redmond Oregon,495 NW 28th St,1.0,,,,,,
132
+ ,3108979404,,,,,,,,Westside 9ers,Naimah,Shamsiddeen,[email protected],Carson,CA,United States,Los Angeles,1462 E Gladwick St,20.0,,,,,,
133
+ ,2173173725,,,,,,,,Niner Empire Illinois Chapter,Max,Tuttle,[email protected],Mattoon,Illinois,United States,"residence, for now",6 Apple Drive,6.0,,,,,,
134
+ ,2089642981,,,,,,,,Treasure Valley 49er Faithful,Curt,Starz,[email protected],Star,ID,United States,The Beer Guys Saloon,10937 W State St,50.0,https://www.facebook.com/TV49erFaithful/,,,,,
135
+ ,2039484616,,,,,,,,Ct faithful chapter,Tim,Maroney,[email protected],stamford,ct,United States,buffalo wild wings,208 summer st,33.0,,,,,,
136
+ ,3057780667,,,,,,,,305 FAITHFUL EMPIRE,Damien,Lizano,[email protected],Miami,FL,United States,Walk-On's,9065 SW 162nd Ave,18.0,,,,,,
137
+ ,1415902100,,,,,,,,Fillmoe SF Niners Nation Chapter,Daniel,Landry,[email protected],San Francisco,CA,United States,Honey Arts Kitchen by Pinot's,1861 Sutter Street,16.0,,,,,,
138
+ ,6199949071,,,,,,,,49ers So Cal Faithfuls,Daniel,Hernandez,[email protected],Oxnard,CA,United States,So Cal (Various locations with friends and family),3206 Lisbon Lane,4.0,,,,,,
139
+ ,(817) 675-7644,,,,,,,,Niner Empire DFW,Danny,Ramirez,[email protected],Arlington,TX,United States,Walk-Ons Bistreaux,Walk-Ons Bistreaux,75.0,www.facebook.com/ninerempiredfw,,,,,
140
+ ,(505) 480-6101,,,,,,,,Duke City Faithful Niner Empire,Danny,Roybal,[email protected],Albuquerque,NM,United States,Duke City Bar And Grill,6900 Montgomery Blvd NE,93.0,www.facebook.com/@dukecityfaithful505,,,,,
141
+ ,8089545569,,,,,,,,49ers @ Champions,Davis,Price,[email protected],Honolulu,Hawaii,United States,Champions Bar and Grill,1108 Keeaumoku St,12.0,,,,,,
142
+ ,870-519-9373,,,,,,,,Natural State Niners Club,Denishio,Blanchett,[email protected],Jonesboro,AR,United States,"Buffalo Wild Wings, Jonesboro, AR",Buffalo Wild Wings,18.0,,,,,,
143
+ ,7706664527,,,,,,,,49er Empire - Georgia Chapter,Brian,Register,[email protected],Marietta,ga,United States,Dave & Busters of Marietta Georgia,2215 D and B Dr SE,23.0,https://www.facebook.com/49erEmpireGeorgiaChapter,,,,,
144
+ ,(928) 302-6266,,,,,,,,San Francisco 49ers of San Diego,Denise,Hines,[email protected],San Diego,CA,United States,Moonshine Beach,Moonshine Beach Bar,80.0,,,,,,
145
+ ,5204147239,,,,,,,,Sonoran Desert Niner Empire,Derek,Yubeta,[email protected],Maricopa,AZ,United States,Cold beers and Cheeseburgers,20350 N John Wayne pkwy,50.0,Facebook Sonoran Desert Niner Empire,,,,,
146
+ ,315-313-8105,,,,,,,,49ers Empire Syracuse 315 Chapter,Dexter,Grady,[email protected],Syracuse,NY,United States,Change of pace sports bar,1809 Grant Blvd,233.0,Facebook 49ers Empire Syracuse 315 Chapter,,,,,
147
+ ,8058901997,,,,,,,,Niner Empire Ventura Chapter,Diego,Rodriguez,[email protected],Ventura,CA,United States,El Rey Cantina,El Rey Cantina,20.0,,,,,,
148
+ ,(717) 406-4494,,,,,,,,540 Faithfuls of the Niner Empire,Derrick,Lackey Sr,[email protected],Fredericksburg,VA,United States,Home Team Grill,1109 Jefferson Davis Highway,8.0,,,,,,
149
+ ,8134588746,,,,,,,,Ninerempire Tampafl Chapter,john,downer,[email protected],tampa,fl,United States,Ducky's,1719 eest Kennedy blvd,25.0,,,,,,
150
+ ,5857393739,,,,,,,,Gold Diggers,Drew,Nye,[email protected],Rochester,New York,United States,The Blossom Road Pub,196 N. Winton Rd,12.0,,,,,,
151
+ ,2545482581,,,,,,,,Niner Empire Waco Chapter,Dustin,Weins,[email protected],Waco,TX,United States,Salty Dog,2004 N. Valley Mills,36.0,https://www.facebook.com/groups/Waco49ersFans/,,,,,
152
+ ,9253823429,,,,,,,,Niner Empire of Brentwood,Elvin,Geronimo,[email protected],Brentwood,CA,United States,Buffalo Wild Wings,6051 Lone Tree Way,30.0,,,,,,
153
+ ,7173301611,,,,,,,,"NinerEmpire of Lancaster, PA",Eli,Jiminez,[email protected],Lancaster,PA,United States,PA Lancaster Niners Den,2917 Marietta Avenue,50.0,https://www.facebook.com/NinerEmpireLancasterPA,,,,,
154
+ ,9156671234,,,,,,,,Empire Tejas 915- El Paso TX,Jr,& Yanet Esparza,[email protected],El Paso,Tx,United States,EL Luchador Taqueria/Bar,1613 n Zaragoza,28.0,,,,,,
155
+ ,9168221256,,,,,,,,Capitol City 49ers fan club,Erica,medina,[email protected],West Sacramento,CA,United States,Burgers and Brew restaurant,317 3rd St,80.0,,,,,,
156
+ ,6269276427,,,,,,,,Golden Empire Hollywood,Ernie,Todd Jr,[email protected],Los Angeles,CA,United States,Nova Nightclub,7046 Hollywood Blvd,10.0,,https://www.instagram.com/goldenempire49ers/,,,,
157
+ ,7202714410,,,,,,,,Spartan Niner Empire Denver,Esley,Sullivan,[email protected],Denver,CO,United States,Downtown Denver,In transition,9.0,Facebook: Spartans of Denver,,,,,
158
+ ,3244765148,,,,,,,,49er empire of Frisco Texas,Frank,Murillo,[email protected],Frisco,TX,United States,The Irish Rover Pub & Restaurant,8250 Gaylord Pkwy,150.0,,,,,,
159
+ ,7079804862,,,,,,,,FAIRFIELD CHAPTER,CHARLES,MCCARVER JR,[email protected],Fairfield,CA,United States,Legends Sports Bar & Grill,3990 Paradise Valley Rd,24.0,https://www.facebook.com/pages/NINER-Empire-Fairfield-Chapter/124164624589973,,,,,
160
+ ,5302434949,,,,,,,,Shasta Niners,Ruth,Rhodes,[email protected],Redding,CA,United States,Shasta Niners Clubhouse,4830 Cedars Rd,80.0,,,,,,
161
+ ,4156021439,,,,,,,,NINER EMPIRE FREMONT CHAPTER,Elmer,Urias,[email protected],Fremont,CA,United States,Buffalo Wild Wings,43821 Pacific Commons Blvd,22.0,,,,,,
162
+ ,701-200-2001,,,,,,,,Fargo 49ers Faithful,Sara,Wald,[email protected],Fargo,ND,United States,Herd & Horns,1414 12th Ave N,25.0,,,,,,
163
+ ,5309022915,,,,,,,,49ER ORIGINALS,Noah,Abbott,[email protected],Redding,CA,United States,BLEACHERS Sports Bar & Grill,2167 Hilltop Drive,50.0,http://www.facebook.com/49ERORIGINALS,,,,,
164
+ ,8439910310,,,,,,,,"49er Flowertown Empire of Summerville, SC",Michele,A. McGauvran,[email protected],Summerville,South Carolina,United States,Buffalo Wild Wings,109 Grandview Drive #1,20.0,,,,,,
165
+ ,(321) 684-1543,,,,,,,,49ers of Brevard County,Anthony,Lambert,[email protected],Port St Johns,FL,United States,Beef O'Bradys in Port St. Johns,3745 Curtis Blvd,5.0,,,,,,
166
+ ,9092227020,,,,,,,,Forever Faithful Clique,Rosalinda,Arvizu,[email protected],San Bernardino,CA,United States,The Study Pub and Grill,5244 University Pkwy Suite L,10.0,,,,,,
167
+ ,9098090868,,,,,,,,49ERS FOREVER,BOBBY,MENDEZ,[email protected],REDLANDS,CALIFORNIA,United States,UPPER DECK,1101 N. CALIFORNIA ST.,80.0,,,,,,
168
+ ,6612050411,,,,,,,,Thee Empire Faithful Bakersfield,Faustino,Gonzales,[email protected],Bakersfield,Ca,United States,Senor Pepe's Mexican Restaurant,8450 Granite Falls Dr,20.0,https://www.facebook.com/Thee-Empire-Faithful-Bakersfield-385021485035078/,,,,,
169
+ ,3109022071,,,,,,,,Saloon Suad,Gary,Fowler,[email protected],Los Angeles,ca,United States,San Francisco Saloon Bar,11501,20.0,,,,,,
170
+ ,7028602312,,,,,,,,Troy'a chapter,Gerardo,Villanueva,[email protected],Troy,OH,United States,Viva la fiesta restaurant,836 w main st,12.0,,,,,,
171
+ ,9099130140,,,,,,,,Niner Empire IE Chapter,Gabriel,Arroyo,[email protected],San Bernardino,California,United States,Don Martins Mexican Grill,1970 Ostrems Way,50.0,http://www.facebook.com/#!/ninerempire.iechapter/info,,,,,
172
+ ,2095701072,,,,,,,,20916 Faithful,Joe,Trujillo,[email protected],Elk Grove,CA,United States,Sky River Casino,1 Sky River Parkway,25.0,,,,,,
173
+ ,6265396855,,,,,,,,SO. CAL GOLD BLOODED NINER'S,Louie,Gutierrez,[email protected],Hacienda heights,CA,United States,SUNSET ROOM,2029 hacinenda blvd,20.0,Facebook group page/instagram,,,,,
174
+ ,3053603672,,,,,,,,"South Florida's Faithful, Niner Empire",Dawn,Renae Desborough,[email protected],Homestead,Fl,United States,Chili's in Homestead,2220 NE 8TH St.,10.0,https://www.facebook.com/southfloridafaithfuls,,,,,
175
+ ,4804527403,,,,,,,,Cesty's 49ers Faithful,Pablo,Machiche,[email protected],Chandler,AZ,United States,Nando's Mexican Cafe,1890 W Germann Rd,25.0,,,,,,
176
+ ,(956) 342-2285,,,,,,,,Niner Gang Empire,Marquez,Gonzalez,[email protected],EDINBURG,TX,United States,Danny Bar & Grill,4409 Adriana,2.0,,,,,,
177
+ ,7852700872,,,,,,,,The Bell Ringers,Gretchen,Gier,[email protected],Manhattan,KS,United States,Jeff and Josie Schafer's House,1517 Leavenworth St.,10.0,,,,,,
178
+ ,5627391639,,,,,,,,O.C. NINER EMPIRE FAITHFUL'S,Angel,Grijalva,[email protected],Buena park,CA,United States,Ciro's pizza,6969 la Palma Ave,10.0,,,,,,
179
+ ,8176757644,,,,,,,,Niner Empire DFW,Danny,Ramirez,[email protected],Bedford,TX,United States,Papa G's,2900 HIGHWAY 121,50.0,,,,,,
180
+ ,2092624468,,,,,,,,Hilmar Empire,Brian,Lopes,[email protected],Hilmar,Ca,United States,Faithful House,7836 Klint dr,10.0,,,,,,
181
+ ,3045082378,,,,,,,,49ers of West Virginia,Herbert,Moore IV,[email protected],Bridgeport,WV,United States,Buffalo WIld Wings,45 Betten Ct,2.0,,,,,,
182
+ ,6185593569,,,,,,,,618 Niner Empire,Jared,Holmes,[email protected],Carbondale,IL,United States,"Home Basement aka """"The Local Tavern""""",401 N Allyn st,3.0,,,,,,
183
+ ,808-989-0030,,,,,,,,NINER EMPIRE HAWAII 808,KEVIN,MEWS,[email protected],HONOLULU,HI,United States,DAVE AND BUSTERS,1030 AUAHI ST,40.0,,,,,,
184
+ ,(808) 989-0030,,,,,,,,NINER EMPIRE HAWAII 808,KEVIN,MEWS,[email protected],Honolulu,HI,United States,Buffalo Wild Wings -Pearl City,1644 Young St # E,25.0,,,,,,
185
+ ,8323734372,,,,,,,,H-Town Empire,Cedric,Robinson,[email protected],Houston,Tx,United States,Skybox Bar and Grill,11312 Westheimer,30.0,,,,,,
186
+ ,6015691741,,,,,,,,Hub City Faithful,Alan,Thomas,[email protected],Hattiesburg,Mississippi,United States,Mugshots,204 N 40th Ave,12.0,,,,,,
187
+ ,4043191365,,,,,,,,Spartan Niner Empire Georgia,Idris,Finch,[email protected],Duluth,GA,United States,Bermuda Bar,3473 Old Norcross Rd,100.0,,,,,,
188
+ ,6462357661,,,,,,,,Westchester County New York 49ers Fans,Victor,Delgado aka 49ers Matador,[email protected],Yonkers,New York,United States,"We meet at 3 locations, Burkes Bar in Yonkers, Matador's Fan Cave and Finnerty's",14 Troy Lane,46.0,https://www.facebook.com/groups/250571711629937/,,,,,
189
+ ,8319702480,,,,,,,,Niner Empire 831,Luis,Pavon,[email protected],Salinas,Ca,United States,Straw Hat Pizza,156 E. Laurel Drive,30.0,,,,,,
190
+ ,5033080127,,,,,,,,Niner Empire Portland,Joshua,F Billups,[email protected],Clackamas,Oregon,United States,Various,14682 SE Sunnyside Rd,25.0,,,,,,
191
+ ,2815464828,,,,,,,,49ers Empire Galveston County Chapter,Terrance,Bell,[email protected],Nassau Bay,TX,United States,Office,1322 Space Park Dr.,9.0,,,,,,
192
+ ,4153707725,,,,,,,,NINER EMPIRE,Joe,Leonor,[email protected],Brisbane,Ca,United States,7 Mile House,2800 Bayshore Blvd,8000.0,,,,,,
193
+ ,6173350380,,,,,,,,Boston San Francisco Bay Area Crew,Isabel,Bourelle,[email protected],Boston,MA,United States,The Point Boston,147 Hanover Street,50.0,https://www.facebook.com/groups/392222837571990/,,,,,
194
+ ,6173350380,,,,,,,,49ers Faithful of Boston,Isabel,Bourelle,[email protected],Boston,MA,United States,"The Point, Boston, MA",147 Hanover Street,100.0,https://www.facebook.com/49ersfanBoston,,,,,
195
+ ,9098153880,,,,,,,,Riverside 49ers Booster Club,Gus,Esmerio,[email protected],Riverside,California,United States,Lake Alice Trading Co Saloon &Eatery,3616 University Ave,20.0,,,,,,
196
+ ,3187893452,,,,,,,,318 Niner Empire,Dwane,Johnson (Jayrock),[email protected],Monroe,La.,United States,318 Niner Empire HQ,400 Stone Ave.,35.0,,,,,,
197
+ ,5127872407,,,,,,,,The Austin Faithful,Jeffrey,Cerda,[email protected],Austin,TX,United States,8 Track,2805 Manor Rd,100.0,,,,,,
198
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,TX,United States,Sir Winston's Pub,2522 Nacogdoches Rd.,150.0,,,,,,
199
+ ,5097684738,,,,,,,,NINER EMPIRE OF THE 509,JESUS,MACIAS,[email protected],Spokane,WA,United States,Mac daddy's,"808 W Main Ave #106, Spokane, WA 99201",25.0,,,,,,
200
+ ,19496329301,,,,,,,,SOCAL OC 49ERS,James,Di Cesare Jr,[email protected],Newport Beach,CA,United States,The Blue Beet,107 21st Place,25.0,,,,,,
201
+ ,7027692152,,,,,,,,Sin City Niner Empire,Jay,Patrick Bryant-Chavez,[email protected],Henderson,NV,United States,Hi Scores Bar-Arcade,65 S Stephanie St.,10.0,,,,,,
202
+ ,2093862570,,,,,,,,Central Valley 9er Faithful,Jenn,Palacio,[email protected],Turlock,CA,United States,Mountain Mike's,409 S Orange St.,12.0,,,,,,
203
+ ,4089104105,,,,,,,,Niner Squad,Joseph,Perez,[email protected],San Jose,CA,United States,"4171 Gion Ave San Jose,Ca",4171 Gion Ave,25.0,,,,,,
204
+ ,2094897540,,,,,,,,merced niner empire,john,candelaria sr,[email protected],merced,ca,United States,round table pizza,1728 w olive ave,12.0,,,,,,
205
+ ,7604120919,,,,,,,,NINERS ROLLIN HARD IMPERIAL VALLEY CHAPTER,Juan,Vallejo,[email protected],Brawley,CA,United States,SPOT 805,550 main Street,45.0,,,,,,
206
+ ,3856257232,,,,,,,,Tooele County 49ers,Jon,Proctor,[email protected],TOOELE,UT,United States,"Pins and Ales - 1111 N 200 W, Tooele, UT 84074",1111 N 200 W,30.0,https://www.facebook.com/groups/173040274865599,,,,,
207
+ ,3165194699,,,,,,,,49ers united of wichita ks,Josh,Henke,[email protected],Wichita,KS,United States,Hurricane sports grill,8641 w 13th st suite 111,206.0,Facebook 49ers united of wichita ks,,,,,
208
+ ,8282919599,,,,,,,,828 NCNINERS,Jovan,Hoover,[email protected],Hickory,NC,United States,Coaches Neighborhood Bar and Grill,2049 Catawba Valley Blvd SE,10.0,,,,,,
209
+ ,3207749300,,,,,,,,Chicago 49ers Club,Jonathan,West,[email protected],Chicago,IL,United States,The Globe Pub,1934 West Irving Park Road,12.0,,,,,,
210
+ ,5033174024,,,,,,,,Niner Empire Vancouver,Justin,Downs,[email protected],Vancouver,WA,United States,Heathen feral public house,1109 Washington St,567.0,,,,,,
211
+ ,7572565334,,,,,,,,Hampton Roads Niners Fanatics,Steve,Mead,[email protected],Hampton,VA,United States,Nascar Grille,1996 Power Plant Parkway,65.0,,,,,,
212
+ ,(859) 991-8185,,,,,,,,Cincy Faithful,Joshua,Karcher,[email protected],Newport,KY,United States,Buffalo Wild Wings,83 Carothers Rd,4.0,,,,,,
213
+ ,4058028979,,,,,,,,Southside OKC Faithful Niners,Gary,Calton,[email protected],Oklahoma City,Oklahoma,United States,CrosseEyed Moose,10601 Sout Western Ave,6.0,,,,,,
214
+ ,7078899236,,,,,,,,707 FAITHFULS,Enrique,Licea,[email protected],Wine country,CA,United States,Wine country,"Breweries, restaurant's, wineries, private locations",1000.0,,707 faithfuls ( INSTAGRAM),,,,
215
+ ,6623134320,,,,,,,,NINER EMPIRE MEMPHIS CHAPTER,Kenita,Miller,[email protected],Memphis,Tennessee,United States,360 Sports Bar & Grill,3896 Lamar Avenue,40.0,,,,,,
216
+ ,(843) 437-3101,,,,,,,,Chucktown Empire 49ers of Charleston,Kentaroe,Jenkins,[email protected],North Charleston,SC,United States,Chill n' Grill Sports bar,"2810 Ashley Phosphate Rd A1, North Charleston, SC 29418",20.0,https://m.facebook.com/groups/1546441202286398?ref=bookmarks,,,,,
217
+ ,7278359840,,,,,,,,Spartans Niner Empire Florida,Ram,Keomek,[email protected],Tampa,FL,United States,Ducky's Sports Bar,1719 Kennedy Blvd,12.0,Spartans Empire Florida (Facebook),,,,,
218
+ ,4159871795,,,,,,,,Palm Springs Area 49er Club,Kevin,Casey,[email protected],Palm Springs,CA,United States,The Draughtsmen,1501 N Palm Canyon,15.0,,,,,,
219
+ ,907351-8367,,,,,,,,49th State Faithful,James,Knudson,[email protected],Anchorage,AK,United States,Al's Alaskan Inn,7830 Old Seward Hwy,202.0,Facebook 49th State Faithful,,,,,
220
+ ,6232241316,,,,,,,,49er faithful of Arizona ( of the West Valley ),Koni,Raes,[email protected],Surprise,Az,United States,"Booty's Wings, Burgers and Beer Bar and Grill",15557 W. Bell Rd. Suite 405,10.0,,,,,,
221
+ ,19096849033,,,,,,,,NINER CORE,Mike,Fortunato,[email protected],Bloomington,CA,United States,Traveling chapter,18972 Grove pl,30.0,,,,,,
222
+ ,9168380550,,,,,,,,Forever Faithful RGV (Rio Grande Valley),Karen,Schmidt,[email protected],McAllen,TX,United States,My Place,410 N 17th St,1.0,,,,,,
223
+ ,9166065299,,,,,,,,49ers Sacramento Faithfuls,Leo,Placencia lll,[email protected],West Sacramento,CA,United States,Kick N Mule Restaurant and Sports Bar,2901 W Capitol Ave,250.0,,Instagram page 49erssacramentofaithfuls,,,,
224
+ ,9098964162,,,,,,,,SO. CAL GOLDBLOOED NINERS,Louie,Gutierrez,[email protected],Industry,CA,United States,Hacienda nights pizza co.,15239 Gale ave,20.0,,,,,,
225
+ ,5105867089,,,,,,,,Niner Empire Hayward chapter,Raul,Sosa,[email protected],Hayward,Ca,United States,Strawhat pizza,1163 industrial pkwy W,30.0,,,,,,
226
+ ,6412033285,,,,,,,,49ers Empire Iowa Chapter,Lisa,Wertz,[email protected],Chariton,Iowa,United States,Shoemakers Steak House,2130 Court Ave,194.0,https://www.facebook.com/groups/247559578738411/,,,,,
227
+ ,5598923919,,,,,,,,Niner Empire of Fresno,Luis,Lozano,[email protected],Fresno,CA,United States,Round Table Pizza,5702 N. First st,215.0,Http://facebook.com/theninerempireoffresno,,,,,
228
+ ,8602057937,,,,,,,,Connecticut Spartan Niner Empire,Maria,Ortiz,[email protected],East Hartford,Connecticut,United States,Silver Lanes Lounge,748 Silverlane,13.0,,,,,,
229
+ ,2814602274,,,,,,,,"Niner Empire Houston, TX Chapter",Lorenzo,Puentes,[email protected],Houston,Texas,United States,Little J's Bar,5306 Washington Ave,175.0,https://www.facebook.com/NinerEmpireHTX,,,,,
230
+ ,2814085420,,,,,,,,"Niner Empire Houston, TX",lorenzo,puentes,[email protected],Houston,Texas,United States,coaches I-10,17754 Katy Fwy #1,150.0,https://m.facebook.com/NinersFaithfulHTX,,,,,
231
+ ,6265396855,,,,,,,,SO. CAL GOLD BLOODED NINER'S,Louie,Gutierrez,[email protected],Industry,CA,United States,Hacienda heights Pizza Co,15239 Gale Ave,25.0,Facebook group page/instagram,,,,,
232
+ ,5593597047,,,,,,,,the 559 ers,jose,Ascencio,[email protected],porterville,CA,United States,landing 13,landing 13,10.0,,,,,,
233
+ ,3105705415,,,,,,,,Billings Niners Faithful,Lukas,Seely,[email protected],Billings,MT,United States,Craft B&B,2658 Grand ave,42.0,https://www.facebook.com/groups/402680873209435,,,,,
234
+ ,9016909484,,,,,,,,901 9ers,Darrick,Pate,[email protected],Memphis,Tn,United States,Prohibition,4855 American Way,50.0,,,,,,
235
+ ,5127738511,,,,,,,,Tulsa 49ers Faithful,Marcus,Bell,[email protected],Tulsa,OK,United States,Buffalo Wild Wings,6222 E 41st St,140.0,https://www.facebook.com/groups/313885131283800/,,,,,
236
+ ,4086853231,,,,,,,,The Niner Empire - 405 Faithfuls - Oklahoma City,Maria,Ward,[email protected],Oklahoma City,OK,United States,The Side Chick 115 E. California Ave,5911 Yale Drive,50.0,https://www.facebook.com/share/FZGC9mVjz3BrHGxf/?mibextid=K35XfP,,,,,
237
+ ,7605404093,,,,,,,,Niner Empire Imperial Valley,Mario,A Garcia Jr,[email protected],Brawley,Ca,United States,Waves Restaurant & Saloon,621 S Brawley Ave,7.0,,,,,,
238
+ ,6234519863,,,,,,,,East Valley Faithful,Mark,Arellano,[email protected],Gilbert,AZ,United States,TBD,5106 South Almond CT,20.0,,,,,,
239
+ ,(360) 970-4784,,,,,,,,360 Niner Empire,Marcus,Dela Cruz,[email protected],Lacey,WA,United States,Dela Cruz Residence,1118 Villanova St NE,20.0,,,,,,
240
+ ,8042106332,,,,,,,,49ers Booster Club of Virginia,Chris,Marshall,[email protected],Mechanicsville,Virginia,United States,Sports Page Bar & Grill,8319 Bell Creek Rd,10.0,,,,,,
241
+ ,3605931626,,,,,,,,Niner Empire Tampa,Matthew,Pascual,[email protected],Tampa,FL,United States,The Bad Monkey,1717 East 7th Avenue,18.0,https://www.facebook.com/NinerEmpireTampa,,,,,
242
+ ,4062441820,,,,,,,,49ers Faithful Montana State,Melissa,Kirkham,[email protected],Missoula,MT,United States,Not yet determined,415 Coloma Way,40.0,https://www.facebook.com/groups/2370742863189848/,,,,,
243
+ ,3615632198,,,,,,,,49ers Fan club,Jess,Mendez,[email protected],Corpus Christi,Texas,United States,Click Paradise Billiards,5141 Oakhurst Dr.,25.0,,,,,,
244
+ ,6613438275,,,,,,,,Niner Empire Delano,mike,uranday,[email protected],Delano,ca,United States,Aviator casino,1225 Airport dr,20.0,,,,,,
245
+ ,6159537124,,,,,,,,Mid South Niner Empire,Tyrone,J Taylor,[email protected],Nashville,TN,United States,Winners Bar and Grill,1913 Division St,12.0,,,,,,
246
+ ,6465429352,,,,,,,,49ers Empire New York City,Miguel,Ramirez,[email protected],New York,New York,United States,Off The Wagon,109 MacDougal Street,15.0,,,,,,
247
+ ,7605879798,,,,,,,,49er Empire High Desert,Mike,Kidwell (president),[email protected],hesperia,California,United States,Thorny's,1330 Ranchero rd.,100.0,,,,,,
248
+ ,3038425017,,,,,,,,Mile High 49ers,Howard,Gibian,[email protected],Denver,Colorado,United States,IceHouse Tavern,1801 Wynkoop St,15.0,,,,,,
249
+ ,(323) 440-3129,,,,,,,,NOCO 49ers,Ryan,Fregosi,[email protected],Windsor,CO,United States,The Summit Windsor,4455 N Fairgrounds Ave,677.0,,,,,,
250
+ ,4142429903,,,,,,,,Milwaukee Spartans of the Niner Empire,Brandon,Rayls,[email protected],Wauwatosa,WI,United States,jacksons blue ribbon pub,11302 w bluemound rd,5.0,,,,,,
251
+ ,3257165662,,,,,,,,SAN ANGELO NINER EMPIRE,pablo,barrientod,[email protected],san angelo,tx,United States,buffalo wild wings,4251 sherwoodway,15.0,,,,,,
252
+ ,5802848928,,,,,,,,580 FAITHFUL,Lowell,Mitchusson,[email protected],Devol,OK,United States,APACHE LONE STAR CASUNO,"Devol, Oklahoma",10.0,,,,,,
253
+ ,9373974225,,,,,,,,49ers of Ohio,Monica,Leslie,[email protected],Xenia,Ohio,United States,Cafe Ole',131 North Allison Ave,15.0,,,,,,
254
+ ,3073653179,,,,,,,,307 FAITHFUL,Michael,Mason,[email protected],Cheyenne,WY,United States,"4013 Golden Ct, Cheyenne, Wyoming",4013 Golden Ct,2.0,,,,,,
255
+ ,7609277246,,,,,,,,Mojave Desert 49er Faithfuls,Nicole,Ortega,[email protected],Apple Valley,CA,United States,Gator's Sports Bar and Grill - Apple Valley,21041 Bear Valley Rd,40.0,,,,,,
256
+ ,9153463686,,,,,,,,The Dusty Faithful,Alejandro,Montero,[email protected],Socorro,TX,United States,The Dusty Tap Bar,10297 Socorro Rd,45.0,,,,,,
257
+ ,5055451180,,,,,,,,The Duke City Faithful,David,Young,[email protected],Albuquerque,N.M.,United States,Buffalo wild wings,6001 iliff rd.,20.0,,,,,,
258
+ ,5203719925,,,,,,,,Emilio,Bustos,,[email protected],Casa grande,Arizona(AZ),United States,Liquor factory bar and deli,930 E Florence,30.0,,,,,,
259
+ ,5054894879,,,,,,,,New Mexico Niner Empire,Charles,Montano,[email protected],Albuquerque,New Mexico,United States,Ojos Locos Sports Cantina,"Park Square,2105 Louisiana Blvd N.E",250.0,,,,,,
260
+ ,5626593944,,,,,,,,So Cal Niner Empire,Ras,Curtis Shepperd,[email protected],Long Beach,Ca,United States,Gallaghers Irish Pub and Grill,2751 E. Broadway,30.0,,,,,,
261
+ ,9802000224,,,,,,,,49er Faithful of Charlotte,Ryan,Lutz,[email protected],Charlotte,North Carolina,United States,Strike City Charlotte,210 E. Trade St.,353.0,,,,,,
262
+ ,6126365232,,,,,,,,MSP Niner Faithful,Xp,Lee,[email protected],Saint Paul,MN,United States,Firebox BBQ,1585 Marshall Ave,5.0,Www.fb.me/mspniners,,,,,
263
+ ,6019187982,,,,,,,,Mississippi Niner Empire Chapter-Jackson,Nicholas,Jones,[email protected],Jackson,Ms.,United States,M-Bar Sports Grill,6340 Ridgewood Ct.,69.0,,,,,,
264
+ ,9256982330,,,,,,,,BayArea Faithfuls,Jon,Punla,[email protected],Pleasant Hill,California,United States,Damo Sushi,508 Contra Costa Blvd,100.0,,,,,,
265
+ ,4803525459,,,,,,,,AZ49erFaithful,Ignacio,Cordova,[email protected],mesa,az,United States,Boulders on Southern,1010 w Southern ave suite 1,120.0,,,,,,
266
+ ,2103164674,,,,,,,,Pluckers Alamo Ranch,Naomi,Robles,[email protected],San Antonio,TX,United States,Pluckers Wong Bar,202 Meadow Bend Dr,45.0,,,,,,
267
+ ,870-519-9373,,,,,,,,Natural State Niners,Denishio,Blanchett,[email protected],Jonesboro,AR,United States,Buffalo Wild Wings,1503 Red Wolf Blvd,105.0,www.facebook.com/NSNiners,,,,,
268
+ ,5614050582,,,,,,,,North Carolina Gold Blooded Empire,[email protected],,[email protected],Raleigh,North Carolina,United States,Tobacco Road - Raleigh,222 Glenwood Avenue,40.0,,,,,,
269
+ ,3365588525,,,,,,,,Spartan Empire of North Carolina,Karlton,Green,[email protected],Greensboro,NC,United States,World of Beer,1310 westover terr,8.0,,,,,,
270
+ ,(559) 380-5061,,,,,,,,Niner Empire Kings County,Javier,Cuevas,[email protected],Hanford,CA,United States,Fatte Albert's pizza co,110 E 7th St,10.0,,,,,,
271
+ ,5053216498,,,,,,,,New Mexico Gold Rush,Larry,Urbina,[email protected],Rio Rancho,NM,United States,Applebee's,4100 Ridge Rock Rd,25.0,,,,,,
272
+ ,650-333-6117,,,,,,,,Niner 408 Squad,Tracey,Anthony,[email protected],San Jose,CA,United States,Personal home,3189 Apperson Ridge Court,25.0,,,,,,
273
+ ,9518670172,,,,,,,,NINER ALLEY,junior,ambriz,[email protected],moreno valley,ca,United States,home,13944 grant st,15.0,,,,,,
274
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,Texas,United States,Fatso's,1704 Bandera Road,25.0,https://www.facebook.com/ninerempire.antonio,,,,,
275
+ ,5209711614,,,,,,,,NinerEmpire520,Joseph,(Bubba) Avalos,[email protected],Tucson,AZ,United States,Maloney's,213 North 4th Ave,100.0,,,,,,
276
+ ,6024594333,,,,,,,,49er Empire Desert West,Daniel,Enriquez,[email protected],Glendale,Arizona,United States,McFadden's Glendale,9425 West Coyotes Blvd,60.0,,,,,,
277
+ ,9155026670,,,,,,,,Niner Empire EPT,Pete,Chavez,[email protected],el paso,tx,United States,knockout pizza,10110 mccombs,12.0,http://www.facebook.com/groups/ninerempireept,,,,,
278
+ ,7027692152,,,,,,,,"Niner Empire Henderson, NV",Jay,Bryant-Chavez,[email protected],Henderson,Nevada,United States,Hi Scores Bar-Arcade,65 S Stephanie St,11.0,http://www.facebook.com/ninerempirehenderson,,,,,
279
+ ,9712184734,,,,,,,,Niner Empire Salem,Timothy,Stevens,[email protected],Salem,OR,United States,IWingz,IWingz,200.0,,,,,,
280
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,Texas,United States,Fatsos,1704 Bandera Rd,30.0,,,,,,
281
+ ,5419440558,,,,,,,,Niner Empire Southern Oregon,Patricia,Alvarez,[email protected],Medford,OR,United States,The Zone Sports Bar & Grill,1250 Biddle Rd.,12.0,,,,,,
282
+ ,4199171537,,,,,,,,niner empire faithfuls of toledo,Darren,Sims,[email protected],Toledo,Ohio,United States,Legendz sports pub and grill,519 S. Reynolds RD,27.0,,,,,,
283
+ ,7023033434,,,,,,,,Las Vegas Niner EmpireNorth,Susan,Larsen,[email protected],Las Vegas,NV,United States,Timbers Bar & Grill,7240 West Azure Drive,50.0,,,,,,
284
+ ,7023715898,,,,,,,,NINER FRONTIER,Tyson,white,[email protected],las vegas,NV,United States,Luckys Lounge,7345 S Jones Blvd,8.0,,,,,,
285
+ ,7604120919,,,,,,,,NINERS ROLLIN HARD IMPERIAL VALLEY,Juan,Vallejo,[email protected],Brawley,CA,United States,SPOT 805 Bar and Grill,550 Main St,40.0,,,,,,
286
+ ,8282228545,,,,,,,,Niners Rollin Hard EL Valle C.V. Chapter,Joshua,Garcia,[email protected],La Quinta,CA,United States,The Beer Hunters,78483 Highway 111,40.0,,,,,,
287
+ ,4088576983,,,,,,,,Niners United,Eli,Soque,[email protected],Santa Clara,CA,United States,"Levi's Stadium Section 201, Section 110, Section 235 (8 of the 18 members are Season Ticket Holders)",4900 Marie P DeBartolo Way,18.0,,,,,,
288
+ ,3125904783,,,,,,,,San Francisco 49ers Fans of Chicago,Nathan,Israileff,[email protected],Chicago,IL,United States,"Gracie O'Malley's (Wicker Park location), 1635 N Milwaukee Ave, Chicago, IL 60647",Gracie O'Malley's,1990.0,https://www.facebook.com/Chicago49ersFans,,,,,
289
+ ,2017022055,,,,,,,,NJ Niner Empire Faithful Warriors,Joe,Aguiluz,[email protected],Jersey City,New Jersey,United States,O'Haras Downtown,172 1st Street,20.0,https://m.facebook.com/njninerempire,,,,,
290
+ ,2017057762,,,,,,,,NJ9ers,Arron,Rodriguez,[email protected],Bayonne,NJ,United States,Mr. Cee's Bar & Grill,17 E 21st Street,35.0,,,,,,
291
+ ,2088183104,,,,,,,,North Idaho 49ers Faithful,Josh,Foshee,[email protected],Coeur d'Alene,ID,United States,Iron Horse Bar and Grille,407 Sherman Ave,700.0,,,,,,
292
+ ,5093069273,,,,,,,,Northwest Niner Empire,David,Hartless,[email protected],Ellensburg,WA,United States,Armies Horseshoe Sports Bar,106 W 3rd,145.0,https://www.facebook.com/groups/northwestninerempire/,,,,,
293
+ ,7039691435,,,,,,,,NOVA Niners,Matt,Gaffey,[email protected],Herndon,VA,United States,Finnegan's Sports Bar & Grill,2310 Woodland Crossing Dr,80.0,http://www.facebook.com/nova.niners1,,,,,
294
+ ,8303870501,,,,,,,,Austin Niner Empire,Amber,Williams,[email protected],Austin,Texas,United States,Mister Tramps Pub & Sports Bar,8565 Research Blvd,13.0,http://www.Facebook.com/AustinNinerEmpire,,,,,
295
+ ,6462677844,,,,,,,,New York 49ers Club,Joey,Greener,[email protected],new york,ny,United States,Finnerty's Sports Bar,221 2nd Avenue,300.0,,,,,,
296
+ ,559-664-2446,,,,,,,,Mad-town chapter,Francisco,Velasquez,[email protected],Madera,CA,United States,Madera ranch,28423 Oregon Ave,15.0,,,,,,
297
+ ,5129491183,,,,,,,,Gold Rush Army of Austin,Emmanuel,Salgado,[email protected],Austin,TX,United States,Midway Field House,2015 E Riverside Dr,180.0,https://www.facebook.com/GoldRushArmyofAustin,,,,,
298
+ ,(951) 867-0172,,,,,,,,niner alley,pedro,ambriz,[email protected],MORENO VALLEY,CA,United States,papa joes sports bar,12220 frederick ave,25.0,,,,,,
299
+ ,(413)361-9818,,,,,,,,413 Spartans,Ricky Pnut,Ruiz,[email protected],Chicopee,MA,United States,Bullseye,Bullseye,17.0,,,,,,
300
+ ,503-550-9738,,,,,,,,Clementine's Faithful,Paula,Hylland,[email protected],Portland,OR,United States,The Mule Bar,4915 NE Fremont Street,10.0,,,,,,
301
+ ,5852592796,,,,,,,,585faithful,patterson,,[email protected],dansville,NY,United States,dansville ny,108 main st,1.0,,,,,,
302
+ ,5599203535,,,,,,,,Niner Empire Cen Cal 559,Pauline,Castro,[email protected],PORTERVILLE,CA,United States,BRICKHOUSE BAR AND GRILL,152 North Hockett Street,30.0,,,,,,
303
+ ,9254514477,,,,,,,,Booze & Niner Football,Mike,Parker,[email protected],Solana Beach,CA,United States,Saddle Bar,123 W Plaza St,10.0,,,,,,
304
+ ,6262024448,,,,,,,,Westside Niners Nation,Leo,Gonzalez,[email protected],Culver City,CA,United States,Buffalo Wings and Pizza,5571 Sepulveda Blvd.,16.0,,,,,,
305
+ ,5203719925,,,,,,,,Pinal county niner empire,Emilio,Bustos,[email protected],Casa grande,Arizona(AZ),United States,Liquor factory bar and deli,930 E Florence,30.0,,,,,,
306
+ ,4252561925,,,,,,,,"Prescott, AZ 49ers faithful",Pam,Marquardt,[email protected],Prescott,AZ,United States,Prescott Office Resturant,128 N. Cortez St.,28.0,,,,,,
307
+ ,8082585120,,,,,,,,San Francisco 49'ers Hawaii Fan Club,Randy,Miyamoto,[email protected],Honolulu,Hawaii,United States,To be determined,To be determined,50.0,,,,,,
308
+ ,(503) 544-3640,,,,,,,,Niner Empire Portland,Pedro,Urzua,[email protected],Portland,OR,United States,KingPins Portland,3550 SE 92nd ave,100.0,,,,,,
309
+ ,9253054704,,,,,,,,QueensandKings Bay Area Empire Chapter,Queen,,[email protected],Antioch,Ca,United States,Tailgaters,4605 Golf Course Rd,15.0,,,,,,
310
+ ,4086671847,,,,,,,,Club 49 Tailgate Crew,Alex,Chavez,[email protected],Pleasanton,California,United States,Sunshine Saloon Sports Bar,1807 Santa Rita Rd #K,15.0,,,,,,
311
+ ,6465429352,,,,,,,,49ers Nyc Chapter,Miguel,Ramirez,[email protected],New York,New York,United States,Off the Wagon,"109 Macdougal St,",35.0,https://www.facebook.com/niner.nychapter,,,,,
312
+ ,5093076839,,,,,,,,"49er faithfuls Yakima,Wa",Olivia,Salazar,[email protected],Yakima,Wa,United States,TheEndzone,1023 N 1st,35.0,,,,,,
313
+ ,7209080304,,,,,,,,49er's Faithful Aurora Co Chapter,Fito,Cantu',[email protected],Aurora,CO,United States,17307 E Flora Place,17307 E Flora Place,10.0,,,,,,
314
+ ,5626404112,,,,,,,,49er F8thfuls,Ray,Casper,[email protected],Gardena,Ca,United States,Paradise,889 w 190th,50.0,,,,,,
315
+ ,562-322-8833,,,,,,,,westside9ers,Ray,Casper,[email protected],Downey,CA,United States,Bar Louie,8860 Apollo Way,75.0,,,,,,
316
+ ,8609951926,,,,,,,,Spartan 9er Empire Connecticut,Raymond,Dogans,[email protected],EastHartford,CO,United States,Red Room,1543 Main St,20.0,,,,,,
317
+ ,6786322673,,,,,,,,Red & Gold Empire,Stephen,Box,[email protected],Sandy Springs,GA,United States,Hudson Grille Sandy Springs,6317 Roswell Rd NE,25.0,https://www.facebook.com/RGEmpire,,,,,
318
+ ,7755606361,,,,,,,,RENO NINEREMPIRE,Walter,Gudiel,[email protected],Reno,Nv,United States,Semenza's Pizzeria,4380 Neil rd.,35.0,,,,,,
319
+ ,6502711535,,,,,,,,650 Niner Empire peninsula chapter,Jose,Reyes Raquel Ortiz,[email protected],South San Francisco,Ca,United States,7mile house or standby,1201 bayshore blvd,27.0,,,,,,
320
+ ,6508346624,,,,,,,,Spartan Niner Empire California,Jose,Reyes,[email protected],Colma,CA,United States,Molloys Tavern,Molloys tavern,19.0,,,,,,
321
+ ,(951) 390-6832,,,,,,,,Riverside county TEF (Thee Empire Faithful),Sean,Flynn,[email protected],Winchester,CA,United States,Pizza factory,30676 Bentod Rd,20.0,,,,,,
322
+ ,9098153880,,,,,,,,Riverside 49ers Booster Club,Gus,Esmerio,[email protected],Riverside,California,United States,Lake Alice Trading Co Saloon &Eatery,3616 University Ave,20.0,,,,,,
323
+ ,5156643526,,,,,,,,49ers Strong Iowa - Des Moines Chapter,Rob,Boehringer,[email protected],Ankeny,IA,United States,Benchwarmers,705 S Ankeny Blvd,8.0,,,,,,
324
+ ,6159537124,,,,,,,,Mid South Niner Nation,Tyrone,Taylor,[email protected],Nashville,TN,United States,Kay Bob's,1602 21st Ave S,12.0,,,,,,
325
+ ,8165898717,,,,,,,,Kansas City 49ers Faithful,Ronnie,Tilman,[email protected],Leavenworth,KS,United States,"Fox and hound. 10428 metcalf Ave. Overland Park, ks",22425,245.0,,,,,,
326
+ ,9169965326,,,,,,,,49er Booster Club Carmichael Ca,Ramona,Hall,[email protected],Fair Oaks,Ca,United States,Fair Oaks,7587 Pineridge Lane,38.0,,,,,,
327
+ ,2252419900,,,,,,,,Rouge & Gold Niner Empire,Derek,Wells,[email protected],Baton Rouge,LA,United States,Sporting News Grill,4848 Constitution Avenue,32.0,,,,,,
328
+ ,5592029388,,,,,,,,Niner Empire Tulare County,Rita,Murillo,[email protected],Visalia,Ca,United States,5th Quarter,3360 S. Fairway,25.0,,,,,,
329
+ ,3234403129,,,,,,,,Mile High 49ers NOCO Booster Club,Ryan,Fregosi,[email protected],Greeley,co,United States,Old Chicago Greeley,2349 W. 29th St,176.0,http://www.facebook.com/milehigh49ersnocoboosterclub,,,,,
330
+ ,4086220996,,,,,,,,NINERFANS.COM,Ryan,Sakamoto,[email protected],Cupertino,California,United States,Islands Bar And Grill (Cupertino),20750 Stevens Creek Blvd.,22.0,,,,,,
331
+ ,6198203631,,,,,,,,San Diego Gold Rush,Robert,Zubiate,[email protected],San Diego,CA,United States,Bootleggers,804 market st.,20.0,,,,,,
332
+ ,6026264006,,,,,,,,East Valley Niner Empire,Selvin,Cardona,[email protected],Apache Junction,AZ,United States,Tumbleweed Bar & Grill,725 W Apache Trail,30.0,,,,,,
333
+ ,7076949476,,,,,,,,Santa Rosa Niner Empire,Joaquin,Kingo Saucedo,[email protected],Windsor,CA,United States,Santa Rosa,140 3rd St,15.0,,,,,,
334
+ ,3305180874,,,,,,,,Youngstown Faithful,Scott,West,[email protected],Canfield,OH,United States,The Cave,369 Timber Run Drive,10.0,,,,,,
335
+ ,6502469641,,,,,,,,Seattle Niners Faithful,Brittany,Carpenter,[email protected],Everett,WA,United States,Great American Casino,12715 4th Ave W,300.0,,,,,,
336
+ ,9194511624,,,,,,,,"San Francisco 49ers Faithful - Greater Triangle Area, NC",Lora,Edgar,[email protected],Durham,North Carolina,United States,Tobacco Road Sports Cafe,280 S. Mangum St. #100,24.0,https://www.facebook.com/groups/474297662683684/,,,,,
337
+ ,5103948854,,,,,,,,South Florida Gold Blooded Empire,Michelle,"""""Meme"""" Jackson",[email protected],Boynton Beach,Florida,United States,Miller's Ale House,2212 N. Congress Avenue,23.0,,,,,,
338
+ ,5305264764,,,,,,,,Red Rock's Local 49 Club,Shane,Keffer,[email protected],Red Bluff,CA,United States,Tips Bar,501 walnut St.,40.0,,,,,,
339
+ ,5098451845,,,,,,,,Columbia Basin Niners Faithful,Christina,Feldman,[email protected],Finley,Washington,United States,Shooters,214711 e SR 397 314711 wa397,30.0,,,,,,
340
+ ,(951) 816-8801,,,,,,,,9er Elite,Harmony,Shaw,[email protected],Lake Elsinore,CA,United States,Pins N Pockets,32250 Mission Trail,20.0,,,,,,
341
+ ,6093396596,,,,,,,,Shore Faithful,Edward,Griffin Jr,[email protected],Barnegat,NJ,United States,603 East Bay Ave Barnegat NJ 08005 - Due to covid 19 we no longer have a meeting location besides my residence. I truly hope this is acceptable - Thank you,603 East Bay Ave,6.0,,,,,,
342
+ ,5054708144,,,,,,,,Santa Fe Faithfuls,Anthony,Apodaca,[email protected],Santa Fe,New Mexico,United States,Blue Corn Brewery,4056 Cerrilos Rd.,10.0,,,,,,
343
+ ,5204147239,,,,,,,,Sonoran Desert Niner Empire,Derek,Yubeta,[email protected],Maricopa,AZ,United States,Cold beers and cheeseburgers,20350 N John Wayne Pkwy,48.0,,,,,,
344
+ ,3054953136,,,,,,,,9549ERS faithful,Nelson,Tobar,[email protected],Davie,FL,United States,Twin peaks,Twin peaks,30.0,,,,,,
345
+ ,8062929172,,,,,,,,806 Niner Empire West Texas Chapter,Joe,Frank Rodriquez,[email protected],Lubbock,Texas,United States,Buffalo Wild Wings,6320 19th st,20.0,,,,,,
346
+ ,8082283453,,,,,,,,Ohana Niner Empire,Nathan,Sterling,[email protected],Honolulu,HI,United States,TBD,1234 TBD,20.0,,,,,,
347
+ ,9167470720,,,,,,,,Westside Portland 49er Fan Club,Steven,Englund,[email protected],Portland,OR,United States,The Cheerful Tortoise,1939 SW 6th Ave,20.0,,,,,,
348
+ ,7542235678,,,,,,,,49ersGold,Tim,OCONNELL,[email protected],Oakland Park,FL,United States,stout bar and grill,Stout Bar and Grill,12.0,,,,,,
349
+ ,2096409543,,,,,,,,4T9 MOB TRACY FAMILY,Jenese,Borges Soto,[email protected],Tracy,Ca,United States,Buffalo wild wings,2796 Naglee road,20.0,,,,,,
350
+ ,5413015005,,,,,,,,Niner Empire Southern Oregon Chapter,Susana,Perez,[email protected],medford,or,United States,imperial event center,41 north Front Street,15.0,,,,,,
351
+ ,(530) 315-9467,,,,,,,,SacFaithful,Gregory,Mcconkey,[email protected],Cameron park,CA,United States,Presidents home,3266 Cimmarron rd,20.0,,,,,,
352
+ ,9374189628,,,,,,,,Niner Faithful Of Southern Ohio,Tara,Farrell,[email protected],piqua,OH,United States,My House,410 Camp St,10.0,,,,,,
353
+ ,7609783736,,,,,,,,NinerGangFaithfuls,Andrew,Siliga,[email protected],Oceanside,ca,United States,my house,4020 Thomas st,20.0,,,,,,
354
+ ,6099544424,,,,,,,,Jersey 49ers riders,terry,jackson,[email protected],Trenton,New Jersey,United States,sticky wecket,2465 S.broad st,30.0,,,,,,
355
+ ,(703) 401-0212,,,,,,,,Life Free or Die Faithfuls,Thang,Vo,[email protected],Concord,NH,United States,Buffalo Wild Wings,8 Loudon Rd,3.0,https://www.facebook.com/groups/876812822713709/,,,,,
356
+ ,3105929214,,,,,,,,The 909 Niner Faithfuls,Joe,Del Rio,[email protected],Fontana,Ca,United States,Boston's Sports Bar and Grill,16927 Sierra Lakes Pkwy.,30.0,http://www.facebook.com/The909NinerFaithfuls,,,,,
357
+ ,6264459623,,,,,,,,Arcadia Chapter,Allyson,Martin,[email protected],Arcadia,CA,United States,4167 e live oak Ave,4167 e live oak Ave,25.0,,,,,,
358
+ ,5592897293,,,,,,,,Thee Empire Faithful,Joe,Rocha,[email protected],Fresno,California,United States,Buffalo Wild Wings,3065 E Shaw Ave,50.0,,,,,,
359
+ ,5412063142,,,,,,,,The Oregon Faithful,Jeff,Sutton,[email protected],Eugene,OR,United States,The Side Bar,Side Bar,12.0,,,oregonfaithful on Twitter,,,
360
+ ,9082475788,,,,,,,,The ORIGINAL Niner Empire-New Jersey Chapter,Charlie,Murphy,[email protected],Linden,NJ,United States,Nuno's Pavilion,300 Roselle ave,35.0,,,,,,
361
+ ,5852788246,,,,,,,,What a Rush (gold),Paul,Smith,[email protected],Rochester,NY,United States,The Scotch House Pub,373 south Goodman street,15.0,,,,,,
362
+ ,9519029955,,,,,,,,Moreno Valley 49er Empire,Tibor,Belt,[email protected],Moreno Vallay,CA,United States,S Bar and Grill,23579 Sunnymead Ranch Pkwy,15.0,https://www.facebook.com/pages/Moreno-Valley-49er-Empire/220528134738022,,,,,
363
+ ,14054370161,,,,,,,,"The Niner Empire, 405 Faithfuls, Oklahoma City",Maria,Ward,[email protected],Oklahoma city,OK,United States,Hooters NW Expressway OKC,3025 NW EXPRESSWAY,25.0,https://www.facebook.com/share/g/4RVmqumg1MQNtMSi/?mibextid=K35XfP,,,,,
364
+ ,7072971945,,,,,,,,707 EMPIRE VALLEY,Tony,Ruiz,[email protected],napa,California,United States,Ruiz Home,696a stonehouse drive,10.0,,,,,,
365
+ ,208-964-2981,,,,,,,,Treasure Valley 49er Faithful,Curt,Starz,[email protected],Star,ID,United States,The Beer Guys Saloon,10937 W. State Street,100.0,https://www.facebook.com/TV49erFaithful,,,,,
366
+ ,(804) 313-1137,,,,,,,,Hampton Roads Niner Empire,Nick,Farmer,[email protected],Newport news,VA,United States,Boathouse Live,11800 Merchants Walk #100,300.0,https://m.facebook.com/groups/441340355910833?ref=bookmarks,,,,,
367
+ ,(971) 218-4734,,,,,,,,Niner Empire Salem,Timothy,Stevens,[email protected],Salem,OR,United States,AMF Firebird Lanes,4303 Center St NE,218.0,,,,,,
368
+ ,3234590567,,,,,,,,Forty Niners LA chapter,Tony,,[email protected],Bell,Ca,United States,Krazy Wings,7016 Atlantic Blvd,15.0,,,,,,
369
+ ,(318) 268-9657,,,,,,,,Red River Niner Empire,Tyra,Kinsey,[email protected],Bossier City,LA,United States,Walk On's Bossier City,3010 Airline Dr,15.0,www.facebook.com/RedRiverNinerEmpire,,,,,
370
+ ,3058965471,,,,,,,,Ultimate 49er Empire,Nadieshda,Nadie Lizabe,[email protected],Pembroke pines,Florida,United States,Pines alehouse,11795 pine island blvd,14.0,,,,,,
371
+ ,8014140109,,,,,,,,Utah Niner Empire,Travis,Vallejo,[email protected],Salt Lake City,UT,United States,Legends Sports Pub,677 South 200 West,25.0,https://www.facebook.com/UtahNinerEmpire,,,,,
372
+ ,(480) 493-9526,,,,,,,,Phoenix602Faithful,Vincent,Price,[email protected],Phoenix,AZ,United States,Galaghers,3220 E Baseline Rd,20.0,,,,,,
373
+ ,3108979404,,,,,,,,WESTSIDE 9ERS,Naimah,Williams,[email protected],Carson,CA,United States,Buffalo Wild Wings,736 E Del Amo Blvd,20.0,,,,,,
374
+ ,4696009701,,,,,,,,Addison Point 49ner's Fans,William,Kuhn,[email protected],Addison,Texas,United States,Addison Point Sports Grill,4578 Beltline Road,288.0,,,,,,
375
+ ,3605679487,,,,,,,,49er Forever Faithfuls,Wayne,Yelloweyes-Ripoyla,[email protected],Vancouver,Wa,United States,Hooligans bar and grill,"8220 NE Vancouver Plaza Dr, Vancouver, WA 98662",11.0,,,,,,
376
+ ,5309086004,,,,,,,,Woodland Faithful,Oscar,Ruiz,[email protected],Woodland,CA,United States,Mountain Mikes Pizza,171 W. Main St,30.0,,,,,,
377
+ ,3159448662,,,,,,,,Niner Empire Central New York,Michal,,[email protected],Cicero,New York,United States,Tully's Good Times,7838 Brewerton Rd,6.0,,,,,,
378
+ ,(970) 442-1932,,,,,,,,4 Corners Faithful,Anthony,Green,[email protected],Durango,CO,United States,Sporting News Grill,21636 Highway 160,10.0,https://www.facebook.com/groups/363488474141493/,,,,,
379
+ ,(480) 708-0838,,,,,,,,480 Gilbert Niner Empire,Elle,Lopez,[email protected],Gilbert,AZ,United States,Panda Libre,748 N Gilbert Rd,30.0,,,,,,
380
+ ,(331) 387-0752,,,,,,,,Niner Empire Jalisco 49ers Guadalajara,Sergio,Hernandez,[email protected],Guadalajara,TX,United States,Bar Cheleros,Bar CHELEROS,190.0,https://www.facebook.com/NinerEmpireJalisco49ersGuadalajara/?modal=admin_todo_tour,,,,,
381
+ ,3045457327,,,,,,,,49ERS Faithful of West Virginia,Zachary,Meadows,[email protected],Charleston,WV,United States,The Pitch,5711 MacCorkle Ave SE,12.0,,,,,,
382
+ ,2016971994,,,,,,,,49 Migos Chapter,Manny,Duarte,[email protected],Saddle Brook,NJ,United States,Midland Brewhouse,374 N Midland Ave,10.0,,,,,,
383
+ ,408-892-5315,,,,,,,,49ers Bay Area Faithful Social Club,Sarah,Wallace,[email protected],Sunnyvale,CA,United States,Giovanni's New York Pizzeria,1127 Lawrence Expy,65.0,,,,,,
384
+ ,5404245114,,,,,,,,Niner Empire Of Indy,Jay,Balthrop,[email protected],Indianapolis,IN,United States,The Bulldog Bar and Lounge,5380 N College Ave,30.0,,,,,,
data/create_embeddings.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ from openai import OpenAI
3
+ import os
4
+ from dotenv import load_dotenv
5
+ import numpy as np
6
+
7
+ # Load environment variables from .env file (for API key)
8
+ load_dotenv()
9
+
10
+ # Set up OpenAI client
11
+ client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
12
+
13
+ def get_embedding(text):
14
+ """Get embedding for text using OpenAI's text-embedding-3-small."""
15
+ if pd.isna(text) or text == "Specific game details are not available.":
16
+ # Return an array of zeros for missing data or non-specific summaries
17
+ return [0] * 1536 # text-embedding-3-small produces 1536-dimensional embeddings
18
+
19
+ response = client.embeddings.create(
20
+ input=text.strip(),
21
+ model="text-embedding-3-small"
22
+ )
23
+ return response.data[0].embedding
24
+
25
+ def main():
26
+ # Read the CSV file
27
+ input_path = "merged/data/niners_output/schedule_with_result.csv"
28
+ output_path = "merged/data/niners_output/schedule_with_result_embedding.csv"
29
+
30
+ print(f"Reading from {input_path}")
31
+ df = pd.read_csv(input_path)
32
+
33
+ # Check if Summary column exists
34
+ if "Summary" not in df.columns:
35
+ print("Error: 'Summary' column not found in the CSV file.")
36
+ return
37
+
38
+ # Generate embeddings for each summary
39
+ print("Generating embeddings...")
40
+
41
+ # Add embeddings directly to the original dataframe
42
+ df['embedding'] = df['Summary'].apply(get_embedding)
43
+
44
+ # Save to CSV
45
+ print(f"Saving embeddings to {output_path}")
46
+ df.to_csv(output_path, index=False)
47
+ print("Done!")
48
+
49
+ if __name__ == "__main__":
50
+ main()
data/data_generation.py ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ###################################
2
+ # regenerate_49ers_data.py
3
+ ###################################
4
+
5
+ import pandas as pd
6
+ import random
7
+ import uuid
8
+ from faker import Faker
9
+ import os
10
+
11
+ # CONFIG: Where your input CSVs live
12
+ INPUT_DIR = os.path.dirname(os.path.abspath(__file__)) # Uses the current script's directory
13
+ COMMUNITIES_FILE = "49ers_fan_communities_clean_GOOD.csv"
14
+ ROSTER_FILE = "49ers roster - Sheet1.csv"
15
+ SCHEDULE_FILE = "nfl-2024-san-francisco-49ers-with-results.csv"
16
+
17
+ # CONFIG: Output directory for final CSVs
18
+ OUTPUT_DIR = os.path.join(INPUT_DIR, "niners_output")
19
+ os.makedirs(OUTPUT_DIR, exist_ok=True)
20
+
21
+ NUM_FANS = 2500 # We want 2500 synthetic fans
22
+
23
+ # ------------------------------------------------------------
24
+ # 1. READ REAL CSVs
25
+ # ------------------------------------------------------------
26
+ def load_real_data():
27
+ # Adjust columns/types based on your actual CSV structure
28
+ df_communities = pd.read_csv(os.path.join(INPUT_DIR, COMMUNITIES_FILE))
29
+ df_roster = pd.read_csv(os.path.join(INPUT_DIR, ROSTER_FILE))
30
+ df_schedule = pd.read_csv(os.path.join(INPUT_DIR, SCHEDULE_FILE))
31
+
32
+ # Optional: rename columns or add IDs if your CSVs don't have them
33
+ # For example, ensure df_roster has "player_id" column for each player
34
+ if "player_id" not in df_roster.columns:
35
+ df_roster["player_id"] = [str(uuid.uuid4()) for _ in range(len(df_roster))]
36
+
37
+ # If df_schedule lacks a unique "game_id," add one:
38
+ if "game_id" not in df_schedule.columns:
39
+ df_schedule["game_id"] = [str(uuid.uuid4()) for _ in range(len(df_schedule))]
40
+
41
+ # If df_communities lacks a "community_id," add one:
42
+ if "community_id" not in df_communities.columns:
43
+ df_communities["community_id"] = [str(uuid.uuid4()) for _ in range(len(df_communities))]
44
+
45
+ return df_communities, df_roster, df_schedule
46
+
47
+ # ------------------------------------------------------------
48
+ # 2. GENERATE 2,500 FANS (FAKE DATA)
49
+ # ------------------------------------------------------------
50
+ def generate_synthetic_fans(num_fans: int) -> pd.DataFrame:
51
+ """
52
+ Create a DataFrame of synthetic fans.
53
+ Each fan has:
54
+ - fan_id (UUID)
55
+ - first_name
56
+ - last_name
57
+ - email
58
+ - favorite_players (list of player_ids)
59
+ - community_memberships (list of community_ids)
60
+ """
61
+ fake = Faker()
62
+ fans_list = []
63
+ for _ in range(num_fans):
64
+ fan_id = str(uuid.uuid4())
65
+ first_name = fake.first_name()
66
+ last_name = fake.last_name()
67
+ email = fake.email()
68
+
69
+ fans_list.append({
70
+ "fan_id": fan_id,
71
+ "first_name": first_name,
72
+ "last_name": last_name,
73
+ "email": email,
74
+ # We'll assign favorite_players & community_memberships below
75
+ "favorite_players": [],
76
+ "community_memberships": []
77
+ })
78
+
79
+ return pd.DataFrame(fans_list)
80
+
81
+ # ------------------------------------------------------------
82
+ # 3. ASSIGN RANDOM FAVORITE PLAYERS AND COMMUNITIES
83
+ # ------------------------------------------------------------
84
+ def assign_relationships(df_fans: pd.DataFrame,
85
+ df_roster: pd.DataFrame,
86
+ df_communities: pd.DataFrame):
87
+ """
88
+ - Pick 1-3 random favorite players for each fan from the real roster
89
+ - Assign 0 or 1 community to each fan from the real communities
90
+ """
91
+ player_ids = df_roster["player_id"].tolist()
92
+ community_ids = df_communities["community_id"].tolist()
93
+
94
+ for idx, fan in df_fans.iterrows():
95
+ # Choose 1-3 players
96
+ if len(player_ids) > 0:
97
+ num_players = random.randint(1, 3)
98
+ chosen_players = random.sample(player_ids, k=num_players)
99
+ else:
100
+ chosen_players = []
101
+
102
+ # 50% chance to join a community
103
+ chosen_community = []
104
+ if len(community_ids) > 0 and random.choice([True, False]):
105
+ chosen_community = [random.choice(community_ids)]
106
+
107
+ # Update the row's columns
108
+ df_fans.at[idx, "favorite_players"] = chosen_players
109
+ df_fans.at[idx, "community_memberships"] = chosen_community
110
+
111
+ # ------------------------------------------------------------
112
+ # 4. MAIN PIPELINE
113
+ # ------------------------------------------------------------
114
+ def main():
115
+ # 4.1. Load real data
116
+ df_communities, df_roster, df_schedule = load_real_data()
117
+
118
+ # 4.2. Generate 2,500 synthetic fans
119
+ df_fans = generate_synthetic_fans(NUM_FANS)
120
+
121
+ # 4.3. Assign random relationships
122
+ assign_relationships(df_fans, df_roster, df_communities)
123
+
124
+ # 4.4. Export everything to CSV
125
+ # (If you'd like to keep the original real-data files as is,
126
+ # you can simply re-write them or rename them. Below we do an explicit "to_csv".)
127
+
128
+ df_communities.to_csv(os.path.join(OUTPUT_DIR, "fan_communities.csv"), index=False)
129
+ df_roster.to_csv(os.path.join(OUTPUT_DIR, "roster.csv"), index=False)
130
+ df_schedule.to_csv(os.path.join(OUTPUT_DIR, "schedule.csv"), index=False)
131
+ df_fans.to_csv(os.path.join(OUTPUT_DIR, "fans.csv"), index=False)
132
+
133
+ print(f"Data generation complete! Files are in {OUTPUT_DIR}")
134
+ print(" - fan_communities.csv (REAL)")
135
+ print(" - roster.csv (REAL)")
136
+ print(" - schedule.csv (REAL)")
137
+ print(" - fans.csv (SYNTHETIC + relationships)")
138
+
139
+ if __name__ == "__main__":
140
+ main()
data/kml_cleanup.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from xml.etree import ElementTree as ET
2
+ import pandas as pd
3
+
4
+ # Define the KML namespace
5
+ ns = {'kml': 'http://www.opengis.net/kml/2.2'}
6
+
7
+ # 1. Parse the KML file
8
+ tree = ET.parse("merged/data/temp_unzipped/doc.kml")
9
+ root = tree.getroot()
10
+
11
+ # 2. Find all Folder elements using the namespace
12
+ folders = root.findall(".//kml:Folder", ns)
13
+
14
+ # 3. Choose the second folder
15
+ # Print folder names to help identify the correct one
16
+ print("Available folders:")
17
+ for i, folder in enumerate(folders):
18
+ name = folder.find(".//kml:name", ns)
19
+ print(f"{i}: {name.text if name is not None else 'Unnamed folder'}")
20
+
21
+ interesting_folder = folders[1] # You might want to adjust this index based on the output
22
+
23
+ # 4. For each Placemark, gather data
24
+ rows = []
25
+ for placemark in interesting_folder.findall(".//kml:Placemark", ns):
26
+ row_data = {}
27
+
28
+ # Get placemark name if available
29
+ name = placemark.find(".//kml:name", ns)
30
+ if name is not None:
31
+ row_data['Name'] = name.text
32
+
33
+ # ExtendedData -> Data elements
34
+ extended_data = placemark.find(".//kml:ExtendedData", ns)
35
+ if extended_data is not None:
36
+ data_elements = extended_data.findall(".//kml:Data", ns)
37
+ for data_el in data_elements:
38
+ col_name = data_el.get("name")
39
+ val_el = data_el.find(".//kml:value", ns)
40
+ value = val_el.text if val_el is not None else None
41
+ row_data[col_name] = value
42
+
43
+ rows.append(row_data)
44
+
45
+ # Convert to DataFrame and save as CSV
46
+ df = pd.DataFrame(rows)
47
+ df.to_csv("merged/data/output.csv", index=False)
48
+
49
+ print(f"Processed {len(rows)} placemarks")
50
+ print("Output saved to merged/data/output.csv")
data/kmz_file_explorer.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
data/neo4j_ingestion.py ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ############################################
2
+ # neo4j_ingestion.py
3
+ ############################################
4
+
5
+ import os
6
+ import csv
7
+ import uuid
8
+ import pandas as pd
9
+ from neo4j import GraphDatabase
10
+ from dotenv import load_dotenv
11
+
12
+ # Load environment variables
13
+ load_dotenv()
14
+
15
+ # ------------------------------------------------------------------------------
16
+ # CONFIGURE THESE TO MATCH YOUR ENVIRONMENT
17
+ # ------------------------------------------------------------------------------
18
+ NEO4J_URI = os.getenv('AURA_CONNECTION_URI')
19
+ NEO4J_USER = os.getenv('AURA_USERNAME')
20
+ NEO4J_PASS = os.getenv('AURA_PASSWORD')
21
+
22
+ if not all([NEO4J_URI, NEO4J_USER, NEO4J_PASS]):
23
+ raise ValueError("Missing required Neo4j credentials in .env file")
24
+
25
+ # Update CSV_DIR to use absolute path
26
+ SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
27
+ CSV_DIR = os.path.join(SCRIPT_DIR, "niners_output") # Updated to correct folder name
28
+ REL_CSV_DIR = os.path.join(SCRIPT_DIR, "relationship_csvs")
29
+
30
+ # Create directories if they don't exist
31
+ os.makedirs(CSV_DIR, exist_ok=True)
32
+ os.makedirs(REL_CSV_DIR, exist_ok=True)
33
+
34
+ # Filenames for each CSV
35
+ COMMUNITIES_FILE = "fan_communities.csv"
36
+ ROSTER_FILE = "roster.csv"
37
+ #SCHEDULE_FILE = "schedule.csv"
38
+ SCHEDULE_FILE = "schedule_with_result_embedding.csv"
39
+ FANS_FILE = "fans.csv"
40
+
41
+ print("Script directory:", SCRIPT_DIR)
42
+ print("CSV directory:", CSV_DIR)
43
+ print("Looking for files in:")
44
+ print(f"- {os.path.join(CSV_DIR, COMMUNITIES_FILE)}")
45
+ print(f"- {os.path.join(CSV_DIR, ROSTER_FILE)}")
46
+ print(f"- {os.path.join(CSV_DIR, SCHEDULE_FILE)}")
47
+ print(f"- {os.path.join(CSV_DIR, FANS_FILE)}")
48
+
49
+ # Add this after the file path prints:
50
+ print("\nChecking CSV column names:")
51
+ for file_name in [COMMUNITIES_FILE, ROSTER_FILE, SCHEDULE_FILE, FANS_FILE]:
52
+ df = pd.read_csv(os.path.join(CSV_DIR, file_name))
53
+ print(f"\n{file_name} columns:")
54
+ print(df.columns.tolist())
55
+
56
+ # ------------------------------------------------------------------------------
57
+ # 1) Create Relationship CSVs from fans.csv
58
+ # ------------------------------------------------------------------------------
59
+ def create_relationship_csvs():
60
+ """
61
+ Reads fans.csv, which includes columns:
62
+ - fan_id
63
+ - favorite_players (string list)
64
+ - community_memberships (string list)
65
+ Expands these lists into separate relationship rows, which we export as:
66
+ fan_player_rels.csv and fan_community_rels.csv
67
+ """
68
+ fans_path = os.path.join(CSV_DIR, FANS_FILE)
69
+ df_fans = pd.read_csv(fans_path)
70
+
71
+ fan_player_relationships = []
72
+ fan_community_relationships = []
73
+
74
+ for _, row in df_fans.iterrows():
75
+ fan_id = row["fan_id"]
76
+
77
+ # favorite_players (could be "['id1','id2']" or a single string)
78
+ fav_players_raw = row.get("favorite_players", "[]")
79
+ fav_players_list = parse_string_list(fav_players_raw)
80
+
81
+ for pid in fav_players_list:
82
+ fan_player_relationships.append({
83
+ "start_id": fan_id,
84
+ "end_id": pid,
85
+ "relationship_type": "FAVORITE_PLAYER"
86
+ })
87
+
88
+ # community_memberships
89
+ comm_memberships_raw = row.get("community_memberships", "[]")
90
+ comm_list = parse_string_list(comm_memberships_raw)
91
+
92
+ for cid in comm_list:
93
+ fan_community_relationships.append({
94
+ "start_id": fan_id,
95
+ "end_id": cid,
96
+ "relationship_type": "MEMBER_OF"
97
+ })
98
+
99
+ # Convert to DataFrames and write out to CSV
100
+ if fan_player_relationships:
101
+ df_fan_player = pd.DataFrame(fan_player_relationships)
102
+ df_fan_player.to_csv(os.path.join(REL_CSV_DIR, "fan_player_rels.csv"), index=False)
103
+
104
+ if fan_community_relationships:
105
+ df_fan_community = pd.DataFrame(fan_community_relationships)
106
+ df_fan_community.to_csv(os.path.join(REL_CSV_DIR, "fan_community_rels.csv"), index=False)
107
+
108
+ print("Created relationship CSVs in:", REL_CSV_DIR)
109
+
110
+ def parse_string_list(raw_val):
111
+ """
112
+ Attempt to parse a Python-style list string (e.g. "['abc','def']")
113
+ or return an empty list if parsing fails.
114
+ """
115
+ if isinstance(raw_val, str):
116
+ try:
117
+ parsed = eval(raw_val)
118
+ if not isinstance(parsed, list):
119
+ return []
120
+ return parsed
121
+ except:
122
+ return []
123
+ elif isinstance(raw_val, list):
124
+ return raw_val
125
+ else:
126
+ return []
127
+
128
+ # ------------------------------------------------------------------------------
129
+ # 2) LOAD Node & Relationship CSVs into Neo4j
130
+ # ------------------------------------------------------------------------------
131
+ def clean_row_dict(row):
132
+ """Convert pandas row to dict and replace NaN with None"""
133
+ return {k: None if pd.isna(v) else v for k, v in row.items()}
134
+
135
+ def ingest_to_neo4j():
136
+ """
137
+ Connects to Neo4j, deletes existing data, creates constraints,
138
+ loads node CSVs, then loads relationship CSVs.
139
+ """
140
+ driver = GraphDatabase.driver(NEO4J_URI, auth=(NEO4J_USER, NEO4J_PASS))
141
+
142
+ with driver.session() as session:
143
+ # (A) DELETE CURRENT CONTENTS
144
+ session.run("MATCH (n) DETACH DELETE n")
145
+ print("Cleared existing graph data.")
146
+
147
+ # (B) Create uniqueness constraints - Updated with exact column name
148
+ session.run("CREATE CONSTRAINT IF NOT EXISTS FOR (c:Community) REQUIRE c.fan_chapter_name IS UNIQUE")
149
+ session.run("CREATE CONSTRAINT IF NOT EXISTS FOR (p:Player) REQUIRE p.player_id IS UNIQUE")
150
+ session.run("CREATE CONSTRAINT IF NOT EXISTS FOR (g:Game) REQUIRE g.game_id IS UNIQUE")
151
+ session.run("CREATE CONSTRAINT IF NOT EXISTS FOR (f:Fan) REQUIRE f.fan_id IS UNIQUE")
152
+ print("Created/ensured constraints.")
153
+
154
+ # 1) Communities - Updated to handle duplicates
155
+ communities_df = pd.read_csv(os.path.join(CSV_DIR, COMMUNITIES_FILE))
156
+
157
+ # Track duplicates
158
+ duplicates = communities_df[communities_df['Fan Chapter Name'].duplicated(keep='first')]
159
+ if not duplicates.empty:
160
+ print(f"\nFound {len(duplicates)} duplicate Fan Chapter Names (keeping first occurrence only):")
161
+ print(duplicates[['Fan Chapter Name']].to_string())
162
+
163
+ # Export duplicates to CSV for reference
164
+ duplicates.to_csv(os.path.join(CSV_DIR, 'duplicate_chapters.csv'), index=False)
165
+
166
+ # Keep only first occurrence of each Fan Chapter Name
167
+ communities_df = communities_df.drop_duplicates(subset=['Fan Chapter Name'], keep='first')
168
+
169
+ # Process unique chapters
170
+ for _, row in communities_df.iterrows():
171
+ params = clean_row_dict(row)
172
+
173
+ # Map the correct columns
174
+ params["fan_chapter_name"] = params.pop("Fan Chapter Name", "") or ""
175
+ params["city"] = params.pop("Meeting Location Address (City)", "") or ""
176
+ params["state"] = params.pop("Meeting Location Address (State)", "") or ""
177
+ params["email_contact"] = params.pop("Email Address", "") or ""
178
+ params["meetup_info"] = f"{params.pop('Venue', '')} - {params.pop('Venue Location', '')}"
179
+
180
+ session.run("""
181
+ CREATE (c:Community {
182
+ fan_chapter_name: $fan_chapter_name,
183
+ city: $city,
184
+ state: $state,
185
+ email_contact: $email_contact,
186
+ meetup_info: $meetup_info
187
+ })
188
+ """, params)
189
+ print(f"Imported {len(communities_df)} unique Communities.")
190
+
191
+ # 2) Players - Updated with correct column names
192
+ players_df = pd.read_csv(os.path.join(CSV_DIR, ROSTER_FILE))
193
+ for _, row in players_df.iterrows():
194
+ params = clean_row_dict(row)
195
+ session.run("""
196
+ CREATE (p:Player {
197
+ player_id: $player_id,
198
+ name: $Player,
199
+ position: $Pos,
200
+ jersey_number: toInteger($Number),
201
+ height: $HT,
202
+ weight: $WT,
203
+ college: $College,
204
+ years_in_nfl: toInteger($Exp)
205
+ })
206
+ """, params)
207
+ print("Imported Players.")
208
+
209
+ # 3) Games - Updated with correct column names
210
+ games_df = pd.read_csv(os.path.join(CSV_DIR, SCHEDULE_FILE))
211
+ for _, row in games_df.iterrows():
212
+ params = clean_row_dict(row)
213
+ session.run("""
214
+ CREATE (g:Game {
215
+ game_id: $game_id,
216
+ date: $Date,
217
+ location: $Location,
218
+ home_team: $HomeTeam,
219
+ away_team: $AwayTeam,
220
+ result: $Result,
221
+ summary: $Summary,
222
+ embedding: $embedding
223
+ })
224
+ """, params)
225
+ print("Imported Games.")
226
+
227
+ # 4) Fans - This one was correct, no changes needed
228
+ fans_df = pd.read_csv(os.path.join(CSV_DIR, FANS_FILE))
229
+ for _, row in fans_df.iterrows():
230
+ params = clean_row_dict(row)
231
+ session.run("""
232
+ CREATE (f:Fan {
233
+ fan_id: $fan_id,
234
+ first_name: $first_name,
235
+ last_name: $last_name,
236
+ email: $email
237
+ })
238
+ """, params)
239
+ print("Imported Fans.")
240
+
241
+ # (D) LOAD Relationships
242
+ fan_player_path = os.path.join(REL_CSV_DIR, "fan_player_rels.csv")
243
+ if os.path.exists(fan_player_path):
244
+ rels_df = pd.read_csv(fan_player_path)
245
+ for _, row in rels_df.iterrows():
246
+ params = clean_row_dict(row)
247
+ session.run("""
248
+ MATCH (f:Fan {fan_id: $start_id})
249
+ MATCH (p:Player {player_id: $end_id})
250
+ CREATE (f)-[:FAVORITE_PLAYER]->(p)
251
+ """, params)
252
+ print("Created Fan -> Player relationships.")
253
+
254
+ fan_community_path = os.path.join(REL_CSV_DIR, "fan_community_rels.csv")
255
+ if os.path.exists(fan_community_path):
256
+ rels_df = pd.read_csv(fan_community_path)
257
+ for _, row in rels_df.iterrows():
258
+ params = clean_row_dict(row)
259
+ session.run("""
260
+ MATCH (f:Fan {fan_id: $start_id})
261
+ MATCH (c:Community {fan_chapter_name: $end_id})
262
+ CREATE (f)-[:MEMBER_OF]->(c)
263
+ """, params)
264
+ print("Created Fan -> Community relationships.")
265
+
266
+ driver.close()
267
+ print("Neo4j ingestion complete!")
268
+
269
+ # ------------------------------------------------------------------------------
270
+ # 3) MAIN
271
+ # ------------------------------------------------------------------------------
272
+ def main():
273
+ # 1) Generate relationship CSVs for fans' favorite_players & community_memberships
274
+ create_relationship_csvs()
275
+
276
+ # 2) Ingest all CSVs (nodes + relationships) into Neo4j
277
+ ingest_to_neo4j()
278
+
279
+ if __name__ == "__main__":
280
+ main()
data/nfl-2024-san-francisco-49ers-with-results.csv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Match Number,Round Number,Date,Location,Home Team,Away Team,Result,game_result
2
+ 1,1,10/09/2024 00:15,Levi's Stadium,San Francisco 49ers,New York Jets,32 - 19,Win
3
+ 28,2,15/09/2024 17:00,U.S. Bank Stadium,Minnesota Vikings,San Francisco 49ers,23 - 17,Loss
4
+ 38,3,22/09/2024 20:25,SoFi Stadium,Los Angeles Rams,San Francisco 49ers,27 - 24,Loss
5
+ 55,4,29/09/2024 20:05,Levi's Stadium,San Francisco 49ers,New England Patriots,30 - 13,Win
6
+ 70,5,06/10/2024 20:05,Levi's Stadium,San Francisco 49ers,Arizona Cardinals,23 - 24,Loss
7
+ 92,6,11/10/2024 00:15,Lumen Field,Seattle Seahawks,San Francisco 49ers,24 - 36,Win
8
+ 96,7,20/10/2024 20:25,Levi's Stadium,San Francisco 49ers,Kansas City Chiefs,18 - 28,Loss
9
+ 109,8,28/10/2024 00:20,Levi's Stadium,San Francisco 49ers,Dallas Cowboys,30 - 24,Win
10
+ 149,10,10/11/2024 18:00,Raymond James Stadium,Tampa Bay Buccaneers,San Francisco 49ers,20 - 23,Win
11
+ 158,11,17/11/2024 21:05,Levi's Stadium,San Francisco 49ers,Seattle Seahawks,17 - 20,Loss
12
+ 169,12,24/11/2024 21:25,Lambeau Field,Green Bay Packers,San Francisco 49ers,38 - 10,Loss
13
+ 181,13,02/12/2024 01:20,Highmark Stadium,Buffalo Bills,San Francisco 49ers,35 - 10,Loss
14
+ 199,14,08/12/2024 21:25,Levi's Stadium,San Francisco 49ers,Chicago Bears,38 - 13,Win
15
+ 224,15,13/12/2024 01:15,Levi's Stadium,San Francisco 49ers,Los Angeles Rams,6 - 12,Loss
16
+ 228,16,22/12/2024 21:25,Hard Rock Stadium,Miami Dolphins,San Francisco 49ers,29 - 17,Loss
17
+ 246,17,31/12/2024 01:15,Levi's Stadium,San Francisco 49ers,Detroit Lions,34 - 40,Loss
18
+ 257,18,05/01/2025 21:25,State Farm Stadium,Arizona Cardinals,San Francisco 49ers,47 - 24,Loss
data/niners_output/duplicate_chapters.csv ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Phone Number,Website,Meeting Location Address (Address),Meeting Location Address (Address2),Meeting Location Address (City),Meeting Location Address (State),Meeting Location Address (Zip),Meeting Location Address (Country),Fan Chapter Name,President First Name,President Last Name,Email Address,City,State,Country,Venue,Venue Location,Total Fans,Facebook,Instagram,X (Twitter),TikTok,WhatsApp,YouTube,community_id
2
+ ,8315126139,,,,,,,,Central Coast Niner Empire 831,Rafael,Garcia,[email protected],Salinas,CA,United States,Pizza Factory,1945 Natividad Rd,22.0,Facebook.com/CentralCoastNinerEmpire831,,,,,,c86453f6-0155-4458-9a26-e211aa2b8e33
3
+ ,5627391639,,,,,,,,O.C. NINER EMPIRE FAITHFUL'S,Angel,Grijalva,[email protected],Buena park,CA,United States,Ciro's pizza,6969 la Palma Ave,10.0,,,,,,,3e1b2231-8fa4-4abc-938f-7c09f30b37fc
4
+ ,8176757644,,,,,,,,Niner Empire DFW,Danny,Ramirez,[email protected],Bedford,TX,United States,Papa G's,2900 HIGHWAY 121,50.0,,,,,,,40693c50-8e07-4fb8-a0bc-ecf3383ce195
5
+ ,(808) 989-0030,,,,,,,,NINER EMPIRE HAWAII 808,KEVIN,MEWS,[email protected],Honolulu,HI,United States,Buffalo Wild Wings -Pearl City,1644 Young St # E,25.0,,,,,,,eee2e97f-1d1f-4552-abbf-c615e64f8377
6
+ ,6265396855,,,,,,,,SO. CAL GOLD BLOODED NINER'S,Louie,Gutierrez,[email protected],Industry,CA,United States,Hacienda heights Pizza Co,15239 Gale Ave,25.0,Facebook group page/instagram,,,,,,ad9a0664-8bf1-4916-b5d3-ca796916e0a5
7
+ ,7605879798,,,,,,,,49er Empire High Desert,Mike,Kidwell (president),[email protected],hesperia,California,United States,Thorny's,1330 Ranchero rd.,100.0,,,,,,,c758e93b-3a3e-4c2f-990b-1bf9f1cdd6ca
8
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,Texas,United States,Fatso's,1704 Bandera Road,25.0,https://www.facebook.com/ninerempire.antonio,,,,,,163ed53e-753a-40b9-aa4d-645c1e9dc673
9
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,Texas,United States,Fatsos,1704 Bandera Rd,30.0,,,,,,,2966907f-4bbd-4c39-ad05-ea710abc7a3d
10
+ ,(503) 544-3640,,,,,,,,Niner Empire Portland,Pedro,Urzua,[email protected],Portland,OR,United States,KingPins Portland,3550 SE 92nd ave,100.0,,,,,,,45249454-edef-4d93-a5d2-f6f14e123707
11
+ ,9098153880,,,,,,,,Riverside 49ers Booster Club,Gus,Esmerio,[email protected],Riverside,California,United States,Lake Alice Trading Co Saloon &Eatery,3616 University Ave,20.0,,,,,,,de7e2c76-771b-4042-8a27-29070b65022a
12
+ ,5204147239,,,,,,,,Sonoran Desert Niner Empire,Derek,Yubeta,[email protected],Maricopa,AZ,United States,Cold beers and cheeseburgers,20350 N John Wayne Pkwy,48.0,,,,,,,b7615efb-5b5f-4732-9f7c-c7c9f00e3fd9
13
+ ,208-964-2981,,,,,,,,Treasure Valley 49er Faithful,Curt,Starz,[email protected],Star,ID,United States,The Beer Guys Saloon,10937 W. State Street,100.0,https://www.facebook.com/TV49erFaithful,,,,,,dd93b349-8a58-4ae5-8ffc-4be1d7d8e146
14
+ ,(971) 218-4734,,,,,,,,Niner Empire Salem,Timothy,Stevens,[email protected],Salem,OR,United States,AMF Firebird Lanes,4303 Center St NE,218.0,,,,,,,794f2ed1-b82f-4fb8-9bd4-fa69c4e9695d
data/niners_output/fan_communities.csv ADDED
@@ -0,0 +1,384 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Phone Number,Website,Meeting Location Address (Address),Meeting Location Address (Address2),Meeting Location Address (City),Meeting Location Address (State),Meeting Location Address (Zip),Meeting Location Address (Country),Fan Chapter Name,President First Name,President Last Name,Email Address,City,State,Country,Venue,Venue Location,Total Fans,Facebook,Instagram,X (Twitter),TikTok,WhatsApp,YouTube,community_id
2
+ ,52 4492612712,,,,,,,,49ers Aguascalientes,Cesar,Romo,[email protected],Aguascalientes,,Mexico,Vikingo Bar,"Av de la Convención de 1914 Sur 312-A, Las Américas, 20230 Aguascalientes, Ags., Mexico",174.0,https://www.facebook.com/share/1Wa7TPzBMX/,,,,,,79cfd643-4de5-46b2-8459-f1f6b8d87583
3
+ ,52 (46) 1219 7801,,,,,,,,Bajio Faithful,Hector,Camarena,[email protected],"Celaya, GTO",,Mexico,California Prime Rib Restaurant,"Av. Constituyentes 1000 A, 3 Guerras, 38080 Celaya, Gto., Mexico",20.0,,,,,,,3c7dad3a-d69a-409f-91ff-6b6856a1b73d
4
+ ,52 (96) 1654-1513,,,,,,,,Niner Empire Chiapas,Aroshi,Narvaez,[email protected],Chiapas,,Mexico,Alitas Tuxtla,"Blvd. Belisario Dominguez 1861 Loc K1 Tuxtl Fracc, Bugambilias, 29060 Tuxtla Gutiérrez, Chis., Mexico",250.0,Niner Empire Chiapas,https://www.instagram.com/49erschiapas/?hl=en,Niner Empire Chiapas,,,,fce88bd9-e2a3-481e-bedc-dbebd5343f08
5
+ ,52 (61) 4404-1411,,,,,,,,49ers Faithful Chihuahua Oficial,Jorge,Otamendi,[email protected],Chihuahua,,Mexico,El Coliseo Karaoke Sports Bar,"C. Jose Maria Morelos 111, Zona Centro, 31000 Chihuahua, Chih., Mexico",300.0,https://www.facebook.com/share/g/14tnsAwWFc/,https://www.instagram.com/49ersfaithfulchihuahua?igsh=bHE5ZWd6eTUxOWl3,,https://www.tiktok.com/@49ers.faithful.ch?_t=8rv1vcLFfBI&_r=1,,,eec5a289-f51e-43ef-83f9-de27fbe2525b
6
+ ,52 (61) 41901197,,,,,,,,Gold Rush Chihuahua Spartans,Juan,García,[email protected],Chihuahua,,Mexico,34 Billiards & Drinks,"Av. Tecnológico 4903, Las Granjas 31100",976.0,https://www.facebook.com/groups/170430893136916/,,,,,,5b0d64d5-2e5f-4173-b359-c4355e1ce861
7
+ ,52 (55) 6477-1279,,,,,,,,Club 49ers Mexico,German,Rodriguez,[email protected],"Ciudad de Mexico, Mexico",,Mexico,Bar 49,16 Septiembre #27 Colonia Centro Historico Ciudad de Mexico,800.0,,club49ersmexico,club49ersmexico,Club49ersmexicooficial,,,db07fa7b-d0f9-44b4-981b-358558b30f4c
8
+ ,52 (55) 6904-5174,,,,,,,,Club 49ers Durango Oficial,Victor,Arballo,[email protected],Durango,,Mexico,Restaurante Buffalucas Constitución,"C. Constitución 107B, Zona Centro, 34000 Durango, Dgo., Mexico",170.0,https://www.facebook.com/share/1TaDBVZmx2/?mibextid=LQQJ4d,https://www.instagram.com/49ers_dgo?igsh=ams1dHdibXZmN28w,,,,,f835cf7a-025e-40e8-b549-3be781938f19
9
+ ,52 (55) 707169,,,,,,,,Niner Empire Edo Mex,Alberto,Velasco,[email protected],Estado de Mexico,,Mexico,Beer Garden Satélite,"Cto. Circunvalación Ote. 10-L-4, Cd. Satélite, 53100 Naucalpan de Juárez, Méx., Mexico",250.0,,https://www.instagram.com/ninerempireedomex/,https://x.com/ninerempedomex,,,,05d42a68-33f9-4c51-be80-33fd14c50c8b
10
+ ,52 (33) 2225-4392,,,,,,,,Club 49ers Jalisco,Marcela,Medina,[email protected],"Guadalajara, Jalisco",,Mexico,Restaurante Modo Avión Zapopan,"Calzada Nte 14, Granja, 45010 Zapopan, Jal., Mexico",40.0,,club49ersjalisco,Club 49ers Jalisco,,,,901ca5e1-26d1-4743-83b3-6b2a6a25658b
11
+ ,52 (33) 1046 3607,,,,,,,,Niner Empire Jalisco,Alonso,Partida,[email protected],"Guadalajara, Jalisco",,Mexico,SkyGames Sports Bar,"Av. Vallarta 874 entre Camarena y, C. Escorza, Centro, 44100 Guadalajara, Jal., Mexico",200.0,,niner_empire_jalisco,NinerEmpireJal,ninerempirejal,,,618bbb9b-7bee-49cf-a459-377aa5ff7b86
12
+ ,52 (65) 6228-3719,,,,,,,,Niner Empire Juarez Oficial,Hugo,Montero,[email protected],Juarez,,Mexico,Sport Bar Silver Fox,"Av. Paseo Triunfo de la República 430, Las Fuentes, 32530 Juárez, Chih., Mexico",300.0,,,,,,,8a0ad20d-1074-47df-bb78-7dfd008619af
13
+ ,52 (99) 9172-2810,,,,,,,,49ers Merida Oficial,Liliana,Vargas,[email protected],Merida,,Mexico,Taproom Mastache,"Av. Cámara de Comercio 263, San Ramón Nte, 97117 Mérida, Yuc., Mexico",290.0,,,,,,,aaafb4f5-408a-43cb-90c5-451db488af94
14
+ ,52 (686) 243 7235,,,,,,,,Niner Empire Mexicali,Gabriel,Carbajal,[email protected],Mexicali,,Mexico,La Gambeta Terraza Sports Bar,"Calz. Cuauhtémoc 328, Aviación, 21230 Mexicali, B.C., Mexico",45.0,,,,,,,2584743f-fb25-4926-b229-2468e4684fc7
15
+ ,52 (81) 1500-4400,,,,,,,,49ers Monterrey Oficial,Luis,González,[email protected],Monterrey,,Mexico,Buffalo Wild Wings Insurgentes,"Av Insurgentes 3961, Sin Nombre de Col 31, 64620 Monterrey, N.L., Mexico",1200.0,,,,,,,8a0cc83c-ee5e-4f28-abd2-4785b7f503be
16
+ ,52 (22) 21914254,,,,,,,,Club 49ers Puebla,Elias,Mendez,[email protected],Puebla,,Mexico,Bar John Barrigón,"Av. Juárez 2925, La Paz, 72160 Heroica Puebla de Zaragoza, Pue., Mexico",,,,,,,,43c67b64-aa19-4d3c-bd4e-c18799854e93
17
+ ,52 (84) 4130-0064,,,,,,,,Niners Empire Saltillo,Carlos,Carrizales,[email protected],Saltillo,,Mexico,Cervecería La Huérfana,"Blvd. Venustiano Carranza 7046-Int 9, Los Rodríguez, 25200 Saltillo, Coah., Mexico",,,,,,,,8968fdf0-d411-4899-9aaf-632d1ff2ca1c
18
+ ,52 (44) 4257-3609,,,,,,,,San Luis Potosi Oficial,Jose,Robledo,[email protected],San Luis Potosi,,Mexico,Bar VIC,"Av Nereo Rodríguez Barragán 1399, Fuentes del Bosque, 78220 San Luis Potosí, S.L.P., Mexico",,,,,,,,1a185320-fa73-49e9-905e-acffa1821454
19
+ ,52 (66) 4220-6991,,,,,,,,49ers Tijuana Fans Oficial,Anthony,Daniel,[email protected],Tijuana,,Mexico,Titan Sports Bar,"J. Gorostiza 1209, Zona Urbana Rio Tijuana, 22320 Tijuana, B.C., Mexico",460.0,https://www.facebook.com/groups/49erstijuanafans/?ref=share&mibextid=NSMWBT,https://www.instagram.com/49erstijuanafansoficial/?igshid=OGQ5ZDc2ODk2ZA%3D%3D&fbclid=IwZXh0bgNhZW0CMTEAAR0SXTcgDss1aAUjjzK6Ge0Uhx9JkNszzeQgTRq94F_5Zzat-arK9kXEqWk_aem_sKUysPZe1NpmFRPlJppOYw&sfnsn=scwspwa,-,-,-,-,3e23d466-e305-42d8-9599-c6a931b7e827
20
+ ,52 (72) 2498-5443,,,,,,,,49ers Club Toluca Oficial,Fernando,Salazar,[email protected],Toluca,,Mexico,Revel Wings Carranza,"Calle Gral. Venustiano Carranza 20 Pte. 905, Residencial Colón y Col Ciprés, 50120 Toluca de Lerdo, Méx., Mexico",,,,,,,,bc0c7169-ca42-4d7b-ac37-9e42b54ef161
21
+ ,52 (228) 159-8578,,,,,,,,Cluib de Fans 49ers Veracruz,Luis,Mata,[email protected],Veracruz,,Mexico,Wings Army del Urban Center,"C. Lázaro Cárdenas 102, Rafael Lucio, 91110 Xalapa-Enríquez, Ver., Mexico",,,,,,,,e1eab1f1-0342-487c-ba7e-ff062a1d0f93
22
+ ,6646124565,,,,,,,,49ersFanZone.net,Clemens,Kaposi,[email protected],Bad Vigaun,,Austria,,Neuwirtsweg 315,183.0,,,,,,,bc369128-c50f-4a05-ad37-37a8c2adcb9c
23
+ ,33 (0)6 365 269 84,,,,,,,,The Niner Empire France,Gilles,Schlienger,[email protected],Nousseviller Saint Nabor,,France,4 voie romaine,4 voie romaine,250.0,https://www.facebook.com/groups/295995597696338,,,,,,f15012b6-ca9c-40af-9e72-f26f48e2e3d2
24
+ ,1704753958,,,,,,,,Niner Empire Germany-Bavaria Chapter,Mike,Beckmann,[email protected],Ismaning,,Germany,49er's Sports & Partybar,Muenchener Strasse 79,35.0,,,,,,,205540c2-8a52-40ff-8de0-5ecb5603eba2
25
+ ,1735106462,,,,,,,,4T9 Mob Germany Family,Chris,Grawert,[email protected],Hamburg,,Germany,Jolly Roger,Budapester Str. 44,6.0,https://www.facebook.com/4T9MOBGermany,,,,,,f114a0ec-738b-4e50-8f19-57e30f908f20
26
+ ,49 15758229310,,,,,,,,49 Niner Empire,Andra,Theunert,[email protected],Cologne State: NRW,,Germany,Joe Camps Sports Bar,Joe Champs,104.0,,,,,,,4ab054e6-6653-4770-bcdb-f448ac2a07f5
27
+ ,1795908826,,,,,,,,The Niner Empire Germany Berlin Chapter,Jermaine,Benthin,[email protected],Berlin,,Germany,Sportsbar Tor133,Torstrasse 133,17.0,,,,,,,18dba8cf-ce28-40e3-995a-ee7b871d943b
28
+ ,1607512643,,,,,,,,,Heltewig,Thorsten,[email protected],Bornhöved,,Germany,Comeback,Mühlenstraße 11,20.0,,,,,,,e439a3a5-c585-4c44-93d6-4cb19ec536e2
29
+ ,1738803983,,,,,,,,49ers Fans Bavaria,Thomas,Igerl,[email protected],Ampfing,,Germany,Holzheim 1a/Ampfing,Holzheim 1a,30.0,https://www.facebook.com/49ersfansbavaria,,,,,,80099d97-0d21-46e1-8403-69c87f3bebd2
30
+ ,1234567899,http://germany.theninerempire.com/,,,,,,,The Niner Empire Germany - North Rhine-Westphalia Chapter,Timo,Allhoff,[email protected],Duesseldorf,,Germany,Knoten,Kurze Strasse 1A,62.0,,,,,,,3545d9f1-cf47-4f11-b415-5ad73aef7a4a
31
+ ,1708859408,,,,,,,,Niner Empire Germany-NRW Chapter,Hermann,van,[email protected],Cologne,,Germany,Joe Champs Sportsbar Cologne,Hohenzollernring 1 -3,27.0,,,,,,,22b5c95d-456e-4dea-a7d2-39cbdbaadda2
32
+ ,3.53E+11,,,,,,,,The Irish Faithful,Colly,Mc,[email protected],Dublin 13,,Ireland,Busker On The Ball,13 - 17 Fleet Street,59.0,,,https://twitter.com/49ersIre,,,,d3002991-05db-4ad1-9b34-00653f41daa7
33
+ ,0039 3282181898,,,,,,,,49ers Italian Fan Club,Enzo,Marrocchino,[email protected] + [email protected],Fiorano Modenese,,Italy,The Beer Corner,"Via Roma, 2/A",50.0,https://www.facebook.com/groups/49ersItalianFanClub,,,,,,7ffab46c-8924-4c74-af34-159a02364b2f
34
+ ,649058694,https://laminapodcast.wixsite.com/lamina,,,,,,,Mineros Spanish Faithful,Luis,Miguel,[email protected] + [email protected],Madrid,,Spain,Penalti Lounge Bar,Avenida Reina 15,15.0,,,,,,,5ebfd5fb-bbf0-4701-b6d8-223b240c8d28
35
+ ,6507841235,http://www.sportssf.com.br,,,,,,,Equipe Sports SF,Alessandro,Marques,[email protected],Sao Paulo,,Brazil,"Website, Podcast, Facebook Page, Twitter","Rua Hitoshi Ishibashi, 11 B",14.0,,,,,,,bc5329a5-bfda-4edc-be84-dcdb8afa7cbe
36
+ ,1197444761,http://www.49ersbrasil.com.br,,,,,,,49ers Brasil,Fabio,Moraes,[email protected],"Campo Limpo, Sao Paulo",,Brazil,Bars and Restaurants in São Paulo - SP,,870.0,,,,,,,16ae7f7d-c1bc-46ab-a959-a60c49587218
37
+ ,5511992650,,,,,,,,San Francisco 49ers Brasil,Otavio,Alban,[email protected],"Sao Bernardo do Campo, Sao Paulo",,Brazil,Multiple locations around south and southeast states of Brazil,,104.0,https://www.facebook.com/groups/49ninersbrasil/,,,,,,5c577d0d-45c5-4c98-963f-6599ca2eb587
38
+ ,6046266697,http://www.theninerempire.com,,,,,,,"Niner Empire --Vanouver,BC Chapter",Hector,Alvarado/Neil,[email protected],"Vancouver, BC",,Canada,"The Sharks Club--Langley, BC",20169 88 Avenue,31.0,,,,,,,fff9028c-4504-47c1-8b12-c4b23391d782
39
+ ,4167796921,,,,,,,,True North Niners,Shawn,Vromman,[email protected],"Bolton, Ontario",,Canada,Maguire's Pub,284 Queen st E,25.0,,,,,,,0028bcf2-b18f-43c8-bb7c-06b214b4b37f
40
+ ,507 66737171,,,,,,,,Faithful Panama,Ricardo,Vallarino,[email protected],,,Panama,5inco Panama,8530 NW 72ND ST,249.0,,,,,,,65d1b90e-c6fa-41ab-aac1-ef32af003121
41
+ ,6493015128,,,,,,,,Niner Empire New Zealand,Karam,Chand,[email protected],Auckland,,New Zealand,The Kingslander,470 New North Road,15.0,https://www.facebook.com/#!/groups/212472585456813/,,,,,,9ec7d2ef-2b5b-4192-911c-b293479d9a17
42
+ ,6768804977,,,,,,,,49er Fans-Tonga,Nusi,Taumoepeau,[email protected],Nuku'alofa,,Tonga,Tali'eva Bar,14 Taufa'ahau Rd,8.0,,,,,,,24342cfe-2bf4-4072-85a1-baa31f4d0572
43
+ ,7857047023,,,,,,,,49ers Faithful UK,Mike,Palmer,[email protected],Greater Manchester,,United Kingdom,the green,Ducie street Manchester Greater Manchester Lancashire m1 United Kingdom,100.0,,,,,,,d84d8a63-2f4c-4cda-84a2-1c5ef09de68c
44
+ ,7506116581,www.49erfaithfuluk.co.uk,,,,,,,49er Faithful UK,Lee,Gowland,[email protected],Newcastle,,United Kingdom,Grosvenor Casino,100 St James' Blvd Newcastle Tyne & Wear CA 95054 United Kingdom,3000.0,,,,,,,1cfc9512-821c-4168-96dc-dd6fe3664fa7
45
+ ,8774734977,,,,,,,,49ers of United Kingdom,Nauman,Malik,[email protected],London,,United Kingdom,The Sports Cafe,80 Haymarket London SW1Y 4TE United Kingdom,8.0,,,,,,,c3163f08-1d11-4e32-9bc5-494d7869935a
46
+ ,1616553629,,,,,,,,Niner Empire UK,Mike,Palmer,[email protected],Manchester,,United Kingdom,The Green,"Bridge House 26 Ducie Street, Manchester, Manchester M1 2dq United Kingdom",30.0,,,,,,,a35c5604-774c-4820-ba3e-159aca1cd047
47
+ ,6264841085,,,,,,,,"San Francisco 49er Fans of Charleston, SC",Kurtis,Johnson,[email protected],Charleston,SC,United States,Recovery Room Tavern,685 King St,12.0,https://www.facebook.com/profile.php?id=100095655455065,,,,,,f8a76108-d201-4daa-b934-e4a091a7e47c
48
+ ,5309536097,,,,,,,,530 Empire,Oscar,Mendoza,[email protected],Chico,Ca,United States,Nash's,1717 Esplanade,45.0,,https://www.instagram.com/530empire?igsh=OGQ5ZDc2ODk2ZA%3D%3D&utm_source=qr,,,,,173de46c-bc96-4cff-85a5-f361780d1637
49
+ ,(720) 345-2580,,,,,,,,303 Denver Chapter Niner Empire,Andy,Martinez,[email protected],Aurora,CO,United States,Moes Bbq,2727 s Parker rd,30.0,,,,,,,cb00caa7-48f7-41db-bd55-a6f1ca740ba5
50
+ ,3238332262,,,,,,,,40NINERS L.A. CHAPTER,JOSE,DIAZ,[email protected],bell,ca,United States,KRAZY WINGS SPORTS & GRILL,7016 ATLANTIC AVE,25.0,,,,,,,57a66cd4-f355-4c30-849f-a6c84f7528ae
51
+ ,(434) 441-1187,,,,,,,,434 Virginia Niner Empire,Thomas,Hunt,[email protected],Danville,VA,United States,Kickbacks Jacks,140 Crown Dr,20.0,,,,,,,1b03a988-18e7-4ea5-9c89-34060083eaea
52
+ ,(925) 457-6175,,,,,,,,480 Gilbert Niner Empire LLC,Betty,OLIVARES,[email protected],Gilbert,AZ,United States,The Brass Tap,313 n Gilbert rd,100.0,,,,,,,e240475b-f90b-471d-b73d-9f1b331ad9bd
53
+ ,8126048419,,,,,,,,Midwest Empire,Travis,Bonnell,[email protected],Evansville,IN,United States,Hooters Evansville,2112 Bremmerton Dr,6.0,https://www.facebook.com/share/5KGRDSPtyHgFYRSP/?mibextid=K35XfP,,,,,,b36619e5-9316-4c17-9779-b9c363443178
54
+ ,7075921442,,,,,,,,49er Booster Club of Vacaville,Josh,Ojeda,[email protected],Vacaville,CA,United States,Blondies Bar and Grill,555 Main Street,75.0,,,,,,,d4dd1a9a-cdad-4fa8-93f4-377c51838e39
55
+ ,7602655202,,,,,,,,49er Empire High Desert,TJ,Hilliard,[email protected],Hesperia,California,United States,Whiskey Barrel,12055 Mariposa Rd.,89.0,https://www.facebook.com/groups/49erEmpireHighDesertChapter/,,,,,,9154a687-9ea4-400e-92d4-1f8d6a4efd45
56
+ ,5308239740,,,,,,,,Cool 49er Booster Club,Paul,Jones,[email protected],Cool,CA,United States,The Cool Beerworks,5020 Ellinghouse Dr Suite H,59.0,,,,,,,bd8a91b8-935c-430e-9383-e1e8f512a395
57
+ ,8183269651,,,,,,,,49ersBeachCitiesSoCal,Rick,Mitchell,[email protected],Hermosa Beach,CA,United States,American Junkie Sky Light Bar,American Junkie,100.0,,,,,,,0d2e48b3-fb33-463f-a7ee-e4013f782b0e
58
+ ,7202278251,,,,,,,,49ers Denver Empire,Miguel,Alaniz,[email protected],Aurora,Co,United States,Moe's Original BBQ Aurora,2727 S Parker Rd,30.0,,,,,,,49c67b4a-95bb-43df-86d6-89e322259c73
59
+ ,3605679487,,,,,,,,49ers Forever Faithfuls,Wayne,Yelloweyes-Ripoyla,[email protected],Vancouver,Wa,United States,Hooligan's sports bar and grill,"8220 NE Vancouver Plaza Dr, Vancouver, WA 98662",10.0,,,,,,,c700e245-1664-4459-8f89-f26b2548d901
60
+ ,9566600391,,,,,,,,South Texas 49ers Chapter,Patty,Torres,[email protected],Harlingen,TX,United States,Wing barn,412 sunny side ln,350.0,https://www.facebook.com/groups/2815298045413319/?ref=share,,,,,,d212a0be-515c-4895-b0c1-0612b401f380
61
+ ,3109547822,,,,,,,,49ers Los Angeles,Jeff,Cheung,[email protected],Hollywood,CA,United States,Dave & Buster's Hollywood,6801 Hollywood Blvd.,27.0,,,,,,,2a650b10-6518-4b6f-882a-fc4d0a4596ff
62
+ ,3234765148,,,,,,,,49ers United Of Frisco TX,Frank,Murillo,[email protected],Frisco,TX,United States,The Frisco Bar and Grill,6750 Gaylord Pkwy,1020.0,https://www.facebook.com/groups/49ersunitedoffriscotx/?ref=share&mibextid=hubsqH,,,,,,ca6d549d-ee2c-44fa-aea6-9756596982a1
63
+ ,6193151122,,,,,,,,619ers San Diego Niner Empire,Ana,Pino,[email protected],San Diego,California,United States,Bridges Bar & Grill,4800 Art Street,20.0,,,,,,,a15835e7-83fe-43ad-959f-423cd21aed7b
64
+ ,6266742121,,,,,,,,626 FAITHFUL'S,Isaac,C. De La Fuente,[email protected],City of Industry,California,United States,Hacienda Heights Pizza Co.,15239 E Gale Ave,40.0,,,,,,,56e577b7-e42b-4381-9caa-905f9fcc08e5
65
+ ,6507438522,,,,,,,,Niner Empire 650 Chapter,Vanessa,Corea,[email protected],Redwood City,CA,United States,5th Quarter,976 Woodside Rd,35.0,,http://www.instagram.com/650ninerempire,,,,,2d719e75-080c-4044-872a-3ec473b1ff42
66
+ ,6199949071,,,,,,,,714 Niner Empire,Daniel,Hernandez,[email protected],Oxnard,CA,United States,"Bottoms Up Tavern, 2162 West Lincoln Ave, Anaheim CA 92801",3206 Lisbon Lane,4.0,,,,,,,5ce4cb87-dc34-4ac7-afc8-7825cf6993b0
67
+ ,9513704443,,,,,,,,9er Elite Niner Empire,Penny,Mapes,[email protected],Lake Elsinore,California,United States,Pin 'n' Pockets,32250 Mission Trail,25.0,,,,,,,a8231999-aba4-4c22-93fb-470237ef3a98
68
+ ,4806780578,,,,,,,,Az 49er Faithful,Kimberly,"""""Kimi"""" Daniel",[email protected],Gilbert,Az,United States,Fox and Hound!,1017 E Baseline Rd,58.0,,,,,,,e2bd186c-6620-406e-943d-d0eee22078bb
69
+ ,7078896983,,,,,,,,Niners Winers,A.m.,Early,[email protected],Forestville,Ca,United States,Bars and wineries in sonoma and napa counties,River road,25.0,,,,,,,89a50680-7982-421d-961c-80fc04a84c4b
70
+ ,2144897300,,,,,,,,a_49er fan,Angel,Barba,[email protected],wylie,texas,United States,Wylie,922 cedar creek dr.,12.0,,,,,,,2400a836-b97a-46ca-8333-28c2e780ee3d
71
+ ,4153206471,,,,,,,,Niner Empire Marin,Aaron,Clark,[email protected],Novato,CA,United States,Moylan's Brewery & Restaurant,15 Rowland Way,13.0,,,,,,,57ef2b36-fb70-4cc1-8565-9210919e4650
72
+ ,2095344459,,,,,,,,4T9 Mob,Angel,Cruz,[email protected],Modesto,ca,United States,Jack's pizza cafe,2001 Mchenry ave,30.0,,,,,,,17a33262-42cb-45a2-a05d-df3a56261411
73
+ ,5708529383,,,,,,,,North Eastern Pennsyvania chapter,Benjamin,Simon,[email protected],Larksville,PA,United States,Zlo joes sports bar,234 Nesbitt St,25.0,,,,,,,1d2a73c1-b52e-495c-9b8f-fe505b85bea1
74
+ ,5039150229,,,,,,,,PDX Frisco Fanatics,Adam,Hunter,[email protected],Portland,Or,United States,Suki's bar and Grill,2401 sw 4th ave,8.0,,,,,,,597ab710-aa67-41fe-abc7-183eb5215960
75
+ ,(408) 981-0615,,,,,,,,The 101 Niner Empire,ANDRONICO [Adrian],FERNANDEZ,[email protected],Morgan Hill,CA,United States,Huntington Station restaurant and sports pub,Huntington Station restaurant and sports pub,10.0,https://www.facebook.com/THE101NINEREMPIRE/,,,,,,daacbcbf-ae02-4057-bd41-555bf8dc954d
76
+ ,8147901621,,,,,,,,Faithful Tri-State Empire,Armando,Holguin,[email protected],Erie,PA,United States,Buffalo Wild Wings,2099 Interchange Rd,10.0,https://www.facebook.com/groups/1145565166387786/,,,,,,6ee93085-1711-4bbc-9d3a-cd894470c4bf
77
+ ,9282100493,,,,,,,,YUMA Faithfuls,Steven,Navarro,[email protected],Yuma,AZ,United States,Hooters,1519 S Yuma Palms Pkwy,305.0,Yuma Faithfuls (FaceBook group page),,,,,,7d8634f9-d608-4589-a06c-cf0be4d539bc
78
+ ,5103146643,,,,,,,,49ER EMPIRE SF Bay Area Core Chapter,AJ,Esperanza,[email protected],Fremont,california,United States,Jack's Brewery,39176 Argonaut Way,1500.0,,,,,,,ca4820aa-5a1c-4777-9a8e-49d229544c08
79
+ ,8506982520,,,,,,,,Niner Empire Orlando Chapter,Aaron,Hill,[email protected],Orlando,FL,United States,Underground Public House,19 S Orange Ave,50.0,,,,,,,a04e732d-8850-4b55-9354-cbc5a3167e14
80
+ ,5805913565,,,,,,,,Niner Artillery Empire,Alicia/Airieus,DeLeon/Ervin,[email protected],517 E Gore Blvd,OK,United States,Sweet Play/ Mike's Sports Grill,2610 Sw Lee Blvd Suite 3 / 517 E Gore Blvd,25.0,,,,,,,743983ca-55ad-40a7-93c2-9051bf14e946
81
+ ,5104993415,,,,,,,,510 Empire,Alex,Banks,[email protected],Alameda,CA,United States,McGee's Bar and Grill,1645 Park ST,10.0,,,,,,,0e8229f9-4ec0-4c6e-bd50-c7f385f092f8
82
+ ,5105082055,,,,,,,,Garlic City Faithful,Abdul,Momeni,[email protected],Gilroy,CA,United States,Straw Hat Pizza,1053 1st Street,3.0,,,,,,,f4b92962-24e0-4706-b62c-21d60f3a9055
83
+ ,2092918080,,,,,,,,Faithful to the Bay,Angel,Alvarez,[email protected],Merced,CA,United States,Home,Mountain mikes pizza,15.0,,,,,,,c8a2f333-b375-4015-868d-0476c7fa7780
84
+ ,5627391639,,,,,,,,O.C. NINER EMPIRE FAITHFUL'S,Angel,Grijalva,[email protected],Buena park,CA,United States,Ciro's pizza,6969 la Palma Ave,10.0,,,,,,,4e0bba17-56d7-466b-8391-4000245ed73a
85
+ ,408-209-1677,,,,,,,,408 Faithfuls,Angelina,Arevalo,[email protected],Milpitas,CA,United States,Big Al's Silicon Valley,27 Ranch Drive,50.0,IG- @408faithfuls,,,,,,a61907c4-11c0-4f84-9273-443043ef9a48
86
+ ,6507841235,,,,,,,,415 chapter,Angelo,Hernandez,[email protected],san francisco,California,United States,49er Faithful house,2090 Bryant street,200.0,,,,,,,5823848e-b7b8-4be4-bc6b-92546a7324f2
87
+ ,3038641585,,,,,,,,HairWorks,Annie,,[email protected],Denver,Co,United States,hairworks,2201 Lafayette at,1.0,,,,,,,ccfd888f-3eae-4aa5-b532-a93cc157945f
88
+ ,(925) 481-0343,,,,,,,,49ers Room The Next Generation Of Faithfuls,Antonio,Caballero,[email protected],Tlalnepantla de Baz,CA,United States,Buffalo Wild Wings Mindo E,Blvd. Manuel Avila Camacho 1007,12.0,,,,,,,a3497e7c-ec38-428a-bdb8-2ef76ae83d44
89
+ ,2098182020,,,,,,,,Niner Empire 209 Modesto Chapter,Paul,Marin,[email protected],Modesto,CA,United States,Rivets American Grill,2307 Oakdale Rd,50.0,https://www.facebook.com/niner.ninjas?ref=bookmarks,,,,,,153e3594-3d15-42e5-a856-f4c406c6af79
90
+ ,2539616009,,,,,,,,Lady Niners of Washington,April,Costello,[email protected],Auburn,Wa,United States,Sports Page,2802 Auburn Way N,13.0,,,,,,,9601d7a6-6282-4247-8ae3-2ea160bc757f
91
+ ,4803290483,,,,,,,,AZ 49ER EMPIRE,GARY,MARTINEZ,[email protected],Phoenix,AZ,United States,The Native New Yorker (Ahwatukee),5030 E Ray Rd.,130.0,,,,,,,96c86314-45fc-4e05-a2d5-c2a840cba21d
92
+ ,9096214821,,,,,,,,The Bulls Eye Bar 49ers,Armando,M. Macias,[email protected],Montclair,California,United States,Black Angus Montclair California,9415 Monte Vista Ave.,20.0,,,,,,,477c7c87-6dd8-4cf6-8331-3f25ba1db67b
93
+ ,5404245114,,,,,,,,NoVa Tru9er Empire,Jay,balthrop,[email protected],Woodbridge,va,United States,Morgan's sports bar & lounge,3081 galansky blvd,40.0,,,,,,,ac7b5a8a-d4b1-4b7e-9810-78ee9fe73ba2
94
+ ,(951) 691-6631,,,,,,,,Niner Empire 951 Faithfuls,Samuel,Betancourt,[email protected],Hemet,CA,United States,"George's Pizza 2920 E. Florida Ave. Hemet, Ca.",2920 E. Florida Ave.,30.0,https://www.facebook.com/951Faithfuls/,,,,,,a5990335-b063-4f4a-896a-7959e2e559ed
95
+ ,8174956499,,,,,,,,Spartan Niner Empire Texas,Adreana,Corralejo,[email protected],Arlington,TX,United States,Bombshells Restaurant & Bar,701 N. Watson Rd.,12.0,,,,,,,e1a357d9-a7f1-4711-9d5b-fd15e9172330
96
+ ,3234720160,,,,,,,,THEE EMPIRE FAITHFUL LOS ANGELES COUNTY,Dennis,Guerrero II,[email protected],Los Angeles,CA,United States,Home,1422 Saybrook Ave,25.0,,,,,,,47ecfc8e-62ef-4eb8-93c7-008b6008cc16
97
+ ,5103756841,,,,,,,,Niner Empire Richmond 510 Chapter,David,Watkins,[email protected],San Pablo,Ca,United States,Noya Lounge,14350 Laurie Lane,50.0,,,,,,,c3f4ca5a-ba09-41d3-9ed0-36027c2b3523
98
+ ,9254810343,,,,,,,,Thee Empire Faithful The Bay Area,Ant,Caballero,[email protected],Oakley,Ca,United States,Sabrina's Pizzeria,2587 Main St,20.0,,,,,,,803dea68-563c-4f52-ad85-616523b60788
99
+ ,8049013890,,,,,,,,The Mid Atlantic Niner Empire Chapter,Jacob,Tyree,[email protected],Mechanicsville,Va,United States,The Ville,7526 Mechanicsville Turnpike,10.0,https://www.facebook.com/#!/groups/290644124347980/,,,,,,4a75fa22-38c9-4d95-8e19-0e0d24eba4ef
100
+ ,6058683729,,,,,,,,Big Sky SF 49ers,Jo,Poor Bear,[email protected],Billings,MT,United States,Old Chicago - Billings,920 S 24th Street W,10.0,,,,,,,fe22a382-f319-410e-8d77-54919bc2f132
101
+ ,808-387-7075,,,,,,,,Hawaii Niner Empire,Bryson,Kerston,[email protected],Waipahu,HI,United States,The Hale,94-983 kahuailani st,25.0,,,,,,,19d83148-d992-4592-8d90-26593b22b373
102
+ ,5597896991,,,,,,,,Niner Empire Porterville Cen Cal 559,Olivia,"""""bo"""" Ortiz or Patricia Sanchez",[email protected],Porterville,Ca,United States,Pizza Factory/ Local Bar & Grill,897 W. Henderson,34.0,,,,,,,5450bccf-e4f5-4837-82cf-92db58d34cf8
103
+ ,4132734010,,,,,,,,W.MA CHAPTER NINER EMPIRE,BECKY,OSORIO,[email protected],CHICOPEE,MA,United States,MAXIMUM CAPACITY,116 SCHOOL ST,36.0,,,,,,,b9f042ca-3f4c-4398-abc0-8dd37a4d6c8c
104
+ ,(757) 708-0662,,,,,,,,Hampton Roads Niner Empire (Southside Chapter),Braxton,Gaskins,[email protected],Norfolk,VA,United States,Azalea Inn / Timeout Sports Bar,Azalea Inn / Timeout Sports Bar,40.0,,,,,,,cfea1941-d200-4d5b-9710-8fcf08cfd02d
105
+ ,5598042288,,,,,,,,Central Valley Niners,Jesse,moreno,[email protected],Visalia,Ca,United States,Pizza factory,3121 w noble,35.0,,,,,,,9b2adc0a-add8-4de7-bd74-0c20ecbd74df
106
+ ,6094038767,,,,,,,,Niner Knights,Bryan,Teel,[email protected],Ewing Twp,NJ,United States,Game Room of River Edge Apts,1009 Country Lane,35.0,,,,,,,02a2745f-ff6d-45ce-8bfe-6be369c3fb50
107
+ ,3463344898,,,,,,,,Lone Star Niner Empire,Myrna,Martinez,[email protected],Houston,TX,United States,Post oak ice house,5610 Richmond Ave.,33.0,,,,,,,b6d4a8ed-7001-476d-8207-c9272216f10f
108
+ ,8082657452,,,,,,,,Hawaii Faithfuls,Rey,Buzon,[email protected],Honolulu,HI,United States,Champions Bar & Grill,1108 Keeaumoku Street,30.0,,,,,,,133e9d7e-7d4f-4286-a393-b0a4446ce4f2
109
+ ,9099571468,,,,,,,,49er Faithful of Murrieta,Colleen,Hancock,[email protected],Murrieta,CA,United States,Sidelines Bar & Grill,24910 Washington Ave,30.0,,,,,,,58b91f02-40a4-4557-bb45-2c68f2218951
110
+ ,9168221256,,,,,,,,Capitol City 49ers,Erica,Medina,[email protected],Sacramento,CA,United States,Tom's Watch Bar DOCO,Tom's Watch Bar 414 K St suite 180,1300.0,https://www.facebook.com/groups/1226671178132767/?ref=share,,,,,,b50447d8-6d95-4cab-a7e5-228cd42efebd
111
+ ,3103496959,,,,,,,,Huntington Beach Faithfuls,Carlos,Pizarro,[email protected],Huntington Beach,CA,United States,BEACHFRONT 301,301 Main St. Suite 101,100.0,,,,,,,e64fcac3-9b00-44ef-9965-03ae97f23f63
112
+ ,(210) 375-6746,,,,,,,,Niner Empire Saltillo,Carlos,Carrizales,[email protected],Saltillo,TX,United States,Cadillac Saltillo Bar,Cadillac Saltillo Bar,116.0,Club 49ers Saltillo @ Facebook,,,,,,1511d62f-6ab4-4fcb-8e0e-21c1ff9f76f0
113
+ ,9035527931,,,,,,,,Germantown 49er's Club,CM,Rosenthal,[email protected],Memphis,TN,United States,Mr. P's Sports Bar Hacks Cross Rd.,3284 Hacks Cross Road,103.0,,,,,,,3df1dadb-be6b-411f-b455-f954efaf227c
114
+ ,12093462496,,,,,,,,49ers faithful,Ray,Castillo,[email protected],KEYES,CA,United States,Mt mikes ceres ca,4618 Blanca Ct,8.0,,,,,,,22877d8e-e1fb-4433-8fe6-1165ead973be
115
+ ,2094561796,,,,,,,,Ladies Of The Empire,Catherine,Tate,[email protected],Manteca,Ca,United States,Central Valley and Bay Area,1660 W. Yosemite Ave,247.0,,,,,,,18faedc7-eba5-4224-85ac-124672b7f0c3
116
+ ,7027735380,,,,,,,,Las Vegas Niner Empire 702,blu,villegas,[email protected],Las Vegas,NV,United States,Calico Jack's,8200 W. Charleston rd,300.0,,,,,,,fb060075-4c05-4c05-9c1b-fc1531f548a5
117
+ ,3107487035,,,,,,,,49ers Faithfuls in DC,Catie,Bailard,[email protected],Washington,DC,United States,Town Tavern,2323 18th Street NW,150.0,,,,,,,78924e81-6889-4b7f-817e-38dcfd040ec7
118
+ ,6619722639,,,,,,,,49er Booster Club of Roseville,Cece,Moats,[email protected],Roseville,CA,United States,Bunz Sports Pub & Grub,311 Judah Street,32.0,,,,,,,c4b728a4-8c84-4abb-acd1-d8952768fbf3
119
+ ,6613033911,,,,,,,,Kern County Niner Empire,Sal,Luna,[email protected],Bakersfield,Ca,United States,Firehouse Restaurant,7701 White Lane,100.0,,,,,,,1367e775-79ba-40d6-98d8-dbcb40140055
120
+ ,8315126139,,,,,,,,Central Coast Niner Empire 831,Rafael,Garcia,[email protected],Salinas,CA,United States,Buffalo Wild Wings,1988 North Main St,11.0,Facebook.com/CentralCoastNinerEmpire831,,,,,,75539787-79ff-423d-8de4-53b030861d69
121
+ ,8315126139,,,,,,,,Central Coast Niner Empire 831,Rafael,Garcia,[email protected],Salinas,CA,United States,Pizza Factory,1945 Natividad Rd,22.0,Facebook.com/CentralCoastNinerEmpire831,,,,,,c86453f6-0155-4458-9a26-e211aa2b8e33
122
+ ,2817509505,,,,,,,,Houston Niner Empire,Carlos,Duarte,[email protected],Houston,TX,United States,Home Plate Bar & Grill,1800 Texas Street,107.0,https://m.facebook.com/HoustonNinerEmpire/,,,,,,60610e12-fa4b-4aac-90b7-9db286dcba5e
123
+ ,4068535155,,,,,,,,Train Whistle Faithful,Christopher,Gunnare,[email protected],Mountain View,CA,United States,Savvy Cellar,750 W. Evelyn Avenue,13.0,,,,,,,79dc1fdb-a80c-4571-ac0c-91804b40f886
124
+ ,3104659461,,,,,,,,Corpus Christi Chapter Niner Empire,Arturo,Hernandez,[email protected],Corpus Christi,TX,United States,Cheers,419 Starr St.,37.0,,,,,,,194f5fc9-99ed-4c7d-8c0e-d1e5bf00fca2
125
+ ,3528070372,,,,,,,,Niner Empire Dade City,Fernando,Chavez,[email protected],Dade City,Florida,United States,Beef O Brady's Sports Bar,14136 7th Street,22.0,,,,,,,cbba3ff2-3599-457b-ab09-728f11ff636d
126
+ ,5309536097,,,,,,,,Chico Faithfuls,Oscar,Mendoza,[email protected],Chico,CA,United States,Mountain Mikes Pizza,1722 Mangrove Ave,32.0,http://facebook.com/chicofaithfuls,,,,,,81bfb4e9-02c5-41eb-9fbe-1aff93df64a3
127
+ ,8473099909,,,,,,,,Chicago Niners,Chris,Johnston,[email protected],Chicago,IL,United States,Cheesie's Pub & Grub 958 W Belmont Ave Chicago IL 60657,958 W Belmont Ave,75.0,,,,,,,46a3ddfb-ed32-48e2-80b0-479a662e0b2c
128
+ ,7076556423,,,,,,,,Niner Empire 916 Sac Town,Lehi,Amado/Anthony Moreno,[email protected],Sacramento,CA,United States,El Toritos,1598 Arden blvd,40.0,http://www.Facebook.com,,,,,,6f62f732-6bdc-41a7-a026-4d6c4b744388
129
+ ,7193377546,,,,,,,,49ER EMPIRE COLORADO CHAPTER,CHARLES,M. DUNCAN,[email protected],Colorado Springs,Co.,United States,FOX & HOUND COLORADO SPRINGS,3101 New Center Pt.,25.0,,,,,,,55bc2d2d-a3b7-4afc-a7a4-651f85c84c0f
130
+ ,3364512567,,,,,,,,49ers NC Triad Chapter,Christopher,Miller,[email protected],Greensboro,NC,United States,Kickback Jack's,1600 Battleground Ave.,10.0,,,,,,,e0822b86-9589-4d0d-a8b0-8c7eaafa5967
131
+ ,4588992022,,,,,,,,Central Oregon 49ers Faithful,George,Bravo,[email protected],Redmond,OR,United States,Redmond Oregon,495 NW 28th St,1.0,,,,,,,dcbb58a3-91a8-4b6b-a7d1-fcfcb4b5c5ba
132
+ ,3108979404,,,,,,,,Westside 9ers,Naimah,Shamsiddeen,[email protected],Carson,CA,United States,Los Angeles,1462 E Gladwick St,20.0,,,,,,,c9767f63-b044-409a-96ef-16be4cb3dc9f
133
+ ,2173173725,,,,,,,,Niner Empire Illinois Chapter,Max,Tuttle,[email protected],Mattoon,Illinois,United States,"residence, for now",6 Apple Drive,6.0,,,,,,,722b3236-0c08-4ae6-aa84-f917399cc077
134
+ ,2089642981,,,,,,,,Treasure Valley 49er Faithful,Curt,Starz,[email protected],Star,ID,United States,The Beer Guys Saloon,10937 W State St,50.0,https://www.facebook.com/TV49erFaithful/,,,,,,b62c31fd-d06e-4e38-b6da-5c9f4259a588
135
+ ,2039484616,,,,,,,,Ct faithful chapter,Tim,Maroney,[email protected],stamford,ct,United States,buffalo wild wings,208 summer st,33.0,,,,,,,e0da3bfc-c3dc-4576-9d0a-88c90a3f39ec
136
+ ,3057780667,,,,,,,,305 FAITHFUL EMPIRE,Damien,Lizano,[email protected],Miami,FL,United States,Walk-On's,9065 SW 162nd Ave,18.0,,,,,,,7a1980ac-ca6a-4b85-8478-a7fb23796fd3
137
+ ,1415902100,,,,,,,,Fillmoe SF Niners Nation Chapter,Daniel,Landry,[email protected],San Francisco,CA,United States,Honey Arts Kitchen by Pinot's,1861 Sutter Street,16.0,,,,,,,279042a3-3681-41c1-bed1-68c8a111c458
138
+ ,6199949071,,,,,,,,49ers So Cal Faithfuls,Daniel,Hernandez,[email protected],Oxnard,CA,United States,So Cal (Various locations with friends and family),3206 Lisbon Lane,4.0,,,,,,,6a6c69b0-a778-4411-8f63-268d28c48062
139
+ ,(817) 675-7644,,,,,,,,Niner Empire DFW,Danny,Ramirez,[email protected],Arlington,TX,United States,Walk-Ons Bistreaux,Walk-Ons Bistreaux,75.0,www.facebook.com/ninerempiredfw,,,,,,3335203d-008c-419d-bf12-66d7951910a4
140
+ ,(505) 480-6101,,,,,,,,Duke City Faithful Niner Empire,Danny,Roybal,[email protected],Albuquerque,NM,United States,Duke City Bar And Grill,6900 Montgomery Blvd NE,93.0,www.facebook.com/@dukecityfaithful505,,,,,,707406f0-991f-4392-828c-4a42b6520e72
141
+ ,8089545569,,,,,,,,49ers @ Champions,Davis,Price,[email protected],Honolulu,Hawaii,United States,Champions Bar and Grill,1108 Keeaumoku St,12.0,,,,,,,20807c32-7f81-4d4e-8e04-0e9a3a3b1eca
142
+ ,870-519-9373,,,,,,,,Natural State Niners Club,Denishio,Blanchett,[email protected],Jonesboro,AR,United States,"Buffalo Wild Wings, Jonesboro, AR",Buffalo Wild Wings,18.0,,,,,,,0c0ac4aa-5abe-48bd-8045-4f8b45ed8fb9
143
+ ,7706664527,,,,,,,,49er Empire - Georgia Chapter,Brian,Register,[email protected],Marietta,ga,United States,Dave & Busters of Marietta Georgia,2215 D and B Dr SE,23.0,https://www.facebook.com/49erEmpireGeorgiaChapter,,,,,,8a6912ea-1ef2-4a99-b9b5-1cc6de5e6d3d
144
+ ,(928) 302-6266,,,,,,,,San Francisco 49ers of San Diego,Denise,Hines,[email protected],San Diego,CA,United States,Moonshine Beach,Moonshine Beach Bar,80.0,,,,,,,2105468b-1c9d-4fc5-a238-00bde2262266
145
+ ,5204147239,,,,,,,,Sonoran Desert Niner Empire,Derek,Yubeta,[email protected],Maricopa,AZ,United States,Cold beers and Cheeseburgers,20350 N John Wayne pkwy,50.0,Facebook Sonoran Desert Niner Empire,,,,,,2cb6aa09-8f3f-4d8b-8a91-872b9df2c079
146
+ ,315-313-8105,,,,,,,,49ers Empire Syracuse 315 Chapter,Dexter,Grady,[email protected],Syracuse,NY,United States,Change of pace sports bar,1809 Grant Blvd,233.0,Facebook 49ers Empire Syracuse 315 Chapter,,,,,,f4650f32-069d-4dcf-a62b-7a932bf764f5
147
+ ,8058901997,,,,,,,,Niner Empire Ventura Chapter,Diego,Rodriguez,[email protected],Ventura,CA,United States,El Rey Cantina,El Rey Cantina,20.0,,,,,,,94cf7a13-54e9-4f3f-9727-ce07107552f2
148
+ ,(717) 406-4494,,,,,,,,540 Faithfuls of the Niner Empire,Derrick,Lackey Sr,[email protected],Fredericksburg,VA,United States,Home Team Grill,1109 Jefferson Davis Highway,8.0,,,,,,,4a253d76-a16b-40bf-aefe-61f1140f69e8
149
+ ,8134588746,,,,,,,,Ninerempire Tampafl Chapter,john,downer,[email protected],tampa,fl,United States,Ducky's,1719 eest Kennedy blvd,25.0,,,,,,,2ca51d2d-6d15-4b84-9e66-98cff363ae64
150
+ ,5857393739,,,,,,,,Gold Diggers,Drew,Nye,[email protected],Rochester,New York,United States,The Blossom Road Pub,196 N. Winton Rd,12.0,,,,,,,91dd0e08-1fd4-41a5-8280-ff2e74a49b42
151
+ ,2545482581,,,,,,,,Niner Empire Waco Chapter,Dustin,Weins,[email protected],Waco,TX,United States,Salty Dog,2004 N. Valley Mills,36.0,https://www.facebook.com/groups/Waco49ersFans/,,,,,,31438176-2075-4285-b76d-e19ddf0d95e2
152
+ ,9253823429,,,,,,,,Niner Empire of Brentwood,Elvin,Geronimo,[email protected],Brentwood,CA,United States,Buffalo Wild Wings,6051 Lone Tree Way,30.0,,,,,,,92abbcf2-007c-4a82-ba94-c714408b3209
153
+ ,7173301611,,,,,,,,"NinerEmpire of Lancaster, PA",Eli,Jiminez,[email protected],Lancaster,PA,United States,PA Lancaster Niners Den,2917 Marietta Avenue,50.0,https://www.facebook.com/NinerEmpireLancasterPA,,,,,,33431983-0ac8-446b-859d-5e914de5e39c
154
+ ,9156671234,,,,,,,,Empire Tejas 915- El Paso TX,Jr,& Yanet Esparza,[email protected],El Paso,Tx,United States,EL Luchador Taqueria/Bar,1613 n Zaragoza,28.0,,,,,,,6080ae1d-807f-4993-825f-a30efba9a4eb
155
+ ,9168221256,,,,,,,,Capitol City 49ers fan club,Erica,medina,[email protected],West Sacramento,CA,United States,Burgers and Brew restaurant,317 3rd St,80.0,,,,,,,27d663fa-1559-4437-8827-7dabba59fdb0
156
+ ,6269276427,,,,,,,,Golden Empire Hollywood,Ernie,Todd Jr,[email protected],Los Angeles,CA,United States,Nova Nightclub,7046 Hollywood Blvd,10.0,,https://www.instagram.com/goldenempire49ers/,,,,,c5c601cd-9301-4c5f-b543-c104bcb593cb
157
+ ,7202714410,,,,,,,,Spartan Niner Empire Denver,Esley,Sullivan,[email protected],Denver,CO,United States,Downtown Denver,In transition,9.0,Facebook: Spartans of Denver,,,,,,c02ab082-523d-4fa4-9ee6-ed56ca2b07b4
158
+ ,3244765148,,,,,,,,49er empire of Frisco Texas,Frank,Murillo,[email protected],Frisco,TX,United States,The Irish Rover Pub & Restaurant,8250 Gaylord Pkwy,150.0,,,,,,,779256ad-df3f-4159-ae6a-c3e0dd536502
159
+ ,7079804862,,,,,,,,FAIRFIELD CHAPTER,CHARLES,MCCARVER JR,[email protected],Fairfield,CA,United States,Legends Sports Bar & Grill,3990 Paradise Valley Rd,24.0,https://www.facebook.com/pages/NINER-Empire-Fairfield-Chapter/124164624589973,,,,,,3e509642-808b-4900-bbe9-528c62bd7555
160
+ ,5302434949,,,,,,,,Shasta Niners,Ruth,Rhodes,[email protected],Redding,CA,United States,Shasta Niners Clubhouse,4830 Cedars Rd,80.0,,,,,,,b90b0461-013f-4970-9097-1b15f9708b3c
161
+ ,4156021439,,,,,,,,NINER EMPIRE FREMONT CHAPTER,Elmer,Urias,[email protected],Fremont,CA,United States,Buffalo Wild Wings,43821 Pacific Commons Blvd,22.0,,,,,,,1d8a9355-cc45-49c5-a3f4-35be92f8f263
162
+ ,701-200-2001,,,,,,,,Fargo 49ers Faithful,Sara,Wald,[email protected],Fargo,ND,United States,Herd & Horns,1414 12th Ave N,25.0,,,,,,,ad1580de-5b95-44a5-8d08-50326e67d89e
163
+ ,5309022915,,,,,,,,49ER ORIGINALS,Noah,Abbott,[email protected],Redding,CA,United States,BLEACHERS Sports Bar & Grill,2167 Hilltop Drive,50.0,http://www.facebook.com/49ERORIGINALS,,,,,,97bf71f0-276c-4169-8f77-a5a3e0cd98c4
164
+ ,8439910310,,,,,,,,"49er Flowertown Empire of Summerville, SC",Michele,A. McGauvran,[email protected],Summerville,South Carolina,United States,Buffalo Wild Wings,109 Grandview Drive #1,20.0,,,,,,,d458ca78-3784-4c95-863b-02141f054063
165
+ ,(321) 684-1543,,,,,,,,49ers of Brevard County,Anthony,Lambert,[email protected],Port St Johns,FL,United States,Beef O'Bradys in Port St. Johns,3745 Curtis Blvd,5.0,,,,,,,0ca56830-c077-47eb-9d08-bf16439aa81c
166
+ ,9092227020,,,,,,,,Forever Faithful Clique,Rosalinda,Arvizu,[email protected],San Bernardino,CA,United States,The Study Pub and Grill,5244 University Pkwy Suite L,10.0,,,,,,,d1b0fea8-9de5-405a-b4c3-fecb6802f4a2
167
+ ,9098090868,,,,,,,,49ERS FOREVER,BOBBY,MENDEZ,[email protected],REDLANDS,CALIFORNIA,United States,UPPER DECK,1101 N. CALIFORNIA ST.,80.0,,,,,,,7084ad06-71a2-474b-90da-6d4d73a464f6
168
+ ,6612050411,,,,,,,,Thee Empire Faithful Bakersfield,Faustino,Gonzales,[email protected],Bakersfield,Ca,United States,Senor Pepe's Mexican Restaurant,8450 Granite Falls Dr,20.0,https://www.facebook.com/Thee-Empire-Faithful-Bakersfield-385021485035078/,,,,,,1e1b971b-7526-4a6c-8bd1-853e2032ba8e
169
+ ,3109022071,,,,,,,,Saloon Suad,Gary,Fowler,[email protected],Los Angeles,ca,United States,San Francisco Saloon Bar,11501,20.0,,,,,,,c888853d-5055-438c-99f8-9a9904fd76a8
170
+ ,7028602312,,,,,,,,Troy'a chapter,Gerardo,Villanueva,[email protected],Troy,OH,United States,Viva la fiesta restaurant,836 w main st,12.0,,,,,,,7f67a44b-ea78-4a7e-93f5-4547ff11131a
171
+ ,9099130140,,,,,,,,Niner Empire IE Chapter,Gabriel,Arroyo,[email protected],San Bernardino,California,United States,Don Martins Mexican Grill,1970 Ostrems Way,50.0,http://www.facebook.com/#!/ninerempire.iechapter/info,,,,,,d4ddc730-0f2c-48df-8619-b836dd3fff4b
172
+ ,2095701072,,,,,,,,20916 Faithful,Joe,Trujillo,[email protected],Elk Grove,CA,United States,Sky River Casino,1 Sky River Parkway,25.0,,,,,,,d99e6edc-f0db-4c16-a36c-2f4fd0a28283
173
+ ,6265396855,,,,,,,,SO. CAL GOLD BLOODED NINER'S,Louie,Gutierrez,[email protected],Hacienda heights,CA,United States,SUNSET ROOM,2029 hacinenda blvd,20.0,Facebook group page/instagram,,,,,,756f1c00-e01c-4363-b610-0714cdfc68c2
174
+ ,3053603672,,,,,,,,"South Florida's Faithful, Niner Empire",Dawn,Renae Desborough,[email protected],Homestead,Fl,United States,Chili's in Homestead,2220 NE 8TH St.,10.0,https://www.facebook.com/southfloridafaithfuls,,,,,,7a78bff4-77a2-4643-ac32-4512cc4ce4b0
175
+ ,4804527403,,,,,,,,Cesty's 49ers Faithful,Pablo,Machiche,[email protected],Chandler,AZ,United States,Nando's Mexican Cafe,1890 W Germann Rd,25.0,,,,,,,e04aeb81-fae7-466f-8911-791a353ee3f4
176
+ ,(956) 342-2285,,,,,,,,Niner Gang Empire,Marquez,Gonzalez,[email protected],EDINBURG,TX,United States,Danny Bar & Grill,4409 Adriana,2.0,,,,,,,a34c9b30-182f-42c0-a8a5-258083109556
177
+ ,7852700872,,,,,,,,The Bell Ringers,Gretchen,Gier,[email protected],Manhattan,KS,United States,Jeff and Josie Schafer's House,1517 Leavenworth St.,10.0,,,,,,,4df8603b-757c-4cb8-b476-72e4c2a343da
178
+ ,5627391639,,,,,,,,O.C. NINER EMPIRE FAITHFUL'S,Angel,Grijalva,[email protected],Buena park,CA,United States,Ciro's pizza,6969 la Palma Ave,10.0,,,,,,,4e0bba17-56d7-466b-8391-4000245ed73a
179
+ ,8176757644,,,,,,,,Niner Empire DFW,Danny,Ramirez,[email protected],Bedford,TX,United States,Papa G's,2900 HIGHWAY 121,50.0,,,,,,,40693c50-8e07-4fb8-a0bc-ecf3383ce195
180
+ ,2092624468,,,,,,,,Hilmar Empire,Brian,Lopes,[email protected],Hilmar,Ca,United States,Faithful House,7836 Klint dr,10.0,,,,,,,5d6b4504-ce14-49a1-a1ab-0b8147f15e26
181
+ ,3045082378,,,,,,,,49ers of West Virginia,Herbert,Moore IV,[email protected],Bridgeport,WV,United States,Buffalo WIld Wings,45 Betten Ct,2.0,,,,,,,d7a360ca-83b2-442a-ae2a-3079163febff
182
+ ,6185593569,,,,,,,,618 Niner Empire,Jared,Holmes,[email protected],Carbondale,IL,United States,"Home Basement aka """"The Local Tavern""""",401 N Allyn st,3.0,,,,,,,f8a5299d-77bd-414e-acad-c6ad306d4ce2
183
+ ,808-989-0030,,,,,,,,NINER EMPIRE HAWAII 808,KEVIN,MEWS,[email protected],HONOLULU,HI,United States,DAVE AND BUSTERS,1030 AUAHI ST,40.0,,,,,,,67232110-4863-40da-be01-a95147537a9c
184
+ ,(808) 989-0030,,,,,,,,NINER EMPIRE HAWAII 808,KEVIN,MEWS,[email protected],Honolulu,HI,United States,Buffalo Wild Wings -Pearl City,1644 Young St # E,25.0,,,,,,,eee2e97f-1d1f-4552-abbf-c615e64f8377
185
+ ,8323734372,,,,,,,,H-Town Empire,Cedric,Robinson,[email protected],Houston,Tx,United States,Skybox Bar and Grill,11312 Westheimer,30.0,,,,,,,b107099e-c089-4591-a9a9-9af1a86cfde1
186
+ ,6015691741,,,,,,,,Hub City Faithful,Alan,Thomas,[email protected],Hattiesburg,Mississippi,United States,Mugshots,204 N 40th Ave,12.0,,,,,,,3053cc3e-569a-45b7-88bc-71976c4cc078
187
+ ,4043191365,,,,,,,,Spartan Niner Empire Georgia,Idris,Finch,[email protected],Duluth,GA,United States,Bermuda Bar,3473 Old Norcross Rd,100.0,,,,,,,d0ceeb91-609f-4cb2-acc1-15de88158b28
188
+ ,6462357661,,,,,,,,Westchester County New York 49ers Fans,Victor,Delgado aka 49ers Matador,[email protected],Yonkers,New York,United States,"We meet at 3 locations, Burkes Bar in Yonkers, Matador's Fan Cave and Finnerty's",14 Troy Lane,46.0,https://www.facebook.com/groups/250571711629937/,,,,,,c220a934-4ad4-495a-bfeb-221372e9720a
189
+ ,8319702480,,,,,,,,Niner Empire 831,Luis,Pavon,[email protected],Salinas,Ca,United States,Straw Hat Pizza,156 E. Laurel Drive,30.0,,,,,,,604a9fae-f09d-4da2-af38-438179acb910
190
+ ,5033080127,,,,,,,,Niner Empire Portland,Joshua,F Billups,[email protected],Clackamas,Oregon,United States,Various,14682 SE Sunnyside Rd,25.0,,,,,,,b10f5432-4dd0-4a27-a4c9-e15a68753edf
191
+ ,2815464828,,,,,,,,49ers Empire Galveston County Chapter,Terrance,Bell,[email protected],Nassau Bay,TX,United States,Office,1322 Space Park Dr.,9.0,,,,,,,e4c645ab-b670-44c3-8ea2-f13dd0870bf5
192
+ ,4153707725,,,,,,,,NINER EMPIRE,Joe,Leonor,[email protected],Brisbane,Ca,United States,7 Mile House,2800 Bayshore Blvd,8000.0,,,,,,,95c25b54-1ac7-40ec-8ec2-09fc59b3da17
193
+ ,6173350380,,,,,,,,Boston San Francisco Bay Area Crew,Isabel,Bourelle,[email protected],Boston,MA,United States,The Point Boston,147 Hanover Street,50.0,https://www.facebook.com/groups/392222837571990/,,,,,,8676e40c-bf96-41ec-903d-cffc999b853e
194
+ ,6173350380,,,,,,,,49ers Faithful of Boston,Isabel,Bourelle,[email protected],Boston,MA,United States,"The Point, Boston, MA",147 Hanover Street,100.0,https://www.facebook.com/49ersfanBoston,,,,,,3a3e2b88-2f04-4094-a58d-8681775b625f
195
+ ,9098153880,,,,,,,,Riverside 49ers Booster Club,Gus,Esmerio,[email protected],Riverside,California,United States,Lake Alice Trading Co Saloon &Eatery,3616 University Ave,20.0,,,,,,,dc830ca3-fe01-43bb-aa7e-d5bb75247b56
196
+ ,3187893452,,,,,,,,318 Niner Empire,Dwane,Johnson (Jayrock),[email protected],Monroe,La.,United States,318 Niner Empire HQ,400 Stone Ave.,35.0,,,,,,,9ca185c4-2ab6-46d9-a059-e7720899647c
197
+ ,5127872407,,,,,,,,The Austin Faithful,Jeffrey,Cerda,[email protected],Austin,TX,United States,8 Track,2805 Manor Rd,100.0,,,,,,,ade1fdc7-d2b5-4276-8e34-4df3075e37a0
198
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,TX,United States,Sir Winston's Pub,2522 Nacogdoches Rd.,150.0,,,,,,,72248fc0-155b-4ffe-ad5a-e95e236e24ed
199
+ ,5097684738,,,,,,,,NINER EMPIRE OF THE 509,JESUS,MACIAS,[email protected],Spokane,WA,United States,Mac daddy's,"808 W Main Ave #106, Spokane, WA 99201",25.0,,,,,,,cd737922-c027-40d2-a322-f81f17c69e0f
200
+ ,19496329301,,,,,,,,SOCAL OC 49ERS,James,Di Cesare Jr,[email protected],Newport Beach,CA,United States,The Blue Beet,107 21st Place,25.0,,,,,,,9ff1a8da-a565-4e98-a33e-9fe617c7ad79
201
+ ,7027692152,,,,,,,,Sin City Niner Empire,Jay,Patrick Bryant-Chavez,[email protected],Henderson,NV,United States,Hi Scores Bar-Arcade,65 S Stephanie St.,10.0,,,,,,,9b748d0a-b684-462a-9731-d5d0141a0d06
202
+ ,2093862570,,,,,,,,Central Valley 9er Faithful,Jenn,Palacio,[email protected],Turlock,CA,United States,Mountain Mike's,409 S Orange St.,12.0,,,,,,,c0edc149-153d-42e6-8520-aba4174b832d
203
+ ,4089104105,,,,,,,,Niner Squad,Joseph,Perez,[email protected],San Jose,CA,United States,"4171 Gion Ave San Jose,Ca",4171 Gion Ave,25.0,,,,,,,5c2b13a8-60d9-4cef-b757-97a6b0b988e4
204
+ ,2094897540,,,,,,,,merced niner empire,john,candelaria sr,[email protected],merced,ca,United States,round table pizza,1728 w olive ave,12.0,,,,,,,6847f646-5383-4226-bcf1-4059695eba82
205
+ ,7604120919,,,,,,,,NINERS ROLLIN HARD IMPERIAL VALLEY CHAPTER,Juan,Vallejo,[email protected],Brawley,CA,United States,SPOT 805,550 main Street,45.0,,,,,,,7f347e49-2ac2-418e-a6f1-2614ea23040a
206
+ ,3856257232,,,,,,,,Tooele County 49ers,Jon,Proctor,[email protected],TOOELE,UT,United States,"Pins and Ales - 1111 N 200 W, Tooele, UT 84074",1111 N 200 W,30.0,https://www.facebook.com/groups/173040274865599,,,,,,52d1de92-c675-4381-b931-2de6bb638966
207
+ ,3165194699,,,,,,,,49ers united of wichita ks,Josh,Henke,[email protected],Wichita,KS,United States,Hurricane sports grill,8641 w 13th st suite 111,206.0,Facebook 49ers united of wichita ks,,,,,,4d21411d-a062-4659-9d06-c1f051ab864c
208
+ ,8282919599,,,,,,,,828 NCNINERS,Jovan,Hoover,[email protected],Hickory,NC,United States,Coaches Neighborhood Bar and Grill,2049 Catawba Valley Blvd SE,10.0,,,,,,,c3764610-9b72-46b7-81fa-2f7d5876ac89
209
+ ,3207749300,,,,,,,,Chicago 49ers Club,Jonathan,West,[email protected],Chicago,IL,United States,The Globe Pub,1934 West Irving Park Road,12.0,,,,,,,d5af1ee6-11a8-42e5-8f8e-08e77ee097e9
210
+ ,5033174024,,,,,,,,Niner Empire Vancouver,Justin,Downs,[email protected],Vancouver,WA,United States,Heathen feral public house,1109 Washington St,567.0,,,,,,,19f191e8-2507-4ac7-b6d9-2ae5e06a7bf9
211
+ ,7572565334,,,,,,,,Hampton Roads Niners Fanatics,Steve,Mead,[email protected],Hampton,VA,United States,Nascar Grille,1996 Power Plant Parkway,65.0,,,,,,,3d40d597-6ecb-451f-ac63-3516c5862d1f
212
+ ,(859) 991-8185,,,,,,,,Cincy Faithful,Joshua,Karcher,[email protected],Newport,KY,United States,Buffalo Wild Wings,83 Carothers Rd,4.0,,,,,,,81e7066a-e9e2-41cb-814c-fc579fe33401
213
+ ,4058028979,,,,,,,,Southside OKC Faithful Niners,Gary,Calton,[email protected],Oklahoma City,Oklahoma,United States,CrosseEyed Moose,10601 Sout Western Ave,6.0,,,,,,,1b7e81f4-86ee-42fa-a98a-2fec2152c9d9
214
+ ,7078899236,,,,,,,,707 FAITHFULS,Enrique,Licea,[email protected],Wine country,CA,United States,Wine country,"Breweries, restaurant's, wineries, private locations",1000.0,,707 faithfuls ( INSTAGRAM),,,,,ef756711-1e5b-43d7-bd85-751f5b5126e2
215
+ ,6623134320,,,,,,,,NINER EMPIRE MEMPHIS CHAPTER,Kenita,Miller,[email protected],Memphis,Tennessee,United States,360 Sports Bar & Grill,3896 Lamar Avenue,40.0,,,,,,,90ad117c-76c2-4be3-acb7-c5ccaa2159e8
216
+ ,(843) 437-3101,,,,,,,,Chucktown Empire 49ers of Charleston,Kentaroe,Jenkins,[email protected],North Charleston,SC,United States,Chill n' Grill Sports bar,"2810 Ashley Phosphate Rd A1, North Charleston, SC 29418",20.0,https://m.facebook.com/groups/1546441202286398?ref=bookmarks,,,,,,bc500cec-4845-4282-897d-ffe1080962ff
217
+ ,7278359840,,,,,,,,Spartans Niner Empire Florida,Ram,Keomek,[email protected],Tampa,FL,United States,Ducky's Sports Bar,1719 Kennedy Blvd,12.0,Spartans Empire Florida (Facebook),,,,,,3d65bb01-ff6b-4762-b55f-f59d5d63e057
218
+ ,4159871795,,,,,,,,Palm Springs Area 49er Club,Kevin,Casey,[email protected],Palm Springs,CA,United States,The Draughtsmen,1501 N Palm Canyon,15.0,,,,,,,5cb997b6-0b71-405b-8f77-9bb3e30b05bb
219
+ ,907351-8367,,,,,,,,49th State Faithful,James,Knudson,[email protected],Anchorage,AK,United States,Al's Alaskan Inn,7830 Old Seward Hwy,202.0,Facebook 49th State Faithful,,,,,,dab5ce35-eacc-4dc0-8b7e-6a6d211e1ce7
220
+ ,6232241316,,,,,,,,49er faithful of Arizona ( of the West Valley ),Koni,Raes,[email protected],Surprise,Az,United States,"Booty's Wings, Burgers and Beer Bar and Grill",15557 W. Bell Rd. Suite 405,10.0,,,,,,,5a3593c9-b29b-4e06-b60f-fe67588ac4ef
221
+ ,19096849033,,,,,,,,NINER CORE,Mike,Fortunato,[email protected],Bloomington,CA,United States,Traveling chapter,18972 Grove pl,30.0,,,,,,,ac244352-e9fb-4c4f-b0ef-ce93f5f39df0
222
+ ,9168380550,,,,,,,,Forever Faithful RGV (Rio Grande Valley),Karen,Schmidt,[email protected],McAllen,TX,United States,My Place,410 N 17th St,1.0,,,,,,,bd0657d5-8de9-47d3-a690-57824c2f2fbb
223
+ ,9166065299,,,,,,,,49ers Sacramento Faithfuls,Leo,Placencia lll,[email protected],West Sacramento,CA,United States,Kick N Mule Restaurant and Sports Bar,2901 W Capitol Ave,250.0,,Instagram page 49erssacramentofaithfuls,,,,,bdfda1af-97ad-4ce2-ba84-76824add8445
224
+ ,9098964162,,,,,,,,SO. CAL GOLDBLOOED NINERS,Louie,Gutierrez,[email protected],Industry,CA,United States,Hacienda nights pizza co.,15239 Gale ave,20.0,,,,,,,84a95dd1-6640-4a78-937a-acb9dab23601
225
+ ,5105867089,,,,,,,,Niner Empire Hayward chapter,Raul,Sosa,[email protected],Hayward,Ca,United States,Strawhat pizza,1163 industrial pkwy W,30.0,,,,,,,0f046820-2a39-4b2d-9925-cec153cbe8cb
226
+ ,6412033285,,,,,,,,49ers Empire Iowa Chapter,Lisa,Wertz,[email protected],Chariton,Iowa,United States,Shoemakers Steak House,2130 Court Ave,194.0,https://www.facebook.com/groups/247559578738411/,,,,,,ee9360bb-fe33-4514-8dac-270ea7d42539
227
+ ,5598923919,,,,,,,,Niner Empire of Fresno,Luis,Lozano,[email protected],Fresno,CA,United States,Round Table Pizza,5702 N. First st,215.0,Http://facebook.com/theninerempireoffresno,,,,,,387329b0-fc59-4ffd-97ba-258ed14d4185
228
+ ,8602057937,,,,,,,,Connecticut Spartan Niner Empire,Maria,Ortiz,[email protected],East Hartford,Connecticut,United States,Silver Lanes Lounge,748 Silverlane,13.0,,,,,,,63414b29-616c-402e-a076-1034e6e9f5a8
229
+ ,2814602274,,,,,,,,"Niner Empire Houston, TX Chapter",Lorenzo,Puentes,[email protected],Houston,Texas,United States,Little J's Bar,5306 Washington Ave,175.0,https://www.facebook.com/NinerEmpireHTX,,,,,,6c8cd651-9f25-436d-abf4-b32fb74b78e3
230
+ ,2814085420,,,,,,,,"Niner Empire Houston, TX",lorenzo,puentes,[email protected],Houston,Texas,United States,coaches I-10,17754 Katy Fwy #1,150.0,https://m.facebook.com/NinersFaithfulHTX,,,,,,bc4fcf59-dcf6-42bf-ae74-c7a815569099
231
+ ,6265396855,,,,,,,,SO. CAL GOLD BLOODED NINER'S,Louie,Gutierrez,[email protected],Industry,CA,United States,Hacienda heights Pizza Co,15239 Gale Ave,25.0,Facebook group page/instagram,,,,,,ad9a0664-8bf1-4916-b5d3-ca796916e0a5
232
+ ,5593597047,,,,,,,,the 559 ers,jose,Ascencio,[email protected],porterville,CA,United States,landing 13,landing 13,10.0,,,,,,,52686405-7db2-48bd-a10c-2b98b58451dd
233
+ ,3105705415,,,,,,,,Billings Niners Faithful,Lukas,Seely,[email protected],Billings,MT,United States,Craft B&B,2658 Grand ave,42.0,https://www.facebook.com/groups/402680873209435,,,,,,f7feddb7-c9cc-4e58-85ec-44e947a9f370
234
+ ,9016909484,,,,,,,,901 9ers,Darrick,Pate,[email protected],Memphis,Tn,United States,Prohibition,4855 American Way,50.0,,,,,,,21a4b527-ff93-49d5-9c4a-922e5837f99e
235
+ ,5127738511,,,,,,,,Tulsa 49ers Faithful,Marcus,Bell,[email protected],Tulsa,OK,United States,Buffalo Wild Wings,6222 E 41st St,140.0,https://www.facebook.com/groups/313885131283800/,,,,,,5da5b69a-9c78-42c3-a5b5-97c12fe93f4b
236
+ ,4086853231,,,,,,,,The Niner Empire - 405 Faithfuls - Oklahoma City,Maria,Ward,[email protected],Oklahoma City,OK,United States,The Side Chick 115 E. California Ave,5911 Yale Drive,50.0,https://www.facebook.com/share/FZGC9mVjz3BrHGxf/?mibextid=K35XfP,,,,,,fd0f4a51-00f4-43bc-9e72-38a882537ea7
237
+ ,7605404093,,,,,,,,Niner Empire Imperial Valley,Mario,A Garcia Jr,[email protected],Brawley,Ca,United States,Waves Restaurant & Saloon,621 S Brawley Ave,7.0,,,,,,,0ea1991e-ce7a-4816-88be-3d301d3577f9
238
+ ,6234519863,,,,,,,,East Valley Faithful,Mark,Arellano,[email protected],Gilbert,AZ,United States,TBD,5106 South Almond CT,20.0,,,,,,,361e1137-b81b-4658-8e63-233f215b8087
239
+ ,(360) 970-4784,,,,,,,,360 Niner Empire,Marcus,Dela Cruz,[email protected],Lacey,WA,United States,Dela Cruz Residence,1118 Villanova St NE,20.0,,,,,,,ec208909-5357-48a2-8750-4063c4a7bd2e
240
+ ,8042106332,,,,,,,,49ers Booster Club of Virginia,Chris,Marshall,[email protected],Mechanicsville,Virginia,United States,Sports Page Bar & Grill,8319 Bell Creek Rd,10.0,,,,,,,bcd28f5c-8785-447e-903c-d829768bb4d7
241
+ ,3605931626,,,,,,,,Niner Empire Tampa,Matthew,Pascual,[email protected],Tampa,FL,United States,The Bad Monkey,1717 East 7th Avenue,18.0,https://www.facebook.com/NinerEmpireTampa,,,,,,ede4a3ad-bdf2-4782-91c6-faf8fae89a2f
242
+ ,4062441820,,,,,,,,49ers Faithful Montana State,Melissa,Kirkham,[email protected],Missoula,MT,United States,Not yet determined,415 Coloma Way,40.0,https://www.facebook.com/groups/2370742863189848/,,,,,,432532ef-de67-4373-bf0d-f4608266f555
243
+ ,3615632198,,,,,,,,49ers Fan club,Jess,Mendez,[email protected],Corpus Christi,Texas,United States,Click Paradise Billiards,5141 Oakhurst Dr.,25.0,,,,,,,80d1ffb6-f3ca-4ca1-b4f7-a373ea53573e
244
+ ,6613438275,,,,,,,,Niner Empire Delano,mike,uranday,[email protected],Delano,ca,United States,Aviator casino,1225 Airport dr,20.0,,,,,,,07c46b33-d48c-4dee-b35b-ff3bec33eef1
245
+ ,6159537124,,,,,,,,Mid South Niner Empire,Tyrone,J Taylor,[email protected],Nashville,TN,United States,Winners Bar and Grill,1913 Division St,12.0,,,,,,,dd827169-d413-4ef9-b9e3-38e612db449a
246
+ ,6465429352,,,,,,,,49ers Empire New York City,Miguel,Ramirez,[email protected],New York,New York,United States,Off The Wagon,109 MacDougal Street,15.0,,,,,,,151fbf5f-baa0-4d13-bb7d-6f9484355e78
247
+ ,7605879798,,,,,,,,49er Empire High Desert,Mike,Kidwell (president),[email protected],hesperia,California,United States,Thorny's,1330 Ranchero rd.,100.0,,,,,,,c758e93b-3a3e-4c2f-990b-1bf9f1cdd6ca
248
+ ,3038425017,,,,,,,,Mile High 49ers,Howard,Gibian,[email protected],Denver,Colorado,United States,IceHouse Tavern,1801 Wynkoop St,15.0,,,,,,,7747fcc1-0f07-4288-a19f-abc06417eb6b
249
+ ,(323) 440-3129,,,,,,,,NOCO 49ers,Ryan,Fregosi,[email protected],Windsor,CO,United States,The Summit Windsor,4455 N Fairgrounds Ave,677.0,,,,,,,1f6566d0-b6a6-47ef-a8e9-9d1b224cc080
250
+ ,4142429903,,,,,,,,Milwaukee Spartans of the Niner Empire,Brandon,Rayls,[email protected],Wauwatosa,WI,United States,jacksons blue ribbon pub,11302 w bluemound rd,5.0,,,,,,,d55f08cc-5a12-4a6e-86bd-cfd1fa971c6a
251
+ ,3257165662,,,,,,,,SAN ANGELO NINER EMPIRE,pablo,barrientod,[email protected],san angelo,tx,United States,buffalo wild wings,4251 sherwoodway,15.0,,,,,,,a900674a-7b19-4726-ad29-6f76b4a62bc1
252
+ ,5802848928,,,,,,,,580 FAITHFUL,Lowell,Mitchusson,[email protected],Devol,OK,United States,APACHE LONE STAR CASUNO,"Devol, Oklahoma",10.0,,,,,,,56657395-bdb0-4536-9a50-eb97ee18fe5c
253
+ ,9373974225,,,,,,,,49ers of Ohio,Monica,Leslie,[email protected],Xenia,Ohio,United States,Cafe Ole',131 North Allison Ave,15.0,,,,,,,b63253fb-6099-4b92-9b87-399ee88f27e5
254
+ ,3073653179,,,,,,,,307 FAITHFUL,Michael,Mason,[email protected],Cheyenne,WY,United States,"4013 Golden Ct, Cheyenne, Wyoming",4013 Golden Ct,2.0,,,,,,,793b2d4e-9ad4-495e-bf5e-f84dd09aedf9
255
+ ,7609277246,,,,,,,,Mojave Desert 49er Faithfuls,Nicole,Ortega,[email protected],Apple Valley,CA,United States,Gator's Sports Bar and Grill - Apple Valley,21041 Bear Valley Rd,40.0,,,,,,,83a7cb36-feee-4e71-9dea-afa5b17fbe7c
256
+ ,9153463686,,,,,,,,The Dusty Faithful,Alejandro,Montero,[email protected],Socorro,TX,United States,The Dusty Tap Bar,10297 Socorro Rd,45.0,,,,,,,d95611e2-f59d-4bdf-9cc3-67417117f372
257
+ ,5055451180,,,,,,,,The Duke City Faithful,David,Young,[email protected],Albuquerque,N.M.,United States,Buffalo wild wings,6001 iliff rd.,20.0,,,,,,,451a785e-6805-4a2e-841b-ac6e5e648c7f
258
+ ,5203719925,,,,,,,,Emilio,Bustos,,[email protected],Casa grande,Arizona(AZ),United States,Liquor factory bar and deli,930 E Florence,30.0,,,,,,,bec7f13a-7ae7-4ad7-a5c5-ca2b3728785c
259
+ ,5054894879,,,,,,,,New Mexico Niner Empire,Charles,Montano,[email protected],Albuquerque,New Mexico,United States,Ojos Locos Sports Cantina,"Park Square,2105 Louisiana Blvd N.E",250.0,,,,,,,bfe07d0d-ca15-400a-aa7d-febdb72f5e51
260
+ ,5626593944,,,,,,,,So Cal Niner Empire,Ras,Curtis Shepperd,[email protected],Long Beach,Ca,United States,Gallaghers Irish Pub and Grill,2751 E. Broadway,30.0,,,,,,,8f136975-58ff-4a5d-91c2-1c1220bbb9da
261
+ ,9802000224,,,,,,,,49er Faithful of Charlotte,Ryan,Lutz,[email protected],Charlotte,North Carolina,United States,Strike City Charlotte,210 E. Trade St.,353.0,,,,,,,e94f718f-d099-477d-bdbd-40d267f92a93
262
+ ,6126365232,,,,,,,,MSP Niner Faithful,Xp,Lee,[email protected],Saint Paul,MN,United States,Firebox BBQ,1585 Marshall Ave,5.0,Www.fb.me/mspniners,,,,,,d4ac6052-9179-41e0-aa32-272586a32b25
263
+ ,6019187982,,,,,,,,Mississippi Niner Empire Chapter-Jackson,Nicholas,Jones,[email protected],Jackson,Ms.,United States,M-Bar Sports Grill,6340 Ridgewood Ct.,69.0,,,,,,,24d15539-70b6-40c3-9370-d44429270273
264
+ ,9256982330,,,,,,,,BayArea Faithfuls,Jon,Punla,[email protected],Pleasant Hill,California,United States,Damo Sushi,508 Contra Costa Blvd,100.0,,,,,,,a187f582-4978-4706-afe3-9bd37b2468c8
265
+ ,4803525459,,,,,,,,AZ49erFaithful,Ignacio,Cordova,[email protected],mesa,az,United States,Boulders on Southern,1010 w Southern ave suite 1,120.0,,,,,,,4e7ff31a-312b-4994-a72a-0d09ac27730a
266
+ ,2103164674,,,,,,,,Pluckers Alamo Ranch,Naomi,Robles,[email protected],San Antonio,TX,United States,Pluckers Wong Bar,202 Meadow Bend Dr,45.0,,,,,,,8f14f922-9f58-4ad6-9ec9-327e95011837
267
+ ,870-519-9373,,,,,,,,Natural State Niners,Denishio,Blanchett,[email protected],Jonesboro,AR,United States,Buffalo Wild Wings,1503 Red Wolf Blvd,105.0,www.facebook.com/NSNiners,,,,,,8e462fa7-4301-4ff5-abdb-13f2e42b1735
268
+ ,5614050582,,,,,,,,North Carolina Gold Blooded Empire,[email protected],,[email protected],Raleigh,North Carolina,United States,Tobacco Road - Raleigh,222 Glenwood Avenue,40.0,,,,,,,3b0873d4-3bf9-4d1b-8ae8-666a17d7b988
269
+ ,3365588525,,,,,,,,Spartan Empire of North Carolina,Karlton,Green,[email protected],Greensboro,NC,United States,World of Beer,1310 westover terr,8.0,,,,,,,1cc22c4c-07af-424d-b869-3b5fd1d7d35b
270
+ ,(559) 380-5061,,,,,,,,Niner Empire Kings County,Javier,Cuevas,[email protected],Hanford,CA,United States,Fatte Albert's pizza co,110 E 7th St,10.0,,,,,,,ae6d4193-5ba7-41e3-80e3-d67ba38c6dd1
271
+ ,5053216498,,,,,,,,New Mexico Gold Rush,Larry,Urbina,[email protected],Rio Rancho,NM,United States,Applebee's,4100 Ridge Rock Rd,25.0,,,,,,,02a826cd-a60f-4c3a-91fc-f245f5ad0e7b
272
+ ,650-333-6117,,,,,,,,Niner 408 Squad,Tracey,Anthony,[email protected],San Jose,CA,United States,Personal home,3189 Apperson Ridge Court,25.0,,,,,,,814efa81-10cb-4012-b040-ee33f1e6b156
273
+ ,9518670172,,,,,,,,NINER ALLEY,junior,ambriz,[email protected],moreno valley,ca,United States,home,13944 grant st,15.0,,,,,,,eedf3fa0-c63b-495b-90df-9e99eaf3e271
274
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,Texas,United States,Fatso's,1704 Bandera Road,25.0,https://www.facebook.com/ninerempire.antonio,,,,,,163ed53e-753a-40b9-aa4d-645c1e9dc673
275
+ ,5209711614,,,,,,,,NinerEmpire520,Joseph,(Bubba) Avalos,[email protected],Tucson,AZ,United States,Maloney's,213 North 4th Ave,100.0,,,,,,,a742f2e3-2094-4cbb-b0bd-cbe161f8103b
276
+ ,6024594333,,,,,,,,49er Empire Desert West,Daniel,Enriquez,[email protected],Glendale,Arizona,United States,McFadden's Glendale,9425 West Coyotes Blvd,60.0,,,,,,,3b3f7978-53e0-4a0c-b044-be05cb7fad97
277
+ ,9155026670,,,,,,,,Niner Empire EPT,Pete,Chavez,[email protected],el paso,tx,United States,knockout pizza,10110 mccombs,12.0,http://www.facebook.com/groups/ninerempireept,,,,,,f97f0dba-9e72-4676-ae77-e316f15490aa
278
+ ,7027692152,,,,,,,,"Niner Empire Henderson, NV",Jay,Bryant-Chavez,[email protected],Henderson,Nevada,United States,Hi Scores Bar-Arcade,65 S Stephanie St,11.0,http://www.facebook.com/ninerempirehenderson,,,,,,6dfa800d-540a-443e-a2df-87336994f592
279
+ ,9712184734,,,,,,,,Niner Empire Salem,Timothy,Stevens,[email protected],Salem,OR,United States,IWingz,IWingz,200.0,,,,,,,d84f87ab-abaa-4f1a-86bf-8b9c1e828080
280
+ ,5599677071,,,,,,,,Niner Empire San Antonio,Jesus,Archuleta,[email protected],San Antonio,Texas,United States,Fatsos,1704 Bandera Rd,30.0,,,,,,,2966907f-4bbd-4c39-ad05-ea710abc7a3d
281
+ ,5419440558,,,,,,,,Niner Empire Southern Oregon,Patricia,Alvarez,[email protected],Medford,OR,United States,The Zone Sports Bar & Grill,1250 Biddle Rd.,12.0,,,,,,,5c4c4328-fea5-48b8-af04-dcf245dbed24
282
+ ,4199171537,,,,,,,,niner empire faithfuls of toledo,Darren,Sims,[email protected],Toledo,Ohio,United States,Legendz sports pub and grill,519 S. Reynolds RD,27.0,,,,,,,1c77028e-b7a9-4842-b79a-c6a63b2a0061
283
+ ,7023033434,,,,,,,,Las Vegas Niner EmpireNorth,Susan,Larsen,[email protected],Las Vegas,NV,United States,Timbers Bar & Grill,7240 West Azure Drive,50.0,,,,,,,919bfebb-e7f4-4813-b154-dc28601e9f71
284
+ ,7023715898,,,,,,,,NINER FRONTIER,Tyson,white,[email protected],las vegas,NV,United States,Luckys Lounge,7345 S Jones Blvd,8.0,,,,,,,88cb20a4-fc5e-4f79-a469-0079e0c8495b
285
+ ,7604120919,,,,,,,,NINERS ROLLIN HARD IMPERIAL VALLEY,Juan,Vallejo,[email protected],Brawley,CA,United States,SPOT 805 Bar and Grill,550 Main St,40.0,,,,,,,19d647db-7014-4236-9060-7967b62f30cd
286
+ ,8282228545,,,,,,,,Niners Rollin Hard EL Valle C.V. Chapter,Joshua,Garcia,[email protected],La Quinta,CA,United States,The Beer Hunters,78483 Highway 111,40.0,,,,,,,8df81a3b-afb7-454c-a504-d190da845e0b
287
+ ,4088576983,,,,,,,,Niners United,Eli,Soque,[email protected],Santa Clara,CA,United States,"Levi's Stadium Section 201, Section 110, Section 235 (8 of the 18 members are Season Ticket Holders)",4900 Marie P DeBartolo Way,18.0,,,,,,,91d80ee0-86be-4a80-90f6-b48f7656cf4d
288
+ ,3125904783,,,,,,,,San Francisco 49ers Fans of Chicago,Nathan,Israileff,[email protected],Chicago,IL,United States,"Gracie O'Malley's (Wicker Park location), 1635 N Milwaukee Ave, Chicago, IL 60647",Gracie O'Malley's,1990.0,https://www.facebook.com/Chicago49ersFans,,,,,,08b87dde-06a0-4a00-85fc-4b290750d185
289
+ ,2017022055,,,,,,,,NJ Niner Empire Faithful Warriors,Joe,Aguiluz,[email protected],Jersey City,New Jersey,United States,O'Haras Downtown,172 1st Street,20.0,https://m.facebook.com/njninerempire,,,,,,963b02b1-fa0d-450c-afe9-ccac1e53db59
290
+ ,2017057762,,,,,,,,NJ9ers,Arron,Rodriguez,[email protected],Bayonne,NJ,United States,Mr. Cee's Bar & Grill,17 E 21st Street,35.0,,,,,,,c5d3fad5-6062-453d-a7b5-20d44d892745
291
+ ,2088183104,,,,,,,,North Idaho 49ers Faithful,Josh,Foshee,[email protected],Coeur d'Alene,ID,United States,Iron Horse Bar and Grille,407 Sherman Ave,700.0,,,,,,,25a08c6b-414c-430f-891b-86aacac98010
292
+ ,5093069273,,,,,,,,Northwest Niner Empire,David,Hartless,[email protected],Ellensburg,WA,United States,Armies Horseshoe Sports Bar,106 W 3rd,145.0,https://www.facebook.com/groups/northwestninerempire/,,,,,,65d8fb43-cd35-4835-887e-80ae2010337b
293
+ ,7039691435,,,,,,,,NOVA Niners,Matt,Gaffey,[email protected],Herndon,VA,United States,Finnegan's Sports Bar & Grill,2310 Woodland Crossing Dr,80.0,http://www.facebook.com/nova.niners1,,,,,,5fadd584-8af3-49e7-b518-f8bc9543aa4b
294
+ ,8303870501,,,,,,,,Austin Niner Empire,Amber,Williams,[email protected],Austin,Texas,United States,Mister Tramps Pub & Sports Bar,8565 Research Blvd,13.0,http://www.Facebook.com/AustinNinerEmpire,,,,,,989b87b0-7bf5-40f9-82a1-7f6829696f39
295
+ ,6462677844,,,,,,,,New York 49ers Club,Joey,Greener,[email protected],new york,ny,United States,Finnerty's Sports Bar,221 2nd Avenue,300.0,,,,,,,d36e4525-9cc4-41fd-9ca9-178f03398250
296
+ ,559-664-2446,,,,,,,,Mad-town chapter,Francisco,Velasquez,[email protected],Madera,CA,United States,Madera ranch,28423 Oregon Ave,15.0,,,,,,,53cca285-682a-474f-b563-284ed4d288c1
297
+ ,5129491183,,,,,,,,Gold Rush Army of Austin,Emmanuel,Salgado,[email protected],Austin,TX,United States,Midway Field House,2015 E Riverside Dr,180.0,https://www.facebook.com/GoldRushArmyofAustin,,,,,,8dc91968-9d5b-4e1e-82e1-507f51b67802
298
+ ,(951) 867-0172,,,,,,,,niner alley,pedro,ambriz,[email protected],MORENO VALLEY,CA,United States,papa joes sports bar,12220 frederick ave,25.0,,,,,,,dacdda72-9a15-437c-8b69-7c0cb67998e5
299
+ ,(413)361-9818,,,,,,,,413 Spartans,Ricky Pnut,Ruiz,[email protected],Chicopee,MA,United States,Bullseye,Bullseye,17.0,,,,,,,60e842f0-2b00-4259-8690-865ea9639ab7
300
+ ,503-550-9738,,,,,,,,Clementine's Faithful,Paula,Hylland,[email protected],Portland,OR,United States,The Mule Bar,4915 NE Fremont Street,10.0,,,,,,,d9b5a320-d95a-49aa-8d11-acd754db9f39
301
+ ,5852592796,,,,,,,,585faithful,patterson,,[email protected],dansville,NY,United States,dansville ny,108 main st,1.0,,,,,,,0662b3d3-db2f-4818-a674-b8e4d170eb82
302
+ ,5599203535,,,,,,,,Niner Empire Cen Cal 559,Pauline,Castro,[email protected],PORTERVILLE,CA,United States,BRICKHOUSE BAR AND GRILL,152 North Hockett Street,30.0,,,,,,,b356b411-38e4-468d-881e-976464116bb1
303
+ ,9254514477,,,,,,,,Booze & Niner Football,Mike,Parker,[email protected],Solana Beach,CA,United States,Saddle Bar,123 W Plaza St,10.0,,,,,,,f7aa0747-360e-4661-9393-14a6c6969517
304
+ ,6262024448,,,,,,,,Westside Niners Nation,Leo,Gonzalez,[email protected],Culver City,CA,United States,Buffalo Wings and Pizza,5571 Sepulveda Blvd.,16.0,,,,,,,2f4b05d8-d3ec-4afb-a854-d7818899afe4
305
+ ,5203719925,,,,,,,,Pinal county niner empire,Emilio,Bustos,[email protected],Casa grande,Arizona(AZ),United States,Liquor factory bar and deli,930 E Florence,30.0,,,,,,,3dda0bcb-6039-4f6e-91a7-5f010e930e8f
306
+ ,4252561925,,,,,,,,"Prescott, AZ 49ers faithful",Pam,Marquardt,[email protected],Prescott,AZ,United States,Prescott Office Resturant,128 N. Cortez St.,28.0,,,,,,,fd20c2d2-5ad3-41bf-8882-1f2f4d7872ac
307
+ ,8082585120,,,,,,,,San Francisco 49'ers Hawaii Fan Club,Randy,Miyamoto,[email protected],Honolulu,Hawaii,United States,To be determined,To be determined,50.0,,,,,,,b5a5dfe5-4015-439f-954b-8af9b2be2a09
308
+ ,(503) 544-3640,,,,,,,,Niner Empire Portland,Pedro,Urzua,[email protected],Portland,OR,United States,KingPins Portland,3550 SE 92nd ave,100.0,,,,,,,45249454-edef-4d93-a5d2-f6f14e123707
309
+ ,9253054704,,,,,,,,QueensandKings Bay Area Empire Chapter,Queen,,[email protected],Antioch,Ca,United States,Tailgaters,4605 Golf Course Rd,15.0,,,,,,,ed28bf67-9fa8-4583-b4bd-a4beaefdd3cb
310
+ ,4086671847,,,,,,,,Club 49 Tailgate Crew,Alex,Chavez,[email protected],Pleasanton,California,United States,Sunshine Saloon Sports Bar,1807 Santa Rita Rd #K,15.0,,,,,,,d2991982-2da9-48d1-978b-665a9cd38eb3
311
+ ,6465429352,,,,,,,,49ers Nyc Chapter,Miguel,Ramirez,[email protected],New York,New York,United States,Off the Wagon,"109 Macdougal St,",35.0,https://www.facebook.com/niner.nychapter,,,,,,5919ac0b-7804-4390-8881-46f2f30c33cd
312
+ ,5093076839,,,,,,,,"49er faithfuls Yakima,Wa",Olivia,Salazar,[email protected],Yakima,Wa,United States,TheEndzone,1023 N 1st,35.0,,,,,,,e588d2c2-b68f-4d33-be95-0b72f0a682b2
313
+ ,7209080304,,,,,,,,49er's Faithful Aurora Co Chapter,Fito,Cantu',[email protected],Aurora,CO,United States,17307 E Flora Place,17307 E Flora Place,10.0,,,,,,,93f1f74c-134d-456d-8f49-968d930c3ad7
314
+ ,5626404112,,,,,,,,49er F8thfuls,Ray,Casper,[email protected],Gardena,Ca,United States,Paradise,889 w 190th,50.0,,,,,,,12515d58-5699-416d-8ab9-627632f46e65
315
+ ,562-322-8833,,,,,,,,westside9ers,Ray,Casper,[email protected],Downey,CA,United States,Bar Louie,8860 Apollo Way,75.0,,,,,,,937ec6b6-ce55-4b49-b5c5-7602b8a81220
316
+ ,8609951926,,,,,,,,Spartan 9er Empire Connecticut,Raymond,Dogans,[email protected],EastHartford,CO,United States,Red Room,1543 Main St,20.0,,,,,,,6f9118c5-41aa-47dc-8e6c-8da98577521c
317
+ ,6786322673,,,,,,,,Red & Gold Empire,Stephen,Box,[email protected],Sandy Springs,GA,United States,Hudson Grille Sandy Springs,6317 Roswell Rd NE,25.0,https://www.facebook.com/RGEmpire,,,,,,71687e97-c1cc-4dd0-8c2c-5bee50ab8b80
318
+ ,7755606361,,,,,,,,RENO NINEREMPIRE,Walter,Gudiel,[email protected],Reno,Nv,United States,Semenza's Pizzeria,4380 Neil rd.,35.0,,,,,,,7df1ce76-3403-42ff-9a89-99d9650e53f4
319
+ ,6502711535,,,,,,,,650 Niner Empire peninsula chapter,Jose,Reyes Raquel Ortiz,[email protected],South San Francisco,Ca,United States,7mile house or standby,1201 bayshore blvd,27.0,,,,,,,191351af-67f4-4f93-bc84-06a57f61ad5e
320
+ ,6508346624,,,,,,,,Spartan Niner Empire California,Jose,Reyes,[email protected],Colma,CA,United States,Molloys Tavern,Molloys tavern,19.0,,,,,,,604f8e2e-8859-4c5e-bb15-bee673282554
321
+ ,(951) 390-6832,,,,,,,,Riverside county TEF (Thee Empire Faithful),Sean,Flynn,[email protected],Winchester,CA,United States,Pizza factory,30676 Bentod Rd,20.0,,,,,,,01d43858-67f3-4c95-b6ca-81a75b33a75c
322
+ ,9098153880,,,,,,,,Riverside 49ers Booster Club,Gus,Esmerio,[email protected],Riverside,California,United States,Lake Alice Trading Co Saloon &Eatery,3616 University Ave,20.0,,,,,,,de7e2c76-771b-4042-8a27-29070b65022a
323
+ ,5156643526,,,,,,,,49ers Strong Iowa - Des Moines Chapter,Rob,Boehringer,[email protected],Ankeny,IA,United States,Benchwarmers,705 S Ankeny Blvd,8.0,,,,,,,011a93a0-8166-4f24-9bb0-613fb7084acf
324
+ ,6159537124,,,,,,,,Mid South Niner Nation,Tyrone,Taylor,[email protected],Nashville,TN,United States,Kay Bob's,1602 21st Ave S,12.0,,,,,,,34488741-278c-4e4f-8bf0-ac45936f4fb4
325
+ ,8165898717,,,,,,,,Kansas City 49ers Faithful,Ronnie,Tilman,[email protected],Leavenworth,KS,United States,"Fox and hound. 10428 metcalf Ave. Overland Park, ks",22425,245.0,,,,,,,46e02390-6910-4f24-8281-a327e5472f73
326
+ ,9169965326,,,,,,,,49er Booster Club Carmichael Ca,Ramona,Hall,[email protected],Fair Oaks,Ca,United States,Fair Oaks,7587 Pineridge Lane,38.0,,,,,,,fe62c40c-2848-4765-8cdc-617cc17abd41
327
+ ,2252419900,,,,,,,,Rouge & Gold Niner Empire,Derek,Wells,[email protected],Baton Rouge,LA,United States,Sporting News Grill,4848 Constitution Avenue,32.0,,,,,,,5e0fc4de-fee1-427e-97bd-288052de961e
328
+ ,5592029388,,,,,,,,Niner Empire Tulare County,Rita,Murillo,[email protected],Visalia,Ca,United States,5th Quarter,3360 S. Fairway,25.0,,,,,,,e3933806-db81-4f2d-8886-8662f020919b
329
+ ,3234403129,,,,,,,,Mile High 49ers NOCO Booster Club,Ryan,Fregosi,[email protected],Greeley,co,United States,Old Chicago Greeley,2349 W. 29th St,176.0,http://www.facebook.com/milehigh49ersnocoboosterclub,,,,,,23166e6c-bf72-4fc7-910e-db0904350dbb
330
+ ,4086220996,,,,,,,,NINERFANS.COM,Ryan,Sakamoto,[email protected],Cupertino,California,United States,Islands Bar And Grill (Cupertino),20750 Stevens Creek Blvd.,22.0,,,,,,,5df15f36-f0c3-4279-b2f1-4bbb6eb6342c
331
+ ,6198203631,,,,,,,,San Diego Gold Rush,Robert,Zubiate,[email protected],San Diego,CA,United States,Bootleggers,804 market st.,20.0,,,,,,,d08f2811-4f8c-4db3-af53-defe5fe3b9cf
332
+ ,6026264006,,,,,,,,East Valley Niner Empire,Selvin,Cardona,[email protected],Apache Junction,AZ,United States,Tumbleweed Bar & Grill,725 W Apache Trail,30.0,,,,,,,24aa550b-d105-4fcd-963a-57d0ccb3d0d4
333
+ ,7076949476,,,,,,,,Santa Rosa Niner Empire,Joaquin,Kingo Saucedo,[email protected],Windsor,CA,United States,Santa Rosa,140 3rd St,15.0,,,,,,,4e074598-e19e-411f-b497-27544616e7aa
334
+ ,3305180874,,,,,,,,Youngstown Faithful,Scott,West,[email protected],Canfield,OH,United States,The Cave,369 Timber Run Drive,10.0,,,,,,,e6d2eca5-915f-4875-a9c7-99c3fe33e44d
335
+ ,6502469641,,,,,,,,Seattle Niners Faithful,Brittany,Carpenter,[email protected],Everett,WA,United States,Great American Casino,12715 4th Ave W,300.0,,,,,,,d0f56140-45f2-4009-8b4e-aa50ea8c177a
336
+ ,9194511624,,,,,,,,"San Francisco 49ers Faithful - Greater Triangle Area, NC",Lora,Edgar,[email protected],Durham,North Carolina,United States,Tobacco Road Sports Cafe,280 S. Mangum St. #100,24.0,https://www.facebook.com/groups/474297662683684/,,,,,,9384f475-5183-4a60-bfc5-53102d9f4d56
337
+ ,5103948854,,,,,,,,South Florida Gold Blooded Empire,Michelle,"""""Meme"""" Jackson",[email protected],Boynton Beach,Florida,United States,Miller's Ale House,2212 N. Congress Avenue,23.0,,,,,,,6ea27b5d-1542-454f-8653-e48fccb7238b
338
+ ,5305264764,,,,,,,,Red Rock's Local 49 Club,Shane,Keffer,[email protected],Red Bluff,CA,United States,Tips Bar,501 walnut St.,40.0,,,,,,,fe897059-b023-400b-b94e-7cf3447456c7
339
+ ,5098451845,,,,,,,,Columbia Basin Niners Faithful,Christina,Feldman,[email protected],Finley,Washington,United States,Shooters,214711 e SR 397 314711 wa397,30.0,,,,,,,bfabecc2-aeb2-4ce6-85c2-27c2cc044f21
340
+ ,(951) 816-8801,,,,,,,,9er Elite,Harmony,Shaw,[email protected],Lake Elsinore,CA,United States,Pins N Pockets,32250 Mission Trail,20.0,,,,,,,7588fda3-69f2-4944-a888-65926beab731
341
+ ,6093396596,,,,,,,,Shore Faithful,Edward,Griffin Jr,[email protected],Barnegat,NJ,United States,603 East Bay Ave Barnegat NJ 08005 - Due to covid 19 we no longer have a meeting location besides my residence. I truly hope this is acceptable - Thank you,603 East Bay Ave,6.0,,,,,,,76e56a22-d4e7-46c5-8d75-7c2a73eac973
342
+ ,5054708144,,,,,,,,Santa Fe Faithfuls,Anthony,Apodaca,[email protected],Santa Fe,New Mexico,United States,Blue Corn Brewery,4056 Cerrilos Rd.,10.0,,,,,,,13506992-672a-4788-abd2-1461816063e4
343
+ ,5204147239,,,,,,,,Sonoran Desert Niner Empire,Derek,Yubeta,[email protected],Maricopa,AZ,United States,Cold beers and cheeseburgers,20350 N John Wayne Pkwy,48.0,,,,,,,b7615efb-5b5f-4732-9f7c-c7c9f00e3fd9
344
+ ,3054953136,,,,,,,,9549ERS faithful,Nelson,Tobar,[email protected],Davie,FL,United States,Twin peaks,Twin peaks,30.0,,,,,,,5bf41a27-5bd1-45eb-8bdf-816832371efc
345
+ ,8062929172,,,,,,,,806 Niner Empire West Texas Chapter,Joe,Frank Rodriquez,[email protected],Lubbock,Texas,United States,Buffalo Wild Wings,6320 19th st,20.0,,,,,,,3d691991-bcac-4354-95c4-e73998e5abe7
346
+ ,8082283453,,,,,,,,Ohana Niner Empire,Nathan,Sterling,[email protected],Honolulu,HI,United States,TBD,1234 TBD,20.0,,,,,,,09f575e9-9f5d-41ca-998f-bfa72a693b1a
347
+ ,9167470720,,,,,,,,Westside Portland 49er Fan Club,Steven,Englund,[email protected],Portland,OR,United States,The Cheerful Tortoise,1939 SW 6th Ave,20.0,,,,,,,6a75b28a-db14-4422-90ca-84c6624d6f44
348
+ ,7542235678,,,,,,,,49ersGold,Tim,OCONNELL,[email protected],Oakland Park,FL,United States,stout bar and grill,Stout Bar and Grill,12.0,,,,,,,b49d9c5d-2d71-40d7-8f15-e83e4eb10a48
349
+ ,2096409543,,,,,,,,4T9 MOB TRACY FAMILY,Jenese,Borges Soto,[email protected],Tracy,Ca,United States,Buffalo wild wings,2796 Naglee road,20.0,,,,,,,faf65b89-6f63-4e09-b90e-fb6d570845e8
350
+ ,5413015005,,,,,,,,Niner Empire Southern Oregon Chapter,Susana,Perez,[email protected],medford,or,United States,imperial event center,41 north Front Street,15.0,,,,,,,e96fb986-f0bb-43aa-a992-f84eea493308
351
+ ,(530) 315-9467,,,,,,,,SacFaithful,Gregory,Mcconkey,[email protected],Cameron park,CA,United States,Presidents home,3266 Cimmarron rd,20.0,,,,,,,47219f6e-b0c2-4dd4-9af6-935f2f731228
352
+ ,9374189628,,,,,,,,Niner Faithful Of Southern Ohio,Tara,Farrell,[email protected],piqua,OH,United States,My House,410 Camp St,10.0,,,,,,,858b5895-efd8-4ea4-9a11-e852dc4e8e89
353
+ ,7609783736,,,,,,,,NinerGangFaithfuls,Andrew,Siliga,[email protected],Oceanside,ca,United States,my house,4020 Thomas st,20.0,,,,,,,9471e78e-099c-46b1-87da-4d8f71d8e7c3
354
+ ,6099544424,,,,,,,,Jersey 49ers riders,terry,jackson,[email protected],Trenton,New Jersey,United States,sticky wecket,2465 S.broad st,30.0,,,,,,,d9f16b96-42fe-4712-a4a4-10d700b7e4bc
355
+ ,(703) 401-0212,,,,,,,,Life Free or Die Faithfuls,Thang,Vo,[email protected],Concord,NH,United States,Buffalo Wild Wings,8 Loudon Rd,3.0,https://www.facebook.com/groups/876812822713709/,,,,,,fe144e07-945e-4c66-a148-781275800599
356
+ ,3105929214,,,,,,,,The 909 Niner Faithfuls,Joe,Del Rio,[email protected],Fontana,Ca,United States,Boston's Sports Bar and Grill,16927 Sierra Lakes Pkwy.,30.0,http://www.facebook.com/The909NinerFaithfuls,,,,,,5a3edf14-ae01-4654-b562-669cf1ed8ddf
357
+ ,6264459623,,,,,,,,Arcadia Chapter,Allyson,Martin,[email protected],Arcadia,CA,United States,4167 e live oak Ave,4167 e live oak Ave,25.0,,,,,,,429e6376-361c-46fb-88f2-459de5eaec25
358
+ ,5592897293,,,,,,,,Thee Empire Faithful,Joe,Rocha,[email protected],Fresno,California,United States,Buffalo Wild Wings,3065 E Shaw Ave,50.0,,,,,,,d09046d4-bdfa-41b1-ab4b-b0b159f555bb
359
+ ,5412063142,,,,,,,,The Oregon Faithful,Jeff,Sutton,[email protected],Eugene,OR,United States,The Side Bar,Side Bar,12.0,,,oregonfaithful on Twitter,,,,8848f4d4-58ab-47ae-8f91-11c5947b2501
360
+ ,9082475788,,,,,,,,The ORIGINAL Niner Empire-New Jersey Chapter,Charlie,Murphy,[email protected],Linden,NJ,United States,Nuno's Pavilion,300 Roselle ave,35.0,,,,,,,1ec79271-8c21-4966-8bae-d0ca12e84974
361
+ ,5852788246,,,,,,,,What a Rush (gold),Paul,Smith,[email protected],Rochester,NY,United States,The Scotch House Pub,373 south Goodman street,15.0,,,,,,,0260e343-0aaf-47a5-9a99-ae53cb3c2747
362
+ ,9519029955,,,,,,,,Moreno Valley 49er Empire,Tibor,Belt,[email protected],Moreno Vallay,CA,United States,S Bar and Grill,23579 Sunnymead Ranch Pkwy,15.0,https://www.facebook.com/pages/Moreno-Valley-49er-Empire/220528134738022,,,,,,278e71b3-2e69-4ee2-a7a3-9f78fee839ea
363
+ ,14054370161,,,,,,,,"The Niner Empire, 405 Faithfuls, Oklahoma City",Maria,Ward,[email protected],Oklahoma city,OK,United States,Hooters NW Expressway OKC,3025 NW EXPRESSWAY,25.0,https://www.facebook.com/share/g/4RVmqumg1MQNtMSi/?mibextid=K35XfP,,,,,,09f9160d-e91c-472b-aee9-251881a2d1e6
364
+ ,7072971945,,,,,,,,707 EMPIRE VALLEY,Tony,Ruiz,[email protected],napa,California,United States,Ruiz Home,696a stonehouse drive,10.0,,,,,,,fcd8cd95-35da-4d85-82db-40fcd48929ec
365
+ ,208-964-2981,,,,,,,,Treasure Valley 49er Faithful,Curt,Starz,[email protected],Star,ID,United States,The Beer Guys Saloon,10937 W. State Street,100.0,https://www.facebook.com/TV49erFaithful,,,,,,dd93b349-8a58-4ae5-8ffc-4be1d7d8e146
366
+ ,(804) 313-1137,,,,,,,,Hampton Roads Niner Empire,Nick,Farmer,[email protected],Newport news,VA,United States,Boathouse Live,11800 Merchants Walk #100,300.0,https://m.facebook.com/groups/441340355910833?ref=bookmarks,,,,,,e1caa71e-07e4-4d99-9c2d-e12064b1af58
367
+ ,(971) 218-4734,,,,,,,,Niner Empire Salem,Timothy,Stevens,[email protected],Salem,OR,United States,AMF Firebird Lanes,4303 Center St NE,218.0,,,,,,,794f2ed1-b82f-4fb8-9bd4-fa69c4e9695d
368
+ ,3234590567,,,,,,,,Forty Niners LA chapter,Tony,,[email protected],Bell,Ca,United States,Krazy Wings,7016 Atlantic Blvd,15.0,,,,,,,790c095e-49b2-4d58-9e8c-559d77a6b931
369
+ ,(318) 268-9657,,,,,,,,Red River Niner Empire,Tyra,Kinsey,[email protected],Bossier City,LA,United States,Walk On's Bossier City,3010 Airline Dr,15.0,www.facebook.com/RedRiverNinerEmpire,,,,,,c8ffeb37-4dce-4610-bea3-1e848b34c034
370
+ ,3058965471,,,,,,,,Ultimate 49er Empire,Nadieshda,Nadie Lizabe,[email protected],Pembroke pines,Florida,United States,Pines alehouse,11795 pine island blvd,14.0,,,,,,,82cd3ac8-2db0-493f-beff-5db479afe620
371
+ ,8014140109,,,,,,,,Utah Niner Empire,Travis,Vallejo,[email protected],Salt Lake City,UT,United States,Legends Sports Pub,677 South 200 West,25.0,https://www.facebook.com/UtahNinerEmpire,,,,,,ba6c55f2-b95f-4c01-898b-327010c965c0
372
+ ,(480) 493-9526,,,,,,,,Phoenix602Faithful,Vincent,Price,[email protected],Phoenix,AZ,United States,Galaghers,3220 E Baseline Rd,20.0,,,,,,,57ba8002-3c69-43da-8c14-9bfa47eab4d2
373
+ ,3108979404,,,,,,,,WESTSIDE 9ERS,Naimah,Williams,[email protected],Carson,CA,United States,Buffalo Wild Wings,736 E Del Amo Blvd,20.0,,,,,,,8bcc18e7-f352-486d-93ca-535eafd7b0b3
374
+ ,4696009701,,,,,,,,Addison Point 49ner's Fans,William,Kuhn,[email protected],Addison,Texas,United States,Addison Point Sports Grill,4578 Beltline Road,288.0,,,,,,,f09252d6-3449-4028-9039-9bc5c617606d
375
+ ,3605679487,,,,,,,,49er Forever Faithfuls,Wayne,Yelloweyes-Ripoyla,[email protected],Vancouver,Wa,United States,Hooligans bar and grill,"8220 NE Vancouver Plaza Dr, Vancouver, WA 98662",11.0,,,,,,,78995f96-9862-40e7-9286-680115ec4afa
376
+ ,5309086004,,,,,,,,Woodland Faithful,Oscar,Ruiz,[email protected],Woodland,CA,United States,Mountain Mikes Pizza,171 W. Main St,30.0,,,,,,,06036f2c-3694-4d8c-a275-2f201ae299d2
377
+ ,3159448662,,,,,,,,Niner Empire Central New York,Michal,,[email protected],Cicero,New York,United States,Tully's Good Times,7838 Brewerton Rd,6.0,,,,,,,0a6d4071-14d2-4297-aee8-fe0706cb4cf6
378
+ ,(970) 442-1932,,,,,,,,4 Corners Faithful,Anthony,Green,[email protected],Durango,CO,United States,Sporting News Grill,21636 Highway 160,10.0,https://www.facebook.com/groups/363488474141493/,,,,,,caacd0f1-bf97-40b2-bcb0-f329c33b3946
379
+ ,(480) 708-0838,,,,,,,,480 Gilbert Niner Empire,Elle,Lopez,[email protected],Gilbert,AZ,United States,Panda Libre,748 N Gilbert Rd,30.0,,,,,,,832beeda-9378-4e28-8f27-25f275214e63
380
+ ,(331) 387-0752,,,,,,,,Niner Empire Jalisco 49ers Guadalajara,Sergio,Hernandez,[email protected],Guadalajara,TX,United States,Bar Cheleros,Bar CHELEROS,190.0,https://www.facebook.com/NinerEmpireJalisco49ersGuadalajara/?modal=admin_todo_tour,,,,,,7af32566-8905-4685-8cda-46c53238a9ce
381
+ ,3045457327,,,,,,,,49ERS Faithful of West Virginia,Zachary,Meadows,[email protected],Charleston,WV,United States,The Pitch,5711 MacCorkle Ave SE,12.0,,,,,,,24bdc01c-258e-481a-902d-c134a12917b7
382
+ ,2016971994,,,,,,,,49 Migos Chapter,Manny,Duarte,[email protected],Saddle Brook,NJ,United States,Midland Brewhouse,374 N Midland Ave,10.0,,,,,,,f0202075-a64b-47e6-bddb-ef41452ab80d
383
+ ,408-892-5315,,,,,,,,49ers Bay Area Faithful Social Club,Sarah,Wallace,[email protected],Sunnyvale,CA,United States,Giovanni's New York Pizzeria,1127 Lawrence Expy,65.0,,,,,,,4b00c24d-c714-4727-bc8a-c2a9f81392e1
384
+ ,5404245114,,,,,,,,Niner Empire Of Indy,Jay,Balthrop,[email protected],Indianapolis,IN,United States,The Bulldog Bar and Lounge,5380 N College Ave,30.0,,,,,,,d225d3bf-a3ff-46b0-a33c-85d1287c1495
data/niners_output/fans.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/niners_output/load_embeddings.cypher ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Load game summary embeddings into Neo4j
2
+ // This script adds embeddings as vector properties to Game nodes
3
+
4
+ LOAD CSV WITH HEADERS
5
+ FROM 'file:///game_summary_embeddings.csv'
6
+ AS row
7
+ MATCH (g:Game {game_id: row.game_id})
8
+ WITH g, row,
9
+ [x in keys(row) WHERE x STARTS WITH 'dim_'] AS embedding_keys
10
+ WITH g, row,
11
+ [x in embedding_keys | toFloat(row[x])] AS embedding_vector
12
+ CALL db.create.setNodeVectorProperty(g, 'summaryEmbedding', embedding_vector)
13
+ RETURN count(*) as UpdatedGames
data/niners_output/roster.csv ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Player,Number,Pos,HT,WT,Age,Exp,College,status,player_id
2
+ Israel Abanikanda,20,RB,5-10,216,22,2,Pittsburgh,Active,c1f595b7-9043-4569-9ff6-97e0f31a5ba5
3
+ Brandon Allen,17,QB,6-2,209,32,8,Arkansas,Active,86f109ac-c967-4c17-af5c-97395270c489
4
+ Evan Anderson,69,DL,6-3,326,23,R,Florida Atlantic,Active,7774475d-ab11-4247-a631-9c7d29ba9745
5
+ Tre Avery,36,CB,5-11,181,28,3,Rutgers,Active,59e3afa0-cb40-4f8e-9052-88b9af20e074
6
+ Robert Beal Jr.,51,DL,6-4,250,25,2,Georgia,Active,dcecbaa2-2803-4716-a729-45e1c80d6ab8
7
+ Tatum Bethune,48,LB,6-0,299,24,R,Florida State,Active,f51beff4-e90c-4b73-9253-8699c46a94ff
8
+ Nick Bosa,97,DL,6-4,266,27,6,Ohio State,Active,9cf4b059-d05c-4d22-9ca3-c5aee41ebfdc
9
+ Jake Brendel,64,OL,6-4,299,32,7,UCLA,Active,b7c1b4e2-4d9c-47cc-8ac2-b6e0d2493157
10
+ Ji'Ayir Brown,27,S,5-11,202,25,2,Penn State,Active,e5950f0d-0d24-4e2f-b96a-36ebedb604a9
11
+ Chris Conley,18,WR,6-3,205,32,10,Georgia,Active,f35d154a-0a53-476e-b0c2-49ae5d33b7eb
12
+ Jacob Cowing,19,WR,5-9,171,24,R,Arizona,Active,564daa89-38f8-4c8a-8760-de1923f9a681
13
+ Kalia Davis,93,DL,6-2,310,26,3,Central Florida,Active,9ecde51b-8b49-40a3-ba42-e8c5787c279c
14
+ Khalil Davis,50,DL,6-2,315,28,4,Nebraska,Active,5162b93a-4f44-45fd-8d6b-f5714f4c7e91
15
+ Joshua Dobbs,5,QB,6-3,220,30,8,Tennessee,Active,44b1d8d5-663c-485b-94d3-c72540441aa0
16
+ Jordan Elliott,92,DL,6-4,303,27,5,Missouri,Active,f037f86a-6952-49a5-b6d3-6ce43b8e1d3d
17
+ Luke Farrell,89,TE,6-5,250,27,4,Ohio State,Active,ba2cf281-cffa-4de5-9db9-2109331e455d
18
+ Tashaun Gipson Sr.,43,S,6-1,212,34,13,Wyoming,Active,14026aa2-5f8c-45bf-9b92-0971d92127e6
19
+ Jalen Graham,41,LB,6-3,220,25,2,Purdue,Active,00d1db69-8b43-4d34-bbf8-17d4f00a8b71
20
+ Richie Grant,27,S,6-0,200,27,4,UCF,Active,c737a041-c713-43f6-8205-f409b349e2b6
21
+ Renardo Green,0,CB,6-0,186,24,R,Florida State,Active,21d23c5c-28c0-4b66-8d17-2f5c76de48ed
22
+ Yetur Gross-Matos,94,DL,6-5,265,27,5,Penn State,Active,cde0a59d-19ab-44c9-ba02-476b0762e4a8
23
+ Isaac Guerendo,31,RB,6-0,221,24,R,Louisville,Active,4ca8e082-d358-46bf-af14-9eaab40f4fe9
24
+ Charlie Heck,75,OL,6-8,311,28,5,North Carolina,Active,7d809297-6d2f-4515-ab3c-1ce3eb47e7a6
25
+ Matt Hennessy,61,OL,6-3,315,27,4,Temple,Active,2f95e3de-03de-4827-a4a7-aaed42817861
26
+ Jauan Jennings,15,WR,6-3,212,27,4,Tennessee,Active,16794171-c7a0-4a0e-9790-6ab3b2cd3380
27
+ Mac Jones,10,QB,6-3,200,26,4,Alabama,Active,18df1544-69a6-460c-802e-7d262e83111d
28
+ George Kittle,85,TE,6-4,250,31,8,Iowa,Active,3fe4cd72-43e3-40ea-8016-abb2b01503c7
29
+ Deommodore Lenoir,2,DB,5-10,200,25,4,Oregon,Active,79a00b55-fa24-45d8-a43f-772694b7776d
30
+ Nick McCloud,35,CB,6-1,193,26,4,Notre Dame,Active,c3b8f82b-92c0-4a5d-85ef-7ddaec7d3a87
31
+ Colton McKivitz,68,OL,6-6,301,28,5,West Virginia,Active,63b288c1-4434-4120-867c-cee4dadd8c8a
32
+ Jake Moody,4,K,6-1,210,25,2,Michigan,Active,9328e072-e82e-41ef-a132-ed54b649a5ca
33
+ Malik Mustapha,6,S,5-10,206,22,R,Wake Forest,Active,6cb2d19f-f0a4-4ece-9190-76345d1abc54
34
+ Pat O'Donnell,40,P,6-4,220,34,10,Miami,Active,61a0a607-be7b-429d-b492-59523fad023e
35
+ Sam Okuayinonu,91,DL,6-1,269,26,2,Maryland,Active,c81b6283-b1aa-40d6-a825-f01410912435
36
+ Ricky Pearsall,14,WR,6-3,192,24,R,Florida,Active,27bf8c9c-7193-4f43-9533-32f1293d1bf0
37
+ Jason Pinnock,41,CB,6-0,205,25,4,Pittsburgh,Active,57f29e6b-9082-4637-af4b-0d123ef4542d
38
+ Austen Pleasants,62,OT,6-7,328,27,1,Ohio,Active,d000d0a3-a7ba-442d-92af-0d407340aa2f
39
+ Dominick Puni,77,OL,6-5,313,25,R,Kansas,Active,aeb5a55c-4554-4116-9de0-76910e66e154
40
+ Brock Purdy,13,QB,6-1,220,25,3,Iowa State,Active,787758c9-4e9a-44f2-af68-c58165d0bc03
41
+ Demarcus Robinson,14,WR,6-1,203,30,9,Florida,Active,c97d60e5-8c92-4d2e-b782-542ca7aa7799
42
+ Eric Saubert,82,TE,6-5,248,30,7,Drake,Active,67214339-8a36-45b9-8b25-439d97b06703
43
+ Patrick Taylor Jr.,32,RB,6-2,217,26,4,Memphis,Active,4bf9f546-d80c-4cb4-8692-73d8ac68d1f1
44
+ Tre Tomlinson,,CB,5-9,177,25,2,TCU,Active,ad3e3f2e-ee06-4406-8874-ea1921c52328
45
+ Jake Tonges,88,TE,6-4,240,25,2,California,Active,ad391cbf-b874-4b1e-905b-2736f2b69332
46
+ Fred Warner,54,LB,6-3,230,28,7,Brigham Young,Active,cdd0eadc-19e2-4ca1-bba5-6846c9ac642b
47
+ Jon Weeks,46,LS,5-10,245,39,15,Baylor,Active,587c7609-ba56-4d22-b1e6-c12576c428fd
48
+ Brayden Willis,9,TE,6-4,240,25,2,Oklahoma,Active,d1b16c10-c5b3-4157-bd9d-7f289f17df81
49
+ Dee Winters,53,LB,5-11,227,24,2,TCU,Active,514f3569-5435-48bb-bc74-6b08d3d78ca9
50
+ Rock Ya-Sin,33,CB,5-11,195,28,6,Temple,Active,cb00e672-232a-4137-a259-f3cf0382d466
51
+ Isaac Yiadom,22,CB,6-1,232,29,7,Boston College,Active,3227c040-7d18-4803-b4b4-799667344a6d
52
+ Nick Zakelj,63,OL,6-6,316,25,3,Fordham,Active,59845c40-7efc-4514-9ed6-c29d983fba31
53
+ Player,#,Pos,HT,WT,Age,Exp,College,Reserve/Future,724825a5-7a0b-422d-946e-ce9512ad7add
54
+ Isaac Alarcon,67,OL,6-7,320,26,1,Tecnológico de Monterrey,Reserve/Future,262ea245-93dc-4c61-aa41-868bc4cc5dcf
55
+ Russell Gage,84,WR,6-0,184,29,7,LSU,Reserve/Future,1537733f-8218-4c45-9a0a-e00ff349a9d1
56
+ Isaiah Hodgins,87,WR,6-3,200,26,4,Oregon State,Reserve/Future,f4c2cec2-d0b4-45a9-ac1b-478ce1a32b2c
57
+ Quindell Johnson,,S,6-2,208,25,2,Memphis,Reserve/Future,7bee6f18-bd56-4920-a132-107c8af22bef
58
+ Jalen McKenzie,76,OT,6-5,315,25,1,USC,Reserve/Future,473d4c85-cc2c-4020-9381-c49a7236ad68
59
+ Brandon Aiyuk,11,WR,6-0,200,27,5,Arizona State,Reserve/Injured,577eb875-f886-400d-8b14-ec28a2cc5eae
60
+ Aaron Banks,65,OL,6-5,325,27,4,Notre Dame,Reserve/Injured,e665afb5-904a-4e86-a6da-1d859cc81f90
61
+ Ben Bartch,78,OL,6-6,315,26,5,St. John's (MN),Reserve/Injured,6a1545de-63fd-4c04-bc27-58ba334e7a91
62
+ Tre Brown,22,CB,5-10,185,27,4,Oklahoma,Reserve/Injured,839c425d-d9b0-4b60-8c68-80d14ae382f7
63
+ Spencer Burford,74,OL,6-4,300,24,3,Texas-San Antonio,Reserve/Injured,31da633a-a7f1-4ec4-a715-b04bb85e0b5f
64
+ Luke Gifford,57,LB,6-3,243,29,6,Nebraska,Reserve/Injured,069b6392-804b-4fcb-8654-d67afad1fd91
65
+ Kevin Givens,90,DL,6-1,285,28,5,Penn State,Reserve/Injured,a9f79e66-ff50-49eb-ae50-c442d23955fc
66
+ Darrell Luter Jr.,28,CB,6-0,190,24,2,South Alabama,Reserve/Injured,741c6fa0-0254-4f85-9066-6d46fcc1026e
67
+ Jordan Mason,24,RB,5-11,223,25,3,Georgia Tech,Reserve/Injured,89531f13-baf0-43d6-b9f4-42a95482753a
68
+ Christian McCaffrey,23,RB,5-11,210,28,8,Stanford,Reserve/Injured,052ec36c-e430-4698-9270-d925fe5bcaf4
69
+ Elijah Mitchell,25,RB,5-10,200,26,4,Louisiana,Reserve/Injured,7dfc6f25-07a8-4618-954b-b9dd96cee86e
70
+ Jaylon Moore,76,OL,6-4,311,27,4,Western Michigan,Reserve/Injured,c800d89e-031f-4180-b824-8fd307cf6d2b
71
+ George Odum,30,S,6-1,202,31,7,Central Arkansas,Reserve/Injured,26e72658-4503-47c4-ad74-628545e2402a
72
+ Curtis Robinson,36,LB,6-3,235,26,3,Stanford,Reserve/Injured,072a3483-b063-48fd-bc9c-5faa9b845425
73
+ Trent Williams,71,T,6-5,320,36,15,Oklahoma,Reserve/Injured,bb8b42ad-6042-40cd-b08c-2dc3a5cfc737
74
+ Mitch Wishnowsky,3,P,6-2,220,33,6,Utah,Reserve/Injured,fe86f2c6-8576-4e77-b1df-a3df995eccf8
data/niners_output/schedule.csv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Match Number,Round Number,Date,Location,HomeTeam,AwayTeam,Result,game_result,game_id
2
+ 1,1,10/09/2024 00:15,Levi's Stadium,San Francisco 49ers,New York Jets,32 - 19,Win,7d5492b7-6372-4ab6-b878-a6ad10936f3b
3
+ 28,2,15/09/2024 17:00,U.S. Bank Stadium,Minnesota Vikings,San Francisco 49ers,23 - 17,Loss,9c37ef4a-8887-4e16-a0e9-53dd21d0ed1c
4
+ 38,3,22/09/2024 20:25,SoFi Stadium,Los Angeles Rams,San Francisco 49ers,27 - 24,Loss,b8c3e7f7-81ed-48c4-9a49-0897cac450e5
5
+ 55,4,29/09/2024 20:05,Levi's Stadium,San Francisco 49ers,New England Patriots,30 - 13,Win,b4b49323-c84d-4414-bbd4-de399145db28
6
+ 70,5,06/10/2024 20:05,Levi's Stadium,San Francisco 49ers,Arizona Cardinals,23 - 24,Loss,efe67377-f218-4629-94d6-b0a28dae81b4
7
+ 92,6,11/10/2024 00:15,Lumen Field,Seattle Seahawks,San Francisco 49ers,24 - 36,Win,be924e35-6c00-470a-a82e-f77e89f2fca9
8
+ 96,7,20/10/2024 20:25,Levi's Stadium,San Francisco 49ers,Kansas City Chiefs,18 - 28,Loss,c0efcedb-e8a0-4058-8ae8-df418a829c22
9
+ 109,8,28/10/2024 00:20,Levi's Stadium,San Francisco 49ers,Dallas Cowboys,30 - 24,Win,9d3c8085-3864-4c86-9a47-6d91f9561e68
10
+ 149,10,10/11/2024 18:00,Raymond James Stadium,Tampa Bay Buccaneers,San Francisco 49ers,20 - 23,Win,8c117905-4d53-4bfb-a85e-d4d0a52262a8
11
+ 158,11,17/11/2024 21:05,Levi's Stadium,San Francisco 49ers,Seattle Seahawks,17 - 20,Loss,6ee0f83e-d738-43c7-95e2-472bdaa9c2e8
12
+ 169,12,24/11/2024 21:25,Lambeau Field,Green Bay Packers,San Francisco 49ers,38 - 10,Loss,89aeb6ec-c102-442f-a2b2-862a58f08c72
13
+ 181,13,02/12/2024 01:20,Highmark Stadium,Buffalo Bills,San Francisco 49ers,35 - 10,Loss,051a9bbd-41b1-4946-b366-2202b9b84646
14
+ 199,14,08/12/2024 21:25,Levi's Stadium,San Francisco 49ers,Chicago Bears,38 - 13,Win,2bfc3060-5975-4c60-8cf2-cd359c318bcb
15
+ 224,15,13/12/2024 01:15,Levi's Stadium,San Francisco 49ers,Los Angeles Rams,6 - 12,Loss,07182afe-36bf-44e4-a464-52a56e9e325d
16
+ 228,16,22/12/2024 21:25,Hard Rock Stadium,Miami Dolphins,San Francisco 49ers,29 - 17,Loss,0be9a14c-0017-46b8-96e8-7c446e78ea84
17
+ 246,17,31/12/2024 01:15,Levi's Stadium,San Francisco 49ers,Detroit Lions,34 - 40,Loss,a6af1ef1-eece-43c2-b98f-c20494003cfe
18
+ 257,18,05/01/2025 21:25,State Farm Stadium,Arizona Cardinals,San Francisco 49ers,47 - 24,Loss,2c95b37b-b32d-4b30-a582-f04b8cbf12e4
data/niners_output/schedule_with_result.csv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Match Number,Round Number,Date,Location,HomeTeam,AwayTeam,Result,game_result,game_id,Summary
2
+ 1,1,10/9/24 0:15,Levi's Stadium,San Francisco 49ers,New York Jets,32 - 19,Win,7d5492b7-6372-4ab6-b878-a6ad10936f3b,"Quarterback Brock Purdy threw for 231 yards, with running back Jordan Mason rushing for 147 yards."
3
+ 28,2,15/09/2024 17:00,U.S. Bank Stadium,Minnesota Vikings,San Francisco 49ers,23 - 17,Loss,9c37ef4a-8887-4e16-a0e9-53dd21d0ed1c,"Purdy passed for 319 yards; Mason added 100 rushing yards, but the 49ers fell short."
4
+ 38,3,22/09/2024 20:25,SoFi Stadium,Los Angeles Rams,San Francisco 49ers,27 - 24,Loss,b8c3e7f7-81ed-48c4-9a49-0897cac450e5,Purdy threw for 292 yards; Jauan Jennings had 175 receiving yards in a close loss.
5
+ 55,4,29/09/2024 20:05,Levi's Stadium,San Francisco 49ers,New England Patriots,30 - 13,Win,b4b49323-c84d-4414-bbd4-de399145db28,Brock Purdy threw for 288 yards and a touchdown; Fred Warner returned an interception for a touchdown.
6
+ 70,5,6/10/24 20:05,Levi's Stadium,San Francisco 49ers,Arizona Cardinals,23 - 24,Loss,efe67377-f218-4629-94d6-b0a28dae81b4,"Kyler Murray led a comeback, including a 50-yard touchdown run; Chad Ryland kicked the game-winning field goal."
7
+ 92,6,11/10/24 0:15,Lumen Field,Seattle Seahawks,San Francisco 49ers,24 - 36,Win,be924e35-6c00-470a-a82e-f77e89f2fca9,Geno Smith's late 13-yard touchdown run secured the Seahawks' victory.
8
+ 96,7,20/10/2024 20:25,Levi's Stadium,San Francisco 49ers,Kansas City Chiefs,18 - 28,Loss,c0efcedb-e8a0-4058-8ae8-df418a829c22,Specific game details are not available.
9
+ 109,8,28/10/2024 00:20,Levi's Stadium,San Francisco 49ers,Dallas Cowboys,30 - 24,Win,9d3c8085-3864-4c86-9a47-6d91f9561e68,Specific game details are not available.
10
+ 149,10,10/11/24 18:00,Raymond James Stadium,Tampa Bay Buccaneers,San Francisco 49ers,20 - 23,Win,8c117905-4d53-4bfb-a85e-d4d0a52262a8,"The 49ers narrowly avoided a collapse, with Jake Moody's game-winning field goal."
11
+ 158,11,17/11/2024 21:05,Levi's Stadium,San Francisco 49ers,Seattle Seahawks,17 - 20,Loss,6ee0f83e-d738-43c7-95e2-472bdaa9c2e8,Geno Smith's last-minute touchdown run ended the Seahawks' losing streak against the 49ers.
12
+ 169,12,24/11/2024 21:25,Lambeau Field,Green Bay Packers,San Francisco 49ers,38 - 10,Loss,89aeb6ec-c102-442f-a2b2-862a58f08c72,"Despite losing Deebo Samuel early, the 49ers secured a narrow victory."
13
+ 181,13,2/12/24 1:20,Highmark Stadium,Buffalo Bills,San Francisco 49ers,35 - 10,Loss,051a9bbd-41b1-4946-b366-2202b9b84646,"Josh Allen scored touchdowns passing, rushing, and receiving, leading the Bills to victory."
14
+ 199,14,8/12/24 21:25,Levi's Stadium,San Francisco 49ers,Chicago Bears,38 - 13,Win,2bfc3060-5975-4c60-8cf2-cd359c318bcb,Specific game details are not available.
15
+ 224,15,13/12/2024 01:15,Levi's Stadium,San Francisco 49ers,Los Angeles Rams,6 - 12,Loss,07182afe-36bf-44e4-a464-52a56e9e325d,"In a rainy defensive battle, the Rams secured victory with four field goals."
16
+ 228,16,22/12/2024 21:25,Hard Rock Stadium,Miami Dolphins,San Francisco 49ers,29 - 17,Loss,0be9a14c-0017-46b8-96e8-7c446e78ea84,A high-scoring game marked by a scuffle involving Jauan Jennings; the 49ers fell short.
17
+ 246,17,31/12/2024 01:15,Levi's Stadium,San Francisco 49ers,Detroit Lions,34 - 40,Loss,a6af1ef1-eece-43c2-b98f-c20494003cfe,Specific game details are not available.
18
+ 257,18,5/1/25 21:25,State Farm Stadium,Arizona Cardinals,San Francisco 49ers,47 - 24,Loss,2c95b37b-b32d-4b30-a582-f04b8cbf12e4,Specific game details are not available.
data/relationship_csvs/fan_community_rels.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/relationship_csvs/fan_player_rels.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/temp_unzipped/doc.kml ADDED
The diff for this file is too large to render. See raw diff
 
data/test_cases.txt ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ========================================
2
+ Test Cases for 2024–2025 49ers Graph
3
+ ========================================
4
+
5
+ Below are Cypher queries designed to test that the new data structure
6
+ (Player, Game, Community, Fan) is fully and correctly loaded.
7
+
8
+ --------------------------------------------------------------------------------
9
+ A) BASIC ENTITY EXPLORATION
10
+ --------------------------------------------------------------------------------
11
+
12
+ 1) COUNT ALL NODES
13
+ ------------------------------------------------------------
14
+ MATCH (n)
15
+ RETURN labels(n) AS nodeLabels, count(*) AS total
16
+
17
+ 2) LIST ALL PLAYERS
18
+ ------------------------------------------------------------
19
+ MATCH (p:Player)
20
+ RETURN p.name AS playerName, p.position AS position, p.jersey_number AS jerseyNumber
21
+ ORDER BY p.jersey_number
22
+
23
+ 3) LIST ALL GAMES
24
+ ------------------------------------------------------------
25
+ MATCH (g:Game)
26
+ RETURN g.date AS date, g.location AS location, g.home_team AS homeTeam, g.away_team AS awayTeam, g.result AS finalScore
27
+ ORDER BY g.date
28
+
29
+ 4) LIST ALL FAN COMMUNITIES
30
+ ------------------------------------------------------------
31
+ MATCH (c:Community)
32
+ RETURN c.fan_chapter_name AS chapterName, c.city AS city, c.state AS state, c.email_contact AS contactEmail
33
+ ORDER BY chapterName
34
+
35
+ 5) LIST ALL FANS
36
+ ------------------------------------------------------------
37
+ MATCH (f:Fan)
38
+ RETURN f.first_name AS firstName, f.last_name AS lastName, f.email AS email
39
+ LIMIT 20
40
+
41
+ --------------------------------------------------------------------------------
42
+ B) RELATIONSHIP & NETWORK ANALYSIS
43
+ --------------------------------------------------------------------------------
44
+
45
+ 1) MOST-FAVORITED PLAYERS
46
+ ------------------------------------------------------------
47
+ MATCH (f:Fan)-[:FAVORITE_PLAYER]->(p:Player)
48
+ RETURN p.name AS playerName, count(f) AS fanCount
49
+ ORDER BY fanCount DESC
50
+ LIMIT 5
51
+
52
+ 2) COMMUNITIES WITH MOST MEMBERS
53
+ ------------------------------------------------------------
54
+ MATCH (f:Fan)-[:MEMBER_OF]->(c:Community)
55
+ RETURN c.fan_chapter_name AS chapterName,
data/upload_embeddings.py ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import pandas as pd
3
+ from neo4j import GraphDatabase
4
+ from dotenv import load_dotenv
5
+ import numpy as np
6
+
7
+ # Load environment variables
8
+ load_dotenv()
9
+
10
+ # Neo4j connection details
11
+ NEO4J_URI = os.getenv('AURA_CONNECTION_URI')
12
+ NEO4J_USER = os.getenv('AURA_USERNAME')
13
+ NEO4J_PASS = os.getenv('AURA_PASSWORD')
14
+
15
+ if not all([NEO4J_URI, NEO4J_USER, NEO4J_PASS]):
16
+ raise ValueError("Missing required Neo4j credentials in .env file")
17
+
18
+ def restore_game_data_with_embeddings():
19
+ # Path to the CSV files
20
+ SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
21
+ game_data_file = os.path.join(SCRIPT_DIR, "niners_output/schedule_with_result.csv")
22
+ embeddings_file = os.path.join(SCRIPT_DIR, "niners_output/schedule_with_result_embedding.csv")
23
+
24
+ print(f"Reading game data from: {game_data_file}")
25
+ print(f"Reading embeddings from: {embeddings_file}")
26
+
27
+ # Read the CSV files
28
+ game_df = pd.read_csv(game_data_file)
29
+ embeddings_df = pd.read_csv(embeddings_file)
30
+
31
+ # Get the embedding columns (all columns starting with 'dim_')
32
+ embedding_cols = [col for col in embeddings_df.columns if col.startswith('dim_')]
33
+
34
+ # Merge the game data with embeddings on game_id
35
+ merged_df = pd.merge(game_df, embeddings_df, on='game_id', how='left')
36
+
37
+ print(f"Merged {len(game_df)} games with {len(embeddings_df)} embeddings")
38
+
39
+ # Connect to Neo4j
40
+ driver = GraphDatabase.driver(NEO4J_URI, auth=(NEO4J_USER, NEO4J_PASS))
41
+
42
+ def update_game_data(tx, game_id, game_data, embedding):
43
+ # First, create/update the game node with basic properties
44
+ tx.run("""
45
+ MERGE (g:Game {game_id: $game_id})
46
+ SET g.date = $date,
47
+ g.home_team = $home_team,
48
+ g.away_team = $away_team,
49
+ g.home_score = $home_score,
50
+ g.away_score = $away_score,
51
+ g.result = $result
52
+ """, game_id=game_id,
53
+ date=game_data['date'],
54
+ home_team=game_data['home_team'],
55
+ away_team=game_data['away_team'],
56
+ home_score=game_data['home_score'],
57
+ away_score=game_data['away_score'],
58
+ result=game_data['result'])
59
+
60
+ # Then set the vector embedding using the proper Neo4j vector operation
61
+ tx.run("""
62
+ MATCH (g:Game {game_id: $game_id})
63
+ CALL db.create.setNodeVectorProperty(g, 'gameEmbedding', $embedding)
64
+ YIELD node
65
+ RETURN node
66
+ """, game_id=game_id, embedding=embedding)
67
+
68
+ # Process each game and update Neo4j
69
+ with driver.session() as session:
70
+ for _, row in merged_df.iterrows():
71
+ # Convert embedding columns to list
72
+ embedding = row[embedding_cols].values.tolist()
73
+
74
+ # Create game data dictionary
75
+ game_data = {
76
+ 'date': row['date'],
77
+ 'home_team': row['home_team'],
78
+ 'away_team': row['away_team'],
79
+ 'home_score': row['home_score'],
80
+ 'away_score': row['away_score'],
81
+ 'result': row['result']
82
+ }
83
+
84
+ # Update the game data in Neo4j
85
+ session.execute_write(update_game_data, row['game_id'], game_data, embedding)
86
+
87
+ print("Finished updating game data in Neo4j")
88
+ driver.close()
89
+
90
+ if __name__ == "__main__":
91
+ restore_game_data_with_embeddings()
data/z_49ers_fan_chapters_DNU.csv ADDED
@@ -0,0 +1,797 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Stadium Name,Team,Address,City,State,Zip Code,Full Address
2
+ State Farm Stadium,Arizona Cardinals,1 Cardinals Dr.,Glendale,Arizona,85305,1 Cardinals Dr. Glendale Arizona 85305
3
+ Mercedes-Benz Stadium,Atlanta Falcons,1 AMB Drive NW,Atlanta,Georgia,30313,1 AMB Drive NW Atlanta Georgia 30313
4
+ M&T Bank Stadium,Baltimore Ravens, 1101 Russell St,Baltimore,Maryland,21230, 1101 Russell St Baltimore Maryland 21230
5
+ Highmark Stadium,Buffalo Bills,1 Bills Dr,Orchard Park,New York,14127,1 Bills Dr Orchard Park New York 14127
6
+ Bank of America Stadium,Carolina Panthers,800 S Mint St,Charlotte,North Carolina,28202,800 S Mint St Charlotte North Carolina 28202
7
+ Soldier Field,Chicago Bears,1410 Museum Campus Dr,Chicago,Illinois,60605,1410 Museum Campus Dr Chicago Illinois 60605
8
+ Paul Brown Stadium,Cincinnati Bengals,1 Paul Brown Stadium,Cincinnati,Ohio,45202,1 Paul Brown Stadium Cincinnati Ohio 45202
9
+ FirstEnergy Stadium,Cleveland Browns,100 Alfred Lerner Way,Cleveland,Ohio,44114,100 Alfred Lerner Way Cleveland Ohio 44114
10
+ AT&T Stadium,Dallas Cowboys,1 AT&T Way,Arlington,Texas,76011,1 AT&T Way Arlington Texas 76011
11
+ Empower Field at Mile High,Denver Broncos, 1701 Bryant St,Denver,Colorado,80204, 1701 Bryant St Denver Colorado 80204
12
+ Ford Field,Detroit Lions,2000 Brush St,Detroit,Michigan,48226,2000 Brush St Detroit Michigan 48226
13
+ Lambeau Field,Green Bay Packers,1265 Lombardi Ave,Green Bay,Wisconsin,54304,1265 Lombardi Ave Green Bay Wisconsin 54304
14
+ NRG Stadium,Houston Texans,NRG Pkwy,Houston,Texas,77054,NRG Pkwy Houston Texas 77054
15
+ Lucas Oil Stadium,Indianapolis Colts,500 S Capitol Ave,Indianapolis,Indiana,46225,500 S Capitol Ave Indianapolis Indiana 46225
16
+ EverBank Field,Jacksonville Jaguars,1 Everbank Field Dr,Jacksonville,Florida,32202,1 Everbank Field Dr Jacksonville Florida 32202
17
+ Arrowhead Stadium,Kansas City Chiefs,1 Arrowhead Dr,Kansas City,Missouri,64129,1 Arrowhead Dr Kansas City Missouri 64129
18
+ SoFi Stadium,Los Angeles Chargers & Los Angeles Rams ,1001 Stadium Dr,Inglewood,California,90301,1001 Stadium Dr Inglewood California 90301
19
+ Hard Rock Stadium,Miami Dolphins,347 Don Shula Dr,Miami Gardens,Florida,33056,347 Don Shula Dr Miami Gardens Florida 33056
20
+ U.S. Bank Stadium,Minnesota Vikings,401 Chicago Avenue,Minneapolis,Minnesota,55415,401 Chicago Avenue Minneapolis Minnesota 55415
21
+ Gillette Stadium,New England Patriots,1 Patriot Pl,Foxborough,Massachusetts,2035,1 Patriot Pl Foxborough Massachusetts 2035
22
+ Caesars Superdome,New Orleans Saints,1500 Sugar Bowl Dr,New Orleans,Louisiana,70112,1500 Sugar Bowl Dr New Orleans Louisiana 70112
23
+ MetLife Stadium,New York Giants & New York Jets ,1 MetLife Stadium D,East Rutherford,New Jersey,7073,1 MetLife Stadium D East Rutherford New Jersey 7073
24
+ Allegiant Stadium,Las Vegas Raiders,3333 Al Davis Way,Las Vegas,Nevada,89118,3333 Al Davis Way Las Vegas Nevada 89118
25
+ Lincoln Financial Field,Philadelphia Eagles,1 Lincoln Financial Field Way,Philadelphia,Pennsylvania,19148,1 Lincoln Financial Field Way Philadelphia Pennsylvania 19148
26
+ Heinz Field,Pittsburgh Steelers,100 Art Rooney Ave,Pittsburgh,Pennsylvania,15212,100 Art Rooney Ave Pittsburgh Pennsylvania 15212
27
+ Levi's Stadium,San Francisco 49ers,4900 Marie P DeBartolo Way ,Santa Clara,California,95054,4900 Marie P DeBartolo Way Santa Clara California 95054
28
+ Lumen Field,Seattle Seahawks,800 Occidental Ave,Seattle,Washington,98134,800 Occidental Ave Seattle Washington 98134
29
+ Raymond James Stadium,Tampa Bay Buccaneers,4201 N Dale Mabry Hwy,Tampa,Florida,33607,4201 N Dale Mabry Hwy Tampa Florida 33607
30
+ Nissan Stadium,Tennessee Titans,1 Titans Way,Nashville,Tennessee,37213,1 Titans Way Nashville Tennessee 37213
31
+ FedExField,Washington Comanders,1600 Fedex Way,Landover,Maryland,20785,1600 Fedex Way Landover Maryland 20785
32
+ ,,,Aguascalientes,,,
33
+ ,,,"Celaya, GTO",,,
34
+ ,,,Chiapas,,,
35
+ ,,,Chihuahua,,,
36
+ ,,,Chihuahua,,,
37
+ ,,,"Ciudad de Mexico, Mexico",,,
38
+ ,,,Durango,,,
39
+ ,,,Estado de Mexico,,,
40
+ ,,,"Guadalajara, Jalisco",,,
41
+ ,,,"Guadalajara, Jalisco",,,
42
+ ,,,Juarez,,,
43
+ ,,,Merida,,,
44
+ ,,,Mexicali,,,
45
+ ,,,Monterrey,,,
46
+ ,,,Puebla,,,
47
+ ,,,Saltillo,,,
48
+ ,,,San Luis Potosi,,,
49
+ ,,,Tijuana,,,
50
+ ,,,Toluca,,,
51
+ ,,,Veracruz,,,
52
+ ,,,Bad Vigaun,,,
53
+ ,,,Nousseviller Saint Nabor,,,
54
+ ,,,Ismaning,,,
55
+ ,,,Hamburg,,,
56
+ ,,,Cologne State: NRW,,,
57
+ ,,,Berlin,,,
58
+ ,,,Bornhöved,,,
59
+ ,,,Ampfing,,,
60
+ ,,,Duesseldorf,,,
61
+ ,,,Cologne,,,
62
+ ,,,Dublin 13,,,
63
+ ,,,Fiorano Modenese,,,
64
+ ,,,Madrid,,,
65
+ ,,,Sao Paulo,,,
66
+ ,,,"Campo Limpo, Sao Paulo",,,
67
+ ,,,"Sao Bernardo do Campo, Sao Paulo",,,
68
+ ,,,"Vancouver, BC",,,
69
+ ,,,"Bolton, Ontario",,,
70
+ ,,,Auckland,,,
71
+ ,,,Nuku'alofa,,,
72
+ ,,,Greater Manchester,,,
73
+ ,,,Newcastle,,,
74
+ ,,,London,,,
75
+ ,,,Manchester,,,
76
+ ,,,Charleston,SC,,
77
+ ,,,Chico,Ca,,
78
+ ,,,Aurora,CO,,
79
+ ,,,bell,ca,,
80
+ ,,,Danville,VA,,
81
+ ,,,Gilbert,AZ,,
82
+ ,,,Evansville,IN,,
83
+ ,,,Vacaville,CA,,
84
+ ,,,Hesperia,California,,
85
+ ,,,Cool,CA,,
86
+ ,,,Hermosa Beach,CA,,
87
+ ,,,Aurora,Co,,
88
+ ,,,Vancouver,Wa,,
89
+ ,,,Harlingen,TX,,
90
+ ,,,Hollywood,CA,,
91
+ ,,,Frisco,TX,,
92
+ ,,,San Diego,California,,
93
+ ,,,City of Industry,California,,
94
+ ,,,Redwood City,CA,,
95
+ ,,,Oxnard,CA,,
96
+ ,,,Lake Elsinore,California,,
97
+ ,,,Gilbert,Az,,
98
+ ,,,Forestville,Ca,,
99
+ ,,,wylie,texas,,
100
+ ,,,Novato,CA,,
101
+ ,,,Modesto,ca,,
102
+ ,,,Larksville,PA,,
103
+ ,,,Portland,Or,,
104
+ ,,,Morgan Hill,CA,,
105
+ ,,,Erie,PA,,
106
+ ,,,Yuma,AZ,,
107
+ ,,,Fremont,california,,
108
+ ,,,Orlando,FL,,
109
+ ,,,517 E Gore Blvd,OK,,
110
+ ,,,Alameda,CA,,
111
+ ,,,Gilroy,CA,,
112
+ ,,,Merced,CA,,
113
+ ,,,Buena park,CA,,
114
+ ,,,Milpitas,CA,,
115
+ ,,,san francisco,California,,
116
+ ,,,Denver,Co,,
117
+ ,,,Tlalnepantla de Baz,CA,,
118
+ ,,,Modesto,CA,,
119
+ ,,,Auburn,Wa,,
120
+ ,,,Phoenix,AZ,,
121
+ ,,,Montclair,California,,
122
+ ,,,Woodbridge,va,,
123
+ ,,,Hemet,CA,,
124
+ ,,,Arlington,TX,,
125
+ ,,,Los Angeles,CA,,
126
+ ,,,San Pablo,Ca,,
127
+ ,,,Oakley,Ca,,
128
+ ,,,Mechanicsville,Va,,
129
+ ,,,Billings,MT,,
130
+ ,,,Waipahu,HI,,
131
+ ,,,Porterville,Ca,,
132
+ ,,,CHICOPEE,MA,,
133
+ ,,,Norfolk,VA,,
134
+ ,,,Visalia,Ca,,
135
+ ,,,Ewing Twp,NJ,,
136
+ ,,,Houston,TX,,
137
+ ,,,Honolulu,HI,,
138
+ ,,,Murrieta,CA,,
139
+ ,,,Sacramento,CA,,
140
+ ,,,Huntington Beach,CA,,
141
+ ,,,Saltillo,TX,,
142
+ ,,,Memphis,TN,,
143
+ ,,,KEYES,CA,,
144
+ ,,,Manteca,Ca,,
145
+ ,,,Las Vegas,NV,,
146
+ ,,,Washington,DC,,
147
+ ,,,Roseville,CA,,
148
+ ,,,Bakersfield,Ca,,
149
+ ,,,Salinas,CA,,
150
+ ,,,Salinas,CA,,
151
+ ,,,Houston,TX,,
152
+ ,,,Mountain View,CA,,
153
+ ,,,Corpus Christi,TX,,
154
+ ,,,Dade City,Florida,,
155
+ ,,,Chico,CA,,
156
+ ,,,Chicago,IL,,
157
+ ,,,Sacramento,CA,,
158
+ ,,,Colorado Springs,Co.,,
159
+ ,,,Greensboro,NC,,
160
+ ,,,Redmond,OR,,
161
+ ,,,Carson,CA,,
162
+ ,,,Mattoon,Illinois,,
163
+ ,,,Star,ID,,
164
+ ,,,stamford,ct,,
165
+ ,,,Miami,FL,,
166
+ ,,,San Francisco,CA,,
167
+ ,,,Oxnard,CA,,
168
+ ,,,Arlington,TX,,
169
+ ,,,Albuquerque,NM,,
170
+ ,,,Honolulu,Hawaii,,
171
+ ,,,Jonesboro,AR,,
172
+ ,,,Marietta,ga,,
173
+ ,,,San Diego,CA,,
174
+ ,,,Maricopa,AZ,,
175
+ ,,,Syracuse,NY,,
176
+ ,,,Ventura,CA,,
177
+ ,,,Fredericksburg,VA,,
178
+ ,,,tampa,fl,,
179
+ ,,,Rochester,New York,,
180
+ ,,,Waco,TX,,
181
+ ,,,Brentwood,CA,,
182
+ ,,,Lancaster,PA,,
183
+ ,,,El Paso,Tx,,
184
+ ,,,West Sacramento,CA,,
185
+ ,,,Los Angeles,CA,,
186
+ ,,,Denver,CO,,
187
+ ,,,Frisco,TX,,
188
+ ,,,Fairfield,CA,,
189
+ ,,,Redding,CA,,
190
+ ,,,Fremont,CA,,
191
+ ,,,Fargo,ND,,
192
+ ,,,Redding,CA,,
193
+ ,,,Summerville,South Carolina,,
194
+ ,,,Port St Johns,FL,,
195
+ ,,,San Bernardino,CA,,
196
+ ,,,REDLANDS,CALIFORNIA,,
197
+ ,,,Bakersfield,Ca,,
198
+ ,,,Los Angeles,ca,,
199
+ ,,,Troy,OH,,
200
+ ,,,San Bernardino,California,,
201
+ ,,,Elk Grove,CA,,
202
+ ,,,Hacienda heights,CA,,
203
+ ,,,Homestead,Fl,,
204
+ ,,,Chandler,AZ,,
205
+ ,,,EDINBURG,TX,,
206
+ ,,,Manhattan,KS,,
207
+ ,,,Buena park,CA,,
208
+ ,,,Bedford,TX,,
209
+ ,,,Hilmar,Ca,,
210
+ ,,,Bridgeport,WV,,
211
+ ,,,Carbondale,IL,,
212
+ ,,,HONOLULU,HI,,
213
+ ,,,Honolulu,HI,,
214
+ ,,,Houston,Tx,,
215
+ ,,,Hattiesburg,Mississippi,,
216
+ ,,,Duluth,GA,,
217
+ ,,,Yonkers,New York,,
218
+ ,,,Salinas,Ca,,
219
+ ,,,Clackamas,Oregon,,
220
+ ,,,Nassau Bay,TX,,
221
+ ,,,Brisbane,Ca,,
222
+ ,,,Boston,MA,,
223
+ ,,,Boston,MA,,
224
+ ,,,Riverside,California,,
225
+ ,,,Monroe,La.,,
226
+ ,,,Austin,TX,,
227
+ ,,,San Antonio,TX,,
228
+ ,,,Spokane,WA,,
229
+ ,,,Newport Beach,CA,,
230
+ ,,,Henderson,NV,,
231
+ ,,,Turlock,CA,,
232
+ ,,,San Jose,CA,,
233
+ ,,,merced,ca,,
234
+ ,,,Brawley,CA,,
235
+ ,,,TOOELE,UT,,
236
+ ,,,Wichita,KS,,
237
+ ,,,Hickory,NC,,
238
+ ,,,Chicago,IL,,
239
+ ,,,Vancouver,WA,,
240
+ ,,,Hampton,VA,,
241
+ ,,,Newport,KY,,
242
+ ,,,Oklahoma City,Oklahoma,,
243
+ ,,,Wine country,CA,,
244
+ ,,,Memphis,Tennessee,,
245
+ ,,,North Charleston,SC,,
246
+ ,,,Tampa,FL,,
247
+ ,,,Palm Springs,CA,,
248
+ ,,,Anchorage,AK,,
249
+ ,,,Surprise,Az,,
250
+ ,,,Bloomington,CA,,
251
+ ,,,McAllen,TX,,
252
+ ,,,West Sacramento,CA,,
253
+ ,,,Industry,CA,,
254
+ ,,,Hayward,Ca,,
255
+ ,,,Chariton,Iowa,,
256
+ ,,,Fresno,CA,,
257
+ ,,,East Hartford,Connecticut,,
258
+ ,,,Houston,Texas,,
259
+ ,,,Houston,Texas,,
260
+ ,,,Industry,CA,,
261
+ ,,,porterville,CA,,
262
+ ,,,Billings,MT,,
263
+ ,,,Memphis,Tn,,
264
+ ,,,Tulsa,OK,,
265
+ ,,,Oklahoma City,OK,,
266
+ ,,,Brawley,Ca,,
267
+ ,,,Gilbert,AZ,,
268
+ ,,,Lacey,WA,,
269
+ ,,,Mechanicsville,Virginia,,
270
+ ,,,Tampa,FL,,
271
+ ,,,Missoula,MT,,
272
+ ,,,Corpus Christi,Texas,,
273
+ ,,,Delano,ca,,
274
+ ,,,Nashville,TN,,
275
+ ,,,New York,New York,,
276
+ ,,,hesperia,California,,
277
+ ,,,Denver,Colorado,,
278
+ ,,,Windsor,CO,,
279
+ ,,,Wauwatosa,WI,,
280
+ ,,,san angelo,tx,,
281
+ ,,,Devol,OK,,
282
+ ,,,Xenia,Ohio,,
283
+ ,,,Cheyenne,WY,,
284
+ ,,,Apple Valley,CA,,
285
+ ,,,Socorro,TX,,
286
+ ,,,Albuquerque,N.M.,,
287
+ ,,,Casa grande,Arizona(AZ),,
288
+ ,,,Albuquerque,New Mexico,,
289
+ ,,,Long Beach,Ca,,
290
+ ,,,Charlotte,North Carolina,,
291
+ ,,,Saint Paul,MN,,
292
+ ,,,Jackson,Ms.,,
293
+ ,,,Pleasant Hill,California,,
294
+ ,,,mesa,az,,
295
+ ,,,San Antonio,TX,,
296
+ ,,,Jonesboro,AR,,
297
+ ,,,Raleigh,North Carolina,,
298
+ ,,,Greensboro,NC,,
299
+ ,,,Hanford,CA,,
300
+ ,,,Rio Rancho,NM,,
301
+ ,,,San Jose,CA,,
302
+ ,,,moreno valley,ca,,
303
+ ,,,San Antonio,Texas,,
304
+ ,,,Tucson,AZ,,
305
+ ,,,Glendale,Arizona,,
306
+ ,,,el paso,tx,,
307
+ ,,,Henderson,Nevada,,
308
+ ,,,Salem,OR,,
309
+ ,,,San Antonio,Texas,,
310
+ ,,,Medford,OR,,
311
+ ,,,Toledo,Ohio,,
312
+ ,,,Las Vegas,NV,,
313
+ ,,,las vegas,NV,,
314
+ ,,,Brawley,CA,,
315
+ ,,,La Quinta,CA,,
316
+ ,,,Santa Clara,CA,,
317
+ ,,,Chicago,IL,,
318
+ ,,,Jersey City,New Jersey,,
319
+ ,,,Bayonne,NJ,,
320
+ ,,,Coeur d'Alene,ID,,
321
+ ,,,Ellensburg,WA,,
322
+ ,,,Herndon,VA,,
323
+ ,,,Austin,Texas,,
324
+ ,,,new york,ny,,
325
+ ,,,Madera,CA,,
326
+ ,,,Austin,TX,,
327
+ ,,,MORENO VALLEY,CA,,
328
+ ,,,Chicopee,MA,,
329
+ ,,,Portland,OR,,
330
+ ,,,dansville,NY,,
331
+ ,,,PORTERVILLE,CA,,
332
+ ,,,Solana Beach,CA,,
333
+ ,,,Culver City,CA,,
334
+ ,,,Casa grande,Arizona(AZ),,
335
+ ,,,Prescott,AZ,,
336
+ ,,,Honolulu,Hawaii,,
337
+ ,,,Portland,OR,,
338
+ ,,,Antioch,Ca,,
339
+ ,,,Pleasanton,California,,
340
+ ,,,New York,New York,,
341
+ ,,,Yakima,Wa,,
342
+ ,,,Aurora,CO,,
343
+ ,,,Gardena,Ca,,
344
+ ,,,Downey,CA,,
345
+ ,,,EastHartford,CO,,
346
+ ,,,Sandy Springs,GA,,
347
+ ,,,Reno,Nv,,
348
+ ,,,South San Francisco,Ca,,
349
+ ,,,Colma,CA,,
350
+ ,,,Winchester,CA,,
351
+ ,,,Riverside,California,,
352
+ ,,,Ankeny,IA,,
353
+ ,,,Nashville,TN,,
354
+ ,,,Leavenworth,KS,,
355
+ ,,,Fair Oaks,Ca,,
356
+ ,,,Baton Rouge,LA,,
357
+ ,,,Visalia,Ca,,
358
+ ,,,Greeley,co,,
359
+ ,,,Cupertino,California,,
360
+ ,,,San Diego,CA,,
361
+ ,,,Apache Junction,AZ,,
362
+ ,,,Windsor,CA,,
363
+ ,,,Canfield,OH,,
364
+ ,,,Everett,WA,,
365
+ ,,,Durham,North Carolina,,
366
+ ,,,Boynton Beach,Florida,,
367
+ ,,,Red Bluff,CA,,
368
+ ,,,Finley,Washington,,
369
+ ,,,Lake Elsinore,CA,,
370
+ ,,,Barnegat,NJ,,
371
+ ,,,Santa Fe,New Mexico,,
372
+ ,,,Maricopa,AZ,,
373
+ ,,,Davie,FL,,
374
+ ,,,Lubbock,Texas,,
375
+ ,,,Honolulu,HI,,
376
+ ,,,Portland,OR,,
377
+ ,,,Oakland Park,FL,,
378
+ ,,,Tracy,Ca,,
379
+ ,,,medford,or,,
380
+ ,,,Cameron park,CA,,
381
+ ,,,piqua,OH,,
382
+ ,,,Oceanside,ca,,
383
+ ,,,Trenton,New Jersey,,
384
+ ,,,Concord,NH,,
385
+ ,,,Fontana,Ca,,
386
+ ,,,Arcadia,CA,,
387
+ ,,,Fresno,California,,
388
+ ,,,Eugene,OR,,
389
+ ,,,Linden,NJ,,
390
+ ,,,Rochester,NY,,
391
+ ,,,Moreno Vallay,CA,,
392
+ ,,,Oklahoma city,OK,,
393
+ ,,,napa,California,,
394
+ ,,,Star,ID,,
395
+ ,,,Newport news,VA,,
396
+ ,,,Salem,OR,,
397
+ ,,,Bell,Ca,,
398
+ ,,,Bossier City,LA,,
399
+ ,,,Pembroke pines,Florida,,
400
+ ,,,Salt Lake City,UT,,
401
+ ,,,Phoenix,AZ,,
402
+ ,,,Carson,CA,,
403
+ ,,,Addison,Texas,,
404
+ ,,,Vancouver,Wa,,
405
+ ,,,Woodland,CA,,
406
+ ,,,Cicero,New York,,
407
+ ,,,Durango,CO,,
408
+ ,,,Gilbert,AZ,,
409
+ ,,,Guadalajara,TX,,
410
+ ,,,Charleston,WV,,
411
+ ,,,Saddle Brook,NJ,,
412
+ ,,,Sunnyvale,CA,,
413
+ ,,,Indianapolis,IN,,
414
+ 49ers Aguascalientes,,,Aguascalientes,,,"Aguascalientes Mexico Vikingo Bar Av de la Convención de 1914 Sur 312-A, Las Américas, 20230 Aguascalientes, Ags., Mexico"
415
+ Bajio Faithful,,,"Celaya, GTO",,,"Celaya, GTO Mexico California Prime Rib Restaurant Av. Constituyentes 1000 A, 3 Guerras, 38080 Celaya, Gto., Mexico"
416
+ Niner Empire Chiapas,,,Chiapas,,,"Chiapas Mexico Alitas Tuxtla Blvd. Belisario Dominguez 1861 Loc K1 Tuxtl Fracc, Bugambilias, 29060 Tuxtla Gutiérrez, Chis., Mexico"
417
+ 49ers Faithful Chihuahua Oficial,,,Chihuahua,,,"Chihuahua Mexico El Coliseo Karaoke Sports Bar C. Jose Maria Morelos 111, Zona Centro, 31000 Chihuahua, Chih., Mexico"
418
+ Gold Rush Chihuahua Spartans,,,Chihuahua,,,"Chihuahua Mexico 34 Billiards & Drinks Av. Tecnológico 4903, Las Granjas 31100"
419
+ Club 49ers Mexico,,,"Ciudad de Mexico, Mexico",,,"Ciudad de Mexico, Mexico Mexico Bar 49 16 Septiembre #27 Colonia Centro Historico Ciudad de Mexico"
420
+ Club 49ers Durango Oficial,,,Durango,,,"Durango Mexico Restaurante Buffalucas Constitución C. Constitución 107B, Zona Centro, 34000 Durango, Dgo., Mexico"
421
+ Niner Empire Edo Mex,,,Estado de Mexico,,,"Estado de Mexico Mexico Beer Garden Satélite Cto. Circunvalación Ote. 10-L-4, Cd. Satélite, 53100 Naucalpan de Juárez, Méx., Mexico"
422
+ Club 49ers Jalisco,,,"Guadalajara, Jalisco",,,"Guadalajara, Jalisco Mexico Restaurante Modo Avión Zapopan Calzada Nte 14, Granja, 45010 Zapopan, Jal., Mexico"
423
+ Niner Empire Jalisco,,,"Guadalajara, Jalisco",,,"Guadalajara, Jalisco Mexico SkyGames Sports Bar Av. Vallarta 874 entre Camarena y, C. Escorza, Centro, 44100 Guadalajara, Jal., Mexico"
424
+ Niner Empire Juarez Oficial,,,Juarez,,,"Juarez Mexico Sport Bar Silver Fox Av. Paseo Triunfo de la República 430, Las Fuentes, 32530 Juárez, Chih., Mexico"
425
+ 49ers Merida Oficial,,,Merida,,,"Merida Mexico Taproom Mastache Av. Cámara de Comercio 263, San Ramón Nte, 97117 Mérida, Yuc., Mexico"
426
+ Niner Empire Mexicali,,,Mexicali,,,"Mexicali Mexico La Gambeta Terraza Sports Bar Calz. Cuauhtémoc 328, Aviación, 21230 Mexicali, B.C., Mexico"
427
+ 49ers Monterrey Oficial,,,Monterrey,,,"Monterrey Mexico Buffalo Wild Wings Insurgentes Av Insurgentes 3961, Sin Nombre de Col 31, 64620 Monterrey, N.L., Mexico"
428
+ Club 49ers Puebla,,,Puebla,,,"Puebla Mexico Bar John Barrigón Av. Juárez 2925, La Paz, 72160 Heroica Puebla de Zaragoza, Pue., Mexico"
429
+ Niners Empire Saltillo,,,Saltillo,,,"Saltillo Mexico Cervecería La Huérfana Blvd. Venustiano Carranza 7046-Int 9, Los Rodríguez, 25200 Saltillo, Coah., Mexico"
430
+ San Luis Potosi Oficial,,,San Luis Potosi,,,"San Luis Potosi Mexico Bar VIC Av Nereo Rodríguez Barragán 1399, Fuentes del Bosque, 78220 San Luis Potosí, S.L.P., Mexico"
431
+ 49ers Tijuana Fans Oficial,,,Tijuana,,,"Tijuana Mexico Titan Sports Bar J. Gorostiza 1209, Zona Urbana Rio Tijuana, 22320 Tijuana, B.C., Mexico"
432
+ 49ers Club Toluca Oficial,,,Toluca,,,"Toluca Mexico Revel Wings Carranza Calle Gral. Venustiano Carranza 20 Pte. 905, Residencial Colón y Col Ciprés, 50120 Toluca de Lerdo, Méx., Mexico"
433
+ Cluib de Fans 49ers Veracruz,,,Veracruz,,,"Veracruz Mexico Wings Army del Urban Center C. Lázaro Cárdenas 102, Rafael Lucio, 91110 Xalapa-Enríquez, Ver., Mexico"
434
+ 49ersFanZone.net,,,Bad Vigaun,,,Bad Vigaun Austria Neuwirtsweg 315
435
+ The Niner Empire France,,,Nousseviller Saint Nabor,,,Nousseviller Saint Nabor France 4 voie romaine 4 voie romaine
436
+ Niner Empire Germany-Bavaria Chapter,,,Ismaning,,,Ismaning Germany 49er's Sports & Partybar Muenchener Strasse 79
437
+ 4T9 Mob Germany Family,,,Hamburg,,,Hamburg Germany Jolly Roger Budapester Str. 44
438
+ 49 Niner Empire,,,Cologne State: NRW,,,Cologne State: NRW Germany Joe Camps Sports Bar Joe Champs
439
+ The Niner Empire Germany Berlin Chapter,,,Berlin,,,Berlin Germany Sportsbar Tor133 Torstrasse 133
440
+ ,,,Bornhöved,,,Bornhöved Germany Comeback Bar Mühlenstraße 11
441
+ 49ers Fans Bavaria,,,Ampfing,,,Ampfing Germany Holzheim 1a/Ampfing Holzheim 1a
442
+ The Niner Empire Germany - North Rhine-Westphalia Chapter,,,Duesseldorf,,,Duesseldorf Germany Knoten Kurze Strasse 1A
443
+ Niner Empire Germany-NRW Chapter,,,Cologne,,,Cologne Germany Joe Champs Sportsbar Cologne Hohenzollernring 1 -3
444
+ The Irish Faithful,,,Dublin 13,,,Dublin 13 Ireland Busker On The Ball 13 - 17 Fleet Street
445
+ 49ers Italian Fan Club,,,Fiorano Modenese,,,"Fiorano Modenese Italy The Beer Corner Via Roma, 2/A"
446
+ Mineros Spanish Faithful,,,Madrid,,,Madrid Spain Penalti Lounge Bar Avenida Reina 15
447
+ Equipe Sports SF,,,Sao Paulo,,,"Sao Paulo Brazil Website, Podcast, Facebook Page, Twitter Rua Hitoshi Ishibashi, 11 B"
448
+ 49ers Brasil,,,"Campo Limpo, Sao Paulo",,,"Campo Limpo, Sao Paulo Brazil Bars and Restaurants in São Paulo - SP"
449
+ San Francisco 49ers Brasil,,,"Sao Bernardo do Campo, Sao Paulo",,,"Sao Bernardo do Campo, Sao Paulo Brazil Multiple locations around south and southeast states of Brazil"
450
+ "Niner Empire --Vanouver,BC Chapter",,,"Vancouver, BC",,,"Vancouver, BC Canada The Sharks Club--Langley, BC 20169 88 Avenue"
451
+ True North Niners,,,"Bolton, Ontario",,,"Bolton, Ontario Canada Maguire's Pub 284 Queen st E"
452
+ Faithful Panama,,,,,,Panama 5inco Panama 8530 NW 72ND ST
453
+ Niner Empire New Zealand,,,Auckland,,,Auckland New Zealand The Kingslander 470 New North Road
454
+ 49er Fans-Tonga,,,Nuku'alofa,,,Nuku'alofa Tonga Tali'eva Bar 14 Taufa'ahau Rd
455
+ 49ers Faithful UK,,,Greater Manchester,,,Greater Manchester United Kingdom the green Ducie street Manchester Greater Manchester Lancashire m1 United Kingdom
456
+ 49er Faithful UK,,,Newcastle,,,Newcastle United Kingdom Grosvenor Casino 100 St James' Blvd Newcastle Tyne & Wear CA 95054 United Kingdom
457
+ 49ers of United Kingdom,,,London,,,London United Kingdom The Sports Cafe 80 Haymarket London SW1Y 4TE United Kingdom
458
+ Niner Empire UK,,,Manchester,,,"Manchester United Kingdom The Green Bridge House 26 Ducie Street, Manchester, Manchester M1 2dq United Kingdom"
459
+ "San Francisco 49er Fans of Charleston, SC",,,Charleston,SC,,Charleston SC United States Recovery Room Tavern 685 King St
460
+ 530 Empire,,,Chico,Ca,,Chico Ca United States Nash's 1717 Esplanade
461
+ 303 Denver Chapter Niner Empire,,,Aurora,CO,,Aurora CO United States Moes Bbq 2727 s Parker rd
462
+ 40NINERS L.A. CHAPTER,,,bell,ca,,bell ca United States KRAZY WINGS SPORTS & GRILL 7016 ATLANTIC AVE
463
+ 434 Virginia Niner Empire,,,Danville,VA,,Danville VA United States Kickbacks Jacks 140 Crown Dr
464
+ 480 Gilbert Niner Empire LLC,,,Gilbert,AZ,,Gilbert AZ United States The Brass Tap 313 n Gilbert rd
465
+ Midwest Empire,,,Evansville,IN,,Evansville IN United States Hooters (Evansville) 2112 Bremmerton Dr
466
+ 49er Booster Club of Vacaville,,,Vacaville,CA,,Vacaville CA United States Blondies Bar and Grill 555 Main Street
467
+ 49er Empire High Desert,,,Hesperia,California,,Hesperia California United States Whiskey Barrel 12055 Mariposa Rd.
468
+ Cool 49er Booster Club,,,Cool,CA,,Cool CA United States The Cool Beerworks 5020 Ellinghouse Dr Suite H
469
+ 49ersBeachCitiesSoCal,,,Hermosa Beach,CA,,Hermosa Beach CA United States American Junkie Sky Light Bar American Junkie
470
+ 49ers Denver Empire,,,Aurora,Co,,Aurora Co United States Moe's Original BBQ Aurora 2727 S Parker Rd
471
+ 49ers Forever Faithfuls,,,Vancouver,Wa,,"Vancouver Wa United States Hooligan's sports bar and grill 8220 NE Vancouver Plaza Dr, Vancouver, WA 98662"
472
+ South Texas 49ers Chapter,,,Harlingen,TX,,Harlingen TX United States Wing barn 412 sunny side ln
473
+ 49ers Los Angeles,,,Hollywood,CA,,Hollywood CA United States Dave & Buster's Hollywood 6801 Hollywood Blvd.
474
+ 49ers United Of Frisco TX,,,Frisco,TX,,Frisco TX United States The Frisco Bar and Grill 6750 Gaylord Pkwy
475
+ 619ers San Diego Niner Empire,,,San Diego,California,,San Diego California United States Bridges Bar & Grill 4800 Art Street
476
+ 626 FAITHFUL'S,,,City of Industry,California,,City of Industry California United States Hacienda Heights Pizza Co. 15239 E Gale Ave
477
+ Niner Empire 650 Chapter,,,Redwood City,CA,,Redwood City CA United States 5th Quarter 976 Woodside Rd
478
+ 714 Niner Empire,,,Oxnard,CA,,"Oxnard CA United States Bottoms Up Tavern, 2162 West Lincoln Ave, Anaheim CA 92801 3206 Lisbon Lane"
479
+ 9er Elite Niner Empire,,,Lake Elsinore,California,,Lake Elsinore California United States Pin 'n' Pockets 32250 Mission Trail
480
+ Az 49er Faithful,,,Gilbert,Az,,Gilbert Az United States Fox and Hound! 1017 E Baseline Rd
481
+ Niners Winers,,,Forestville,Ca,,Forestville Ca United States Bars and wineries in sonoma and napa counties River road
482
+ a_49er fan,,,wylie,texas,,wylie texas United States Wylie 922 cedar creek dr.
483
+ Niner Empire Marin,,,Novato,CA,,Novato CA United States Moylan's Brewery & Restaurant 15 Rowland Way
484
+ 4T9 Mob,,,Modesto,ca,,Modesto ca United States Jack's pizza cafe 2001 Mchenry ave
485
+ North Eastern Pennsyvania chapter,,,Larksville,PA,,Larksville PA United States Zlo joes sports bar 234 Nesbitt St
486
+ PDX Frisco Fanatics,,,Portland,Or,,Portland Or United States Suki's bar and Grill 2401 sw 4th ave
487
+ The 101 Niner Empire,,,Morgan Hill,CA,,Morgan Hill CA United States Huntington Station restaurant and sports pub Huntington Station restaurant and sports pub
488
+ Faithful Tri-State Empire,,,Erie,PA,,Erie PA United States Buffalo Wild Wings 2099 Interchange Rd
489
+ YUMA Faithfuls,,,Yuma,AZ,,Yuma AZ United States Hooters 1519 S Yuma Palms Pkwy
490
+ 49ER EMPIRE SF Bay Area Core Chapter,,,Fremont,california,,Fremont california United States Jack's Brewery 39176 Argonaut Way
491
+ Niner Empire Orlando Chapter,,,Orlando,FL,,Orlando FL United States Underground Public House 19 S Orange Ave
492
+ Niner Artillery Empire,,,517 E Gore Blvd,OK,,517 E Gore Blvd OK United States Sweet Play/ Mike's Sports Grill 2610 Sw Lee Blvd Suite 3 / 517 E Gore Blvd
493
+ 510 Empire,,,Alameda,CA,,Alameda CA United States McGee's Bar and Grill 1645 Park ST
494
+ Garlic City Faithful,,,Gilroy,CA,,Gilroy CA United States Straw Hat Pizza 1053 1st Street
495
+ Faithful to the Bay,,,Merced,CA,,Merced CA United States Home Mountain mikes pizza
496
+ O.C. NINER EMPIRE FAITHFUL'S,,,Buena park,CA,,Buena park CA United States Ciro's pizza 6969 la Palma Ave
497
+ 408 Faithfuls,,,Milpitas,CA,,Milpitas CA United States Big Al's Silicon Valley 27 Ranch Drive
498
+ 415 chapter,,,san francisco,California,,san francisco California United States 49er Faithful house 2090 Bryant street
499
+ HairWorks,,,Denver,Co,,Denver Co United States Hair Works 2201 Lafayette at
500
+ 49ers Room The Next Generation Of Faithfuls,,,Tlalnepantla de Baz,CA,,Tlalnepantla de Baz CA United States Buffalo Wild Wings Mindo E Blvd. Manuel Avila Camacho 1007
501
+ Niner Empire 209 Modesto Chapter,,,Modesto,CA,,Modesto CA United States Rivets American Grill 2307 Oakdale Rd
502
+ Lady Niners of Washington,,,Auburn,Wa,,Auburn Wa United States Sports Page 2802 Auburn Way N
503
+ AZ 49ER EMPIRE,,,Phoenix,AZ,,Phoenix AZ United States The Native New Yorker (Ahwatukee) 5030 E Ray Rd.
504
+ The Bulls Eye Bar 49ers,,,Montclair,California,,Montclair California United States Black Angus Montclair California 9415 Monte Vista Ave.
505
+ NoVa Tru9er Empire,,,Woodbridge,va,,Woodbridge va United States Morgan's sports bar & lounge 3081 galansky blvd
506
+ Niner Empire 951 Faithfuls,,,Hemet,CA,,"Hemet CA United States George's Pizza 2920 E. Florida Ave. Hemet, Ca. 2920 E. Florida Ave."
507
+ Spartan Niner Empire Texas,,,Arlington,TX,,Arlington TX United States Bombshells Restaurant & Bar 701 N. Watson Rd.
508
+ THEE EMPIRE FAITHFUL LOS ANGELES COUNTY,,,Los Angeles,CA,,Los Angeles CA United States Home 1422 Saybrook Ave
509
+ Niner Empire Richmond 510 Chapter,,,San Pablo,Ca,,San Pablo Ca United States Noya Lounge 14350 Laurie Lane
510
+ Thee Empire Faithful The Bay Area,,,Oakley,Ca,,Oakley Ca United States Sabrina's Pizzeria 2587 Main St
511
+ The Mid Atlantic Niner Empire Chapter,,,Mechanicsville,Va,,Mechanicsville Va United States The Ville 7526 Mechanicsville Turnpike
512
+ Big Sky SF 49ers,,,Billings,MT,,Billings MT United States Old Chicago - Billings 920 S 24th Street W
513
+ Hawaii Niner Empire,,,Waipahu,HI,,Waipahu HI United States The Hale 94-983 kahuailani st
514
+ Niner Empire Porterville Cen Cal 559,,,Porterville,Ca,,Porterville Ca United States Pizza Factory/ Local Bar & Grill 897 W. Henderson
515
+ W.MA CHAPTER NINER EMPIRE,,,CHICOPEE,MA,,CHICOPEE MA United States MAXIMUM CAPACITY 116 SCHOOL ST
516
+ Hampton Roads Niner Empire (Southside Chapter),,,Norfolk,VA,,Norfolk VA United States Azalea Inn / Timeout Sports Bar Azalea Inn / Timeout Sports Bar
517
+ Central Valley Niners,,,Visalia,Ca,,Visalia Ca United States Pizza factory 3121 w noble
518
+ Niner Knights,,,Ewing Twp,NJ,,Ewing Twp NJ United States Game Room of River Edge Apts 1009 Country Lane
519
+ Lone Star Niner Empire,,,Houston,TX,,Houston TX United States Post oak ice house 5610 Richmond Ave.
520
+ Hawaii Faithfuls,,,Honolulu,HI,,Honolulu HI United States Champions Bar & Grill 1108 Keeaumoku Street
521
+ 49er Faithful of Murrieta,,,Murrieta,CA,,Murrieta CA United States Sidelines Bar & Grill 24910 Washington Ave
522
+ Capitol City 49ers,,,Sacramento,CA,,Sacramento CA United States Tom's Watch Bar DOCO Tom's Watch Bar 414 K St suite 180
523
+ Huntington Beach Faithfuls,,,Huntington Beach,CA,,Huntington Beach CA United States BEACHFRONT 301 301 Main St. Suite 101
524
+ Niner Empire Saltillo,,,Saltillo,TX,,Saltillo TX United States Cadillac Bar Cadillac Saltillo Bar
525
+ Germantown 49er's Club,,,Memphis,TN,,Memphis TN United States Mr. P's Sports Bar Hacks Cross Rd. 3284 Hacks Cross Road
526
+ 49ers faithful,,,KEYES,CA,,KEYES CA United States Mt mikes ceres ca 4618 Blanca Ct
527
+ Ladies Of The Empire,,,Manteca,Ca,,Manteca Ca United States Central Valley and Bay Area 1660 W. Yosemite Ave
528
+ Las Vegas Niner Empire 702,,,Las Vegas,NV,,Las Vegas NV United States Calico Jack's 8200 W. Charleston rd
529
+ 49ers Faithfuls in DC,,,Washington,DC,,Washington DC United States Town Tavern 2323 18th Street NW
530
+ 49er Booster Club of Roseville,,,Roseville,CA,,Roseville CA United States Bunz Sports Pub & Grub 311 Judah Street
531
+ Kern County Niner Empire,,,Bakersfield,Ca,,Bakersfield Ca United States Firehouse Restaurant 7701 White Lane
532
+ Central Coast Niner Empire 831,,,Salinas,CA,,Salinas CA United States Buffalo Wild Wings 1988 North Main St
533
+ Central Coast Niner Empire 831,,,Salinas,CA,,Salinas CA United States Pizza Factory 1945 Natividad Rd
534
+ Houston Niner Empire,,,Houston,TX,,Houston TX United States Home Plate Bar & Grill 1800 Texas Street
535
+ Train Whistle Faithful,,,Mountain View,CA,,Mountain View CA United States Savvy Cellar 750 W. Evelyn Avenue
536
+ Corpus Christi Chapter Niner Empire,,,Corpus Christi,TX,,Corpus Christi TX United States Cheers 419 Starr St.
537
+ Niner Empire Dade City,,,Dade City,Florida,,Dade City Florida United States Beef O Brady's Sports Bar 14136 7th Street
538
+ Chico Faithfuls,,,Chico,CA,,Chico CA United States Mountain Mikes Pizza 1722 Mangrove Ave
539
+ Chicago Niners,,,Chicago,IL,,Chicago IL United States Cheesie's Pub & Grub 958 W Belmont Ave Chicago IL 60657 958 W Belmont Ave
540
+ Niner Empire 916 Sac Town,,,Sacramento,CA,,Sacramento CA United States El Toritos 1598 Arden blvd
541
+ 49ER EMPIRE COLORADO CHAPTER,,,Colorado Springs,Co.,,Colorado Springs Co. United States FOX & HOUND COLORADO SPRINGS 3101 New Center Pt.
542
+ 49ers NC Triad Chapter,,,Greensboro,NC,,Greensboro NC United States Kickback Jack's 1600 Battleground Ave.
543
+ Central Oregon 49ers Faithful,,,Redmond,OR,,Redmond OR United States Redmond Oregon 495 NW 28th St
544
+ Westside 9ers,,,Carson,CA,,Carson CA United States Los Angeles 1462 E Gladwick St
545
+ Niner Empire Illinois Chapter,,,Mattoon,Illinois,,"Mattoon Illinois United States residence, for now 6 Apple Drive"
546
+ Treasure Valley 49er Faithful,,,Star,ID,,Star ID United States The Beer Guys Saloon 10937 W State St
547
+ Ct faithful chapter,,,stamford,ct,,stamford ct United States buffalo wild wings 208 summer st
548
+ 305 FAITHFUL EMPIRE,,,Miami,FL,,Miami FL United States Walk-On's 9065 SW 162nd Ave
549
+ Fillmoe SF Niners Nation Chapter,,,San Francisco,CA,,San Francisco CA United States Honey Arts Kitchen by Pinot's 1861 Sutter Street
550
+ 49ers So Cal Faithfuls,,,Oxnard,CA,,Oxnard CA United States So Cal (Various locations with friends and family) 3206 Lisbon Lane
551
+ Niner Empire DFW,,,Arlington,TX,,Arlington TX United States Walk-Ons Bistreaux Walk-Ons Bistreaux
552
+ Duke City Faithful Niner Empire,,,Albuquerque,NM,,Albuquerque NM United States Duke City Bar And Grill 6900 Montgomery Blvd NE
553
+ 49ers @ Champions,,,Honolulu,Hawaii,,Honolulu Hawaii United States Champions Bar and Grill 1108 Keeaumoku St
554
+ Natural State Niners Club,,,Jonesboro,AR,,"Jonesboro AR United States Buffalo Wild Wings, Jonesboro, AR Buffalo Wild Wings"
555
+ 49er Empire - Georgia Chapter,,,Marietta,ga,,Marietta ga United States Dave & Busters of Marietta Georgia 2215 D and B Dr SE
556
+ San Francisco 49ers of San Diego,,,San Diego,CA,,San Diego CA United States Moonshine Beach Moonshine Beach Bar
557
+ Sonoran Desert Niner Empire,,,Maricopa,AZ,,Maricopa AZ United States Cold beers and Cheeseburgers 20350 N John Wayne pkwy
558
+ 49ers Empire Syracuse 315 Chapter,,,Syracuse,NY,,Syracuse NY United States Change of pace sports bar 1809 Grant Blvd
559
+ Niner Empire Ventura Chapter,,,Ventura,CA,,Ventura CA United States El Rey Cantina El Rey Cantina
560
+ 540 Faithfuls of the Niner Empire,,,Fredericksburg,VA,,Fredericksburg VA United States Home Team Grill 1109 Jefferson Davis Highway
561
+ Ninerempire Tampafl Chapter,,,tampa,fl,,tampa fl United States Ducky's 1719 eest Kennedy blvd
562
+ Gold Diggers,,,Rochester,New York,,Rochester New York United States The Blossom Road Pub 196 N. Winton Rd
563
+ Niner Empire Waco Chapter,,,Waco,TX,,Waco TX United States Salty Dog 2004 N. Valley Mills
564
+ Niner Empire of Brentwood,,,Brentwood,CA,,Brentwood CA United States Buffalo Wild Wings 6051 Lone Tree Way
565
+ "NinerEmpire of Lancaster, PA",,,Lancaster,PA,,Lancaster PA United States PA Lancaster Niners Den 2917 Marietta Avenue
566
+ Empire Tejas 915- El Paso TX,,,El Paso,Tx,,El Paso Tx United States EL Luchador Taqueria/Bar 1613 n Zaragoza
567
+ Capitol City 49ers fan club,,,West Sacramento,CA,,West Sacramento CA United States Burgers and Brew restaurant 317 3rd St
568
+ Golden Empire Hollywood,,,Los Angeles,CA,,Los Angeles CA United States Nova Nightclub 7046 Hollywood Blvd
569
+ Spartan Niner Empire Denver,,,Denver,CO,,Denver CO United States Downtown Denver In transition
570
+ 49er empire of Frisco Texas,,,Frisco,TX,,Frisco TX United States The Irish Rover Pub & Restaurant 8250 Gaylord Pkwy
571
+ FAIRFIELD CHAPTER,,,Fairfield,CA,,Fairfield CA United States Legends Sports Bar & Grill 3990 Paradise Valley Rd
572
+ Shasta Niners,,,Redding,CA,,Redding CA United States Shasta Niners Clubhouse 4830 Cedars Rd
573
+ NINER EMPIRE FREMONT CHAPTER,,,Fremont,CA,,Fremont CA United States Buffalo Wild Wings 43821 Pacific Commons Blvd
574
+ Fargo 49ers Faithful,,,Fargo,ND,,Fargo ND United States Herd & Horns 1414 12th Ave N
575
+ 49ER ORIGINALS,,,Redding,CA,,Redding CA United States BLEACHERS Sports Bar & Grill 2167 Hilltop Drive
576
+ "49er Flowertown Empire of Summerville, SC",,,Summerville,South Carolina,,Summerville South Carolina United States Buffalo Wild Wings 109 Grandview Drive #1
577
+ 49ers of Brevard County,,,Port St Johns,FL,,Port St Johns FL United States Beef O'Bradys in Port St. Johns 3745 Curtis Blvd
578
+ Forever Faithful Clique,,,San Bernardino,CA,,San Bernardino CA United States The Study Pub and Grill 5244 University Pkwy Suite L
579
+ 49ERS FOREVER,,,REDLANDS,CALIFORNIA,,REDLANDS CALIFORNIA United States UPPER DECK 1101 N. CALIFORNIA ST.
580
+ Thee Empire Faithful Bakersfield,,,Bakersfield,Ca,,Bakersfield Ca United States Senor Pepe's Mexican Restaurant 8450 Granite Falls Dr
581
+ Saloon Suad,,,Los Angeles,ca,,Los Angeles ca United States San Francisco Saloon Bar 11501
582
+ Troy'a chapter,,,Troy,OH,,Troy OH United States Viva la fiesta restaurant 836 w main st
583
+ Niner Empire IE Chapter,,,San Bernardino,California,,San Bernardino California United States Don Martins Mexican Grill 1970 Ostrems Way
584
+ 20916 Faithful,,,Elk Grove,CA,,Elk Grove CA United States Sky River Casino 1 Sky River Parkway
585
+ SO. CAL GOLD BLOODED NINER'S,,,Hacienda heights,CA,,Hacienda heights CA United States SUNSET ROOM 2029 hacinenda blvd
586
+ "South Florida's Faithful, Niner Empire",,,Homestead,Fl,,Homestead Fl United States Chili's in Homestead 2220 NE 8TH St.
587
+ Cesty's 49ers Faithful,,,Chandler,AZ,,Chandler AZ United States Nando's Mexican Cafe 1890 W Germann Rd
588
+ Niner Gang Empire,,,EDINBURG,TX,,EDINBURG TX United States Danny Bar & Grill 4409 Adriana
589
+ The Bell Ringers,,,Manhattan,KS,,Manhattan KS United States Jeff and Josie Schafer's House 1517 Leavenworth St.
590
+ O.C. NINER EMPIRE FAITHFUL'S,,,Buena park,CA,,Buena park CA United States Ciro's pizza 6969 la Palma Ave
591
+ Niner Empire DFW,,,Bedford,TX,,Bedford TX United States Papa G's 2900 HIGHWAY 121
592
+ Hilmar Empire,,,Hilmar,Ca,,Hilmar Ca United States Faithful House 7836 Klint dr
593
+ 49ers of West Virginia,,,Bridgeport,WV,,Bridgeport WV United States Buffalo WIld Wings 45 Betten Ct
594
+ 618 Niner Empire,,,Carbondale,IL,,"Carbondale IL United States Home Basement aka """"The Local Tavern"""" 401 N Allyn st"
595
+ NINER EMPIRE HAWAII 808,,,HONOLULU,HI,,HONOLULU HI United States DAVE AND BUSTERS 1030 AUAHI ST
596
+ NINER EMPIRE HAWAII 808,,,Honolulu,HI,,Honolulu HI United States Buffalo Wild Wings 1644 Young St # E
597
+ H-Town Empire,,,Houston,Tx,,Houston Tx United States Skybox Bar and Grill 11312 Westheimer
598
+ Hub City Faithful,,,Hattiesburg,Mississippi,,Hattiesburg Mississippi United States Mugshots 204 N 40th Ave
599
+ Spartan Niner Empire Georgia,,,Duluth,GA,,Duluth GA United States Bermuda Bar 3473 Old Norcross Rd
600
+ Westchester County New York 49ers Fans,,,Yonkers,New York,,"Yonkers New York United States We meet at 3 locations, Burkes Bar in Yonkers, Matador's Fan Cave and Finnerty's 14 Troy Lane"
601
+ Niner Empire 831,,,Salinas,Ca,,Salinas Ca United States Straw Hat Pizza 156 E. Laurel Drive
602
+ Niner Empire Portland,,,Clackamas,Oregon,,Clackamas Oregon United States Various 14682 SE Sunnyside Rd
603
+ 49ers Empire Galveston County Chapter,,,Nassau Bay,TX,,Nassau Bay TX United States Office 1322 Space Park Dr.
604
+ NINER EMPIRE,,,Brisbane,Ca,,Brisbane Ca United States 7 Mile House 2800 Bayshore Blvd
605
+ Boston San Francisco Bay Area Crew,,,Boston,MA,,Boston MA United States The Point Boston 147 Hanover Street
606
+ 49ers Faithful of Boston,,,Boston,MA,,"Boston MA United States The Point, Boston, MA 147 Hanover Street"
607
+ Riverside 49ers Booster Club,,,Riverside,California,,Riverside California United States Lake Alice Trading Co Saloon &Eatery 3616 University Ave
608
+ 318 Niner Empire,,,Monroe,La.,,Monroe La. United States 318 Niner Empire HQ 400 Stone Ave.
609
+ The Austin Faithful,,,Austin,TX,,Austin TX United States 8 Track 2805 Manor Rd
610
+ Niner Empire San Antonio,,,San Antonio,TX,,San Antonio TX United States Sir Winston's Pub 2522 Nacogdoches Rd.
611
+ NINER EMPIRE OF THE 509,,,Spokane,WA,,"Spokane WA United States Mac daddy's 808 W Main Ave #106, Spokane, WA 99201"
612
+ SOCAL OC 49ERS,,,Newport Beach,CA,,Newport Beach CA United States The Blue Beet 107 21st Place
613
+ Sin City Niner Empire,,,Henderson,NV,,Henderson NV United States Hi Scores Bar-Arcade 65 S Stephanie St.
614
+ Central Valley 9er Faithful,,,Turlock,CA,,Turlock CA United States Mountain Mike's 409 S Orange St.
615
+ Niner Squad,,,San Jose,CA,,"San Jose CA United States 4171 Gion Ave San Jose,Ca 4171 Gion Ave"
616
+ merced niner empire,,,merced,ca,,merced ca United States round table pizza 1728 w olive ave
617
+ NINERS ROLLIN HARD IMPERIAL VALLEY CHAPTER,,,Brawley,CA,,Brawley CA United States SPOT 805 550 main Street
618
+ Tooele County 49ers,,,TOOELE,UT,,"TOOELE UT United States Pins and Ales - 1111 N 200 W, Tooele, UT 84074 1111 N 200 W"
619
+ 49ers united of wichita ks,,,Wichita,KS,,Wichita KS United States Hurricane sports grill 8641 w 13th st suite 111
620
+ 828 NCNINERS,,,Hickory,NC,,Hickory NC United States Coaches Neighborhood Bar and Grill 2049 Catawba Valley Blvd SE
621
+ Chicago 49ers Club,,,Chicago,IL,,Chicago IL United States The Globe Pub 1934 West Irving Park Road
622
+ Niner Empire Vancouver,,,Vancouver,WA,,Vancouver WA United States Heathen feral public house 1109 Washington St
623
+ Hampton Roads Niners Fanatics,,,Hampton,VA,,Hampton VA United States Nascar Grille 1996 Power Plant Parkway
624
+ Cincy Faithful,,,Newport,KY,,Newport KY United States Buffalo Wild Wings (Newport) 83 Carothers Rd
625
+ Southside OKC Faithful Niners,,,Oklahoma City,Oklahoma,,Oklahoma City Oklahoma United States CrosseEyed Moose 10601 Sout Western Ave
626
+ 707 FAITHFULS,,,Wine country,CA,,"Wine country CA United States Wine country Breweries, restaurant's, wineries, private locations"
627
+ NINER EMPIRE MEMPHIS CHAPTER,,,Memphis,Tennessee,,Memphis Tennessee United States 360 Sports Bar & Grill 3896 Lamar Avenue
628
+ Chucktown Empire 49ers of Charleston,,,North Charleston,SC,,"North Charleston SC United States Chill n' Grill Sports bar 2810 Ashley Phosphate Rd A1, North Charleston, SC 29418"
629
+ Spartans Niner Empire Florida,,,Tampa,FL,,Tampa FL United States Ducky's Sports Bar 1719 Kennedy Blvd
630
+ Palm Springs Area 49er Club,,,Palm Springs,CA,,Palm Springs CA United States The Draughtsmen 1501 N Palm Canyon
631
+ 49th State Faithful,,,Anchorage,AK,,Anchorage AK United States Al's Alaskan Inn 7830 Old Seward Hwy
632
+ 49er faithful of Arizona ( of the West Valley ),,,Surprise,Az,,"Surprise Az United States Booty's Wings, Burgers and Beer Bar and Grill 15557 W. Bell Rd. Suite 405"
633
+ NINER CORE,,,Bloomington,CA,,Bloomington CA United States Traveling chapter 18972 Grove pl
634
+ Forever Faithful RGV (Rio Grande Valley),,,McAllen,TX,,McAllen TX United States My Place 410 N 17th St
635
+ 49ers Sacramento Faithfuls,,,West Sacramento,CA,,West Sacramento CA United States Kick N Mule Restaurant and Sports Bar 2901 W Capitol Ave
636
+ SO. CAL GOLDBLOOED NINERS,,,Industry,CA,,Industry CA United States Hacienda nights pizza co. 15239 Gale ave
637
+ Niner Empire Hayward chapter,,,Hayward,Ca,,Hayward Ca United States Strawhat pizza 1163 industrial pkwy W
638
+ 49ers Empire Iowa Chapter,,,Chariton,Iowa,,Chariton Iowa United States Shoemakers Steak House 2130 Court Ave
639
+ Niner Empire of Fresno,,,Fresno,CA,,Fresno CA United States Round Table Pizza 5702 N. First st
640
+ Connecticut Spartan Niner Empire,,,East Hartford,Connecticut,,East Hartford Connecticut United States Silver Lanes Lounge 748 Silverlane
641
+ "Niner Empire Houston, TX Chapter",,,Houston,Texas,,Houston Texas United States Little J's Bar 5306 Washington Ave
642
+ "Niner Empire Houston, TX",,,Houston,Texas,,Houston Texas United States coaches I-10 17754 Katy Fwy #1
643
+ SO. CAL GOLD BLOODED NINER'S,,,Industry,CA,,Industry CA United States Hacienda heights Pizza Co 15239 Gale Ave
644
+ the 559 ers,,,porterville,CA,,porterville CA United States landing 13 landing 13
645
+ Billings Niners Faithful,,,Billings,MT,,Billings MT United States Craft B&B 2658 Grand ave
646
+ 901 9ers,,,Memphis,Tn,,Memphis Tn United States Prohibition 4855 American Way
647
+ Tulsa 49ers Faithful,,,Tulsa,OK,,Tulsa OK United States Buffalo Wild Wings 6222 E 41st St
648
+ The Niner Empire - 405 Faithfuls - Oklahoma City,,,Oklahoma City,OK,,Oklahoma City OK United States The Side Chick 115 E. California Ave 5911 Yale Drive
649
+ Niner Empire Imperial Valley,,,Brawley,Ca,,Brawley Ca United States Waves Restaurant & Saloon 621 S Brawley Ave
650
+ East Valley Faithful,,,Gilbert,AZ,,Gilbert AZ United States TBD 5106 South Almond CT
651
+ 360 Niner Empire,,,Lacey,WA,,Lacey WA United States Dela Cruz Residence 1118 Villanova St NE
652
+ 49ers Booster Club of Virginia,,,Mechanicsville,Virginia,,Mechanicsville Virginia United States Sports Page Bar & Grill 8319 Bell Creek Rd
653
+ Niner Empire Tampa,,,Tampa,FL,,Tampa FL United States The Bad Monkey 1717 East 7th Avenue
654
+ 49ers Faithful Montana State,,,Missoula,MT,,Missoula MT United States Not yet determined 415 Coloma Way
655
+ 49ers Fan club,,,Corpus Christi,Texas,,Corpus Christi Texas United States Click Paradise Billiards 5141 Oakhurst Dr.
656
+ Niner Empire Delano,,,Delano,ca,,Delano ca United States Aviator casino 1225 Airport dr
657
+ Mid South Niner Empire,,,Nashville,TN,,Nashville TN United States Winners Bar and Grill 1913 Division St
658
+ 49ers Empire New York City,,,New York,New York,,New York New York United States Off The Wagon 109 MacDougal Street
659
+ 49er Empire High Desert,,,hesperia,California,,hesperia California United States Thorny's 1330 Ranchero rd.
660
+ Mile High 49ers,,,Denver,Colorado,,Denver Colorado United States IceHouse Tavern 1801 Wynkoop St
661
+ NOCO 49ers,,,Windsor,CO,,Windsor CO United States The Summit Windsor 4455 N Fairgrounds Ave
662
+ Milwaukee Spartans of the Niner Empire,,,Wauwatosa,WI,,Wauwatosa WI United States jacksons blue ribbon pub 11302 w bluemound rd
663
+ SAN ANGELO NINER EMPIRE,,,san angelo,tx,,san angelo tx United States buffalo wild wings 4251 sherwoodway
664
+ 580 FAITHFUL,,,Devol,OK,,"Devol OK United States APACHE LONE STAR CASUNO Devol, Oklahoma"
665
+ 49ers of Ohio,,,Xenia,Ohio,,Xenia Ohio United States Cafe Ole' 131 North Allison Ave
666
+ 307 FAITHFUL,,,Cheyenne,WY,,"Cheyenne WY United States 4013 Golden Ct, Cheyenne, Wyoming 4013 Golden Ct"
667
+ Mojave Desert 49er Faithfuls,,,Apple Valley,CA,,Apple Valley CA United States Gator's Sports Bar and Grill - Apple Valley 21041 Bear Valley Rd
668
+ The Dusty Faithful,,,Socorro,TX,,Socorro TX United States The Dusty Tap Bar 10297 Socorro Rd
669
+ The Duke City Faithful,,,Albuquerque,N.M.,,Albuquerque N.M. United States Buffalo wild wings 6001 iliff rd.
670
+ Emilio,,,Casa grande,Arizona(AZ),,Casa grande Arizona(AZ) United States Liquor factory bar and deli 930 E Florence
671
+ New Mexico Niner Empire,,,Albuquerque,New Mexico,,"Albuquerque New Mexico United States Ojos Locos Sports Cantina Park Square,2105 Louisiana Blvd N.E"
672
+ So Cal Niner Empire,,,Long Beach,Ca,,Long Beach Ca United States Gallaghers Irish Pub and Grill 2751 E. Broadway
673
+ 49er Faithful of Charlotte,,,Charlotte,North Carolina,,Charlotte North Carolina United States Strike City Charlotte 210 E. Trade St.
674
+ MSP Niner Faithful,,,Saint Paul,MN,,Saint Paul MN United States Firebox BBQ 1585 Marshall Ave
675
+ Mississippi Niner Empire Chapter-Jackson,,,Jackson,Ms.,,Jackson Ms. United States M-Bar Sports Grill 6340 Ridgewood Ct.
676
+ BayArea Faithfuls,,,Pleasant Hill,California,,Pleasant Hill California United States Damo Sushi 508 Contra Costa Blvd
677
+ AZ49erFaithful,,,mesa,az,,mesa az United States Boulders on Southern 1010 w Southern ave suite 1
678
+ Pluckers Alamo Ranch,,,San Antonio,TX,,San Antonio TX United States Pluckers Wong Bar 202 Meadow Bend Dr
679
+ Natural State Niners,,,Jonesboro,AR,,Jonesboro AR United States Buffalo Wild Wings 1503 Red Wolf Blvd
680
+ North Carolina Gold Blooded Empire,,,Raleigh,North Carolina,,Raleigh North Carolina United States Tobacco Road - Raleigh 222 Glenwood Avenue
681
+ Spartan Empire of North Carolina,,,Greensboro,NC,,Greensboro NC United States World of Beer 1310 westover terr
682
+ Niner Empire Kings County,,,Hanford,CA,,Hanford CA United States Fatte Albert's pizza co 110 E 7th St
683
+ New Mexico Gold Rush,,,Rio Rancho,NM,,Rio Rancho NM United States Applebee's 4100 Ridge Rock Rd
684
+ Niner 408 Squad,,,San Jose,CA,,San Jose CA United States Personal home 3189 Apperson Ridge Court
685
+ NINER ALLEY,,,moreno valley,ca,,moreno valley ca United States home 13944 grant st
686
+ Niner Empire San Antonio,,,San Antonio,Texas,,San Antonio Texas United States Fatso's 1704 Bandera Road
687
+ NinerEmpire520,,,Tucson,AZ,,Tucson AZ United States Maloney's 213 North 4th Ave
688
+ 49er Empire Desert West,,,Glendale,Arizona,,Glendale Arizona United States McFadden's Glendale 9425 West Coyotes Blvd
689
+ Niner Empire EPT,,,el paso,tx,,el paso tx United States knockout pizza 10110 mccombs
690
+ "Niner Empire Henderson, NV",,,Henderson,Nevada,,Henderson Nevada United States Hi Scores Bar-Arcade 65 S Stephanie St
691
+ Niner Empire Salem,,,Salem,OR,,Salem OR United States IWingz IWingz
692
+ Niner Empire San Antonio,,,San Antonio,Texas,,San Antonio Texas United States Fatsos 1704 Bandera Rd
693
+ Niner Empire Southern Oregon,,,Medford,OR,,Medford OR United States The Zone Sports Bar & Grill 1250 Biddle Rd.
694
+ niner empire faithfuls of toledo,,,Toledo,Ohio,,Toledo Ohio United States Legendz sports pub and grill 519 S. Reynolds RD
695
+ Las Vegas Niner EmpireNorth,,,Las Vegas,NV,,Las Vegas NV United States Timbers Bar & Grill 7240 West Azure Drive
696
+ NINER FRONTIER,,,las vegas,NV,,las vegas NV United States Luckys Lounge 7345 S Jones Blvd
697
+ NINERS ROLLIN HARD IMPERIAL VALLEY,,,Brawley,CA,,Brawley CA United States SPOT 805 Bar and Grill 550 Main St
698
+ Niners Rollin Hard EL Valle C.V. Chapter,,,La Quinta,CA,,La Quinta CA United States The Beer Hunters 78483 Highway 111
699
+ Niners United,,,Santa Clara,CA,,"Santa Clara CA United States Levi's Stadium Section 201, Section 110, Section 235 (8 of the 18 members are Season Ticket Holders) 4900 Marie P DeBartolo Way"
700
+ San Francisco 49ers Fans of Chicago,,,Chicago,IL,,"Chicago IL United States Gracie O'Malley's (Wicker Park location), 1635 N Milwaukee Ave, Chicago, IL 60647 Gracie O'Malley's"
701
+ NJ Niner Empire Faithful Warriors,,,Jersey City,New Jersey,,Jersey City New Jersey United States O'Haras Downtown 172 1st Street
702
+ NJ9ers,,,Bayonne,NJ,,Bayonne NJ United States Mr. Cee's Bar & Grill 17 E 21st Street
703
+ North Idaho 49ers Faithful,,,Coeur d'Alene,ID,,Coeur d'Alene ID United States Iron Horse Bar and Grille 407 Sherman Ave
704
+ Northwest Niner Empire,,,Ellensburg,WA,,Ellensburg WA United States Armies Horseshoe Sports Bar 106 W 3rd
705
+ NOVA Niners,,,Herndon,VA,,Herndon VA United States Finnegan's Sports Bar & Grill 2310 Woodland Crossing Dr
706
+ Austin Niner Empire,,,Austin,Texas,,Austin Texas United States Mister Tramps Pub & Sports Bar 8565 Research Blvd
707
+ New York 49ers Club,,,new york,ny,,new york ny United States Finnerty's Sports Bar 221 2nd Avenue
708
+ Mad-town chapter,,,Madera,CA,,Madera CA United States Madera Ranch 28423 Oregon Ave
709
+ Gold Rush Army of Austin,,,Austin,TX,,Austin TX United States Midway Field House 2015 E Riverside Dr
710
+ niner alley,,,MORENO VALLEY,CA,,MORENO VALLEY CA United States papa joes sports bar 12220 frederick ave
711
+ 413 Spartans,,,Chicopee,MA,,Chicopee MA United States Bullseye Bullseye
712
+ Clementine's Faithful,,,Portland,OR,,Portland OR United States The Mule Bar 4915 NE Fremont Street
713
+ 585faithful,,,dansville,NY,,dansville NY United States dansville ny 108 main st
714
+ Niner Empire Cen Cal 559,,,PORTERVILLE,CA,,PORTERVILLE CA United States BRICKHOUSE BAR AND GRILL 152 North Hockett Street
715
+ Booze & Niner Football,,,Solana Beach,CA,,Solana Beach CA United States Saddle Bar 123 W Plaza St
716
+ Westside Niners Nation,,,Culver City,CA,,Culver City CA United States Buffalo Wings and Pizza 5571 Sepulveda Blvd.
717
+ Pinal county niner empire,,,Casa grande,Arizona(AZ),,Casa grande Arizona(AZ) United States Liquor factory bar and deli 930 E Florence
718
+ "Prescott, AZ 49ers faithful",,,Prescott,AZ,,Prescott AZ United States Prescott Office Resturant 128 N. Cortez St.
719
+ San Francisco 49'ers Hawaii Fan Club,,,Honolulu,Hawaii,,Honolulu Hawaii United States To be determined To be determined
720
+ Niner Empire Portland,,,Portland,OR,,Portland OR United States KingPins Portland 3550 SE 92nd ave
721
+ QueensandKings Bay Area Empire Chapter,,,Antioch,Ca,,Antioch Ca United States Tailgaters 4605 Golf Course Rd
722
+ Club 49 Tailgate Crew,,,Pleasanton,California,,Pleasanton California United States Sunshine Saloon Sports Bar 1807 Santa Rita Rd #K
723
+ 49ers Nyc Chapter,,,New York,New York,,"New York New York United States Off the Wagon 109 Macdougal St,"
724
+ "49er faithfuls Yakima,Wa",,,Yakima,Wa,,Yakima Wa United States TheEndzone 1023 N 1st
725
+ 49er's Faithful Aurora Co Chapter,,,Aurora,CO,,Aurora CO United States 17307 E Flora Place 17307 E Flora Place
726
+ 49er F8thfuls,,,Gardena,Ca,,Gardena Ca United States Paradise 889 w 190th
727
+ westside9ers,,,Downey,CA,,Downey CA United States Bar Louie 8860 Apollo Way
728
+ Spartan 9er Empire Connecticut,,,EastHartford,CO,,EastHartford CO United States Red Room 1543 Main St
729
+ Red & Gold Empire,,,Sandy Springs,GA,,Sandy Springs GA United States Hudson Grille Sandy Springs 6317 Roswell Rd NE
730
+ RENO NINEREMPIRE,,,Reno,Nv,,Reno Nv United States Semenza's Pizzeria 4380 Neil rd.
731
+ 650 Niner Empire peninsula chapter,,,South San Francisco,Ca,,South San Francisco Ca United States 7 Mile House 1201 bayshore blvd
732
+ Spartan Niner Empire California,,,Colma,CA,,Colma CA United States Molloys Tavern Molloys tavern
733
+ Riverside county TEF (Thee Empire Faithful),,,Winchester,CA,,Winchester CA United States Pizza factory 30676 Bentod Rd
734
+ Riverside 49ers Booster Club,,,Riverside,California,,Riverside California United States Lake Alice Trading Co Saloon &Eatery 3616 University Ave
735
+ 49ers Strong Iowa - Des Moines Chapter,,,Ankeny,IA,,Ankeny IA United States Benchwarmers 705 S Ankeny Blvd
736
+ Mid South Niner Nation,,,Nashville,TN,,Nashville TN United States Kay Bob's 1602 21st Ave S
737
+ Kansas City 49ers Faithful,,,Leavenworth,KS,,"Leavenworth KS United States Fox and hound. 10428 metcalf Ave. Overland Park, ks 22425"
738
+ 49er Booster Club Carmichael Ca,,,Fair Oaks,Ca,,Fair Oaks Ca United States Fair Oaks 7587 Pineridge Lane
739
+ Rouge & Gold Niner Empire,,,Baton Rouge,LA,,Baton Rouge LA United States Sporting News Grill 4848 Constitution Avenue
740
+ Niner Empire Tulare County,,,Visalia,Ca,,Visalia Ca United States 5th Quarter 3360 S. Fairway
741
+ Mile High 49ers NOCO Booster Club,,,Greeley,co,,Greeley co United States Old Chicago Greeley 2349 W. 29th St
742
+ NINERFANS.COM,,,Cupertino,California,,Cupertino California United States Islands Bar And Grill (Cupertino) 20750 Stevens Creek Blvd.
743
+ San Diego Gold Rush,,,San Diego,CA,,San Diego CA United States Bootleggers 804 market st.
744
+ East Valley Niner Empire,,,Apache Junction,AZ,,Apache Junction AZ United States Tumbleweed Bar & Grill 725 W Apache Trail
745
+ Santa Rosa Niner Empire,,,Windsor,CA,,Windsor CA United States Santa Rosa 140 3rd St
746
+ Youngstown Faithful,,,Canfield,OH,,Canfield OH United States The Cave 369 Timber Run Drive
747
+ Seattle Niners Faithful,,,Everett,WA,,Everett WA United States Great American Casino 12715 4th Ave W
748
+ "San Francisco 49ers Faithful - Greater Triangle Area, NC",,,Durham,North Carolina,,Durham North Carolina United States Tobacco Road Sports Cafe 280 S. Mangum St. #100
749
+ South Florida Gold Blooded Empire,,,Boynton Beach,Florida,,Boynton Beach Florida United States Miller's Ale House 2212 N. Congress Avenue
750
+ Red Rock's Local 49 Club,,,Red Bluff,CA,,Red Bluff CA United States Tips Bar 501 walnut St.
751
+ Columbia Basin Niners Faithful,,,Finley,Washington,,Finley Washington United States Shooters 214711 e SR 397 314711 wa397
752
+ 9er Elite,,,Lake Elsinore,CA,,Lake Elsinore CA United States Pins N Pockets 32250 Mission Trail
753
+ Shore Faithful,,,Barnegat,NJ,,Barnegat NJ United States 603 East Bay Ave
754
+ Santa Fe Faithfuls,,,Santa Fe,New Mexico,,Santa Fe New Mexico United States Blue Corn Brewery 4056 Cerrilos Rd.
755
+ Sonoran Desert Niner Empire,,,Maricopa,AZ,,Maricopa AZ United States Cold beers and cheeseburgers 20350 N John Wayne Pkwy
756
+ 9549ERS faithful,,,Davie,FL,,Davie FL United States Twin peaks Twin peaks
757
+ 806 Niner Empire West Texas Chapter,,,Lubbock,Texas,,Lubbock Texas United States Buffalo Wild Wings 6320 19th st
758
+ Ohana Niner Empire,,,Honolulu,HI,,Honolulu HI United States TBD 1234 TBD
759
+ Westside Portland 49er Fan Club,,,Portland,OR,,Portland OR United States The Cheerful Tortoise 1939 SW 6th Ave
760
+ 49ersGold,,,Oakland Park,FL,,Oakland Park FL United States stout bar and grill Stout Bar and Grill
761
+ 4T9 MOB TRACY FAMILY,,,Tracy,Ca,,Tracy Ca United States Buffalo wild wings 2796 Naglee road
762
+ Niner Empire Southern Oregon Chapter,,,medford,or,,medford or United States imperial event center 41 north Front Street
763
+ SacFaithful,,,Cameron park,CA,,Cameron park CA United States Presidents home 3266 Cimmarron rd
764
+ Niner Faithful Of Southern Ohio,,,piqua,OH,,piqua OH United States My House 410 Camp St
765
+ NinerGangFaithfuls,,,Oceanside,ca,,Oceanside ca United States my house 4020 Thomas st
766
+ Jersey 49ers riders,,,Trenton,New Jersey,,Trenton New Jersey United States sticky wecket 2465 S.broad st
767
+ Life Free or Die Faithfuls,,,Concord,NH,,Concord NH United States Buffalo Wild Wings 8 Loudon Rd
768
+ The 909 Niner Faithfuls,,,Fontana,Ca,,Fontana Ca United States Boston's Sports Bar and Grill 16927 Sierra Lakes Pkwy.
769
+ Arcadia Chapter,,,Arcadia,CA,,Arcadia CA United States 4167 e live oak Ave 4167 e live oak Ave
770
+ Thee Empire Faithful,,,Fresno,California,,Fresno California United States Buffalo Wild Wings 3065 E Shaw Ave
771
+ The Oregon Faithful,,,Eugene,OR,,Eugene OR United States The Side Bar Side Bar
772
+ The ORIGINAL Niner Empire-New Jersey Chapter,,,Linden,NJ,,Linden NJ United States Nuno's Pavilion 300 Roselle ave
773
+ What a Rush (gold),,,Rochester,NY,,Rochester NY United States The Scotch House Pub 373 south Goodman street
774
+ Moreno Valley 49er Empire,,,Moreno Vallay,CA,,Moreno Vallay CA United States S Bar and Grill 23579 Sunnymead Ranch Pkwy
775
+ "The Niner Empire, 405 Faithfuls, Oklahoma City",,,Oklahoma city,OK,,Oklahoma city OK United States Hooters NW Expressway OKC 3025 NW EXPRESSWAY
776
+ 707 EMPIRE VALLEY,,,napa,California,,napa California United States Ruiz Home 696a stonehouse drive
777
+ Treasure Valley 49er Faithful,,,Star,ID,,Star ID United States The Beer Guys Saloon 10937 W. State Street
778
+ Hampton Roads Niner Empire,,,Newport news,VA,,Newport news VA United States Boathouse Live 11800 Merchants Walk #100
779
+ Niner Empire Salem,,,Salem,OR,,Salem OR United States AMF Firebird Lanes 4303 Center St NE
780
+ Forty Niners LA chapter,,,Bell,Ca,,Bell Ca United States Krazy Wings 7016 Atlantic Blvd
781
+ Red River Niner Empire,,,Bossier City,LA,,Bossier City LA United States Walk On's Bossier City 3010 Airline Dr
782
+ Ultimate 49er Empire,,,Pembroke pines,Florida,,Pembroke pines Florida United States Pines alehouse 11795 pine island blvd
783
+ Utah Niner Empire,,,Salt Lake City,UT,,Salt Lake City UT United States Legends Sports Pub 677 South 200 West
784
+ Phoenix602Faithful,,,Phoenix,AZ,,Phoenix AZ United States Galaghers 3220 E Baseline Rd
785
+ WESTSIDE 9ERS,,,Carson,CA,,Carson CA United States Buffalo Wild Wings 736 E Del Amo Blvd
786
+ Addison Point 49ner's Fans,,,Addison,Texas,,Addison Texas United States Addison Point Sports Grill 4578 Beltline Road
787
+ 49er Forever Faithfuls,,,Vancouver,Wa,,"Vancouver Wa United States Hooligans bar and grill 8220 NE Vancouver Plaza Dr, Vancouver, WA 98662"
788
+ Woodland Faithful,,,Woodland,CA,,Woodland CA United States Mountain Mikes Pizza 171 W. Main St
789
+ Niner Empire Central New York,,,Cicero,New York,,Cicero New York United States Tully's Good Times 7838 Brewerton Rd
790
+ 4 Corners Faithful,,,Durango,CO,,Durango CO United States Sporting News Grill 21636 Highway 160
791
+ 480 Gilbert Niner Empire,,,Gilbert,AZ,,Gilbert AZ United States Panda Libre 748 N Gilbert Rd
792
+ Niner Empire Jalisco 49ers Guadalajara,,,Guadalajara,TX,,Guadalajara TX United States Bar Cheleros Bar CHELEROS
793
+ 49ERS Faithful of West Virginia,,,Charleston,WV,,Charleston WV United States The Pitch 5711 MacCorkle Ave SE
794
+ 49 Migos Chapter,,,Saddle Brook,NJ,,Saddle Brook NJ United States Midland Brewhouse 374 N Midland Ave
795
+ 49ers Bay Area Faithful Social Club,,,Sunnyvale,CA,,Sunnyvale CA United States Giovanni's New York Pizzeria 1127 Lawrence Expy
796
+ Niner Empire Of Indy,,,Indianapolis,IN,,Indianapolis IN United States The Bulldog Bar and Lounge 5380 N College Ave
797
+ NoTT 49ers SB BANG BANG,,,Goleta,California,,Goleta California United States No Town Tavern 5114 Hollister Ave
data/z_fan_chapters_clean_DNU.csv ADDED
@@ -0,0 +1,797 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Chapter Name,Team,Address,City,State,Zip Code,Address
2
+ State Farm Stadium,Arizona Cardinals,1 Cardinals Dr.,Glendale,Arizona,85305.0,1 Cardinals Dr. Glendale Arizona 85305
3
+ Mercedes-Benz Stadium,Atlanta Falcons,1 AMB Drive NW,Atlanta,Georgia,30313.0,1 AMB Drive NW Atlanta Georgia 30313
4
+ M&T Bank Stadium,Baltimore Ravens, 1101 Russell St,Baltimore,Maryland,21230.0, 1101 Russell St Baltimore Maryland 21230
5
+ Highmark Stadium,Buffalo Bills,1 Bills Dr,Orchard Park,New York,14127.0,1 Bills Dr Orchard Park New York 14127
6
+ Bank of America Stadium,Carolina Panthers,800 S Mint St,Charlotte,North Carolina,28202.0,800 S Mint St Charlotte North Carolina 28202
7
+ Soldier Field,Chicago Bears,1410 Museum Campus Dr,Chicago,Illinois,60605.0,1410 Museum Campus Dr Chicago Illinois 60605
8
+ Paul Brown Stadium,Cincinnati Bengals,1 Paul Brown Stadium,Cincinnati,Ohio,45202.0,1 Paul Brown Stadium Cincinnati Ohio 45202
9
+ FirstEnergy Stadium,Cleveland Browns,100 Alfred Lerner Way,Cleveland,Ohio,44114.0,100 Alfred Lerner Way Cleveland Ohio 44114
10
+ AT&T Stadium,Dallas Cowboys,1 AT&T Way,Arlington,Texas,76011.0,1 AT&T Way Arlington Texas 76011
11
+ Empower Field at Mile High,Denver Broncos, 1701 Bryant St,Denver,Colorado,80204.0, 1701 Bryant St Denver Colorado 80204
12
+ Ford Field,Detroit Lions,2000 Brush St,Detroit,Michigan,48226.0,2000 Brush St Detroit Michigan 48226
13
+ Lambeau Field,Green Bay Packers,1265 Lombardi Ave,Green Bay,Wisconsin,54304.0,1265 Lombardi Ave Green Bay Wisconsin 54304
14
+ NRG Stadium,Houston Texans,NRG Pkwy,Houston,Texas,77054.0,NRG Pkwy Houston Texas 77054
15
+ Lucas Oil Stadium,Indianapolis Colts,500 S Capitol Ave,Indianapolis,Indiana,46225.0,500 S Capitol Ave Indianapolis Indiana 46225
16
+ EverBank Field,Jacksonville Jaguars,1 Everbank Field Dr,Jacksonville,Florida,32202.0,1 Everbank Field Dr Jacksonville Florida 32202
17
+ Arrowhead Stadium,Kansas City Chiefs,1 Arrowhead Dr,Kansas City,Missouri,64129.0,1 Arrowhead Dr Kansas City Missouri 64129
18
+ SoFi Stadium,Los Angeles Chargers & Los Angeles Rams ,1001 Stadium Dr,Inglewood,California,90301.0,1001 Stadium Dr Inglewood California 90301
19
+ Hard Rock Stadium,Miami Dolphins,347 Don Shula Dr,Miami Gardens,Florida,33056.0,347 Don Shula Dr Miami Gardens Florida 33056
20
+ U.S. Bank Stadium,Minnesota Vikings,401 Chicago Avenue,Minneapolis,Minnesota,55415.0,401 Chicago Avenue Minneapolis Minnesota 55415
21
+ Gillette Stadium,New England Patriots,1 Patriot Pl,Foxborough,Massachusetts,2035.0,1 Patriot Pl Foxborough Massachusetts 2035
22
+ Caesars Superdome,New Orleans Saints,1500 Sugar Bowl Dr,New Orleans,Louisiana,70112.0,1500 Sugar Bowl Dr New Orleans Louisiana 70112
23
+ MetLife Stadium,New York Giants & New York Jets ,1 MetLife Stadium D,East Rutherford,New Jersey,7073.0,1 MetLife Stadium D East Rutherford New Jersey 7073
24
+ Allegiant Stadium,Las Vegas Raiders,3333 Al Davis Way,Las Vegas,Nevada,89118.0,3333 Al Davis Way Las Vegas Nevada 89118
25
+ Lincoln Financial Field,Philadelphia Eagles,1 Lincoln Financial Field Way,Philadelphia,Pennsylvania,19148.0,1 Lincoln Financial Field Way Philadelphia Pennsylvania 19148
26
+ Heinz Field,Pittsburgh Steelers,100 Art Rooney Ave,Pittsburgh,Pennsylvania,15212.0,100 Art Rooney Ave Pittsburgh Pennsylvania 15212
27
+ Levi's Stadium,San Francisco 49ers,4900 Marie P DeBartolo Way ,Santa Clara,California,95054.0,4900 Marie P DeBartolo Way Santa Clara California 95054
28
+ Lumen Field,Seattle Seahawks,800 Occidental Ave,Seattle,Washington,98134.0,800 Occidental Ave Seattle Washington 98134
29
+ Raymond James Stadium,Tampa Bay Buccaneers,4201 N Dale Mabry Hwy,Tampa,Florida,33607.0,4201 N Dale Mabry Hwy Tampa Florida 33607
30
+ Nissan Stadium,Tennessee Titans,1 Titans Way,Nashville,Tennessee,37213.0,1 Titans Way Nashville Tennessee 37213
31
+ FedExField,Washington Comanders,1600 Fedex Way,Landover,Maryland,20785.0,1600 Fedex Way Landover Maryland 20785
32
+ ,,,Aguascalientes,,,
33
+ ,,,"Celaya, GTO",,,
34
+ ,,,Chiapas,,,
35
+ ,,,Chihuahua,,,
36
+ ,,,Chihuahua,,,
37
+ ,,,"Ciudad de Mexico, Mexico",,,
38
+ ,,,Durango,,,
39
+ ,,,Estado de Mexico,,,
40
+ ,,,"Guadalajara, Jalisco",,,
41
+ ,,,"Guadalajara, Jalisco",,,
42
+ ,,,Juarez,,,
43
+ ,,,Merida,,,
44
+ ,,,Mexicali,,,
45
+ ,,,Monterrey,,,
46
+ ,,,Puebla,,,
47
+ ,,,Saltillo,,,
48
+ ,,,San Luis Potosi,,,
49
+ ,,,Tijuana,,,
50
+ ,,,Toluca,,,
51
+ ,,,Veracruz,,,
52
+ ,,,Bad Vigaun,,,
53
+ ,,,Nousseviller Saint Nabor,,,
54
+ ,,,Ismaning,,,
55
+ ,,,Hamburg,,,
56
+ ,,,Cologne State: NRW,,,
57
+ ,,,Berlin,,,
58
+ ,,,Bornhöved,,,
59
+ ,,,Ampfing,,,
60
+ ,,,Duesseldorf,,,
61
+ ,,,Cologne,,,
62
+ ,,,Dublin 13,,,
63
+ ,,,Fiorano Modenese,,,
64
+ ,,,Madrid,,,
65
+ ,,,Sao Paulo,,,
66
+ ,,,"Campo Limpo, Sao Paulo",,,
67
+ ,,,"Sao Bernardo do Campo, Sao Paulo",,,
68
+ ,,,"Vancouver, BC",,,
69
+ ,,,"Bolton, Ontario",,,
70
+ ,,,Auckland,,,
71
+ ,,,Nuku'alofa,,,
72
+ ,,,Greater Manchester,,,
73
+ ,,,Newcastle,,,
74
+ ,,,London,,,
75
+ ,,,Manchester,,,
76
+ ,,,Charleston,SC,,
77
+ ,,,Chico,Ca,,
78
+ ,,,Aurora,CO,,
79
+ ,,,bell,ca,,
80
+ ,,,Danville,VA,,
81
+ ,,,Gilbert,AZ,,
82
+ ,,,Evansville,IN,,
83
+ ,,,Vacaville,CA,,
84
+ ,,,Hesperia,California,,
85
+ ,,,Cool,CA,,
86
+ ,,,Hermosa Beach,CA,,
87
+ ,,,Aurora,Co,,
88
+ ,,,Vancouver,Wa,,
89
+ ,,,Harlingen,TX,,
90
+ ,,,Hollywood,CA,,
91
+ ,,,Frisco,TX,,
92
+ ,,,San Diego,California,,
93
+ ,,,City of Industry,California,,
94
+ ,,,Redwood City,CA,,
95
+ ,,,Oxnard,CA,,
96
+ ,,,Lake Elsinore,California,,
97
+ ,,,Gilbert,Az,,
98
+ ,,,Forestville,Ca,,
99
+ ,,,wylie,texas,,
100
+ ,,,Novato,CA,,
101
+ ,,,Modesto,ca,,
102
+ ,,,Larksville,PA,,
103
+ ,,,Portland,Or,,
104
+ ,,,Morgan Hill,CA,,
105
+ ,,,Erie,PA,,
106
+ ,,,Yuma,AZ,,
107
+ ,,,Fremont,california,,
108
+ ,,,Orlando,FL,,
109
+ ,,,517 E Gore Blvd,OK,,
110
+ ,,,Alameda,CA,,
111
+ ,,,Gilroy,CA,,
112
+ ,,,Merced,CA,,
113
+ ,,,Buena park,CA,,
114
+ ,,,Milpitas,CA,,
115
+ ,,,san francisco,California,,
116
+ ,,,Denver,Co,,
117
+ ,,,Tlalnepantla de Baz,CA,,
118
+ ,,,Modesto,CA,,
119
+ ,,,Auburn,Wa,,
120
+ ,,,Phoenix,AZ,,
121
+ ,,,Montclair,California,,
122
+ ,,,Woodbridge,va,,
123
+ ,,,Hemet,CA,,
124
+ ,,,Arlington,TX,,
125
+ ,,,Los Angeles,CA,,
126
+ ,,,San Pablo,Ca,,
127
+ ,,,Oakley,Ca,,
128
+ ,,,Mechanicsville,Va,,
129
+ ,,,Billings,MT,,
130
+ ,,,Waipahu,HI,,
131
+ ,,,Porterville,Ca,,
132
+ ,,,CHICOPEE,MA,,
133
+ ,,,Norfolk,VA,,
134
+ ,,,Visalia,Ca,,
135
+ ,,,Ewing Twp,NJ,,
136
+ ,,,Houston,TX,,
137
+ ,,,Honolulu,HI,,
138
+ ,,,Murrieta,CA,,
139
+ ,,,Sacramento,CA,,
140
+ ,,,Huntington Beach,CA,,
141
+ ,,,Saltillo,TX,,
142
+ ,,,Memphis,TN,,
143
+ ,,,KEYES,CA,,
144
+ ,,,Manteca,Ca,,
145
+ ,,,Las Vegas,NV,,
146
+ ,,,Washington,DC,,
147
+ ,,,Roseville,CA,,
148
+ ,,,Bakersfield,Ca,,
149
+ ,,,Salinas,CA,,
150
+ ,,,Salinas,CA,,
151
+ ,,,Houston,TX,,
152
+ ,,,Mountain View,CA,,
153
+ ,,,Corpus Christi,TX,,
154
+ ,,,Dade City,Florida,,
155
+ ,,,Chico,CA,,
156
+ ,,,Chicago,IL,,
157
+ ,,,Sacramento,CA,,
158
+ ,,,Colorado Springs,Co.,,
159
+ ,,,Greensboro,NC,,
160
+ ,,,Redmond,OR,,
161
+ ,,,Carson,CA,,
162
+ ,,,Mattoon,Illinois,,
163
+ ,,,Star,ID,,
164
+ ,,,stamford,ct,,
165
+ ,,,Miami,FL,,
166
+ ,,,San Francisco,CA,,
167
+ ,,,Oxnard,CA,,
168
+ ,,,Arlington,TX,,
169
+ ,,,Albuquerque,NM,,
170
+ ,,,Honolulu,Hawaii,,
171
+ ,,,Jonesboro,AR,,
172
+ ,,,Marietta,ga,,
173
+ ,,,San Diego,CA,,
174
+ ,,,Maricopa,AZ,,
175
+ ,,,Syracuse,NY,,
176
+ ,,,Ventura,CA,,
177
+ ,,,Fredericksburg,VA,,
178
+ ,,,tampa,fl,,
179
+ ,,,Rochester,New York,,
180
+ ,,,Waco,TX,,
181
+ ,,,Brentwood,CA,,
182
+ ,,,Lancaster,PA,,
183
+ ,,,El Paso,Tx,,
184
+ ,,,West Sacramento,CA,,
185
+ ,,,Los Angeles,CA,,
186
+ ,,,Denver,CO,,
187
+ ,,,Frisco,TX,,
188
+ ,,,Fairfield,CA,,
189
+ ,,,Redding,CA,,
190
+ ,,,Fremont,CA,,
191
+ ,,,Fargo,ND,,
192
+ ,,,Redding,CA,,
193
+ ,,,Summerville,South Carolina,,
194
+ ,,,Port St Johns,FL,,
195
+ ,,,San Bernardino,CA,,
196
+ ,,,REDLANDS,CALIFORNIA,,
197
+ ,,,Bakersfield,Ca,,
198
+ ,,,Los Angeles,ca,,
199
+ ,,,Troy,OH,,
200
+ ,,,San Bernardino,California,,
201
+ ,,,Elk Grove,CA,,
202
+ ,,,Hacienda heights,CA,,
203
+ ,,,Homestead,Fl,,
204
+ ,,,Chandler,AZ,,
205
+ ,,,EDINBURG,TX,,
206
+ ,,,Manhattan,KS,,
207
+ ,,,Buena park,CA,,
208
+ ,,,Bedford,TX,,
209
+ ,,,Hilmar,Ca,,
210
+ ,,,Bridgeport,WV,,
211
+ ,,,Carbondale,IL,,
212
+ ,,,HONOLULU,HI,,
213
+ ,,,Honolulu,HI,,
214
+ ,,,Houston,Tx,,
215
+ ,,,Hattiesburg,Mississippi,,
216
+ ,,,Duluth,GA,,
217
+ ,,,Yonkers,New York,,
218
+ ,,,Salinas,Ca,,
219
+ ,,,Clackamas,Oregon,,
220
+ ,,,Nassau Bay,TX,,
221
+ ,,,Brisbane,Ca,,
222
+ ,,,Boston,MA,,
223
+ ,,,Boston,MA,,
224
+ ,,,Riverside,California,,
225
+ ,,,Monroe,La.,,
226
+ ,,,Austin,TX,,
227
+ ,,,San Antonio,TX,,
228
+ ,,,Spokane,WA,,
229
+ ,,,Newport Beach,CA,,
230
+ ,,,Henderson,NV,,
231
+ ,,,Turlock,CA,,
232
+ ,,,San Jose,CA,,
233
+ ,,,merced,ca,,
234
+ ,,,Brawley,CA,,
235
+ ,,,TOOELE,UT,,
236
+ ,,,Wichita,KS,,
237
+ ,,,Hickory,NC,,
238
+ ,,,Chicago,IL,,
239
+ ,,,Vancouver,WA,,
240
+ ,,,Hampton,VA,,
241
+ ,,,Newport,KY,,
242
+ ,,,Oklahoma City,Oklahoma,,
243
+ ,,,Wine country,CA,,
244
+ ,,,Memphis,Tennessee,,
245
+ ,,,North Charleston,SC,,
246
+ ,,,Tampa,FL,,
247
+ ,,,Palm Springs,CA,,
248
+ ,,,Anchorage,AK,,
249
+ ,,,Surprise,Az,,
250
+ ,,,Bloomington,CA,,
251
+ ,,,McAllen,TX,,
252
+ ,,,West Sacramento,CA,,
253
+ ,,,Industry,CA,,
254
+ ,,,Hayward,Ca,,
255
+ ,,,Chariton,Iowa,,
256
+ ,,,Fresno,CA,,
257
+ ,,,East Hartford,Connecticut,,
258
+ ,,,Houston,Texas,,
259
+ ,,,Houston,Texas,,
260
+ ,,,Industry,CA,,
261
+ ,,,porterville,CA,,
262
+ ,,,Billings,MT,,
263
+ ,,,Memphis,Tn,,
264
+ ,,,Tulsa,OK,,
265
+ ,,,Oklahoma City,OK,,
266
+ ,,,Brawley,Ca,,
267
+ ,,,Gilbert,AZ,,
268
+ ,,,Lacey,WA,,
269
+ ,,,Mechanicsville,Virginia,,
270
+ ,,,Tampa,FL,,
271
+ ,,,Missoula,MT,,
272
+ ,,,Corpus Christi,Texas,,
273
+ ,,,Delano,ca,,
274
+ ,,,Nashville,TN,,
275
+ ,,,New York,New York,,
276
+ ,,,hesperia,California,,
277
+ ,,,Denver,Colorado,,
278
+ ,,,Windsor,CO,,
279
+ ,,,Wauwatosa,WI,,
280
+ ,,,san angelo,tx,,
281
+ ,,,Devol,OK,,
282
+ ,,,Xenia,Ohio,,
283
+ ,,,Cheyenne,WY,,
284
+ ,,,Apple Valley,CA,,
285
+ ,,,Socorro,TX,,
286
+ ,,,Albuquerque,N.M.,,
287
+ ,,,Casa grande,Arizona(AZ),,
288
+ ,,,Albuquerque,New Mexico,,
289
+ ,,,Long Beach,Ca,,
290
+ ,,,Charlotte,North Carolina,,
291
+ ,,,Saint Paul,MN,,
292
+ ,,,Jackson,Ms.,,
293
+ ,,,Pleasant Hill,California,,
294
+ ,,,mesa,az,,
295
+ ,,,San Antonio,TX,,
296
+ ,,,Jonesboro,AR,,
297
+ ,,,Raleigh,North Carolina,,
298
+ ,,,Greensboro,NC,,
299
+ ,,,Hanford,CA,,
300
+ ,,,Rio Rancho,NM,,
301
+ ,,,San Jose,CA,,
302
+ ,,,moreno valley,ca,,
303
+ ,,,San Antonio,Texas,,
304
+ ,,,Tucson,AZ,,
305
+ ,,,Glendale,Arizona,,
306
+ ,,,el paso,tx,,
307
+ ,,,Henderson,Nevada,,
308
+ ,,,Salem,OR,,
309
+ ,,,San Antonio,Texas,,
310
+ ,,,Medford,OR,,
311
+ ,,,Toledo,Ohio,,
312
+ ,,,Las Vegas,NV,,
313
+ ,,,las vegas,NV,,
314
+ ,,,Brawley,CA,,
315
+ ,,,La Quinta,CA,,
316
+ ,,,Santa Clara,CA,,
317
+ ,,,Chicago,IL,,
318
+ ,,,Jersey City,New Jersey,,
319
+ ,,,Bayonne,NJ,,
320
+ ,,,Coeur d'Alene,ID,,
321
+ ,,,Ellensburg,WA,,
322
+ ,,,Herndon,VA,,
323
+ ,,,Austin,Texas,,
324
+ ,,,new york,ny,,
325
+ ,,,Madera,CA,,
326
+ ,,,Austin,TX,,
327
+ ,,,MORENO VALLEY,CA,,
328
+ ,,,Chicopee,MA,,
329
+ ,,,Portland,OR,,
330
+ ,,,dansville,NY,,
331
+ ,,,PORTERVILLE,CA,,
332
+ ,,,Solana Beach,CA,,
333
+ ,,,Culver City,CA,,
334
+ ,,,Casa grande,Arizona(AZ),,
335
+ ,,,Prescott,AZ,,
336
+ ,,,Honolulu,Hawaii,,
337
+ ,,,Portland,OR,,
338
+ ,,,Antioch,Ca,,
339
+ ,,,Pleasanton,California,,
340
+ ,,,New York,New York,,
341
+ ,,,Yakima,Wa,,
342
+ ,,,Aurora,CO,,
343
+ ,,,Gardena,Ca,,
344
+ ,,,Downey,CA,,
345
+ ,,,EastHartford,CO,,
346
+ ,,,Sandy Springs,GA,,
347
+ ,,,Reno,Nv,,
348
+ ,,,South San Francisco,Ca,,
349
+ ,,,Colma,CA,,
350
+ ,,,Winchester,CA,,
351
+ ,,,Riverside,California,,
352
+ ,,,Ankeny,IA,,
353
+ ,,,Nashville,TN,,
354
+ ,,,Leavenworth,KS,,
355
+ ,,,Fair Oaks,Ca,,
356
+ ,,,Baton Rouge,LA,,
357
+ ,,,Visalia,Ca,,
358
+ ,,,Greeley,co,,
359
+ ,,,Cupertino,California,,
360
+ ,,,San Diego,CA,,
361
+ ,,,Apache Junction,AZ,,
362
+ ,,,Windsor,CA,,
363
+ ,,,Canfield,OH,,
364
+ ,,,Everett,WA,,
365
+ ,,,Durham,North Carolina,,
366
+ ,,,Boynton Beach,Florida,,
367
+ ,,,Red Bluff,CA,,
368
+ ,,,Finley,Washington,,
369
+ ,,,Lake Elsinore,CA,,
370
+ ,,,Barnegat,NJ,,
371
+ ,,,Santa Fe,New Mexico,,
372
+ ,,,Maricopa,AZ,,
373
+ ,,,Davie,FL,,
374
+ ,,,Lubbock,Texas,,
375
+ ,,,Honolulu,HI,,
376
+ ,,,Portland,OR,,
377
+ ,,,Oakland Park,FL,,
378
+ ,,,Tracy,Ca,,
379
+ ,,,medford,or,,
380
+ ,,,Cameron park,CA,,
381
+ ,,,piqua,OH,,
382
+ ,,,Oceanside,ca,,
383
+ ,,,Trenton,New Jersey,,
384
+ ,,,Concord,NH,,
385
+ ,,,Fontana,Ca,,
386
+ ,,,Arcadia,CA,,
387
+ ,,,Fresno,California,,
388
+ ,,,Eugene,OR,,
389
+ ,,,Linden,NJ,,
390
+ ,,,Rochester,NY,,
391
+ ,,,Moreno Vallay,CA,,
392
+ ,,,Oklahoma city,OK,,
393
+ ,,,napa,California,,
394
+ ,,,Star,ID,,
395
+ ,,,Newport news,VA,,
396
+ ,,,Salem,OR,,
397
+ ,,,Bell,Ca,,
398
+ ,,,Bossier City,LA,,
399
+ ,,,Pembroke pines,Florida,,
400
+ ,,,Salt Lake City,UT,,
401
+ ,,,Phoenix,AZ,,
402
+ ,,,Carson,CA,,
403
+ ,,,Addison,Texas,,
404
+ ,,,Vancouver,Wa,,
405
+ ,,,Woodland,CA,,
406
+ ,,,Cicero,New York,,
407
+ ,,,Durango,CO,,
408
+ ,,,Gilbert,AZ,,
409
+ ,,,Guadalajara,TX,,
410
+ ,,,Charleston,WV,,
411
+ ,,,Saddle Brook,NJ,,
412
+ ,,,Sunnyvale,CA,,
413
+ ,,,Indianapolis,IN,,
414
+ 49ers Aguascalientes,,,Aguascalientes,,,"Aguascalientes Mexico Vikingo Bar Av de la Convención de 1914 Sur 312-A, Las Américas, 20230 Aguascalientes, Ags., Mexico"
415
+ Bajio Faithful,,,"Celaya, GTO",,,"Celaya, GTO Mexico California Prime Rib Restaurant Av. Constituyentes 1000 A, 3 Guerras, 38080 Celaya, Gto., Mexico"
416
+ Niner Empire Chiapas,,,Chiapas,,,"Chiapas Mexico Alitas Tuxtla Blvd. Belisario Dominguez 1861 Loc K1 Tuxtl Fracc, Bugambilias, 29060 Tuxtla Gutiérrez, Chis., Mexico"
417
+ 49ers Faithful Chihuahua Oficial,,,Chihuahua,,,"Chihuahua Mexico El Coliseo Karaoke Sports Bar C. Jose Maria Morelos 111, Zona Centro, 31000 Chihuahua, Chih., Mexico"
418
+ Gold Rush Chihuahua Spartans,,,Chihuahua,,,"Chihuahua Mexico 34 Billiards & Drinks Av. Tecnológico 4903, Las Granjas 31100"
419
+ Club 49ers Mexico,,,"Ciudad de Mexico, Mexico",,,"Ciudad de Mexico, Mexico Mexico Bar 49 16 Septiembre #27 Colonia Centro Historico Ciudad de Mexico"
420
+ Club 49ers Durango Oficial,,,Durango,,,"Durango Mexico Restaurante Buffalucas Constitución C. Constitución 107B, Zona Centro, 34000 Durango, Dgo., Mexico"
421
+ Niner Empire Edo Mex,,,Estado de Mexico,,,"Estado de Mexico Mexico Beer Garden Satélite Cto. Circunvalación Ote. 10-L-4, Cd. Satélite, 53100 Naucalpan de Juárez, Méx., Mexico"
422
+ Club 49ers Jalisco,,,"Guadalajara, Jalisco",,,"Guadalajara, Jalisco Mexico Restaurante Modo Avión Zapopan Calzada Nte 14, Granja, 45010 Zapopan, Jal., Mexico"
423
+ Niner Empire Jalisco,,,"Guadalajara, Jalisco",,,"Guadalajara, Jalisco Mexico SkyGames Sports Bar Av. Vallarta 874 entre Camarena y, C. Escorza, Centro, 44100 Guadalajara, Jal., Mexico"
424
+ Niner Empire Juarez Oficial,,,Juarez,,,"Juarez Mexico Sport Bar Silver Fox Av. Paseo Triunfo de la República 430, Las Fuentes, 32530 Juárez, Chih., Mexico"
425
+ 49ers Merida Oficial,,,Merida,,,"Merida Mexico Taproom Mastache Av. Cámara de Comercio 263, San Ramón Nte, 97117 Mérida, Yuc., Mexico"
426
+ Niner Empire Mexicali,,,Mexicali,,,"Mexicali Mexico La Gambeta Terraza Sports Bar Calz. Cuauhtémoc 328, Aviación, 21230 Mexicali, B.C., Mexico"
427
+ 49ers Monterrey Oficial,,,Monterrey,,,"Monterrey Mexico Buffalo Wild Wings Insurgentes Av Insurgentes 3961, Sin Nombre de Col 31, 64620 Monterrey, N.L., Mexico"
428
+ Club 49ers Puebla,,,Puebla,,,"Puebla Mexico Bar John Barrigón Av. Juárez 2925, La Paz, 72160 Heroica Puebla de Zaragoza, Pue., Mexico"
429
+ Niners Empire Saltillo,,,Saltillo,,,"Saltillo Mexico Cervecería La Huérfana Blvd. Venustiano Carranza 7046-Int 9, Los Rodríguez, 25200 Saltillo, Coah., Mexico"
430
+ San Luis Potosi Oficial,,,San Luis Potosi,,,"San Luis Potosi Mexico Bar VIC Av Nereo Rodríguez Barragán 1399, Fuentes del Bosque, 78220 San Luis Potosí, S.L.P., Mexico"
431
+ 49ers Tijuana Fans Oficial,,,Tijuana,,,"Tijuana Mexico Titan Sports Bar J. Gorostiza 1209, Zona Urbana Rio Tijuana, 22320 Tijuana, B.C., Mexico"
432
+ 49ers Club Toluca Oficial,,,Toluca,,,"Toluca Mexico Revel Wings Carranza Calle Gral. Venustiano Carranza 20 Pte. 905, Residencial Colón y Col Ciprés, 50120 Toluca de Lerdo, Méx., Mexico"
433
+ Cluib de Fans 49ers Veracruz,,,Veracruz,,,"Veracruz Mexico Wings Army del Urban Center C. Lázaro Cárdenas 102, Rafael Lucio, 91110 Xalapa-Enríquez, Ver., Mexico"
434
+ 49ersFanZone.net,,,Bad Vigaun,,,Bad Vigaun Austria Neuwirtsweg 315
435
+ The Niner Empire France,,,Nousseviller Saint Nabor,,,Nousseviller Saint Nabor France 4 voie romaine 4 voie romaine
436
+ Niner Empire Germany-Bavaria Chapter,,,Ismaning,,,Ismaning Germany 49er's Sports & Partybar Muenchener Strasse 79
437
+ 4T9 Mob Germany Family,,,Hamburg,,,Hamburg Germany Jolly Roger Budapester Str. 44
438
+ 49 Niner Empire,,,Cologne State: NRW,,,Cologne State: NRW Germany Joe Camps Sports Bar Joe Champs
439
+ The Niner Empire Germany Berlin Chapter,,,Berlin,,,Berlin Germany Sportsbar Tor133 Torstrasse 133
440
+ ,,,Bornhöved,,,Bornhöved Germany Comeback Bar Mühlenstraße 11
441
+ 49ers Fans Bavaria,,,Ampfing,,,Ampfing Germany Holzheim 1a/Ampfing Holzheim 1a
442
+ The Niner Empire Germany - North Rhine-Westphalia Chapter,,,Duesseldorf,,,Duesseldorf Germany Knoten Kurze Strasse 1A
443
+ Niner Empire Germany-NRW Chapter,,,Cologne,,,Cologne Germany Joe Champs Sportsbar Cologne Hohenzollernring 1 -3
444
+ The Irish Faithful,,,Dublin 13,,,Dublin 13 Ireland Busker On The Ball 13 - 17 Fleet Street
445
+ 49ers Italian Fan Club,,,Fiorano Modenese,,,"Fiorano Modenese Italy The Beer Corner Via Roma, 2/A"
446
+ Mineros Spanish Faithful,,,Madrid,,,Madrid Spain Penalti Lounge Bar Avenida Reina 15
447
+ Equipe Sports SF,,,Sao Paulo,,,"Sao Paulo Brazil Website, Podcast, Facebook Page, Twitter Rua Hitoshi Ishibashi, 11 B"
448
+ 49ers Brasil,,,"Campo Limpo, Sao Paulo",,,"Campo Limpo, Sao Paulo Brazil Bars and Restaurants in São Paulo - SP"
449
+ San Francisco 49ers Brasil,,,"Sao Bernardo do Campo, Sao Paulo",,,"Sao Bernardo do Campo, Sao Paulo Brazil Multiple locations around south and southeast states of Brazil"
450
+ "Niner Empire --Vanouver,BC Chapter",,,"Vancouver, BC",,,"Vancouver, BC Canada The Sharks Club--Langley, BC 20169 88 Avenue"
451
+ True North Niners,,,"Bolton, Ontario",,,"Bolton, Ontario Canada Maguire's Pub 284 Queen st E"
452
+ Faithful Panama,,,,,,Panama 5inco Panama 8530 NW 72ND ST
453
+ Niner Empire New Zealand,,,Auckland,,,Auckland New Zealand The Kingslander 470 New North Road
454
+ 49er Fans-Tonga,,,Nuku'alofa,,,Nuku'alofa Tonga Tali'eva Bar 14 Taufa'ahau Rd
455
+ 49ers Faithful UK,,,Greater Manchester,,,Greater Manchester United Kingdom the green Ducie street Manchester Greater Manchester Lancashire m1 United Kingdom
456
+ 49er Faithful UK,,,Newcastle,,,Newcastle United Kingdom Grosvenor Casino 100 St James' Blvd Newcastle Tyne & Wear CA 95054 United Kingdom
457
+ 49ers of United Kingdom,,,London,,,London United Kingdom The Sports Cafe 80 Haymarket London SW1Y 4TE United Kingdom
458
+ Niner Empire UK,,,Manchester,,,"Manchester United Kingdom The Green Bridge House 26 Ducie Street, Manchester, Manchester M1 2dq United Kingdom"
459
+ "San Francisco 49er Fans of Charleston, SC",,,Charleston,SC,,Charleston SC United States Recovery Room Tavern 685 King St
460
+ 530 Empire,,,Chico,Ca,,Chico Ca United States Nash's 1717 Esplanade
461
+ 303 Denver Chapter Niner Empire,,,Aurora,CO,,Aurora CO United States Moes Bbq 2727 s Parker rd
462
+ 40NINERS L.A. CHAPTER,,,bell,ca,,bell ca United States KRAZY WINGS SPORTS & GRILL 7016 ATLANTIC AVE
463
+ 434 Virginia Niner Empire,,,Danville,VA,,Danville VA United States Kickbacks Jacks 140 Crown Dr
464
+ 480 Gilbert Niner Empire LLC,,,Gilbert,AZ,,Gilbert AZ United States The Brass Tap 313 n Gilbert rd
465
+ Midwest Empire,,,Evansville,IN,,Evansville IN United States Hooters (Evansville) 2112 Bremmerton Dr
466
+ 49er Booster Club of Vacaville,,,Vacaville,CA,,Vacaville CA United States Blondies Bar and Grill 555 Main Street
467
+ 49er Empire High Desert,,,Hesperia,California,,Hesperia California United States Whiskey Barrel 12055 Mariposa Rd.
468
+ Cool 49er Booster Club,,,Cool,CA,,Cool CA United States The Cool Beerworks 5020 Ellinghouse Dr Suite H
469
+ 49ersBeachCitiesSoCal,,,Hermosa Beach,CA,,Hermosa Beach CA United States American Junkie Sky Light Bar American Junkie
470
+ 49ers Denver Empire,,,Aurora,Co,,Aurora Co United States Moe's Original BBQ Aurora 2727 S Parker Rd
471
+ 49ers Forever Faithfuls,,,Vancouver,Wa,,"Vancouver Wa United States Hooligan's sports bar and grill 8220 NE Vancouver Plaza Dr, Vancouver, WA 98662"
472
+ South Texas 49ers Chapter,,,Harlingen,TX,,Harlingen TX United States Wing barn 412 sunny side ln
473
+ 49ers Los Angeles,,,Hollywood,CA,,Hollywood CA United States Dave & Buster's Hollywood 6801 Hollywood Blvd.
474
+ 49ers United Of Frisco TX,,,Frisco,TX,,Frisco TX United States The Frisco Bar and Grill 6750 Gaylord Pkwy
475
+ 619ers San Diego Niner Empire,,,San Diego,California,,San Diego California United States Bridges Bar & Grill 4800 Art Street
476
+ 626 FAITHFUL'S,,,City of Industry,California,,City of Industry California United States Hacienda Heights Pizza Co. 15239 E Gale Ave
477
+ Niner Empire 650 Chapter,,,Redwood City,CA,,Redwood City CA United States 5th Quarter 976 Woodside Rd
478
+ 714 Niner Empire,,,Oxnard,CA,,"Oxnard CA United States Bottoms Up Tavern, 2162 West Lincoln Ave, Anaheim CA 92801 3206 Lisbon Lane"
479
+ 9er Elite Niner Empire,,,Lake Elsinore,California,,Lake Elsinore California United States Pin 'n' Pockets 32250 Mission Trail
480
+ Az 49er Faithful,,,Gilbert,Az,,Gilbert Az United States Fox and Hound! 1017 E Baseline Rd
481
+ Niners Winers,,,Forestville,Ca,,Forestville Ca United States Bars and wineries in sonoma and napa counties River road
482
+ a_49er fan,,,wylie,texas,,wylie texas United States Wylie 922 cedar creek dr.
483
+ Niner Empire Marin,,,Novato,CA,,Novato CA United States Moylan's Brewery & Restaurant 15 Rowland Way
484
+ 4T9 Mob,,,Modesto,ca,,Modesto ca United States Jack's pizza cafe 2001 Mchenry ave
485
+ North Eastern Pennsyvania chapter,,,Larksville,PA,,Larksville PA United States Zlo joes sports bar 234 Nesbitt St
486
+ PDX Frisco Fanatics,,,Portland,Or,,Portland Or United States Suki's bar and Grill 2401 sw 4th ave
487
+ The 101 Niner Empire,,,Morgan Hill,CA,,Morgan Hill CA United States Huntington Station restaurant and sports pub Huntington Station restaurant and sports pub
488
+ Faithful Tri-State Empire,,,Erie,PA,,Erie PA United States Buffalo Wild Wings 2099 Interchange Rd
489
+ YUMA Faithfuls,,,Yuma,AZ,,Yuma AZ United States Hooters 1519 S Yuma Palms Pkwy
490
+ 49ER EMPIRE SF Bay Area Core Chapter,,,Fremont,california,,Fremont california United States Jack's Brewery 39176 Argonaut Way
491
+ Niner Empire Orlando Chapter,,,Orlando,FL,,Orlando FL United States Underground Public House 19 S Orange Ave
492
+ Niner Artillery Empire,,,517 E Gore Blvd,OK,,517 E Gore Blvd OK United States Sweet Play/ Mike's Sports Grill 2610 Sw Lee Blvd Suite 3 / 517 E Gore Blvd
493
+ 510 Empire,,,Alameda,CA,,Alameda CA United States McGee's Bar and Grill 1645 Park ST
494
+ Garlic City Faithful,,,Gilroy,CA,,Gilroy CA United States Straw Hat Pizza 1053 1st Street
495
+ Faithful to the Bay,,,Merced,CA,,Merced CA United States Home Mountain mikes pizza
496
+ O.C. NINER EMPIRE FAITHFUL'S,,,Buena park,CA,,Buena park CA United States Ciro's pizza 6969 la Palma Ave
497
+ 408 Faithfuls,,,Milpitas,CA,,Milpitas CA United States Big Al's Silicon Valley 27 Ranch Drive
498
+ 415 chapter,,,san francisco,California,,san francisco California United States 49er Faithful house 2090 Bryant street
499
+ HairWorks,,,Denver,Co,,Denver Co United States Hair Works 2201 Lafayette at
500
+ 49ers Room The Next Generation Of Faithfuls,,,Tlalnepantla de Baz,CA,,Tlalnepantla de Baz CA United States Buffalo Wild Wings Mindo E Blvd. Manuel Avila Camacho 1007
501
+ Niner Empire 209 Modesto Chapter,,,Modesto,CA,,Modesto CA United States Rivets American Grill 2307 Oakdale Rd
502
+ Lady Niners of Washington,,,Auburn,Wa,,Auburn Wa United States Sports Page 2802 Auburn Way N
503
+ AZ 49ER EMPIRE,,,Phoenix,AZ,,Phoenix AZ United States The Native New Yorker (Ahwatukee) 5030 E Ray Rd.
504
+ The Bulls Eye Bar 49ers,,,Montclair,California,,Montclair California United States Black Angus Montclair California 9415 Monte Vista Ave.
505
+ NoVa Tru9er Empire,,,Woodbridge,va,,Woodbridge va United States Morgan's sports bar & lounge 3081 galansky blvd
506
+ Niner Empire 951 Faithfuls,,,Hemet,CA,,"Hemet CA United States George's Pizza 2920 E. Florida Ave. Hemet, Ca. 2920 E. Florida Ave."
507
+ Spartan Niner Empire Texas,,,Arlington,TX,,Arlington TX United States Bombshells Restaurant & Bar 701 N. Watson Rd.
508
+ THEE EMPIRE FAITHFUL LOS ANGELES COUNTY,,,Los Angeles,CA,,Los Angeles CA United States Home 1422 Saybrook Ave
509
+ Niner Empire Richmond 510 Chapter,,,San Pablo,Ca,,San Pablo Ca United States Noya Lounge 14350 Laurie Lane
510
+ Thee Empire Faithful The Bay Area,,,Oakley,Ca,,Oakley Ca United States Sabrina's Pizzeria 2587 Main St
511
+ The Mid Atlantic Niner Empire Chapter,,,Mechanicsville,Va,,Mechanicsville Va United States The Ville 7526 Mechanicsville Turnpike
512
+ Big Sky SF 49ers,,,Billings,MT,,Billings MT United States Old Chicago - Billings 920 S 24th Street W
513
+ Hawaii Niner Empire,,,Waipahu,HI,,Waipahu HI United States The Hale 94-983 kahuailani st
514
+ Niner Empire Porterville Cen Cal 559,,,Porterville,Ca,,Porterville Ca United States Pizza Factory/ Local Bar & Grill 897 W. Henderson
515
+ W.MA CHAPTER NINER EMPIRE,,,CHICOPEE,MA,,CHICOPEE MA United States MAXIMUM CAPACITY 116 SCHOOL ST
516
+ Hampton Roads Niner Empire (Southside Chapter),,,Norfolk,VA,,Norfolk VA United States Azalea Inn / Timeout Sports Bar Azalea Inn / Timeout Sports Bar
517
+ Central Valley Niners,,,Visalia,Ca,,Visalia Ca United States Pizza factory 3121 w noble
518
+ Niner Knights,,,Ewing Twp,NJ,,Ewing Twp NJ United States Game Room of River Edge Apts 1009 Country Lane
519
+ Lone Star Niner Empire,,,Houston,TX,,Houston TX United States Post oak ice house 5610 Richmond Ave.
520
+ Hawaii Faithfuls,,,Honolulu,HI,,Honolulu HI United States Champions Bar & Grill 1108 Keeaumoku Street
521
+ 49er Faithful of Murrieta,,,Murrieta,CA,,Murrieta CA United States Sidelines Bar & Grill 24910 Washington Ave
522
+ Capitol City 49ers,,,Sacramento,CA,,Sacramento CA United States Tom's Watch Bar DOCO Tom's Watch Bar 414 K St suite 180
523
+ Huntington Beach Faithfuls,,,Huntington Beach,CA,,Huntington Beach CA United States BEACHFRONT 301 301 Main St. Suite 101
524
+ Niner Empire Saltillo,,,Saltillo,TX,,Saltillo TX United States Cadillac Bar Cadillac Saltillo Bar
525
+ Germantown 49er's Club,,,Memphis,TN,,Memphis TN United States Mr. P's Sports Bar Hacks Cross Rd. 3284 Hacks Cross Road
526
+ 49ers faithful,,,KEYES,CA,,KEYES CA United States Mt mikes ceres ca 4618 Blanca Ct
527
+ Ladies Of The Empire,,,Manteca,Ca,,Manteca Ca United States Central Valley and Bay Area 1660 W. Yosemite Ave
528
+ Las Vegas Niner Empire 702,,,Las Vegas,NV,,Las Vegas NV United States Calico Jack's 8200 W. Charleston rd
529
+ 49ers Faithfuls in DC,,,Washington,DC,,Washington DC United States Town Tavern 2323 18th Street NW
530
+ 49er Booster Club of Roseville,,,Roseville,CA,,Roseville CA United States Bunz Sports Pub & Grub 311 Judah Street
531
+ Kern County Niner Empire,,,Bakersfield,Ca,,Bakersfield Ca United States Firehouse Restaurant 7701 White Lane
532
+ Central Coast Niner Empire 831,,,Salinas,CA,,Salinas CA United States Buffalo Wild Wings 1988 North Main St
533
+ Central Coast Niner Empire 831,,,Salinas,CA,,Salinas CA United States Pizza Factory 1945 Natividad Rd
534
+ Houston Niner Empire,,,Houston,TX,,Houston TX United States Home Plate Bar & Grill 1800 Texas Street
535
+ Train Whistle Faithful,,,Mountain View,CA,,Mountain View CA United States Savvy Cellar 750 W. Evelyn Avenue
536
+ Corpus Christi Chapter Niner Empire,,,Corpus Christi,TX,,Corpus Christi TX United States Cheers 419 Starr St.
537
+ Niner Empire Dade City,,,Dade City,Florida,,Dade City Florida United States Beef O Brady's Sports Bar 14136 7th Street
538
+ Chico Faithfuls,,,Chico,CA,,Chico CA United States Mountain Mikes Pizza 1722 Mangrove Ave
539
+ Chicago Niners,,,Chicago,IL,,Chicago IL United States Cheesie's Pub & Grub 958 W Belmont Ave Chicago IL 60657 958 W Belmont Ave
540
+ Niner Empire 916 Sac Town,,,Sacramento,CA,,Sacramento CA United States El Toritos 1598 Arden blvd
541
+ 49ER EMPIRE COLORADO CHAPTER,,,Colorado Springs,Co.,,Colorado Springs Co. United States FOX & HOUND COLORADO SPRINGS 3101 New Center Pt.
542
+ 49ers NC Triad Chapter,,,Greensboro,NC,,Greensboro NC United States Kickback Jack's 1600 Battleground Ave.
543
+ Central Oregon 49ers Faithful,,,Redmond,OR,,Redmond OR United States Redmond Oregon 495 NW 28th St
544
+ Westside 9ers,,,Carson,CA,,Carson CA United States Los Angeles 1462 E Gladwick St
545
+ Niner Empire Illinois Chapter,,,Mattoon,Illinois,,"Mattoon Illinois United States residence, for now 6 Apple Drive"
546
+ Treasure Valley 49er Faithful,,,Star,ID,,Star ID United States The Beer Guys Saloon 10937 W State St
547
+ Ct faithful chapter,,,stamford,ct,,stamford ct United States buffalo wild wings 208 summer st
548
+ 305 FAITHFUL EMPIRE,,,Miami,FL,,Miami FL United States Walk-On's 9065 SW 162nd Ave
549
+ Fillmoe SF Niners Nation Chapter,,,San Francisco,CA,,San Francisco CA United States Honey Arts Kitchen by Pinot's 1861 Sutter Street
550
+ 49ers So Cal Faithfuls,,,Oxnard,CA,,Oxnard CA United States So Cal (Various locations with friends and family) 3206 Lisbon Lane
551
+ Niner Empire DFW,,,Arlington,TX,,Arlington TX United States Walk-Ons Bistreaux Walk-Ons Bistreaux
552
+ Duke City Faithful Niner Empire,,,Albuquerque,NM,,Albuquerque NM United States Duke City Bar And Grill 6900 Montgomery Blvd NE
553
+ 49ers @ Champions,,,Honolulu,Hawaii,,Honolulu Hawaii United States Champions Bar and Grill 1108 Keeaumoku St
554
+ Natural State Niners Club,,,Jonesboro,AR,,"Jonesboro AR United States Buffalo Wild Wings, Jonesboro, AR Buffalo Wild Wings"
555
+ 49er Empire - Georgia Chapter,,,Marietta,ga,,Marietta ga United States Dave & Busters of Marietta Georgia 2215 D and B Dr SE
556
+ San Francisco 49ers of San Diego,,,San Diego,CA,,San Diego CA United States Moonshine Beach Moonshine Beach Bar
557
+ Sonoran Desert Niner Empire,,,Maricopa,AZ,,Maricopa AZ United States Cold beers and Cheeseburgers 20350 N John Wayne pkwy
558
+ 49ers Empire Syracuse 315 Chapter,,,Syracuse,NY,,Syracuse NY United States Change of pace sports bar 1809 Grant Blvd
559
+ Niner Empire Ventura Chapter,,,Ventura,CA,,Ventura CA United States El Rey Cantina El Rey Cantina
560
+ 540 Faithfuls of the Niner Empire,,,Fredericksburg,VA,,Fredericksburg VA United States Home Team Grill 1109 Jefferson Davis Highway
561
+ Ninerempire Tampafl Chapter,,,tampa,fl,,tampa fl United States Ducky's 1719 eest Kennedy blvd
562
+ Gold Diggers,,,Rochester,New York,,Rochester New York United States The Blossom Road Pub 196 N. Winton Rd
563
+ Niner Empire Waco Chapter,,,Waco,TX,,Waco TX United States Salty Dog 2004 N. Valley Mills
564
+ Niner Empire of Brentwood,,,Brentwood,CA,,Brentwood CA United States Buffalo Wild Wings 6051 Lone Tree Way
565
+ "NinerEmpire of Lancaster, PA",,,Lancaster,PA,,Lancaster PA United States PA Lancaster Niners Den 2917 Marietta Avenue
566
+ Empire Tejas 915- El Paso TX,,,El Paso,Tx,,El Paso Tx United States EL Luchador Taqueria/Bar 1613 n Zaragoza
567
+ Capitol City 49ers fan club,,,West Sacramento,CA,,West Sacramento CA United States Burgers and Brew restaurant 317 3rd St
568
+ Golden Empire Hollywood,,,Los Angeles,CA,,Los Angeles CA United States Nova Nightclub 7046 Hollywood Blvd
569
+ Spartan Niner Empire Denver,,,Denver,CO,,Denver CO United States Downtown Denver In transition
570
+ 49er empire of Frisco Texas,,,Frisco,TX,,Frisco TX United States The Irish Rover Pub & Restaurant 8250 Gaylord Pkwy
571
+ FAIRFIELD CHAPTER,,,Fairfield,CA,,Fairfield CA United States Legends Sports Bar & Grill 3990 Paradise Valley Rd
572
+ Shasta Niners,,,Redding,CA,,Redding CA United States Shasta Niners Clubhouse 4830 Cedars Rd
573
+ NINER EMPIRE FREMONT CHAPTER,,,Fremont,CA,,Fremont CA United States Buffalo Wild Wings 43821 Pacific Commons Blvd
574
+ Fargo 49ers Faithful,,,Fargo,ND,,Fargo ND United States Herd & Horns 1414 12th Ave N
575
+ 49ER ORIGINALS,,,Redding,CA,,Redding CA United States BLEACHERS Sports Bar & Grill 2167 Hilltop Drive
576
+ "49er Flowertown Empire of Summerville, SC",,,Summerville,South Carolina,,Summerville South Carolina United States Buffalo Wild Wings 109 Grandview Drive #1
577
+ 49ers of Brevard County,,,Port St Johns,FL,,Port St Johns FL United States Beef O'Bradys in Port St. Johns 3745 Curtis Blvd
578
+ Forever Faithful Clique,,,San Bernardino,CA,,San Bernardino CA United States The Study Pub and Grill 5244 University Pkwy Suite L
579
+ 49ERS FOREVER,,,REDLANDS,CALIFORNIA,,REDLANDS CALIFORNIA United States UPPER DECK 1101 N. CALIFORNIA ST.
580
+ Thee Empire Faithful Bakersfield,,,Bakersfield,Ca,,Bakersfield Ca United States Senor Pepe's Mexican Restaurant 8450 Granite Falls Dr
581
+ Saloon Suad,,,Los Angeles,ca,,Los Angeles ca United States San Francisco Saloon Bar 11501
582
+ Troy'a chapter,,,Troy,OH,,Troy OH United States Viva la fiesta restaurant 836 w main st
583
+ Niner Empire IE Chapter,,,San Bernardino,California,,San Bernardino California United States Don Martins Mexican Grill 1970 Ostrems Way
584
+ 20916 Faithful,,,Elk Grove,CA,,Elk Grove CA United States Sky River Casino 1 Sky River Parkway
585
+ SO. CAL GOLD BLOODED NINER'S,,,Hacienda heights,CA,,Hacienda heights CA United States SUNSET ROOM 2029 hacinenda blvd
586
+ "South Florida's Faithful, Niner Empire",,,Homestead,Fl,,Homestead Fl United States Chili's in Homestead 2220 NE 8TH St.
587
+ Cesty's 49ers Faithful,,,Chandler,AZ,,Chandler AZ United States Nando's Mexican Cafe 1890 W Germann Rd
588
+ Niner Gang Empire,,,EDINBURG,TX,,EDINBURG TX United States Danny Bar & Grill 4409 Adriana
589
+ The Bell Ringers,,,Manhattan,KS,,Manhattan KS United States Jeff and Josie Schafer's House 1517 Leavenworth St.
590
+ O.C. NINER EMPIRE FAITHFUL'S,,,Buena park,CA,,Buena park CA United States Ciro's pizza 6969 la Palma Ave
591
+ Niner Empire DFW,,,Bedford,TX,,Bedford TX United States Papa G's 2900 HIGHWAY 121
592
+ Hilmar Empire,,,Hilmar,Ca,,Hilmar Ca United States Faithful House 7836 Klint dr
593
+ 49ers of West Virginia,,,Bridgeport,WV,,Bridgeport WV United States Buffalo WIld Wings 45 Betten Ct
594
+ 618 Niner Empire,,,Carbondale,IL,,"Carbondale IL United States Home Basement aka """"The Local Tavern"""" 401 N Allyn st"
595
+ NINER EMPIRE HAWAII 808,,,HONOLULU,HI,,HONOLULU HI United States DAVE AND BUSTERS 1030 AUAHI ST
596
+ NINER EMPIRE HAWAII 808,,,Honolulu,HI,,Honolulu HI United States Buffalo Wild Wings 1644 Young St # E
597
+ H-Town Empire,,,Houston,Tx,,Houston Tx United States Skybox Bar and Grill 11312 Westheimer
598
+ Hub City Faithful,,,Hattiesburg,Mississippi,,Hattiesburg Mississippi United States Mugshots 204 N 40th Ave
599
+ Spartan Niner Empire Georgia,,,Duluth,GA,,Duluth GA United States Bermuda Bar 3473 Old Norcross Rd
600
+ Westchester County New York 49ers Fans,,,Yonkers,New York,,"Yonkers New York United States We meet at 3 locations, Burkes Bar in Yonkers, Matador's Fan Cave and Finnerty's 14 Troy Lane"
601
+ Niner Empire 831,,,Salinas,Ca,,Salinas Ca United States Straw Hat Pizza 156 E. Laurel Drive
602
+ Niner Empire Portland,,,Clackamas,Oregon,,Clackamas Oregon United States Various 14682 SE Sunnyside Rd
603
+ 49ers Empire Galveston County Chapter,,,Nassau Bay,TX,,Nassau Bay TX United States Office 1322 Space Park Dr.
604
+ NINER EMPIRE,,,Brisbane,Ca,,Brisbane Ca United States 7 Mile House 2800 Bayshore Blvd
605
+ Boston San Francisco Bay Area Crew,,,Boston,MA,,Boston MA United States The Point Boston 147 Hanover Street
606
+ 49ers Faithful of Boston,,,Boston,MA,,"Boston MA United States The Point, Boston, MA 147 Hanover Street"
607
+ Riverside 49ers Booster Club,,,Riverside,California,,Riverside California United States Lake Alice Trading Co Saloon &Eatery 3616 University Ave
608
+ 318 Niner Empire,,,Monroe,La.,,Monroe La. United States 318 Niner Empire HQ 400 Stone Ave.
609
+ The Austin Faithful,,,Austin,TX,,Austin TX United States 8 Track 2805 Manor Rd
610
+ Niner Empire San Antonio,,,San Antonio,TX,,San Antonio TX United States Sir Winston's Pub 2522 Nacogdoches Rd.
611
+ NINER EMPIRE OF THE 509,,,Spokane,WA,,"Spokane WA United States Mac daddy's 808 W Main Ave #106, Spokane, WA 99201"
612
+ SOCAL OC 49ERS,,,Newport Beach,CA,,Newport Beach CA United States The Blue Beet 107 21st Place
613
+ Sin City Niner Empire,,,Henderson,NV,,Henderson NV United States Hi Scores Bar-Arcade 65 S Stephanie St.
614
+ Central Valley 9er Faithful,,,Turlock,CA,,Turlock CA United States Mountain Mike's 409 S Orange St.
615
+ Niner Squad,,,San Jose,CA,,"San Jose CA United States 4171 Gion Ave San Jose,Ca 4171 Gion Ave"
616
+ merced niner empire,,,merced,ca,,merced ca United States round table pizza 1728 w olive ave
617
+ NINERS ROLLIN HARD IMPERIAL VALLEY CHAPTER,,,Brawley,CA,,Brawley CA United States SPOT 805 550 main Street
618
+ Tooele County 49ers,,,TOOELE,UT,,"TOOELE UT United States Pins and Ales - 1111 N 200 W, Tooele, UT 84074 1111 N 200 W"
619
+ 49ers united of wichita ks,,,Wichita,KS,,Wichita KS United States Hurricane sports grill 8641 w 13th st suite 111
620
+ 828 NCNINERS,,,Hickory,NC,,Hickory NC United States Coaches Neighborhood Bar and Grill 2049 Catawba Valley Blvd SE
621
+ Chicago 49ers Club,,,Chicago,IL,,Chicago IL United States The Globe Pub 1934 West Irving Park Road
622
+ Niner Empire Vancouver,,,Vancouver,WA,,Vancouver WA United States Heathen feral public house 1109 Washington St
623
+ Hampton Roads Niners Fanatics,,,Hampton,VA,,Hampton VA United States Nascar Grille 1996 Power Plant Parkway
624
+ Cincy Faithful,,,Newport,KY,,Newport KY United States Buffalo Wild Wings (Newport) 83 Carothers Rd
625
+ Southside OKC Faithful Niners,,,Oklahoma City,Oklahoma,,Oklahoma City Oklahoma United States CrosseEyed Moose 10601 Sout Western Ave
626
+ 707 FAITHFULS,,,Wine country,CA,,"Wine country CA United States Wine country Breweries, restaurant's, wineries, private locations"
627
+ NINER EMPIRE MEMPHIS CHAPTER,,,Memphis,Tennessee,,Memphis Tennessee United States 360 Sports Bar & Grill 3896 Lamar Avenue
628
+ Chucktown Empire 49ers of Charleston,,,North Charleston,SC,,"North Charleston SC United States Chill n' Grill Sports bar 2810 Ashley Phosphate Rd A1, North Charleston, SC 29418"
629
+ Spartans Niner Empire Florida,,,Tampa,FL,,Tampa FL United States Ducky's Sports Bar 1719 Kennedy Blvd
630
+ Palm Springs Area 49er Club,,,Palm Springs,CA,,Palm Springs CA United States The Draughtsmen 1501 N Palm Canyon
631
+ 49th State Faithful,,,Anchorage,AK,,Anchorage AK United States Al's Alaskan Inn 7830 Old Seward Hwy
632
+ 49er faithful of Arizona ( of the West Valley ),,,Surprise,Az,,"Surprise Az United States Booty's Wings, Burgers and Beer Bar and Grill 15557 W. Bell Rd. Suite 405"
633
+ NINER CORE,,,Bloomington,CA,,Bloomington CA United States Traveling chapter 18972 Grove pl
634
+ Forever Faithful RGV (Rio Grande Valley),,,McAllen,TX,,McAllen TX United States My Place 410 N 17th St
635
+ 49ers Sacramento Faithfuls,,,West Sacramento,CA,,West Sacramento CA United States Kick N Mule Restaurant and Sports Bar 2901 W Capitol Ave
636
+ SO. CAL GOLDBLOOED NINERS,,,Industry,CA,,Industry CA United States Hacienda nights pizza co. 15239 Gale ave
637
+ Niner Empire Hayward chapter,,,Hayward,Ca,,Hayward Ca United States Strawhat pizza 1163 industrial pkwy W
638
+ 49ers Empire Iowa Chapter,,,Chariton,Iowa,,Chariton Iowa United States Shoemakers Steak House 2130 Court Ave
639
+ Niner Empire of Fresno,,,Fresno,CA,,Fresno CA United States Round Table Pizza 5702 N. First st
640
+ Connecticut Spartan Niner Empire,,,East Hartford,Connecticut,,East Hartford Connecticut United States Silver Lanes Lounge 748 Silverlane
641
+ "Niner Empire Houston, TX Chapter",,,Houston,Texas,,Houston Texas United States Little J's Bar 5306 Washington Ave
642
+ "Niner Empire Houston, TX",,,Houston,Texas,,Houston Texas United States coaches I-10 17754 Katy Fwy #1
643
+ SO. CAL GOLD BLOODED NINER'S,,,Industry,CA,,Industry CA United States Hacienda heights Pizza Co 15239 Gale Ave
644
+ the 559 ers,,,porterville,CA,,porterville CA United States landing 13 landing 13
645
+ Billings Niners Faithful,,,Billings,MT,,Billings MT United States Craft B&B 2658 Grand ave
646
+ 901 9ers,,,Memphis,Tn,,Memphis Tn United States Prohibition 4855 American Way
647
+ Tulsa 49ers Faithful,,,Tulsa,OK,,Tulsa OK United States Buffalo Wild Wings 6222 E 41st St
648
+ The Niner Empire - 405 Faithfuls - Oklahoma City,,,Oklahoma City,OK,,Oklahoma City OK United States The Side Chick 115 E. California Ave 5911 Yale Drive
649
+ Niner Empire Imperial Valley,,,Brawley,Ca,,Brawley Ca United States Waves Restaurant & Saloon 621 S Brawley Ave
650
+ East Valley Faithful,,,Gilbert,AZ,,Gilbert AZ United States TBD 5106 South Almond CT
651
+ 360 Niner Empire,,,Lacey,WA,,Lacey WA United States Dela Cruz Residence 1118 Villanova St NE
652
+ 49ers Booster Club of Virginia,,,Mechanicsville,Virginia,,Mechanicsville Virginia United States Sports Page Bar & Grill 8319 Bell Creek Rd
653
+ Niner Empire Tampa,,,Tampa,FL,,Tampa FL United States The Bad Monkey 1717 East 7th Avenue
654
+ 49ers Faithful Montana State,,,Missoula,MT,,Missoula MT United States Not yet determined 415 Coloma Way
655
+ 49ers Fan club,,,Corpus Christi,Texas,,Corpus Christi Texas United States Click Paradise Billiards 5141 Oakhurst Dr.
656
+ Niner Empire Delano,,,Delano,ca,,Delano ca United States Aviator casino 1225 Airport dr
657
+ Mid South Niner Empire,,,Nashville,TN,,Nashville TN United States Winners Bar and Grill 1913 Division St
658
+ 49ers Empire New York City,,,New York,New York,,New York New York United States Off The Wagon 109 MacDougal Street
659
+ 49er Empire High Desert,,,hesperia,California,,hesperia California United States Thorny's 1330 Ranchero rd.
660
+ Mile High 49ers,,,Denver,Colorado,,Denver Colorado United States IceHouse Tavern 1801 Wynkoop St
661
+ NOCO 49ers,,,Windsor,CO,,Windsor CO United States The Summit Windsor 4455 N Fairgrounds Ave
662
+ Milwaukee Spartans of the Niner Empire,,,Wauwatosa,WI,,Wauwatosa WI United States jacksons blue ribbon pub 11302 w bluemound rd
663
+ SAN ANGELO NINER EMPIRE,,,san angelo,tx,,san angelo tx United States buffalo wild wings 4251 sherwoodway
664
+ 580 FAITHFUL,,,Devol,OK,,"Devol OK United States APACHE LONE STAR CASUNO Devol, Oklahoma"
665
+ 49ers of Ohio,,,Xenia,Ohio,,Xenia Ohio United States Cafe Ole' 131 North Allison Ave
666
+ 307 FAITHFUL,,,Cheyenne,WY,,"Cheyenne WY United States 4013 Golden Ct, Cheyenne, Wyoming 4013 Golden Ct"
667
+ Mojave Desert 49er Faithfuls,,,Apple Valley,CA,,Apple Valley CA United States Gator's Sports Bar and Grill - Apple Valley 21041 Bear Valley Rd
668
+ The Dusty Faithful,,,Socorro,TX,,Socorro TX United States The Dusty Tap Bar 10297 Socorro Rd
669
+ The Duke City Faithful,,,Albuquerque,N.M.,,Albuquerque N.M. United States Buffalo wild wings 6001 iliff rd.
670
+ Emilio,,,Casa grande,Arizona(AZ),,Casa grande Arizona(AZ) United States Liquor factory bar and deli 930 E Florence
671
+ New Mexico Niner Empire,,,Albuquerque,New Mexico,,"Albuquerque New Mexico United States Ojos Locos Sports Cantina Park Square,2105 Louisiana Blvd N.E"
672
+ So Cal Niner Empire,,,Long Beach,Ca,,Long Beach Ca United States Gallaghers Irish Pub and Grill 2751 E. Broadway
673
+ 49er Faithful of Charlotte,,,Charlotte,North Carolina,,Charlotte North Carolina United States Strike City Charlotte 210 E. Trade St.
674
+ MSP Niner Faithful,,,Saint Paul,MN,,Saint Paul MN United States Firebox BBQ 1585 Marshall Ave
675
+ Mississippi Niner Empire Chapter-Jackson,,,Jackson,Ms.,,Jackson Ms. United States M-Bar Sports Grill 6340 Ridgewood Ct.
676
+ BayArea Faithfuls,,,Pleasant Hill,California,,Pleasant Hill California United States Damo Sushi 508 Contra Costa Blvd
677
+ AZ49erFaithful,,,mesa,az,,mesa az United States Boulders on Southern 1010 w Southern ave suite 1
678
+ Pluckers Alamo Ranch,,,San Antonio,TX,,San Antonio TX United States Pluckers Wong Bar 202 Meadow Bend Dr
679
+ Natural State Niners,,,Jonesboro,AR,,Jonesboro AR United States Buffalo Wild Wings 1503 Red Wolf Blvd
680
+ North Carolina Gold Blooded Empire,,,Raleigh,North Carolina,,Raleigh North Carolina United States Tobacco Road - Raleigh 222 Glenwood Avenue
681
+ Spartan Empire of North Carolina,,,Greensboro,NC,,Greensboro NC United States World of Beer 1310 westover terr
682
+ Niner Empire Kings County,,,Hanford,CA,,Hanford CA United States Fatte Albert's pizza co 110 E 7th St
683
+ New Mexico Gold Rush,,,Rio Rancho,NM,,Rio Rancho NM United States Applebee's 4100 Ridge Rock Rd
684
+ Niner 408 Squad,,,San Jose,CA,,San Jose CA United States Personal home 3189 Apperson Ridge Court
685
+ NINER ALLEY,,,moreno valley,ca,,moreno valley ca United States home 13944 grant st
686
+ Niner Empire San Antonio,,,San Antonio,Texas,,San Antonio Texas United States Fatso's 1704 Bandera Road
687
+ NinerEmpire520,,,Tucson,AZ,,Tucson AZ United States Maloney's 213 North 4th Ave
688
+ 49er Empire Desert West,,,Glendale,Arizona,,Glendale Arizona United States McFadden's Glendale 9425 West Coyotes Blvd
689
+ Niner Empire EPT,,,el paso,tx,,el paso tx United States knockout pizza 10110 mccombs
690
+ "Niner Empire Henderson, NV",,,Henderson,Nevada,,Henderson Nevada United States Hi Scores Bar-Arcade 65 S Stephanie St
691
+ Niner Empire Salem,,,Salem,OR,,Salem OR United States IWingz IWingz
692
+ Niner Empire San Antonio,,,San Antonio,Texas,,San Antonio Texas United States Fatsos 1704 Bandera Rd
693
+ Niner Empire Southern Oregon,,,Medford,OR,,Medford OR United States The Zone Sports Bar & Grill 1250 Biddle Rd.
694
+ niner empire faithfuls of toledo,,,Toledo,Ohio,,Toledo Ohio United States Legendz sports pub and grill 519 S. Reynolds RD
695
+ Las Vegas Niner EmpireNorth,,,Las Vegas,NV,,Las Vegas NV United States Timbers Bar & Grill 7240 West Azure Drive
696
+ NINER FRONTIER,,,las vegas,NV,,las vegas NV United States Luckys Lounge 7345 S Jones Blvd
697
+ NINERS ROLLIN HARD IMPERIAL VALLEY,,,Brawley,CA,,Brawley CA United States SPOT 805 Bar and Grill 550 Main St
698
+ Niners Rollin Hard EL Valle C.V. Chapter,,,La Quinta,CA,,La Quinta CA United States The Beer Hunters 78483 Highway 111
699
+ Niners United,,,Santa Clara,CA,,"Santa Clara CA United States Levi's Stadium Section 201, Section 110, Section 235 (8 of the 18 members are Season Ticket Holders) 4900 Marie P DeBartolo Way"
700
+ San Francisco 49ers Fans of Chicago,,,Chicago,IL,,"Chicago IL United States Gracie O'Malley's (Wicker Park location), 1635 N Milwaukee Ave, Chicago, IL 60647 Gracie O'Malley's"
701
+ NJ Niner Empire Faithful Warriors,,,Jersey City,New Jersey,,Jersey City New Jersey United States O'Haras Downtown 172 1st Street
702
+ NJ9ers,,,Bayonne,NJ,,Bayonne NJ United States Mr. Cee's Bar & Grill 17 E 21st Street
703
+ North Idaho 49ers Faithful,,,Coeur d'Alene,ID,,Coeur d'Alene ID United States Iron Horse Bar and Grille 407 Sherman Ave
704
+ Northwest Niner Empire,,,Ellensburg,WA,,Ellensburg WA United States Armies Horseshoe Sports Bar 106 W 3rd
705
+ NOVA Niners,,,Herndon,VA,,Herndon VA United States Finnegan's Sports Bar & Grill 2310 Woodland Crossing Dr
706
+ Austin Niner Empire,,,Austin,Texas,,Austin Texas United States Mister Tramps Pub & Sports Bar 8565 Research Blvd
707
+ New York 49ers Club,,,new york,ny,,new york ny United States Finnerty's Sports Bar 221 2nd Avenue
708
+ Mad-town chapter,,,Madera,CA,,Madera CA United States Madera Ranch 28423 Oregon Ave
709
+ Gold Rush Army of Austin,,,Austin,TX,,Austin TX United States Midway Field House 2015 E Riverside Dr
710
+ niner alley,,,MORENO VALLEY,CA,,MORENO VALLEY CA United States papa joes sports bar 12220 frederick ave
711
+ 413 Spartans,,,Chicopee,MA,,Chicopee MA United States Bullseye Bullseye
712
+ Clementine's Faithful,,,Portland,OR,,Portland OR United States The Mule Bar 4915 NE Fremont Street
713
+ 585faithful,,,dansville,NY,,dansville NY United States dansville ny 108 main st
714
+ Niner Empire Cen Cal 559,,,PORTERVILLE,CA,,PORTERVILLE CA United States BRICKHOUSE BAR AND GRILL 152 North Hockett Street
715
+ Booze & Niner Football,,,Solana Beach,CA,,Solana Beach CA United States Saddle Bar 123 W Plaza St
716
+ Westside Niners Nation,,,Culver City,CA,,Culver City CA United States Buffalo Wings and Pizza 5571 Sepulveda Blvd.
717
+ Pinal county niner empire,,,Casa grande,Arizona(AZ),,Casa grande Arizona(AZ) United States Liquor factory bar and deli 930 E Florence
718
+ "Prescott, AZ 49ers faithful",,,Prescott,AZ,,Prescott AZ United States Prescott Office Resturant 128 N. Cortez St.
719
+ San Francisco 49'ers Hawaii Fan Club,,,Honolulu,Hawaii,,Honolulu Hawaii United States To be determined To be determined
720
+ Niner Empire Portland,,,Portland,OR,,Portland OR United States KingPins Portland 3550 SE 92nd ave
721
+ QueensandKings Bay Area Empire Chapter,,,Antioch,Ca,,Antioch Ca United States Tailgaters 4605 Golf Course Rd
722
+ Club 49 Tailgate Crew,,,Pleasanton,California,,Pleasanton California United States Sunshine Saloon Sports Bar 1807 Santa Rita Rd #K
723
+ 49ers Nyc Chapter,,,New York,New York,,"New York New York United States Off the Wagon 109 Macdougal St,"
724
+ "49er faithfuls Yakima,Wa",,,Yakima,Wa,,Yakima Wa United States TheEndzone 1023 N 1st
725
+ 49er's Faithful Aurora Co Chapter,,,Aurora,CO,,Aurora CO United States 17307 E Flora Place 17307 E Flora Place
726
+ 49er F8thfuls,,,Gardena,Ca,,Gardena Ca United States Paradise 889 w 190th
727
+ westside9ers,,,Downey,CA,,Downey CA United States Bar Louie 8860 Apollo Way
728
+ Spartan 9er Empire Connecticut,,,EastHartford,CO,,EastHartford CO United States Red Room 1543 Main St
729
+ Red & Gold Empire,,,Sandy Springs,GA,,Sandy Springs GA United States Hudson Grille Sandy Springs 6317 Roswell Rd NE
730
+ RENO NINEREMPIRE,,,Reno,Nv,,Reno Nv United States Semenza's Pizzeria 4380 Neil rd.
731
+ 650 Niner Empire peninsula chapter,,,South San Francisco,Ca,,South San Francisco Ca United States 7 Mile House 1201 bayshore blvd
732
+ Spartan Niner Empire California,,,Colma,CA,,Colma CA United States Molloys Tavern Molloys tavern
733
+ Riverside county TEF (Thee Empire Faithful),,,Winchester,CA,,Winchester CA United States Pizza factory 30676 Bentod Rd
734
+ Riverside 49ers Booster Club,,,Riverside,California,,Riverside California United States Lake Alice Trading Co Saloon &Eatery 3616 University Ave
735
+ 49ers Strong Iowa - Des Moines Chapter,,,Ankeny,IA,,Ankeny IA United States Benchwarmers 705 S Ankeny Blvd
736
+ Mid South Niner Nation,,,Nashville,TN,,Nashville TN United States Kay Bob's 1602 21st Ave S
737
+ Kansas City 49ers Faithful,,,Leavenworth,KS,,"Leavenworth KS United States Fox and hound. 10428 metcalf Ave. Overland Park, ks 22425"
738
+ 49er Booster Club Carmichael Ca,,,Fair Oaks,Ca,,Fair Oaks Ca United States Fair Oaks 7587 Pineridge Lane
739
+ Rouge & Gold Niner Empire,,,Baton Rouge,LA,,Baton Rouge LA United States Sporting News Grill 4848 Constitution Avenue
740
+ Niner Empire Tulare County,,,Visalia,Ca,,Visalia Ca United States 5th Quarter 3360 S. Fairway
741
+ Mile High 49ers NOCO Booster Club,,,Greeley,co,,Greeley co United States Old Chicago Greeley 2349 W. 29th St
742
+ NINERFANS.COM,,,Cupertino,California,,Cupertino California United States Islands Bar And Grill (Cupertino) 20750 Stevens Creek Blvd.
743
+ San Diego Gold Rush,,,San Diego,CA,,San Diego CA United States Bootleggers 804 market st.
744
+ East Valley Niner Empire,,,Apache Junction,AZ,,Apache Junction AZ United States Tumbleweed Bar & Grill 725 W Apache Trail
745
+ Santa Rosa Niner Empire,,,Windsor,CA,,Windsor CA United States Santa Rosa 140 3rd St
746
+ Youngstown Faithful,,,Canfield,OH,,Canfield OH United States The Cave 369 Timber Run Drive
747
+ Seattle Niners Faithful,,,Everett,WA,,Everett WA United States Great American Casino 12715 4th Ave W
748
+ "San Francisco 49ers Faithful - Greater Triangle Area, NC",,,Durham,North Carolina,,Durham North Carolina United States Tobacco Road Sports Cafe 280 S. Mangum St. #100
749
+ South Florida Gold Blooded Empire,,,Boynton Beach,Florida,,Boynton Beach Florida United States Miller's Ale House 2212 N. Congress Avenue
750
+ Red Rock's Local 49 Club,,,Red Bluff,CA,,Red Bluff CA United States Tips Bar 501 walnut St.
751
+ Columbia Basin Niners Faithful,,,Finley,Washington,,Finley Washington United States Shooters 214711 e SR 397 314711 wa397
752
+ 9er Elite,,,Lake Elsinore,CA,,Lake Elsinore CA United States Pins N Pockets 32250 Mission Trail
753
+ Shore Faithful,,,Barnegat,NJ,,Barnegat NJ United States 603 East Bay Ave
754
+ Santa Fe Faithfuls,,,Santa Fe,New Mexico,,Santa Fe New Mexico United States Blue Corn Brewery 4056 Cerrilos Rd.
755
+ Sonoran Desert Niner Empire,,,Maricopa,AZ,,Maricopa AZ United States Cold beers and cheeseburgers 20350 N John Wayne Pkwy
756
+ 9549ERS faithful,,,Davie,FL,,Davie FL United States Twin peaks Twin peaks
757
+ 806 Niner Empire West Texas Chapter,,,Lubbock,Texas,,Lubbock Texas United States Buffalo Wild Wings 6320 19th st
758
+ Ohana Niner Empire,,,Honolulu,HI,,Honolulu HI United States TBD 1234 TBD
759
+ Westside Portland 49er Fan Club,,,Portland,OR,,Portland OR United States The Cheerful Tortoise 1939 SW 6th Ave
760
+ 49ersGold,,,Oakland Park,FL,,Oakland Park FL United States stout bar and grill Stout Bar and Grill
761
+ 4T9 MOB TRACY FAMILY,,,Tracy,Ca,,Tracy Ca United States Buffalo wild wings 2796 Naglee road
762
+ Niner Empire Southern Oregon Chapter,,,medford,or,,medford or United States imperial event center 41 north Front Street
763
+ SacFaithful,,,Cameron park,CA,,Cameron park CA United States Presidents home 3266 Cimmarron rd
764
+ Niner Faithful Of Southern Ohio,,,piqua,OH,,piqua OH United States My House 410 Camp St
765
+ NinerGangFaithfuls,,,Oceanside,ca,,Oceanside ca United States my house 4020 Thomas st
766
+ Jersey 49ers riders,,,Trenton,New Jersey,,Trenton New Jersey United States sticky wecket 2465 S.broad st
767
+ Life Free or Die Faithfuls,,,Concord,NH,,Concord NH United States Buffalo Wild Wings 8 Loudon Rd
768
+ The 909 Niner Faithfuls,,,Fontana,Ca,,Fontana Ca United States Boston's Sports Bar and Grill 16927 Sierra Lakes Pkwy.
769
+ Arcadia Chapter,,,Arcadia,CA,,Arcadia CA United States 4167 e live oak Ave 4167 e live oak Ave
770
+ Thee Empire Faithful,,,Fresno,California,,Fresno California United States Buffalo Wild Wings 3065 E Shaw Ave
771
+ The Oregon Faithful,,,Eugene,OR,,Eugene OR United States The Side Bar Side Bar
772
+ The ORIGINAL Niner Empire-New Jersey Chapter,,,Linden,NJ,,Linden NJ United States Nuno's Pavilion 300 Roselle ave
773
+ What a Rush (gold),,,Rochester,NY,,Rochester NY United States The Scotch House Pub 373 south Goodman street
774
+ Moreno Valley 49er Empire,,,Moreno Vallay,CA,,Moreno Vallay CA United States S Bar and Grill 23579 Sunnymead Ranch Pkwy
775
+ "The Niner Empire, 405 Faithfuls, Oklahoma City",,,Oklahoma city,OK,,Oklahoma city OK United States Hooters NW Expressway OKC 3025 NW EXPRESSWAY
776
+ 707 EMPIRE VALLEY,,,napa,California,,napa California United States Ruiz Home 696a stonehouse drive
777
+ Treasure Valley 49er Faithful,,,Star,ID,,Star ID United States The Beer Guys Saloon 10937 W. State Street
778
+ Hampton Roads Niner Empire,,,Newport news,VA,,Newport news VA United States Boathouse Live 11800 Merchants Walk #100
779
+ Niner Empire Salem,,,Salem,OR,,Salem OR United States AMF Firebird Lanes 4303 Center St NE
780
+ Forty Niners LA chapter,,,Bell,Ca,,Bell Ca United States Krazy Wings 7016 Atlantic Blvd
781
+ Red River Niner Empire,,,Bossier City,LA,,Bossier City LA United States Walk On's Bossier City 3010 Airline Dr
782
+ Ultimate 49er Empire,,,Pembroke pines,Florida,,Pembroke pines Florida United States Pines alehouse 11795 pine island blvd
783
+ Utah Niner Empire,,,Salt Lake City,UT,,Salt Lake City UT United States Legends Sports Pub 677 South 200 West
784
+ Phoenix602Faithful,,,Phoenix,AZ,,Phoenix AZ United States Galaghers 3220 E Baseline Rd
785
+ WESTSIDE 9ERS,,,Carson,CA,,Carson CA United States Buffalo Wild Wings 736 E Del Amo Blvd
786
+ Addison Point 49ner's Fans,,,Addison,Texas,,Addison Texas United States Addison Point Sports Grill 4578 Beltline Road
787
+ 49er Forever Faithfuls,,,Vancouver,Wa,,"Vancouver Wa United States Hooligans bar and grill 8220 NE Vancouver Plaza Dr, Vancouver, WA 98662"
788
+ Woodland Faithful,,,Woodland,CA,,Woodland CA United States Mountain Mikes Pizza 171 W. Main St
789
+ Niner Empire Central New York,,,Cicero,New York,,Cicero New York United States Tully's Good Times 7838 Brewerton Rd
790
+ 4 Corners Faithful,,,Durango,CO,,Durango CO United States Sporting News Grill 21636 Highway 160
791
+ 480 Gilbert Niner Empire,,,Gilbert,AZ,,Gilbert AZ United States Panda Libre 748 N Gilbert Rd
792
+ Niner Empire Jalisco 49ers Guadalajara,,,Guadalajara,TX,,Guadalajara TX United States Bar Cheleros Bar CHELEROS
793
+ 49ERS Faithful of West Virginia,,,Charleston,WV,,Charleston WV United States The Pitch 5711 MacCorkle Ave SE
794
+ 49 Migos Chapter,,,Saddle Brook,NJ,,Saddle Brook NJ United States Midland Brewhouse 374 N Midland Ave
795
+ 49ers Bay Area Faithful Social Club,,,Sunnyvale,CA,,Sunnyvale CA United States Giovanni's New York Pizzeria 1127 Lawrence Expy
796
+ Niner Empire Of Indy,,,Indianapolis,IN,,Indianapolis IN United States The Bulldog Bar and Lounge 5380 N College Ave
797
+ NoTT 49ers SB BANG BANG,,,Goleta,California,,Goleta California United States No Town Tavern 5114 Hollister Ave
graph.py ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ This module initializes the Neo4j graph connection using Streamlit secrets.
3
+ """
4
+
5
+ import os
6
+ import streamlit as st
7
+ from dotenv import load_dotenv
8
+ from langchain_neo4j import Neo4jGraph
9
+
10
+ # Load environment variables
11
+ load_dotenv()
12
+
13
+ # Get Neo4j credentials from environment or Streamlit secrets
14
+ def get_credential(key_name):
15
+ """Get credential from environment or Streamlit secrets"""
16
+ # First try to get from Streamlit secrets
17
+ if hasattr(st, 'secrets') and key_name in st.secrets:
18
+ return st.secrets[key_name]
19
+ # Then try to get from environment
20
+ return os.environ.get(key_name)
21
+
22
+ # Get Neo4j credentials
23
+ AURA_CONNECTION_URI = get_credential("AURA_CONNECTION_URI") or get_credential("NEO4J_URI")
24
+ AURA_USERNAME = get_credential("AURA_USERNAME") or get_credential("NEO4J_USERNAME")
25
+ AURA_PASSWORD = get_credential("AURA_PASSWORD") or get_credential("NEO4J_PASSWORD")
26
+
27
+ # Check if credentials are available
28
+ if not all([AURA_CONNECTION_URI, AURA_USERNAME, AURA_PASSWORD]):
29
+ missing = []
30
+ if not AURA_CONNECTION_URI:
31
+ missing.append("AURA_CONNECTION_URI/NEO4J_URI")
32
+ if not AURA_USERNAME:
33
+ missing.append("AURA_USERNAME/NEO4J_USERNAME")
34
+ if not AURA_PASSWORD:
35
+ missing.append("AURA_PASSWORD/NEO4J_PASSWORD")
36
+
37
+ error_message = f"Missing Neo4j credentials: {', '.join(missing)}"
38
+ st.error(error_message)
39
+ raise ValueError(error_message)
40
+
41
+ # Connect to Neo4j
42
+ try:
43
+ graph = Neo4jGraph(
44
+ url=AURA_CONNECTION_URI,
45
+ username=AURA_USERNAME,
46
+ password=AURA_PASSWORD,
47
+ )
48
+ except Exception as e:
49
+ error_message = f"Failed to connect to Neo4j: {str(e)}"
50
+ st.error(error_message)
51
+ raise Exception(error_message)
llm.py ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ This module initializes the language model and embedding model using Streamlit secrets.
3
+ """
4
+
5
+ import os
6
+ import streamlit as st
7
+ from dotenv import load_dotenv
8
+ from langchain_openai import ChatOpenAI, OpenAIEmbeddings
9
+
10
+ # Load environment variables
11
+ load_dotenv()
12
+
13
+ # Get API keys from environment or Streamlit secrets
14
+ def get_api_key(key_name):
15
+ """Get API key from environment or Streamlit secrets"""
16
+ # First try to get from Streamlit secrets
17
+ if hasattr(st, 'secrets') and key_name in st.secrets:
18
+ return st.secrets[key_name]
19
+ # Then try to get from environment
20
+ return os.environ.get(key_name)
21
+
22
+ OPENAI_API_KEY = get_api_key("OPENAI_API_KEY")
23
+ OPENAI_MODEL = get_api_key("OPENAI_MODEL") or "gpt-4-turbo"
24
+
25
+ if not OPENAI_API_KEY:
26
+ st.error("OPENAI_API_KEY is not set in environment variables or Streamlit secrets.")
27
+ raise ValueError("OPENAI_API_KEY is not set")
28
+
29
+ # Create the LLM with better error handling
30
+ try:
31
+ llm = ChatOpenAI(
32
+ openai_api_key=OPENAI_API_KEY,
33
+ model=OPENAI_MODEL,
34
+ temperature=0.1,
35
+ streaming=True # Enable streaming for better response handling
36
+ )
37
+
38
+ # Create the Embedding model
39
+ embeddings = OpenAIEmbeddings(
40
+ openai_api_key=OPENAI_API_KEY
41
+ )
42
+ except Exception as e:
43
+ st.error(f"Failed to initialize OpenAI models: {str(e)}")
44
+ raise Exception(f"Failed to initialize OpenAI models: {str(e)}")
prompts.py ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Agent system prompt
2
+ AGENT_SYSTEM_PROMPT = """
3
+ You are a 49ers expert providing information about the football team, players, and fans.
4
+ Be as helpful as possible and return as much information as possible.
5
+ Do not answer any questions that do not relate to the 49ers, players, or fans.
6
+
7
+ Do not answer any questions using your pre-trained knowledge, only use the information provided in the context.
8
+
9
+ TOOLS:
10
+ ------
11
+
12
+ You have access to the following tools:
13
+
14
+ {tools}
15
+
16
+ To use a tool, please use the following format:
17
+
18
+ ```
19
+ Thought: Do I need to use a tool? Yes
20
+ Action: the action to take, should be one of [{tool_names}]
21
+ Action Input: the input to the action
22
+ Observation: the result of the action
23
+ ```
24
+
25
+ When you have a response to say to the Human, or if you do not need to use a tool, you MUST use the format:
26
+
27
+ ```
28
+ Thought: Do I need to use a tool? No
29
+ Final Answer: [your response here]
30
+ ```
31
+
32
+ Begin!
33
+
34
+ Previous conversation history:
35
+ {chat_history}
36
+
37
+ New input: {input}
38
+ {agent_scratchpad}
39
+ """
40
+
41
+ # Chat prompt for general conversation
42
+ CHAT_SYSTEM_PROMPT = """
43
+ You are a 49ers expert providing information about the football team, players, and fans.
44
+ Be as helpful as possible and return as much information as possible.
45
+ Do not answer any questions that do not relate to the 49ers, players, or fans.
46
+ """
47
+
48
+ SAMPLE_QUERIES = """
49
+ A) Basic Entity Exploration
50
+
51
+ A1) Count All Nodes
52
+ ```
53
+ MATCH (n)
54
+ RETURN labels(n) AS nodeLabels, count(*) AS total
55
+ ```
56
+
57
+ A2) List All Players
58
+ ```
59
+ MATCH (p:Player)
60
+ RETURN p.name AS playerName, p.position AS position, p.jersey_number AS jerseyNumber
61
+ ORDER BY p.jersey_number
62
+ ```
63
+
64
+ A3) List All Games
65
+ ```
66
+ MATCH (g:Game)
67
+ RETURN g.game_id AS gameId, g.date AS date, g.location AS location,
68
+ g.home_team AS homeTeam, g.away_team AS awayTeam, g.result AS finalScore
69
+ ORDER BY g.date
70
+ ```
71
+
72
+ A4) List All Fan Communities
73
+ ```
74
+ MATCH (c:Community)
75
+ RETURN c.fan_chapter_name, c.city, c.state
76
+ ORDER BY c.fan_chapter_name
77
+ ```
78
+
79
+ A5) List All Fans
80
+ ```
81
+ MATCH (f:Fan)
82
+ RETURN f.fan_id AS fanId, f.first_name AS firstName,
83
+ f.last_name AS lastName, f.email AS email
84
+ LIMIT 20
85
+ ```
86
+
87
+ B) Relationship & Network Analysis
88
+
89
+ B1) Which Players Are Most Favorited by Fans?
90
+ ```
91
+ MATCH (f:Fan)-[:FAVORITE_PLAYER]->(p:Player)
92
+ RETURN p.name AS playerName, count(f) AS fanCount
93
+ ORDER BY fanCount DESC
94
+ LIMIT 5
95
+ ```
96
+
97
+ B2) Which Communities Have the Most Members?
98
+ ```
99
+ MATCH (f:Fan)-[:MEMBER_OF]->(c:Community)
100
+ RETURN c.fan_chapter_name AS chapterName, count(f) AS fanCount
101
+ ORDER BY fanCount DESC
102
+ LIMIT 5
103
+ ```
104
+
105
+ B3) Find All Fans Who Both Favorite a Specific Player AND Are in a Specific Community
106
+ ```
107
+ MATCH (f:Fan)-[:FAVORITE_PLAYER]->(p:Player { name: "Nick Bosa" })
108
+ MATCH (f)-[:MEMBER_OF]->(c:Community { fan_chapter_name: "Niner Empire Hawaii 808" })
109
+ RETURN f.first_name AS firstName, f.last_name AS lastName, c.fan_chapter_name AS community
110
+ ```
111
+
112
+ C) Game & Schedule Queries
113
+
114
+ C1) Upcoming Home Games
115
+ ```
116
+ MATCH (g:Game)
117
+ WHERE g.home_team = "San Francisco 49ers"
118
+ RETURN g.date AS date, g.location AS location, g.away_team AS awayTeam
119
+ ORDER BY date
120
+ ```
121
+
122
+ C2) Search for Past Results
123
+ ```
124
+ MATCH (g:Game)
125
+ WHERE g.result IS NOT NULL
126
+ RETURN g.date AS date, g.home_team AS home, g.away_team AS away, g.result AS finalScore
127
+ ORDER BY date DESC
128
+ LIMIT 5
129
+ ```
130
+
131
+ C3) Games Played in a Specific Location
132
+ ```
133
+ MATCH (g:Game { location: "Levi's Stadium" })
134
+ RETURN g.date AS date, g.home_team AS homeTeam, g.away_team AS awayTeam, g.result AS finalScore
135
+ ```
136
+
137
+ D) Fan & Community Scenarios
138
+
139
+ D1) Find Fans in the Same Community
140
+ ```
141
+ MATCH (f:Fan)-[:MEMBER_OF]->(c:Community { fan_chapter_name: "Bay Area 49ers Fans" })
142
+ RETURN f.first_name AS firstName, f.last_name AS lastName
143
+ ORDER BY lastName
144
+ ```
145
+
146
+ D2) Locate Community Email Contacts
147
+ ```
148
+ MATCH (c:Community)
149
+ RETURN c.fan_chapter_name AS chapter, c.email_contact AS email
150
+ ORDER BY chapter
151
+ ```
152
+
153
+ D3) Show Which Fans Have Not Joined Any Community
154
+ ```
155
+ MATCH (f:Fan)
156
+ WHERE NOT (f)-[:MEMBER_OF]->(:Community)
157
+ RETURN f.first_name AS firstName, f.last_name AS lastName, f.email AS email
158
+ ```
159
+ """
recreate_relationships.py ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import os
3
+ from graph import graph # Using the existing graph connection
4
+ from pathlib import Path
5
+
6
+ def recreate_fan_community_relationships():
7
+ """
8
+ Recreates the MEMBER_OF relationships between Fans and Communities
9
+ using the existing CSV file and graph connection
10
+ """
11
+ base_dir = Path(__file__).parent
12
+ relationships_file = base_dir / "data" / "relationship_csvs" / "fan_community_rels.csv"
13
+ communities_file = base_dir / "data" / "niners_output" / "fan_communities.csv"
14
+
15
+ if not relationships_file.exists() or not communities_file.exists():
16
+ print(f"Error: Could not find required CSV files")
17
+ return False
18
+
19
+ try:
20
+ # First, let's check if we can find any nodes
21
+ fan_check = graph.query("""
22
+ MATCH (f:Fan)
23
+ RETURN count(f) as fan_count,
24
+ collect(distinct f.fan_id)[0..5] as sample_ids
25
+ """)
26
+ print(f"\nFan check results: {fan_check}")
27
+
28
+ community_check = graph.query("""
29
+ MATCH (c:Community)
30
+ RETURN count(c) as community_count,
31
+ collect(distinct c.fan_chapter_name)[0..5] as sample_names
32
+ """)
33
+ print(f"\nCommunity check results: {community_check}")
34
+
35
+ # First check a community to see its structure
36
+ community_structure = graph.query("""
37
+ MATCH (c:Community)
38
+ RETURN c LIMIT 1
39
+ """)
40
+ print("\nCommunity node structure:")
41
+ print(community_structure)
42
+
43
+ # Read both CSVs
44
+ rels_df = pd.read_csv(relationships_file)
45
+ communities_df = pd.read_csv(communities_file)
46
+
47
+ # Create UUID to fan_chapter_name mapping
48
+ uuid_to_name = dict(zip(communities_df['community_id'], communities_df['Fan Chapter Name']))
49
+
50
+ print(f"Found {len(uuid_to_name)} community mappings")
51
+ print("Sample mappings:")
52
+ for uuid, name in list(uuid_to_name.items())[:3]:
53
+ print(f"{uuid} -> {name}")
54
+
55
+ proceed = input("\nDo you want to proceed with creating relationships? (y/n): ")
56
+ if proceed.lower() != 'y':
57
+ print("Aborting operation.")
58
+ return False
59
+
60
+ # Create relationships in batches
61
+ batch_size = 100
62
+ total_created = 0
63
+
64
+ for i in range(0, len(rels_df), batch_size):
65
+ batch = rels_df.iloc[i:i + batch_size]
66
+
67
+ # Convert UUIDs to fan_chapter_names
68
+ rows = []
69
+ for _, row in batch.iterrows():
70
+ community_name = uuid_to_name.get(row['end_id'])
71
+ if community_name:
72
+ rows.append({
73
+ 'fan_id': row['start_id'],
74
+ 'chapter_name': community_name
75
+ })
76
+
77
+ if rows:
78
+ query = """
79
+ UNWIND $rows AS row
80
+ MATCH (f:Fan {fan_id: row.fan_id})
81
+ MATCH (c:Community {fan_chapter_name: row.chapter_name})
82
+ MERGE (f)-[:MEMBER_OF]->(c)
83
+ RETURN count(*) as created
84
+ """
85
+
86
+ result = graph.query(query, {'rows': rows})
87
+ total_created += len(rows)
88
+ print(f"Progress: Created {total_created}/{len(rels_df)} relationships")
89
+
90
+ # Verify the relationships were created
91
+ verification_query = """
92
+ MATCH ()-[r:MEMBER_OF]->()
93
+ RETURN count(r) as relationship_count
94
+ """
95
+ result = graph.query(verification_query)
96
+ relationship_count = result[0]['relationship_count']
97
+
98
+ print(f"\nVerification: Found {relationship_count} MEMBER_OF relationships in the database")
99
+ return True
100
+
101
+ except Exception as e:
102
+ print(f"Error occurred: {str(e)}")
103
+ return False
104
+
105
+ if __name__ == "__main__":
106
+ print("Starting to recreate Fan-Community relationships...")
107
+ success = recreate_fan_community_relationships()
108
+ if success:
109
+ print("Successfully completed relationship recreation")
110
+ else:
111
+ print("Failed to recreate relationships")
requirements.txt ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ streamlit>=1.32.0
2
+ langchain>=0.1.0
3
+ langchain-openai>=0.0.5
4
+ langchain-core>=0.1.15
5
+ langchain-neo4j>=0.1.1
6
+ openai>=1.2.0
7
+ neo4j>=5.14.0
8
+ python-dotenv>=1.0.0
9
+ uuid>=1.30
10
+ zep-cloud>=0.1.0
11
+ asyncio>=3.4.3
12
+ pandas>=2.0.0
tools/__init__.py ADDED
File without changes
tools/cypher.py ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from llm import llm
2
+ from graph import graph
3
+
4
+ # Create the Cypher QA chain
5
+ from langchain_neo4j import GraphCypherQAChain
6
+ from langchain.prompts.prompt import PromptTemplate
7
+
8
+ CYPHER_GENERATION_TEMPLATE = """
9
+ You are an expert Neo4j Developer translating user questions into Cypher to answer questions about the 49ers team, players, games, fans, and communities.
10
+ Convert the user's question based on the schema.
11
+
12
+ Use only the provided relationship types and properties in the schema.
13
+ Do not use any other relationship types or properties that are not provided.
14
+
15
+ Do not return entire nodes or embedding properties.
16
+
17
+ Example Cypher Statements for 49ers Graph:
18
+
19
+ 1. Count All Nodes:
20
+ MATCH (n)
21
+ RETURN labels(n) AS nodeLabels, count(*) AS total
22
+
23
+ 2. List All Players:
24
+ MATCH (p:Player)
25
+ RETURN p.name AS playerName, p.position AS position, p.jersey_number AS jerseyNumber
26
+ ORDER BY p.jersey_number
27
+
28
+ 3. List All Games:
29
+ MATCH (g:Game)
30
+ RETURN g.game_id AS gameId, g.date AS date, g.location AS location,
31
+ g.home_team AS homeTeam, g.away_team AS awayTeam, g.result AS finalScore
32
+ ORDER BY g.date
33
+
34
+ 4. List All Fan Communities:
35
+ MATCH (c:Community)
36
+ RETURN c.fan_chapter_name, c.city, c.state
37
+ ORDER BY c.fan_chapter_name
38
+
39
+ 5. List All Fans:
40
+ MATCH (f:Fan)
41
+ RETURN f.fan_id AS fanId, f.first_name AS firstName,
42
+ f.last_name AS lastName, f.email AS email
43
+ LIMIT 20
44
+
45
+ 6. Most Favorited Players:
46
+ MATCH (f:Fan)-[:FAVORITE_PLAYER]->(p:Player)
47
+ RETURN p.name AS playerName, count(f) AS fanCount
48
+ ORDER BY fanCount DESC
49
+ LIMIT 5
50
+
51
+ 7. Communities with Most Members:
52
+ MATCH (f:Fan)-[:MEMBER_OF]->(c:Community)
53
+ RETURN c.fan_chapter_name AS chapterName, count(f) AS fanCount
54
+ ORDER BY fanCount DESC
55
+ LIMIT 5
56
+
57
+ 8. Find Fans Favoriting a Specific Player & Community:
58
+ MATCH (f:Fan)-[:FAVORITE_PLAYER]->(p:Player {{ name: "Nick Bosa" }})
59
+ MATCH (f)-[:MEMBER_OF]->(c:Community {{ fan_chapter_name: "Niner Empire Hawaii 808" }})
60
+ RETURN f.first_name AS firstName, f.last_name AS lastName, c.fan_chapter_name AS community
61
+
62
+ 9. Upcoming Home Games:
63
+ MATCH (g:Game)
64
+ WHERE g.home_team = "San Francisco 49ers"
65
+ RETURN g.date AS date, g.location AS location, g.away_team AS awayTeam
66
+ ORDER BY date
67
+
68
+ 10. Past Game Results:
69
+ MATCH (g:Game)
70
+ WHERE g.result IS NOT NULL
71
+ RETURN g.date AS date, g.home_team AS home, g.away_team AS away, g.result AS finalScore
72
+ ORDER BY date DESC
73
+ LIMIT 5
74
+
75
+ 11. Games Played at a Specific Location:
76
+ MATCH (g:Game {{ location: "Levi's Stadium" }})
77
+ RETURN g.date AS date, g.home_team AS homeTeam, g.away_team AS awayTeam, g.result AS finalScore
78
+
79
+ 12. Find Fans in a Specific Community:
80
+ MATCH (f:Fan)-[:MEMBER_OF]->(c:Community {{ fan_chapter_name: "Bay Area 49ers Fans" }})
81
+ RETURN f.first_name AS firstName, f.last_name AS lastName
82
+ ORDER BY lastName
83
+
84
+ 13. Community Email Contacts:
85
+ MATCH (c:Community)
86
+ RETURN c.fan_chapter_name AS chapter, c.email_contact AS email
87
+ ORDER BY chapter
88
+
89
+ 14. Fans Without a Community:
90
+ MATCH (f:Fan)
91
+ WHERE NOT (f)-[:MEMBER_OF]->(:Community)
92
+ RETURN f.first_name AS firstName, f.last_name AS lastName, f.email AS email
93
+
94
+ Schema:
95
+ {schema}
96
+
97
+ Question:
98
+ {question}
99
+ """
100
+
101
+
102
+ cypher_prompt = PromptTemplate.from_template(CYPHER_GENERATION_TEMPLATE)
103
+
104
+ cypher_qa = GraphCypherQAChain.from_llm(
105
+ llm,
106
+ graph=graph,
107
+ verbose=True,
108
+ cypher_prompt=cypher_prompt,
109
+ allow_dangerous_requests=True
110
+ )
111
+
112
+ def cypher_qa_wrapper(input_text):
113
+ """Wrapper function to handle input format and potential errors"""
114
+ try:
115
+ return cypher_qa.invoke({"query": input_text})
116
+ except Exception as e:
117
+ print(f"Error in cypher_qa: {str(e)}")
118
+ return {"output": "I apologize, but I encountered an error while searching the database. Could you please rephrase your question?"}
119
+
120
+
121
+ ''' Testing Utilities we might run later '''
122
+ def run_test_query(query_name):
123
+ """Run predefined test queries from test_cases.txt
124
+
125
+ Args:
126
+ query_name (str): Identifier for the query to run, e.g., "players", "games", "favorite_players"
127
+
128
+ Returns:
129
+ dict: Results from the query execution
130
+ """
131
+ test_queries = {
132
+ "count_nodes": """
133
+ MATCH (n)
134
+ RETURN labels(n) AS nodeLabels, count(*) AS total
135
+ """,
136
+ "players": """
137
+ MATCH (p:Player)
138
+ RETURN p.name AS playerName, p.position AS position, p.jersey_number AS jerseyNumber
139
+ ORDER BY p.jersey_number
140
+ """,
141
+ "games": """
142
+ MATCH (g:Game)
143
+ RETURN g.date AS date, g.location AS location, g.home_team AS homeTeam,
144
+ g.away_team AS awayTeam, g.result AS finalScore
145
+ ORDER BY g.date
146
+ """,
147
+ "communities": """
148
+ MATCH (c:Community)
149
+ RETURN c.fan_chapter_name AS chapterName, c.city AS city, c.state AS state,
150
+ c.email_contact AS contactEmail
151
+ ORDER BY c.fan_chapter_name
152
+ """,
153
+ "fans": """
154
+ MATCH (f:Fan)
155
+ RETURN f.first_name AS firstName, f.last_name AS lastName, f.email AS email
156
+ LIMIT 20
157
+ """,
158
+ "favorite_players": """
159
+ MATCH (f:Fan)-[:FAVORITE_PLAYER]->(p:Player)
160
+ RETURN p.name AS playerName, count(f) AS fanCount
161
+ ORDER BY fanCount DESC
162
+ LIMIT 5
163
+ """,
164
+ "community_members": """
165
+ MATCH (f:Fan)-[:MEMBER_OF]->(c:Community)
166
+ RETURN c.fan_chapter_name AS chapterName, count(f) AS memberCount
167
+ ORDER BY memberCount DESC
168
+ """
169
+ }
170
+
171
+ if query_name in test_queries:
172
+ try:
173
+ # Execute the query directly using the graph connection
174
+ result = graph.query(test_queries[query_name])
175
+ return {"output": result}
176
+ except Exception as e:
177
+ print(f"Error running test query '{query_name}': {str(e)}")
178
+ return {"output": f"Error running test query: {str(e)}"}
179
+ else:
180
+ return {"output": f"Test query '{query_name}' not found. Available queries: {', '.join(test_queries.keys())}"}
tools/vector.py ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from llm import llm, embeddings
2
+ from graph import graph
3
+
4
+ # Create the Neo4jVector
5
+ from langchain_neo4j import Neo4jVector
6
+
7
+ neo4jvector = Neo4jVector.from_existing_index(
8
+ embeddings, # (1)
9
+ graph=graph, # (2)
10
+ index_name="gameSummary", # (3)
11
+ node_label="Game", # (4)
12
+ text_node_property="summary", # (5)
13
+ embedding_node_property="embedding", # (6)
14
+ retrieval_query="""
15
+ RETURN
16
+ node.summary AS text,
17
+ score,
18
+ {
19
+ id: node.id,
20
+ date: node.date,
21
+ result: node.result,
22
+ location: node.location,
23
+ home_team: node.home_team,
24
+ away_team: node.away_team,
25
+ game_id: node.game_id
26
+ } AS metadata
27
+ """
28
+ )
29
+
30
+ # Create the retriever
31
+ retriever = neo4jvector.as_retriever()
32
+
33
+ # Create the prompt
34
+ from langchain_core.prompts import ChatPromptTemplate
35
+
36
+ instructions = (
37
+ "Use the given context to answer the question."
38
+ "If you don't know the answer, say you don't know."
39
+ "Context: {context}"
40
+ )
41
+
42
+ prompt = ChatPromptTemplate.from_messages(
43
+ [
44
+ ("system", instructions),
45
+ ("human", "{input}"),
46
+ ]
47
+ )
48
+
49
+ # Create the chain
50
+ from langchain.chains.combine_documents import create_stuff_documents_chain
51
+ from langchain.chains import create_retrieval_chain
52
+
53
+ question_answer_chain = create_stuff_documents_chain(llm, prompt)
54
+ game_summary_retriever = create_retrieval_chain(
55
+ retriever,
56
+ question_answer_chain
57
+ )
58
+
59
+ # Create a function to call the chain
60
+ def get_game_summary(input_text):
61
+ """Function to call the chain with error handling"""
62
+ try:
63
+ return game_summary_retriever.invoke({"input": input_text})
64
+ except Exception as e:
65
+ print(f"Error in get_game_summary: {str(e)}")
66
+ return {"output": "I apologize, but I encountered an error while searching for game summaries. Could you please rephrase your question?"}
utils.py ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Utility functions for the chatbot application.
3
+ """
4
+
5
+ import uuid
6
+ import streamlit as st
7
+
8
+ # Try to import get_script_run_ctx from different possible locations
9
+ # based on Streamlit version
10
+ try:
11
+ # For newer Streamlit versions
12
+ from streamlit.runtime.scriptrunner.script_run_context import get_script_run_ctx
13
+ except ImportError:
14
+ try:
15
+ # For older Streamlit versions
16
+ from streamlit.script_run_context import get_script_run_ctx
17
+ except ImportError:
18
+ # Fallback if neither import works
19
+ def get_script_run_ctx():
20
+ return None
21
+
22
+ def get_session_id():
23
+ """
24
+ Get the current session ID from Streamlit session state.
25
+ Creates a new ID if one doesn't exist.
26
+ """
27
+ if "session_id" not in st.session_state:
28
+ st.session_state.session_id = str(uuid.uuid4())
29
+ return st.session_state.session_id
30
+
31
+ def get_user_id():
32
+ """
33
+ Get the current user ID from Streamlit session state.
34
+ Creates a new ID if one doesn't exist.
35
+ """
36
+ if "user_id" not in st.session_state:
37
+ st.session_state.user_id = str(uuid.uuid4())
38
+ return st.session_state.user_id
39
+
40
+ def get_streamlit_session_id():
41
+ """
42
+ Get the Streamlit session ID from the script run context.
43
+ This is different from our application session ID.
44
+ Falls back to a generated UUID if the context is not available.
45
+ """
46
+ ctx = get_script_run_ctx()
47
+ if ctx is not None:
48
+ return ctx.session_id
49
+ return str(uuid.uuid4()) # Fallback to a generated UUID
50
+
51
+ def format_source_documents(source_documents):
52
+ """
53
+ Format source documents for display in Streamlit.
54
+ """
55
+ if not source_documents:
56
+ return None
57
+
58
+ formatted_docs = []
59
+ for i, doc in enumerate(source_documents):
60
+ if hasattr(doc, 'metadata') and doc.metadata:
61
+ source = doc.metadata.get('source', 'Unknown')
62
+ formatted_docs.append(f"Source {i+1}: {source}")
63
+
64
+ return "\n".join(formatted_docs) if formatted_docs else None
65
+
66
+ def write_message(role, content, save=True):
67
+ """
68
+ Helper function to write a message to the Streamlit UI and optionally save to session state.
69
+
70
+ Args:
71
+ role (str): The role of the message sender (e.g., "user", "assistant", "system")
72
+ content (str): The content of the message
73
+ save (bool): Whether to save the message to session state
74
+ """
75
+ # Append to session state if save is True
76
+ if save and "messages" in st.session_state:
77
+ st.session_state.messages.append({"role": role, "content": content})
78
+
79
+ # Write to UI
80
+ with st.chat_message(role):
81
+ st.markdown(content)