Skip to content

Instantly share code, notes, and snippets.

@aus10powell
Last active February 16, 2019 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aus10powell/9072182f8f9cc2dced1179a7473f0382 to your computer and use it in GitHub Desktop.
Save aus10powell/9072182f8f9cc2dced1179a7473f0382 to your computer and use it in GitHub Desktop.
This is a comparison of different ways of using td-idf method for different subdomains of a website which are for different US cities
{
"cells": [
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import pickle\n",
"import pandas as pd\n",
"\n",
"fitness_cities = pd.read_pickle(\"fitco012817_scrape.p\")"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Number of cities/subdomains: 10\n"
]
}
],
"source": [
"print(\"Number of cities/subdomains:\",len(fitness_cities))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### "
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"list_of_webpage_txt = fitness_cities['austin']"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"joined_p_tags_list = []\n",
"for page in list_of_webpage_txt:\n",
" #joined_page_list.append(page)\n",
" joined_p_tags_list.append(\"\".join(str(page[0])))"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"\"['What’s better than making new friends, workin’ that body, and trying something new? Well, nothing! That is unless you can do all of that for...', 'Eating healthy can be tough, but if you have dietary restrictions on top of it? Forget it; that struggle is taken to a whole new...', 'If you’re an active Austinite looking for romance with a side of fitness, then we’ve got just what you need. Think healthy happenings for guys,...', 'Picking the right yoga studio can be tough – sometimes you want to channel your spiritual side and other times you just want to sweat....', 'Sometimes you need a little extra motivation to get your heart pumping. Or, maybe a lot. Either way, the classes at these cycling studios will...', 'Love the idea of a scenic run along a river with skyline views? Or maybe you long to lace your sneakers up for a trail...', 'If you’re into eating well, grocery shopping can be nightmare. Honestly, we’re trying to be healthy here, but it’s tough to know where to shop...', '© 2017 Fitt Nation. All rights reserved.', 'We’ll keep you up to date on all things health, fitness and local food in Austin.', '']\""
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"joined_p_tags_list[0]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Temporary word tokenization for certain domain\n"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[['[',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Running\",\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'fit',\n",
" '.',\n",
" 'But',\n",
" 'nowadays',\n",
" ',',\n",
" 'shaping',\n",
" 'up',\n",
" 'isn’t',\n",
" 'the',\n",
" 'only',\n",
" 'reason',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'These\",\n",
" 'new',\n",
" 'crop',\n",
" 'of',\n",
" 'fun',\n",
" 'runs',\n",
" 'are',\n",
" 'redefining',\n",
" 'running',\n",
" 'and',\n",
" 'racing',\n",
" '.',\n",
" 'Unlike',\n",
" 'the',\n",
" 'typical',\n",
" '5k',\n",
" ',',\n",
" 'keeping',\n",
" 'time',\n",
" 'isn’t',\n",
" 'all',\n",
" 'that',\n",
" 'important',\n",
" ',',\n",
" 'there’s',\n",
" 'not',\n",
" 'always',\n",
" 'a',\n",
" 'winner',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'vibe',\n",
" 'is',\n",
" 'more',\n",
" 'of',\n",
" 'a',\n",
" 'celebration',\n",
" 'than',\n",
" 'a',\n",
" 'competition',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'thinking',\n",
" 'this',\n",
" 'sounds',\n",
" 'too',\n",
" 'good',\n",
" 'to',\n",
" 'be',\n",
" 'true',\n",
" ',',\n",
" 'think',\n",
" 'again',\n",
" '.',\n",
" 'Austin',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'races',\n",
" 'that',\n",
" 'put',\n",
" 'being',\n",
" 'whacky',\n",
" 'over',\n",
" 'winning',\n",
" '.',\n",
" 'And',\n",
" 'we’ve',\n",
" 'rounded',\n",
" 'up',\n",
" 'the',\n",
" 'top',\n",
" 'local',\n",
" 'races',\n",
" 'you’ll',\n",
" 'actually',\n",
" 'want',\n",
" 'to',\n",
" 'run',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Get\",\n",
" 'ready',\n",
" 'for',\n",
" 'the',\n",
" '“slowest',\n",
" '5K',\n",
" 'on',\n",
" 'the',\n",
" 'planet.”',\n",
" 'Here',\n",
" ',',\n",
" 'the',\n",
" 'focus',\n",
" 'is',\n",
" 'on',\n",
" 'being',\n",
" 'weird',\n",
" 'and',\n",
" 'having',\n",
" 'fun',\n",
" '.',\n",
" 'Part',\n",
" '5K',\n",
" ',',\n",
" 'part',\n",
" 'costume',\n",
" 'party',\n",
" ',',\n",
" 'and',\n",
" 'part',\n",
" 'ridiculousness',\n",
" ',',\n",
" 'the',\n",
" 'race',\n",
" 'at',\n",
" 'the',\n",
" 'annual',\n",
" 'Keep',\n",
" 'Austin',\n",
" 'Weird',\n",
" 'Fest',\n",
" 'is',\n",
" ',',\n",
" 'in',\n",
" 'a',\n",
" 'word',\n",
" ',',\n",
" 'awesome',\n",
" '.',\n",
" 'Every',\n",
" 'June',\n",
" ',',\n",
" 'participants',\n",
" 'are',\n",
" 'invited',\n",
" 'to',\n",
" 'put',\n",
" 'on',\n",
" 'their',\n",
" 'strangest',\n",
" 'costumes',\n",
" 'as',\n",
" 'they',\n",
" 'run',\n",
" 'through',\n",
" 'downtown',\n",
" ',',\n",
" 'making',\n",
" '10',\n",
" 'different',\n",
" 'stops',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" '.',\n",
" 'One',\n",
" 'of',\n",
" 'the',\n",
" 'stops',\n",
" 'is',\n",
" 'a',\n",
" 'giant',\n",
" 'slip',\n",
" '’n',\n",
" 'slide…',\n",
" 'need',\n",
" 'we',\n",
" 'say',\n",
" 'more',\n",
" '?',\n",
" 'June',\n",
" \"'\",\n",
" ',',\n",
" \"'Pick\",\n",
" 'out',\n",
" 'a',\n",
" 'costume',\n",
" 'and',\n",
" 'grab',\n",
" 'your',\n",
" 'wine-loving',\n",
" 'friends',\n",
" ',',\n",
" 'this',\n",
" 'fun',\n",
" 'run',\n",
" 'wants',\n",
" 'you',\n",
" 'to',\n",
" 'sweat',\n",
" 'and',\n",
" 'sip',\n",
" 'your',\n",
" 'way',\n",
" 'through',\n",
" 'the',\n",
" 'trails',\n",
" 'of',\n",
" 'Spicewood',\n",
" 'Vineyard',\n",
" '.',\n",
" 'The',\n",
" '5K',\n",
" 'course',\n",
" 'will',\n",
" 'lead',\n",
" 'you',\n",
" 'through',\n",
" 'a',\n",
" 'picturesque',\n",
" 'vineyard',\n",
" '.',\n",
" 'And',\n",
" 'your',\n",
" 'reward',\n",
" '?',\n",
" 'There',\n",
" 'will',\n",
" 'be',\n",
" 'plenty',\n",
" 'of',\n",
" 'wine',\n",
" 'waiting',\n",
" 'for',\n",
" 'you',\n",
" 'at',\n",
" 'the',\n",
" 'finish',\n",
" 'line',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'fancy',\n",
" 'yourself',\n",
" 'more',\n",
" 'oenophile',\n",
" 'than',\n",
" 'fitness',\n",
" 'buff',\n",
" ',',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'the',\n",
" '1K',\n",
" '.',\n",
" 'It’s',\n",
" 'basically',\n",
" 'a',\n",
" 'wine',\n",
" 'tasting',\n",
" 'accompanied',\n",
" 'by',\n",
" 'a',\n",
" 'gentle',\n",
" 'stroll',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Walk\",\n",
" ',',\n",
" 'twirl',\n",
" ',',\n",
" 'dance',\n",
" ',',\n",
" 'and',\n",
" 'play',\n",
" 'your',\n",
" 'way',\n",
" 'through',\n",
" 'the',\n",
" 'Bubble',\n",
" 'Run',\n",
" 'starting',\n",
" 'at',\n",
" 'the',\n",
" 'Travis',\n",
" 'County',\n",
" 'Fairgrounds',\n",
" '.',\n",
" 'Don’t',\n",
" 'worry',\n",
" 'about',\n",
" 'your',\n",
" 'time',\n",
" ',',\n",
" 'no',\n",
" 'one',\n",
" 'is',\n",
" 'keeping',\n",
" 'track',\n",
" '.',\n",
" 'The',\n",
" 'only',\n",
" 'things',\n",
" 'you',\n",
" 'need',\n",
" 'to',\n",
" 'worry',\n",
" 'about',\n",
" 'are',\n",
" 'wearing',\n",
" 'a',\n",
" 'white',\n",
" 't-shirt',\n",
" 'and',\n",
" 'having',\n",
" 'fun',\n",
" '.',\n",
" 'At',\n",
" 'each',\n",
" 'mile',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'Foam',\n",
" 'Bogs',\n",
" 'that',\n",
" 'spray',\n",
" 'colorful',\n",
" '(',\n",
" 'and',\n",
" 'safe',\n",
" ',',\n",
" 'don’t',\n",
" 'worry',\n",
" ')',\n",
" 'foam',\n",
" 'all',\n",
" 'over',\n",
" 'you',\n",
" '.',\n",
" 'And',\n",
" 'yes',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'plenty',\n",
" 'of',\n",
" 'time',\n",
" 'to',\n",
" 'play',\n",
" 'in',\n",
" 'the',\n",
" 'foam',\n",
" '.',\n",
" 'Race',\n",
" 'leaders',\n",
" 'start',\n",
" 'a',\n",
" 'new',\n",
" 'wave',\n",
" 'of',\n",
" 'runners',\n",
" 'every',\n",
" '3-5',\n",
" 'minutes',\n",
" 'so',\n",
" 'everyone',\n",
" 'has',\n",
" 'a',\n",
" 'chance',\n",
" 'to',\n",
" 'get',\n",
" 'colored',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Glow\",\n",
" 'in',\n",
" 'the',\n",
" 'dark',\n",
" 'goodness',\n",
" 'is',\n",
" 'what',\n",
" 'this',\n",
" 'race',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" '.',\n",
" 'Sign',\n",
" 'up',\n",
" 'and',\n",
" 'show',\n",
" 'up',\n",
" 'dressed',\n",
" 'in',\n",
" 'your',\n",
" 'finest',\n",
" ',',\n",
" 'and',\n",
" 'most',\n",
" 'creative',\n",
" ',',\n",
" 'nighttime-friendly',\n",
" 'gear',\n",
" '.',\n",
" 'Basically',\n",
" ',',\n",
" 'your',\n",
" 'goals',\n",
" 'to',\n",
" 'wear',\n",
" 'something',\n",
" 'that',\n",
" 'glows',\n",
" ',',\n",
" 'blinks',\n",
" ',',\n",
" 'or',\n",
" 'glitters',\n",
" '.',\n",
" 'The',\n",
" 'entire',\n",
" 'route',\n",
" ',',\n",
" 'starting',\n",
" 'at',\n",
" 'the',\n",
" 'Hutto',\n",
" 'Performing',\n",
" 'Arts',\n",
" 'Center',\n",
" ',',\n",
" 'is',\n",
" 'illuminated',\n",
" 'by',\n",
" 'lights',\n",
" 'and',\n",
" 'glowsticks',\n",
" ',',\n",
" 'with',\n",
" 'musical',\n",
" 'stops',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" ',',\n",
" 'so',\n",
" 'it’s',\n",
" 'fun',\n",
" 'and',\n",
" 'safe',\n",
" 'for',\n",
" 'all',\n",
" 'ages',\n",
" '.',\n",
" 'So',\n",
" ',',\n",
" 'despite',\n",
" 'the',\n",
" 'name',\n",
" ',',\n",
" 'behave',\n",
" 'yourself',\n",
" ',',\n",
" 'folks',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Ever\",\n",
" 'wanted',\n",
" 'to',\n",
" 'go',\n",
" 'streaking',\n",
" ',',\n",
" 'but',\n",
" 'thought',\n",
" 'better',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'here’s',\n",
" 'your',\n",
" 'chance',\n",
" 'to',\n",
" 'strip',\n",
" 'down',\n",
" 'and',\n",
" 'run',\n",
" 'through',\n",
" 'the',\n",
" 'streets',\n",
" 'of',\n",
" 'Austin',\n",
" 'without',\n",
" 'risking',\n",
" 'arrest',\n",
" '.',\n",
" 'You',\n",
" 'don’t',\n",
" 'have',\n",
" 'to',\n",
" 'worry',\n",
" 'about',\n",
" 'going',\n",
" 'to',\n",
" 'the',\n",
" 'clink',\n",
" 'because',\n",
" 'you’ll',\n",
" 'be',\n",
" 'running',\n",
" 'to',\n",
" 'raise',\n",
" 'money',\n",
" 'for',\n",
" 'charity',\n",
" '.',\n",
" 'Hey',\n",
" ',',\n",
" 'anything',\n",
" 'in',\n",
" 'the',\n",
" 'name',\n",
" 'of',\n",
" 'a',\n",
" 'good',\n",
" 'cause',\n",
" '.',\n",
" 'It’s',\n",
" 'all',\n",
" 'part',\n",
" 'of',\n",
" 'Cupid’s',\n",
" 'Undie',\n",
" 'Run',\n",
" ',',\n",
" 'a',\n",
" 'mile-long',\n",
" 'race',\n",
" 'that',\n",
" 'asks',\n",
" 'participants',\n",
" 'to',\n",
" 'dawn',\n",
" 'their',\n",
" 'finest',\n",
" 'underpants',\n",
" '(',\n",
" 'Valentine-theme',\n",
" '?',\n",
" ')',\n",
" 'as',\n",
" 'they',\n",
" 'race',\n",
" 'through',\n",
" 'downtown',\n",
" 'to',\n",
" 'benefit',\n",
" 'the',\n",
" 'Children’s',\n",
" 'Tumor',\n",
" 'Foundation',\n",
" '.',\n",
" 'February',\n",
" \"'\",\n",
" ',',\n",
" \"'Starting\",\n",
" 'at',\n",
" 'the',\n",
" 'Zilker',\n",
" 'Tree',\n",
" 'and',\n",
" 'ending',\n",
" 'within',\n",
" 'the',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" ',',\n",
" 'runners',\n",
" 'enjoy',\n",
" 'two',\n",
" 'miles',\n",
" 'of',\n",
" 'festive',\n",
" 'fun',\n",
" '.',\n",
" 'Glowsticks',\n",
" 'and',\n",
" 'holiday',\n",
" 'costumes',\n",
" 'are',\n",
" 'encouraged',\n",
" 'as',\n",
" 'race',\n",
" 'participants',\n",
" 'get',\n",
" 'to',\n",
" 'be',\n",
" 'the',\n",
" 'first',\n",
" 'people',\n",
" 'to',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'wonders',\n",
" 'of',\n",
" 'the',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" 'before',\n",
" 'it',\n",
" 'opens',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'also',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'vendors',\n",
" 'before',\n",
" 'and',\n",
" 'after',\n",
" 'the',\n",
" 'race',\n",
" 'offering',\n",
" 'food',\n",
" ',',\n",
" 'drinks',\n",
" ',',\n",
" 'and',\n",
" 'glowing',\n",
" 'enhancements',\n",
" 'for',\n",
" 'your',\n",
" 'costumes',\n",
" '.',\n",
" 'December',\n",
" \"'\",\n",
" ',',\n",
" \"'What’s\",\n",
" 'more',\n",
" 'Austin',\n",
" 'than',\n",
" 'a',\n",
" 'race',\n",
" 'with',\n",
" 'margaritas',\n",
" '?',\n",
" 'The',\n",
" 'answer',\n",
" 'is',\n",
" 'nothing',\n",
" ',',\n",
" 'friends',\n",
" '.',\n",
" 'Every',\n",
" 'summer',\n",
" ',',\n",
" 'the',\n",
" 'Maudie’s',\n",
" 'Moonlight',\n",
" 'Margarita',\n",
" 'Run',\n",
" 'mixes',\n",
" 'two',\n",
" 'Austinite',\n",
" 'favorites',\n",
" '–',\n",
" 'booze',\n",
" 'and',\n",
" 'fitness',\n",
" '–',\n",
" 'for',\n",
" 'an',\n",
" 'annual',\n",
" 'fundraising',\n",
" 'race',\n",
" 'to',\n",
" 'support',\n",
" 'our',\n",
" 'beloved',\n",
" 'Hike-and-Bike',\n",
" 'Trail',\n",
" '.',\n",
" 'Runners',\n",
" 'trot',\n",
" 'along',\n",
" 'the',\n",
" 'streets',\n",
" 'lining',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'for',\n",
" '3.1',\n",
" 'miles\\\\xa0and',\n",
" 'finish',\n",
" 'with',\n",
" 'a',\n",
" 'post-race',\n",
" 'party',\n",
" 'full',\n",
" 'of',\n",
" 'food',\n",
" ',',\n",
" 'dancing',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'margaritas',\n",
" '.',\n",
" 'June',\n",
" \"'\",\n",
" ',',\n",
" \"'Also\",\n",
" 'known',\n",
" 'as',\n",
" 'the',\n",
" '“Happiest',\n",
" '5K',\n",
" 'on',\n",
" 'the',\n",
" 'Planet”',\n",
" ',',\n",
" 'The',\n",
" 'Color',\n",
" 'Run',\n",
" 'is',\n",
" 'the',\n",
" 'original',\n",
" 'paint',\n",
" 'race',\n",
" '.',\n",
" 'Runners',\n",
" 'won’t',\n",
" 'be',\n",
" 'timed',\n",
" 'as',\n",
" 'they',\n",
" 'jog',\n",
" 'through',\n",
" 'downtown',\n",
" 'this',\n",
" 'spring',\n",
" 'and',\n",
" 'are',\n",
" 'doused',\n",
" 'from',\n",
" 'head',\n",
" 'to',\n",
" 'toe',\n",
" 'in',\n",
" 'colorful',\n",
" 'paint',\n",
" 'powder',\n",
" 'at',\n",
" 'each',\n",
" 'kilometer',\n",
" '.',\n",
" 'The',\n",
" 'real',\n",
" 'party',\n",
" 'starts',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'the',\n",
" 'race',\n",
" ',',\n",
" 'though',\n",
" ',',\n",
" 'where',\n",
" 'there’s',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'dancing',\n",
" ',',\n",
" 'and',\n",
" 'massive',\n",
" 'color',\n",
" 'throws',\n",
" '.',\n",
" 'The',\n",
" 'only',\n",
" 'requirement',\n",
" 'is',\n",
" 'a',\n",
" 'white',\n",
" 't-shirt',\n",
" 'and',\n",
" 'a',\n",
" 'willingness',\n",
" 'to',\n",
" 'get',\n",
" 'colorfully',\n",
" 'messy',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Supporting\",\n",
" 'CASA',\n",
" ',',\n",
" 'an',\n",
" 'advocacy',\n",
" 'group',\n",
" 'for',\n",
" 'abused',\n",
" 'children',\n",
" ',',\n",
" 'the',\n",
" 'Superhero',\n",
" 'Run',\n",
" 'is',\n",
" 'a\\\\xa0great',\n",
" 'autumn',\n",
" 'activity',\n",
" 'for',\n",
" 'families',\n",
" '.',\n",
" 'There’s',\n",
" 'a',\n",
" '5K',\n",
" 'and',\n",
" 'a',\n",
" 'kid’s',\n",
" '1K',\n",
" 'fun',\n",
" 'run',\n",
" 'on',\n",
" 'this',\n",
" 'Cedar',\n",
" 'Park',\n",
" 'route',\n",
" ',',\n",
" 'both',\n",
" 'of',\n",
" 'which',\n",
" 'ask',\n",
" 'that',\n",
" 'participants',\n",
" 'dress',\n",
" 'up',\n",
" 'as',\n",
" 'their',\n",
" 'favorite',\n",
" 'superheroes',\n",
" '.',\n",
" 'At',\n",
" 'the',\n",
" 'end',\n",
" ',',\n",
" 'there’s',\n",
" 'a',\n",
" 'costume',\n",
" 'contest',\n",
" 'with',\n",
" 'two',\n",
" 'categories',\n",
" ':',\n",
" 'traditional',\n",
" 'superhero',\n",
" ',',\n",
" 'and',\n",
" 'invented',\n",
" '.',\n",
" 'So',\n",
" 'put',\n",
" 'your',\n",
" 'creative',\n",
" 'pants',\n",
" 'on',\n",
" 'and',\n",
" 'use',\n",
" 'your',\n",
" 'many',\n",
" 'super',\n",
" 'powers',\n",
" 'for',\n",
" 'a',\n",
" 'good',\n",
" 'cause',\n",
" '.',\n",
" 'Bonus',\n",
" 'points',\n",
" 'if',\n",
" 'you',\n",
" 'can',\n",
" 'keep',\n",
" 'your',\n",
" 'cape',\n",
" 'billowing',\n",
" 'the',\n",
" 'whole',\n",
" 'race',\n",
" '.',\n",
" 'September',\n",
" \"'\",\n",
" ',',\n",
" \"'For\",\n",
" 'this',\n",
" 'race',\n",
" ',',\n",
" 'you',\n",
" 'dress',\n",
" 'up',\n",
" 'as',\n",
" 'a',\n",
" 'gorilla…and',\n",
" 'run',\n",
" '.',\n",
" 'So',\n",
" 'it’s',\n",
" 'pretty',\n",
" 'much',\n",
" 'the',\n",
" 'best',\n",
" 'thing',\n",
" 'ever',\n",
" '.',\n",
" 'A',\n",
" 'fundraiser',\n",
" 'to',\n",
" 'benefit',\n",
" 'mountain',\n",
" 'gorillas',\n",
" ',',\n",
" 'runners',\n",
" 'kick',\n",
" 'off',\n",
" 'the',\n",
" 'new',\n",
" 'year',\n",
" 'by',\n",
" 'putting',\n",
" 'on',\n",
" 'their',\n",
" 'finest',\n",
" 'gorilla',\n",
" 'gear',\n",
" '(',\n",
" 'or',\n",
" 'a',\n",
" 'banana',\n",
" 'suit',\n",
" ',',\n",
" 'if',\n",
" 'you’re',\n",
" 'feelin’',\n",
" 'frisky',\n",
" ')',\n",
" 'and',\n",
" 'chase',\n",
" 'one',\n",
" 'another',\n",
" 'through',\n",
" 'the',\n",
" 'heart',\n",
" ...],\n",
" ['[',\n",
" \"'There\",\n",
" 'comes',\n",
" 'a',\n",
" 'time',\n",
" 'in',\n",
" 'every',\n",
" 'fitness',\n",
" 'fiend’s',\n",
" 'journey',\n",
" 'when',\n",
" 'the',\n",
" 'same',\n",
" 'old',\n",
" 'routine',\n",
" 'starts',\n",
" 'to',\n",
" 'feel',\n",
" 'stale',\n",
" 'and',\n",
" 'boring\\\\xa0or',\n",
" 'even',\n",
" 'becomes',\n",
" 'less',\n",
" 'effective',\n",
" 'over',\n",
" 'time',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'last',\n",
" 'thing',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'do',\n",
" 'when',\n",
" 'that',\n",
" 'happens',\n",
" 'is',\n",
" 'to',\n",
" 'call',\n",
" 'it',\n",
" 'quits—you’ve',\n",
" 'worked',\n",
" 'too',\n",
" 'hard',\n",
" 'to',\n",
" 'throw',\n",
" 'in',\n",
" 'the',\n",
" 'towel',\n",
" 'just',\n",
" 'because',\n",
" 'your',\n",
" 'regular',\n",
" 'regimen',\n",
" 'could',\n",
" 'use',\n",
" 'an',\n",
" 'update',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Before\",\n",
" 'you’re',\n",
" 'buried',\n",
" 'in',\n",
" 'boredom',\n",
" ',',\n",
" 'look',\n",
" 'to',\n",
" 'the',\n",
" 'sky',\n",
" 'and',\n",
" 'majorly',\n",
" 'switch',\n",
" 'up',\n",
" 'your',\n",
" 'workout',\n",
" 'game',\n",
" '.',\n",
" 'Austin',\n",
" 'has',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'innovative',\n",
" 'ways',\n",
" 'to',\n",
" 'do',\n",
" 'just',\n",
" 'that',\n",
" ',',\n",
" 'but',\n",
" 'AcroYoga',\n",
" 'and',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" 'classes',\n",
" 'might',\n",
" 'be',\n",
" 'among',\n",
" 'the',\n",
" 'most',\n",
" 'fun',\n",
" 'and',\n",
" 'effective',\n",
" 'ways',\n",
" 'to',\n",
" 'get',\n",
" 'it',\n",
" 'done',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'these',\n",
" 'studios',\n",
" 'to',\n",
" 'fly',\n",
" 'above',\n",
" 'the',\n",
" 'basics',\n",
" 'and',\n",
" 'take',\n",
" 'your',\n",
" 'body',\n",
" 'to',\n",
" 'new',\n",
" ',',\n",
" 'healthy',\n",
" 'heights',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Priding',\n",
" 'themselves',\n",
" 'on',\n",
" 'challenging',\n",
" 'the',\n",
" 'notion',\n",
" 'of',\n",
" 'being',\n",
" 'earthbound',\n",
" ',',\n",
" 'Four',\n",
" 'Elements',\n",
" 'offers',\n",
" 'a',\n",
" 'range',\n",
" 'of',\n",
" 'classes',\n",
" 'in',\n",
" 'the',\n",
" 'aerial',\n",
" 'arts',\n",
" '.',\n",
" 'Opening',\n",
" 'in',\n",
" '2011',\n",
" 'with',\n",
" 'a',\n",
" 'focus',\n",
" 'on',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" ',',\n",
" 'this',\n",
" 'studio',\n",
" 'has',\n",
" 'since',\n",
" 'expanded',\n",
" 'to',\n",
" 'include',\n",
" 'classes',\n",
" 'in',\n",
" 'silks',\n",
" ',',\n",
" 'lyra',\n",
" ',',\n",
" 'pole',\n",
" ',',\n",
" 'and',\n",
" 'trapeze',\n",
" '.',\n",
" 'Located',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'downtown',\n",
" ',',\n",
" 'it’s',\n",
" 'perfect',\n",
" 'for',\n",
" 'an',\n",
" 'after-work',\n",
" ',',\n",
" 'pre-happy',\n",
" 'hour',\n",
" 'fun',\n",
" 'fitness',\n",
" 'stop',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'you’re',\n",
" 'interested',\n",
" 'in',\n",
" 'more',\n",
" 'performance-centered',\n",
" 'aerial',\n",
" 'arts',\n",
" ',',\n",
" 'then',\n",
" 'Sky',\n",
" 'Candy',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'place',\n",
" 'to',\n",
" 'dip',\n",
" 'your',\n",
" 'toes',\n",
" '.',\n",
" 'They',\n",
" 'offer',\n",
" 'over',\n",
" '60',\n",
" 'classes',\n",
" 'per',\n",
" 'week',\n",
" 'in',\n",
" 'the',\n",
" 'aerial',\n",
" 'and',\n",
" 'circus',\n",
" 'arts',\n",
" ',',\n",
" 'as',\n",
" 'well',\n",
" 'as',\n",
" 'open',\n",
" 'studio',\n",
" ',',\n",
" 'private',\n",
" 'lessons',\n",
" ',',\n",
" 'and',\n",
" 'workshops',\n",
" '.',\n",
" 'There’s',\n",
" 'also',\n",
" 'a',\n",
" 'regular',\n",
" 'student',\n",
" 'showcase',\n",
" 'that’ll',\n",
" 'allow',\n",
" 'you',\n",
" 'to',\n",
" 'show',\n",
" 'off',\n",
" 'all',\n",
" 'of',\n",
" 'your',\n",
" 'newfound',\n",
" 'moves',\n",
" 'to',\n",
" 'friends',\n",
" 'and',\n",
" 'family',\n",
" '.',\n",
" 'All',\n",
" 'ages',\n",
" ',',\n",
" 'experiences',\n",
" ',',\n",
" 'and',\n",
" 'aspirations',\n",
" 'are',\n",
" 'welcome',\n",
" 'to',\n",
" 'this',\n",
" 'studio',\n",
" 'tucked',\n",
" 'into',\n",
" 'the',\n",
" 'Eastside',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Yogabatics',\n",
" 'is',\n",
" 'all',\n",
" 'AcroYoga',\n",
" ',',\n",
" 'all',\n",
" 'the',\n",
" 'time',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'brand',\n",
" 'new',\n",
" 'to',\n",
" 'the',\n",
" 'aerial',\n",
" 'game',\n",
" 'or',\n",
" 'you’re',\n",
" 'a',\n",
" 'seasoned',\n",
" 'high-flying',\n",
" 'vet',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'classes',\n",
" 'here',\n",
" 'to',\n",
" 'fit',\n",
" 'your',\n",
" 'fancy',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'a',\n",
" 'newbie',\n",
" 'not',\n",
" 'quite',\n",
" 'ready',\n",
" 'to',\n",
" 'commit',\n",
" ',',\n",
" 'drop-in',\n",
" 'for',\n",
" 'a',\n",
" 'single',\n",
" 'class',\n",
" 'or',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'five-week',\n",
" 'beginner',\n",
" 'series',\n",
" 'to',\n",
" 'see',\n",
" 'what',\n",
" 'it’s',\n",
" 'all',\n",
" 'about',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'experienced',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'more',\n",
" 'advanced',\n",
" 'classes',\n",
" 'that',\n",
" 'will',\n",
" 'meet',\n",
" 'your',\n",
" 'needs',\n",
" ',',\n",
" 'like',\n",
" 'Handstand',\n",
" 'Mentorship',\n",
" 'and',\n",
" 'private',\n",
" ',',\n",
" 'one-on-one',\n",
" 'lessons',\n",
" '.',\n",
" 'Found',\n",
" 'on',\n",
" 'the',\n",
" 'corner',\n",
" 'of',\n",
" 'Research',\n",
" 'Blvd',\n",
" '.',\n",
" 'and',\n",
" 'Burnet',\n",
" ',',\n",
" 'it’s',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" 'for',\n",
" 'North-dwellers',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Mind',\n",
" 'Body',\n",
" 'Yoga',\n",
" 'is',\n",
" 'a',\n",
" 'popular',\n",
" 'go-to',\n",
" 'for',\n",
" 'North',\n",
" 'Austin',\n",
" 'yogis',\n",
" 'for',\n",
" 'its',\n",
" 'convenience',\n",
" ',',\n",
" 'affordability',\n",
" ',',\n",
" 'and',\n",
" 'energizing',\n",
" 'take',\n",
" 'on',\n",
" 'practice',\n",
" '.',\n",
" 'And',\n",
" 'now',\n",
" 'they’ve',\n",
" 'kicked',\n",
" 'their',\n",
" 'game',\n",
" 'up',\n",
" 'a',\n",
" 'notch',\n",
" 'further',\n",
" 'by',\n",
" 'offering',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" 'classes',\n",
" 'for',\n",
" 'beginners',\n",
" 'and',\n",
" 'experienced',\n",
" 'flyers',\n",
" 'alike',\n",
" '.',\n",
" 'With',\n",
" 'classes',\n",
" 'focusing',\n",
" 'on',\n",
" 'strength',\n",
" ',',\n",
" 'power',\n",
" ',',\n",
" 'and',\n",
" 'playfulness',\n",
" ',',\n",
" 'ranging',\n",
" 'from',\n",
" 'single',\n",
" 'intro',\n",
" 'classes',\n",
" 'to',\n",
" 'six-week',\n",
" 'series’',\n",
" ',',\n",
" 'there’s',\n",
" 'something',\n",
" 'for',\n",
" 'everyone',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Just',\n",
" 'as',\n",
" 'the',\n",
" 'name',\n",
" 'suggests',\n",
" ',',\n",
" 'this',\n",
" 'studio',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" 'utilizing',\n",
" 'the',\n",
" 'therapeutic',\n",
" 'benefits',\n",
" 'of',\n",
" 'the',\n",
" 'aerial',\n",
" 'arts',\n",
" '.',\n",
" 'Setting',\n",
" 'up',\n",
" 'in',\n",
" 'South',\n",
" 'Austin',\n",
" ',',\n",
" 'the',\n",
" 'folks',\n",
" 'here',\n",
" 'are',\n",
" 'unique',\n",
" 'in',\n",
" 'that',\n",
" 'their',\n",
" 'classes',\n",
" 'are',\n",
" 'targeted',\n",
" 'at',\n",
" 'kids',\n",
" 'from',\n",
" 'the',\n",
" 'ages',\n",
" 'of',\n",
" '4-16',\n",
" '.',\n",
" 'Intertwining',\n",
" 'aerial',\n",
" 'yoga',\n",
" 'with',\n",
" 'mindfulness',\n",
" 'and',\n",
" 'sensory',\n",
" 'integration',\n",
" 'therapies',\n",
" ',',\n",
" 'their',\n",
" 'mission',\n",
" 'is',\n",
" 'to',\n",
" 'help',\n",
" 'your',\n",
" 'child',\n",
" 'explore',\n",
" 'his/her',\n",
" 'body',\n",
" ',',\n",
" 'development',\n",
" ',',\n",
" 'and',\n",
" 'abilities',\n",
" 'in',\n",
" 'a',\n",
" 'safe',\n",
" ',',\n",
" 'supportive',\n",
" ',',\n",
" 'and',\n",
" 'super',\n",
" 'fun',\n",
" 'environment',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'This',\n",
" 'studio',\n",
" 'goes',\n",
" 'beyond',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" 'and',\n",
" 'offers',\n",
" 'a',\n",
" 'bevy',\n",
" 'of',\n",
" 'different',\n",
" 'classes',\n",
" 'aimed',\n",
" 'at',\n",
" 'helping',\n",
" 'you',\n",
" 'fly',\n",
" 'high',\n",
" ',',\n",
" 'including',\n",
" 'Aerial',\n",
" 'Silks',\n",
" ',',\n",
" 'Silks',\n",
" 'for',\n",
" 'Kids',\n",
" ',',\n",
" 'Aerial',\n",
" 'Dance',\n",
" ',',\n",
" 'and',\n",
" 'Aerial',\n",
" 'Harness',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'opt',\n",
" 'to',\n",
" 'enroll',\n",
" 'in',\n",
" 'a',\n",
" 'class',\n",
" 'series',\n",
" ',',\n",
" 'you',\n",
" 'also',\n",
" 'get',\n",
" 'an',\n",
" 'unlimited',\n",
" 'pass',\n",
" 'to',\n",
" 'practice',\n",
" 'and',\n",
" 'hone',\n",
" 'your',\n",
" 'skills',\n",
" 'at',\n",
" 'their',\n",
" 'Open',\n",
" 'Studio',\n",
" 'sessions',\n",
" '.',\n",
" 'Find',\n",
" 'them',\n",
" 'every',\n",
" 'day',\n",
" 'of',\n",
" 'the',\n",
" 'week',\n",
" 'nestled',\n",
" 'deep',\n",
" 'into',\n",
" 'South',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'you',\n",
" 'already',\n",
" 'have',\n",
" 'some',\n",
" 'familiarity',\n",
" 'with',\n",
" 'the',\n",
" 'AcroYoga',\n",
" 'scene',\n",
" ',',\n",
" 'then',\n",
" 'the',\n",
" 'Austin',\n",
" 'AcroYoga',\n",
" 'Jam',\n",
" 'is',\n",
" 'an',\n",
" 'awesome',\n",
" 'way',\n",
" 'to',\n",
" 'improve',\n",
" 'your',\n",
" 'practice',\n",
" 'and',\n",
" 'connect',\n",
" 'with',\n",
" 'like-minded',\n",
" 'yogis',\n",
" '.',\n",
" 'Every',\n",
" 'Friday',\n",
" 'night',\n",
" 'from',\n",
" '730pm-230am',\n",
" ',',\n",
" 'any',\n",
" 'and',\n",
" 'everyone',\n",
" 'is',\n",
" 'invited',\n",
" 'to',\n",
" 'head',\n",
" 'to',\n",
" 'South',\n",
" 'Austin',\n",
" 'to',\n",
" '“Jam”—a',\n",
" 'playful',\n",
" ',',\n",
" 'open',\n",
" 'practice',\n",
" 'opportunity',\n",
" 'for',\n",
" 'folks',\n",
" 'to',\n",
" 'gather',\n",
" 'together',\n",
" 'and',\n",
" 'work',\n",
" 'through',\n",
" 'different',\n",
" 'moves',\n",
" '.',\n",
" 'Fly',\n",
" 'high',\n",
" ',',\n",
" 'dear',\n",
" 'yogi',\n",
" '!',\n",
" 'Fly',\n",
" 'high',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Given\",\n",
" 'that',\n",
" 'there’s',\n",
" 'a',\n",
" 'yoga',\n",
" 'studio',\n",
" 'on',\n",
" 'practically',\n",
" 'every',\n",
" 'corner',\n",
" 'and',\n",
" 'the',\n",
" 'river',\n",
" 'is',\n",
" 'never',\n",
" 'without',\n",
" 'its',\n",
" 'paddlers',\n",
" ',',\n",
" 'it’s',\n",
" 'no',\n",
" 'secret',\n",
" 'that',\n",
" 'Austinites',\n",
" 'love',\n",
" 'fitness',\n",
" 'in',\n",
" 'all',\n",
" 'its',\n",
" 'forms',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'figure',\n",
" 'there’s',\n",
" 'no',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'celebrate',\n",
" 'our',\n",
" 'culture',\n",
" 'of',\n",
" 'fitness',\n",
" 'than',\n",
" 'with',\n",
" 'a',\n",
" 'rundown',\n",
" 'of',\n",
" 'the',\n",
" 'most',\n",
" 'unique',\n",
" ',',\n",
" 'must-try',\n",
" 'fitness',\n",
" 'events',\n",
" 'in',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'This',\n",
" 'is',\n",
" 'the',\n",
" 'ultimate',\n",
" ',',\n",
" 'the',\n",
" 'annual',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'awesome',\n",
" 'for',\n",
" 'active',\n",
" 'happenings',\n",
" '.',\n",
" 'See',\n",
" 'how',\n",
" 'many',\n",
" 'items',\n",
" 'you',\n",
" 'can',\n",
" 'check',\n",
" 'off',\n",
" 'of',\n",
" 'our',\n",
" 'bucket',\n",
" 'list',\n",
" 'for',\n",
" 'fitness',\n",
" 'fiends',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Hosted\",\n",
" 'by',\n",
" 'the',\n",
" 'Atomic',\n",
" 'Athlete',\n",
" 'on',\n",
" 'the',\n",
" 'Eastside',\n",
" ',',\n",
" 'Night',\n",
" 'Ops',\n",
" 'is',\n",
" 'an',\n",
" 'extreme',\n",
" 'challenge',\n",
" 'for',\n",
" 'the',\n",
" 'mentally',\n",
" 'fit',\n",
" 'and',\n",
" 'physically',\n",
" 'strong',\n",
" '.',\n",
" 'Your',\n",
" 'mission',\n",
" ',',\n",
" 'should',\n",
" 'you',\n",
" 'choose',\n",
" 'to',\n",
" 'accept',\n",
" 'it',\n",
" ',',\n",
" 'will',\n",
" 'involve',\n",
" 'solving',\n",
" 'riddles',\n",
" 'at',\n",
" 'various',\n",
" 'checkpoints',\n",
" 'around',\n",
" 'the',\n",
" 'city',\n",
" 'where',\n",
" 'you’ll',\n",
" 'need',\n",
" 'to',\n",
" 'complete',\n",
" 'difficult',\n",
" 'tasks',\n",
" 'to',\n",
" 'move',\n",
" 'on',\n",
" '.',\n",
" 'The',\n",
" 'tasks',\n",
" 'are',\n",
" 'ever-evolving',\n",
" ',',\n",
" 'ranging',\n",
" 'from',\n",
" 'plunging',\n",
" 'into',\n",
" 'muddy',\n",
" 'water',\n",
" 'for',\n",
" 'a',\n",
" 'fishing',\n",
" 'bobber',\n",
" 'to',\n",
" 'having',\n",
" 'to',\n",
" 'unchain',\n",
" 'and',\n",
" 'carry',\n",
" 'a',\n",
" 'cinderblock',\n",
" 'for',\n",
" 'the',\n",
" 'duration',\n",
" 'of',\n",
" 'the',\n",
" 'race',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'you’ll',\n",
" 'be',\n",
" 'wearing',\n",
" 'a',\n",
" 'weighted',\n",
" 'vest',\n",
" 'the',\n",
" 'whole',\n",
" 'time',\n",
" '.',\n",
" 'Enter',\n",
" 'if',\n",
" 'you',\n",
" 'dare',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Maybe\",\n",
" 'you’d',\n",
" 'like',\n",
" 'your',\n",
" 'nighttime',\n",
" 'fitness',\n",
" 'to',\n",
" 'come',\n",
" 'with',\n",
" 'slightly',\n",
" 'less',\n",
" 'intensity',\n",
" '.',\n",
" 'In',\n",
" 'that',\n",
" 'case',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'Barton',\n",
" 'Springs',\n",
" 'every',\n",
" 'month',\n",
" 'for',\n",
" 'the',\n",
" 'Full',\n",
" 'Moon',\n",
" 'Swim',\n",
" '.',\n",
" 'For',\n",
" 'years',\n",
" ',',\n",
" 'regardless',\n",
" 'of',\n",
" 'the',\n",
" 'season',\n",
" ',',\n",
" 'hundreds',\n",
" 'of',\n",
" 'Austinites',\n",
" 'gather',\n",
" 'at',\n",
" 'Barton',\n",
" 'Springs',\n",
" 'on',\n",
" 'those',\n",
" 'nights',\n",
" 'when',\n",
" 'the',\n",
" 'moon',\n",
" 'is',\n",
" 'full',\n",
" 'and',\n",
" 'bright',\n",
" ',',\n",
" 'and',\n",
" 'howl',\n",
" 'their',\n",
" 'werewolf-wannabe',\n",
" 'lungs',\n",
" 'out',\n",
" 'as',\n",
" 'they',\n",
" 'tread',\n",
" 'in',\n",
" 'the',\n",
" '68-degree',\n",
" 'water',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'No\",\n",
" 'bucket',\n",
" 'list',\n",
" 'is',\n",
" 'complete',\n",
" 'without',\n",
" 'a',\n",
" 'full',\n",
" 'marathon',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'Austin',\n",
" 'Marathon',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'one',\n",
" 'to',\n",
" 'check',\n",
" 'off',\n",
" '.',\n",
" 'Beginning',\n",
" '25',\n",
" 'years',\n",
" 'ago',\n",
" ',',\n",
" 'this',\n",
" 'marathon',\n",
" 'starts',\n",
" 'and',\n",
" 'finishes',\n",
" 'on',\n",
" 'Congress',\n",
" ',',\n",
" 'winding',\n",
" 'through',\n",
" 'the',\n",
" 'city',\n",
" 'streets',\n",
" 'as',\n",
" 'residents',\n",
" 'cheer',\n",
" 'runners',\n",
" 'on',\n",
" 'at',\n",
" 'every',\n",
" 'mile',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’re',\n",
" 'worried',\n",
" 'about',\n",
" 'heat',\n",
" ',',\n",
" 'don’t',\n",
" 'be—the',\n",
" 'marathon',\n",
" 'runs',\n",
" 'every',\n",
" 'winter',\n",
" ',',\n",
" 'when',\n",
" 'it’s',\n",
" 'perfect',\n",
" 'running',\n",
" 'weather',\n",
" 'for',\n",
" 'Austinites',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Fitness\",\n",
" 'is',\n",
" 'always',\n",
" 'more',\n",
" 'fun',\n",
" 'with',\n",
" 'friends',\n",
" ',',\n",
" 'especially',\n",
" 'our',\n",
" 'furry',\n",
" 'ones',\n",
" '.',\n",
" 'The',\n",
" 'Mighty',\n",
" 'Texas',\n",
" 'Dog',\n",
" 'Walk',\n",
" 'takes',\n",
" 'place',\n",
" 'every',\n",
" 'March',\n",
" 'at',\n",
" 'Auditorium',\n",
" 'Shores',\n",
" '.',\n",
" 'Hundreds',\n",
" 'of',\n",
" 'humans',\n",
" 'and',\n",
" 'their',\n",
" 'pups',\n",
" 'gather',\n",
" 'for',\n",
" 'goody',\n",
" 'bags',\n",
" ',',\n",
" 'vet',\n",
" 'advice',\n",
" ',',\n",
" 'dog',\n",
" 'food',\n",
" 'samples',\n",
" ',',\n",
" 'games',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'a',\n",
" 'massive',\n",
" 'dog',\n",
" 'walk',\n",
" '.',\n",
" 'The',\n",
" 'best',\n",
" 'part',\n",
" '?',\n",
" 'All',\n",
" 'proceeds',\n",
" 'go',\n",
" 'to',\n",
" 'Service',\n",
" 'Dogs',\n",
" 'Inc.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'a',\n",
" 'triathlon',\n",
" 'is',\n",
" 'something',\n",
" 'you’d',\n",
" 'like',\n",
" 'to',\n",
" 'check',\n",
" 'off',\n",
" 'your',\n",
" 'bucket',\n",
" 'list',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'thought',\n",
" 'of',\n",
" 'all',\n",
" 'that',\n",
" 'mileage',\n",
" 'is',\n",
" 'a',\n",
" 'little',\n",
" 'intimidating',\n",
" ',',\n",
" 'then',\n",
" 'get',\n",
" 'your',\n",
" 'feet',\n",
" 'wet',\n",
" 'at',\n",
" 'the',\n",
" 'Rookie',\n",
" 'Tri',\n",
" '.',\n",
" 'Featuring',\n",
" 'a',\n",
" '300-meter',\n",
" 'swim',\n",
" 'monitored',\n",
" 'by',\n",
" 'lifeguards',\n",
" 'on',\n",
" 'Decker',\n",
" 'Lake',\n",
" ',',\n",
" 'an',\n",
" '11-mile',\n",
" 'bike',\n",
" 'ride',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" '2-mile',\n",
" 'run',\n",
" 'on',\n",
" 'easy',\n",
" 'paths',\n",
" 'through',\n",
" 'the',\n",
" 'park',\n",
" ',',\n",
" 'it’s',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'a',\n",
" 'triathlon',\n",
" 'under',\n",
" 'your',\n",
" 'belt',\n",
" 'without',\n",
" 'feeling',\n",
" 'like',\n",
" 'you’re',\n",
" 'going',\n",
" 'to',\n",
" 'die',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'and',\n",
" 'three',\n",
" 'friends',\n",
" 'can',\n",
" 'get',\n",
" 'together',\n",
" 'to',\n",
" 'compete',\n",
" 'in',\n",
" 'the',\n",
" 'annual',\n",
" '10-mile',\n",
" 'race',\n",
" 'that',\n",
" 'is',\n",
" 'the',\n",
" 'Zilker',\n",
" 'Relays',\n",
" 'at',\n",
" 'Zilker',\n",
" 'Park',\n",
" '.',\n",
" 'Each',\n",
" 'participant',\n",
" 'will',\n",
" 'run',\n",
" '2.5',\n",
" 'miles',\n",
" 'around',\n",
" 'the',\n",
" 'park',\n",
" 'before',\n",
" 'passing',\n",
" 'the',\n",
" 'baton',\n",
" 'to',\n",
" 'their',\n",
" 'teammate',\n",
" '.',\n",
" 'Come',\n",
" 'for',\n",
" 'the',\n",
" 'race',\n",
" 'and',\n",
" 'stay',\n",
" 'for',\n",
" 'the',\n",
" 'post-race',\n",
" 'festival',\n",
" ',',\n",
" 'which',\n",
" 'includes',\n",
" 'an',\n",
" 'abundance',\n",
" 'of',\n",
" 'drinks',\n",
" 'and',\n",
" 'live',\n",
" 'music',\n",
" 'to',\n",
" 'celebrate',\n",
" 'your',\n",
" 'team’s',\n",
" 'hard',\n",
" 'work',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Our\",\n",
" 'weather',\n",
" 'is',\n",
" 'nice',\n",
" 'nearly',\n",
" 'year-round',\n",
" ',',\n",
" 'but',\n",
" 'that',\n",
" 'doesn’t',\n",
" 'mean',\n",
" 'we',\n",
" 'don’t',\n",
" 'enjoy',\n",
" 'a',\n",
" 'little',\n",
" 'holiday',\n",
" 'chill',\n",
" '.',\n",
" 'Every',\n",
" 'winter',\n",
" ',',\n",
" 'Whole',\n",
" 'Foods',\n",
" 'downtown',\n",
" 'becomes',\n",
" 'a',\n",
" 'full-service',\n",
" 'ice',\n",
" 'rink',\n",
" '.',\n",
" 'The',\n",
" 'rink',\n",
" 'is',\n",
" 'installed',\n",
" 'on',\n",
" 'the',\n",
" 'rooftop',\n",
" 'along',\n",
" 'with',\n",
" 'ice',\n",
" 'skate',\n",
" 'rentals',\n",
" 'and',\n",
" 'generous',\n",
" 'doses',\n",
" 'of',\n",
" 'hot',\n",
" 'cocoa',\n",
" '.',\n",
" 'Add',\n",
" 'tunes',\n",
" 'to',\n",
" 'the',\n",
" 'mix',\n",
" 'and',\n",
" 'you’ll',\n",
" 'feel',\n",
" 'like',\n",
" 'you’re',\n",
" 'in',\n",
" 'a',\n",
" 'winter',\n",
" 'wonderland',\n",
" 'right',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'Texas',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'What’s\",\n",
" 'that',\n",
" '?',\n",
" 'Free',\n",
" 'fitness',\n",
" ',',\n",
" 'you',\n",
" 'say',\n",
" '?',\n",
" 'Sign',\n",
" 'us',\n",
" 'up',\n",
" '!',\n",
" 'Each',\n",
" 'September',\n",
" ',',\n",
" 'loads',\n",
" 'of',\n",
" 'yoga',\n",
" 'studios',\n",
" 'around',\n",
" 'Austin',\n",
" 'offer',\n",
" 'free',\n",
" 'classes',\n",
" 'to',\n",
" 'anyone',\n",
" 'who',\n",
" 'wants',\n",
" 'to',\n",
" 'take',\n",
" 'advantage',\n",
" 'of',\n",
" '‘em',\n",
" '.',\n",
" 'With',\n",
" 'so',\n",
" 'many',\n",
" 'yoga',\n",
" 'studios',\n",
" 'around',\n",
" 'Austin',\n",
" ',',\n",
" 'you’re',\n",
" 'bound',\n",
" 'to',\n",
" 'find',\n",
" 'a',\n",
" 'freebie',\n",
" 'class',\n",
" 'no',\n",
" 'matter',\n",
" 'what',\n",
" 'time',\n",
" 'of',\n",
" 'day',\n",
" 'you',\n",
" 'choose',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'stretch',\n",
" 'on',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Single\",\n",
" '?',\n",
" 'Don’t',\n",
" 'fret',\n",
" '!',\n",
" 'Duos',\n",
" 'of',\n",
" 'all',\n",
" 'kinds',\n",
" 'are',\n",
" 'encouraged',\n",
" 'to',\n",
" 'check',\n",
" 'out',\n",
" 'this',\n",
" 'triathlon',\n",
" '.',\n",
" 'So',\n",
" 'grab',\n",
" 'a',\n",
" 'friend',\n",
" ',',\n",
" 'neighbor',\n",
" ',',\n",
" 'sibling',\n",
" ',',\n",
" 'or',\n",
" 'an',\n",
" 'unsuspecting',\n",
" 'stranger',\n",
" 'off',\n",
" 'the',\n",
" 'street',\n",
" 'to',\n",
" 'join',\n",
" 'you',\n",
" 'for',\n",
" 'this',\n",
" 'triathlon',\n",
" 'sprint',\n",
" '.',\n",
" 'Expect',\n",
" 'a',\n",
" '500-meter',\n",
" 'swim',\n",
" ',',\n",
" 'an',\n",
" '11.2-mile',\n",
" 'bike',\n",
" 'ride',\n",
" ',',\n",
" 'a',\n",
" '3.1-mile',\n",
" 'run',\n",
" 'across',\n",
" 'mixed',\n",
" 'terrain',\n",
" ',',\n",
" 'and',\n",
" 'some',\n",
" 'serious',\n",
" 'bonding',\n",
" 'with',\n",
" 'your',\n",
" 'partner',\n",
" 'of',\n",
" 'choice',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'don’t',\n",
" 'know',\n",
" 'Austin',\n",
" 'until',\n",
" 'you’ve',\n",
" 'seen',\n",
" 'it',\n",
" 'from',\n",
" 'atop',\n",
" 'a',\n",
" 'paddleboard',\n",
" '.',\n",
" 'Open',\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'everyday',\n",
" 'for',\n",
" 'as',\n",
" 'long',\n",
" 'as',\n",
" 'the',\n",
" 'sun',\n",
" 'is',\n",
" 'out',\n",
" ',',\n",
" 'SUP',\n",
" 'ATX',\n",
" 'downtown',\n",
" 'is',\n",
" 'a',\n",
" 'must-try',\n",
" 'for',\n",
" 'Austinites',\n",
" '.',\n",
" 'Right',\n",
" 'off',\n",
" 'of',\n",
" 'the',\n",
" 'hike',\n",
" 'and',\n",
" 'bike',\n",
" 'trail',\n",
" 'on',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'is',\n",
" 'where',\n",
" 'you’ll',\n",
" 'find',\n",
" 'a',\n",
" 'fleet',\n",
" 'of',\n",
" 'paddle',\n",
" 'boards',\n",
" 'ripe',\n",
" 'for',\n",
" 'renting',\n",
" '.',\n",
" 'Rent',\n",
" 'a',\n",
" 'board',\n",
" 'for',\n",
" 'an',\n",
" 'hour',\n",
" 'or',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'monthly',\n",
" 'membership',\n",
" 'to',\n",
" 'take',\n",
" 'your',\n",
" 'SUP',\n",
" 'to',\n",
" 'the',\n",
" 'next',\n",
" 'level',\n",
" '.',\n",
" 'The',\n",
" 'best',\n",
" 'part',\n",
" '?',\n",
" 'Pets',\n",
" 'are',\n",
" 'welcome',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'your',\n",
" 'pooch',\n",
" 'along',\n",
" 'to',\n",
" 'enjoy',\n",
" 'the',\n",
" 'ride',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Closing\",\n",
" 'out',\n",
" 'our',\n",
" 'list',\n",
" 'is',\n",
" 'Austin’s',\n",
" 'oldest',\n",
" 'annual',\n",
" 'race',\n",
" ',',\n",
" 'the',\n",
" 'Statesman',\n",
" 'Capitol',\n",
" '10K',\n",
" '.',\n",
" 'Celebrating',\n",
" 'our',\n",
" 'culture',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'food',\n",
" ',',\n",
" 'and',\n",
" 'festivities',\n",
" ',',\n",
" 'runners',\n",
" 'will',\n",
" 'wind',\n",
" 'through',\n",
" 'central',\n",
" 'Austin',\n",
" 'neighborhoods',\n",
" 'and',\n",
" 'finish',\n",
" 'up',\n",
" 'at',\n",
" 'Auditorium',\n",
" 'Shores',\n",
" 'for',\n",
" 'the',\n",
" 'Finish',\n",
" 'Line',\n",
" 'Festival',\n",
" '.',\n",
" 'You’ll',\n",
" 'be',\n",
" 'treated',\n",
" 'to',\n",
" 'live',\n",
" 'music',\n",
" 'throughout',\n",
" 'the',\n",
" 'route',\n",
" ',',\n",
" 'and',\n",
" 'find',\n",
" 'food',\n",
" 'trucks',\n",
" ',',\n",
" 'a',\n",
" 'beer',\n",
" 'garden',\n",
" ',',\n",
" 'and',\n",
" 'plenty',\n",
" 'of',\n",
" 'vendors',\n",
" 'to',\n",
" 'reward',\n",
" 'you',\n",
" 'at',\n",
" 'the',\n",
" 'finish',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Where\",\n",
" 'do',\n",
" 'you',\n",
" 'head',\n",
" 'to',\n",
" 'challenge',\n",
" 'yourself',\n",
" 'with',\n",
" 'a',\n",
" 'workout',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'must-try',\n",
" 'spot\\\\xa0that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" '\\\\xa0Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Where\",\n",
" 'do',\n",
" 'you',\n",
" 'head',\n",
" 'to',\n",
" 'challenge',\n",
" 'yourself',\n",
" 'with',\n",
" 'a',\n",
" 'workout',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'must-try',\n",
" ...],\n",
" ['[',\n",
" \"'Some\",\n",
" 'of',\n",
" 'us',\n",
" 'work',\n",
" 'on',\n",
" 'our',\n",
" 'fitness',\n",
" 'for',\n",
" 'health',\n",
" ',',\n",
" 'others',\n",
" 'work',\n",
" 'on',\n",
" 'it',\n",
" 'for',\n",
" 'a',\n",
" 'killer',\n",
" 'beach',\n",
" 'bod',\n",
" ',',\n",
" 'and',\n",
" 'still',\n",
" 'more',\n",
" 'do',\n",
" 'it',\n",
" 'so',\n",
" 'they',\n",
" 'can…',\n",
" 'Eat',\n",
" '.',\n",
" 'More',\n",
" '.',\n",
" 'Ice',\n",
" 'cream',\n",
" '!',\n",
" 'We’re',\n",
" 'right',\n",
" 'there',\n",
" 'with',\n",
" 'you',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'list',\n",
" 'is',\n",
" 'for',\n",
" 'the',\n",
" 'group',\n",
" 'that',\n",
" 'huffs',\n",
" 'and',\n",
" 'puffs',\n",
" 'in',\n",
" 'order',\n",
" 'to',\n",
" 'feel',\n",
" 'good',\n",
" 'about',\n",
" 'indulging',\n",
" 'in',\n",
" 'a',\n",
" 'heaping',\n",
" 'pile',\n",
" 'of',\n",
" 'cold',\n",
" ',',\n",
" 'creamy',\n",
" 'goodness',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'the',\n",
" 'best',\n",
" 'ice',\n",
" 'cream',\n",
" 'and',\n",
" 'milkshake',\n",
" 'spots',\n",
" 'Austin',\n",
" 'has',\n",
" 'to',\n",
" 'offer',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'No\",\n",
" 'list',\n",
" 'of',\n",
" 'Austin',\n",
" 'ice',\n",
" 'cream',\n",
" 'would',\n",
" 'be',\n",
" 'right',\n",
" 'nor',\n",
" 'complete',\n",
" 'without',\n",
" 'mentioning',\n",
" 'Lick',\n",
" '.',\n",
" 'Located',\n",
" 'on',\n",
" 'South',\n",
" 'Lamar',\n",
" 'next',\n",
" 'to',\n",
" 'the',\n",
" 'Alamo',\n",
" 'Drafthouse',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'option',\n",
" 'for',\n",
" 'keeping',\n",
" 'cool',\n",
" 'in',\n",
" 'the',\n",
" 'blazing',\n",
" 'heat',\n",
" '.',\n",
" 'What',\n",
" 'sets',\n",
" 'Lick',\n",
" 'apart',\n",
" 'is',\n",
" 'its',\n",
" 'emphasis',\n",
" 'on',\n",
" 'pure',\n",
" ',',\n",
" 'wholesome',\n",
" 'ingredients',\n",
" '.',\n",
" 'Forgoing',\n",
" 'artificial',\n",
" 'colors',\n",
" ',',\n",
" 'flavors',\n",
" ',',\n",
" 'and',\n",
" 'high',\n",
" 'fructose',\n",
" 'corn',\n",
" 'syrup',\n",
" 'altogether',\n",
" ',',\n",
" 'health',\n",
" 'nuts',\n",
" 'fiend',\n",
" 'for',\n",
" 'this',\n",
" 'place',\n",
" '.',\n",
" 'We',\n",
" 'die',\n",
" 'for',\n",
" 'the',\n",
" 'cayenne',\n",
" 'pepper-infused',\n",
" 'Too',\n",
" 'Hot',\n",
" 'Chocolate',\n",
" ',',\n",
" 'but',\n",
" 'you',\n",
" 'really',\n",
" 'can’t',\n",
" 'go',\n",
" 'wrong',\n",
" 'with',\n",
" 'anything',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'several',\n",
" 'locations',\n",
" 'throughout',\n",
" 'Austin',\n",
" ',',\n",
" 'Amy’s',\n",
" 'Ice',\n",
" 'Cream',\n",
" 'is',\n",
" 'a',\n",
" 'city',\n",
" 'staple',\n",
" '–',\n",
" 'and',\n",
" 'for',\n",
" 'very',\n",
" 'good',\n",
" '(',\n",
" 'and',\n",
" 'yummy',\n",
" ')',\n",
" 'reason',\n",
" '.',\n",
" 'In',\n",
" 'addition',\n",
" 'to',\n",
" 'seven',\n",
" 'standard',\n",
" ',',\n",
" 'mouth-watering',\n",
" 'flavors',\n",
" ',',\n",
" 'they',\n",
" 'have',\n",
" 'over',\n",
" '350',\n",
" 'others',\n",
" 'they',\n",
" 'rotate',\n",
" 'throughout',\n",
" 'the',\n",
" 'year',\n",
" '.',\n",
" 'They’re',\n",
" 'best',\n",
" 'known',\n",
" 'for',\n",
" 'the',\n",
" 'deliciousness',\n",
" 'that',\n",
" 'is',\n",
" 'their',\n",
" 'Mexican',\n",
" 'Vanilla',\n",
" 'ice',\n",
" 'cream',\n",
" '.',\n",
" 'But',\n",
" 'pretty',\n",
" 'much',\n",
" 'everything',\n",
" 'is',\n",
" 'awesome',\n",
" 'here',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'in',\n",
" 'for',\n",
" 'a',\n",
" 'healthy',\n",
" 'score',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'very',\n",
" 'worthy',\n",
" 'dairy-free',\n",
" 'fruit',\n",
" 'ices',\n",
" 'and',\n",
" 'frozen',\n",
" 'yogurt',\n",
" 'options',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'keep',\n",
" 'indulgences',\n",
" 'to',\n",
" 'a',\n",
" 'minimum',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'sweet',\n",
" 'treat',\n",
" 'in',\n",
" 'Hyde',\n",
" 'Park',\n",
" 'is',\n",
" 'equally',\n",
" 'perfect',\n",
" 'for',\n",
" 'cooling',\n",
" 'off',\n",
" 'during',\n",
" 'a',\n",
" 'steamy',\n",
" 'summer',\n",
" 'day',\n",
" 'and',\n",
" 'warming',\n",
" 'up',\n",
" 'during',\n",
" 'winter',\n",
" 'months',\n",
" '.',\n",
" 'Made',\n",
" 'of',\n",
" 'fresh',\n",
" 'fruit',\n",
" ',',\n",
" 'the',\n",
" 'house-made',\n",
" 'gelato',\n",
" 'is',\n",
" 'ridiculously',\n",
" 'rich',\n",
" ',',\n",
" 'creamy',\n",
" ',',\n",
" 'and',\n",
" 'sure',\n",
" 'to',\n",
" 'satisfy',\n",
" 'your',\n",
" 'loudest',\n",
" 'craving',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'real',\n",
" 'treasures',\n",
" 'here',\n",
" 'lie',\n",
" 'in',\n",
" 'this',\n",
" 'place’s',\n",
" 'unique',\n",
" 'concoctions',\n",
" ',',\n",
" 'such',\n",
" 'as',\n",
" 'the',\n",
" 'sorberita—think',\n",
" 'sorbet',\n",
" 'mixed',\n",
" 'with',\n",
" 'the',\n",
" 'best',\n",
" 'margarita',\n",
" 'you’ve',\n",
" 'ever',\n",
" 'had',\n",
" '.',\n",
" 'Um',\n",
" ',',\n",
" 'yes',\n",
" 'please',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'West\",\n",
" 'Campus',\n",
" 'houses',\n",
" 'this',\n",
" 'soft-serve',\n",
" 'ice',\n",
" 'cream',\n",
" 'truck',\n",
" 'of',\n",
" 'silky',\n",
" 'smooth',\n",
" 'goodness',\n",
" '.',\n",
" 'Here',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'go',\n",
" 'for',\n",
" 'the',\n",
" 'plain',\n",
" 'jane',\n",
" ',',\n",
" 'standard',\n",
" 'cone',\n",
" 'of',\n",
" 'ice',\n",
" 'cream…and',\n",
" 'you',\n",
" 'won’t',\n",
" 'be',\n",
" 'disappointed',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you',\n",
" 'really',\n",
" 'want',\n",
" 'to',\n",
" 'experience',\n",
" 'this',\n",
" 'place',\n",
" 'for',\n",
" 'all',\n",
" 'that',\n",
" 'it',\n",
" 'can',\n",
" 'offer',\n",
" ',',\n",
" 'cover',\n",
" 'your',\n",
" 'diet’s',\n",
" 'eyes',\n",
" 'and',\n",
" 'try',\n",
" 'a',\n",
" 'Stacker',\n",
" '–',\n",
" 'a',\n",
" 'glorious',\n",
" 'ice',\n",
" 'cream',\n",
" 'sundae',\n",
" 'done',\n",
" 'parfait-style',\n",
" ',',\n",
" 'stacked',\n",
" 'with',\n",
" 'ingredients',\n",
" 'like',\n",
" 'Dr.',\n",
" 'Pepper',\n",
" 'Chocolate',\n",
" 'sauce',\n",
" 'and',\n",
" 'Southern',\n",
" 'Cracker',\n",
" 'Candy',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Italian-native\",\n",
" 'owned',\n",
" 'Dolce',\n",
" 'Neve',\n",
" 'is',\n",
" 'the',\n",
" 'Bouldin',\n",
" 'Creek',\n",
" 'go-to',\n",
" 'for',\n",
" 'authentic',\n",
" 'gelato',\n",
" '.',\n",
" 'With',\n",
" 'skills',\n",
" 'honed',\n",
" 'at',\n",
" 'the',\n",
" 'Carpigiani',\n",
" 'Gelato',\n",
" 'University',\n",
" '(',\n",
" 'our',\n",
" 'new',\n",
" 'favorite',\n",
" 'school',\n",
" ')',\n",
" 'in',\n",
" 'Bologna',\n",
" ',',\n",
" 'Italy',\n",
" ',',\n",
" 'these',\n",
" 'owners',\n",
" 'aren’t',\n",
" 'messing',\n",
" 'around',\n",
" 'when',\n",
" 'it',\n",
" 'comes',\n",
" 'to',\n",
" 'their',\n",
" 'gelato-making',\n",
" 'efforts',\n",
" '.',\n",
" 'With',\n",
" 'treats',\n",
" 'like',\n",
" 'pecan',\n",
" 'butter',\n",
" 'cookies',\n",
" 'filled',\n",
" 'with',\n",
" 'goat',\n",
" 'cheese',\n",
" 'and',\n",
" 'wild',\n",
" 'blueberry',\n",
" 'jam',\n",
" 'gelato',\n",
" ',',\n",
" 'why',\n",
" 'are',\n",
" 'you',\n",
" 'still',\n",
" 'reading',\n",
" 'this',\n",
" 'when',\n",
" 'you',\n",
" 'could',\n",
" 'be',\n",
" 'on',\n",
" 'your',\n",
" 'way',\n",
" 'to',\n",
" 'getting',\n",
" 'down',\n",
" 'on',\n",
" 'that',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'take',\n",
" 'your',\n",
" 'ice',\n",
" 'cream',\n",
" 'without',\n",
" 'dairy',\n",
" ',',\n",
" 'there’s',\n",
" 'no',\n",
" 'better',\n",
" 'choice',\n",
" 'than',\n",
" 'Sweet',\n",
" 'Ritual',\n",
" '.',\n",
" 'Nestled',\n",
" 'inside',\n",
" 'the',\n",
" 'JuiceLand',\n",
" 'of',\n",
" 'Hyde',\n",
" 'Park',\n",
" ',',\n",
" 'this',\n",
" 'vegan',\n",
" 'favorite',\n",
" 'will',\n",
" 'leave',\n",
" 'you',\n",
" 'satisfied',\n",
" 'without',\n",
" 'the',\n",
" 'side',\n",
" 'of',\n",
" 'guilt',\n",
" '.',\n",
" 'Flavors',\n",
" 'like',\n",
" 'Salted',\n",
" 'Caramel',\n",
" ',',\n",
" 'Chocolate',\n",
" 'Chai',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'quirky',\n",
" '(',\n",
" 'and',\n",
" 'delicious',\n",
" ')',\n",
" 'Cinnamonkey',\n",
" 'Elephantastic',\n",
" 'make',\n",
" 'it',\n",
" 'nearly',\n",
" 'impossible',\n",
" 'to',\n",
" 'remember',\n",
" 'that',\n",
" 'there’s',\n",
" 'no',\n",
" 'dairy',\n",
" 'mixed',\n",
" 'in',\n",
" 'with',\n",
" 'this',\n",
" 'goodness',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’re\",\n",
" 'taking',\n",
" 'a',\n",
" 'slight',\n",
" 'right',\n",
" 'turn',\n",
" 'here',\n",
" 'to',\n",
" 'mention',\n",
" 'ice',\n",
" 'cream’s',\n",
" 'closest',\n",
" 'cousin',\n",
" '–',\n",
" 'the',\n",
" 'milkshake',\n",
" '!',\n",
" 'In',\n",
" 'addition',\n",
" 'to',\n",
" 'amazing',\n",
" 'burgers',\n",
" ',',\n",
" 'Hopdoddy',\n",
" 'offers',\n",
" 'incredible',\n",
" 'and',\n",
" 'impossibly',\n",
" 'scrumptious',\n",
" 'milkshakes',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'SoCo',\n",
" '.',\n",
" 'We’re',\n",
" 'talking',\n",
" 'flavors',\n",
" 'like',\n",
" 'Red',\n",
" 'Velvet',\n",
" 'Cake',\n",
" ',',\n",
" 'Oreo',\n",
" ',',\n",
" 'and',\n",
" '–',\n",
" 'wait',\n",
" 'for',\n",
" 'it',\n",
" '–',\n",
" 'Nutella',\n",
" '&',\n",
" 'Chocolate',\n",
" 'Pretzel…need',\n",
" 'we',\n",
" 'say',\n",
" 'more',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Open\",\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'everyday',\n",
" ',',\n",
" '24',\n",
" 'Diner',\n",
" 'on',\n",
" 'N.',\n",
" 'Lamar',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'spot',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'milkshake',\n",
" 'fix',\n",
" '.',\n",
" 'Okay',\n",
" ',',\n",
" 'not',\n",
" 'just',\n",
" 'great',\n",
" '.',\n",
" 'Awesome',\n",
" 'is',\n",
" 'the',\n",
" 'word',\n",
" 'we',\n",
" 'were',\n",
" 'looking',\n",
" 'for',\n",
" '.',\n",
" 'That’s',\n",
" 'because',\n",
" 'the',\n",
" 'shakes',\n",
" 'are',\n",
" 'made',\n",
" 'with',\n",
" 'local',\n",
" 'fruit',\n",
" ',',\n",
" 'single-origin',\n",
" 'chocolate',\n",
" ',',\n",
" 'and',\n",
" 'fair-trade',\n",
" 'locally',\n",
" 'roasted',\n",
" 'coffee',\n",
" '.',\n",
" 'So',\n",
" 'you',\n",
" 'can',\n",
" 'help',\n",
" 'the',\n",
" 'world',\n",
" 'while',\n",
" 'you',\n",
" 'feed',\n",
" 'your',\n",
" 'spirit',\n",
" 'with',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" 'milkshakes',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Every',\n",
" 'milkshake',\n",
" 'here',\n",
" 'is',\n",
" 'killer',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'Roasted',\n",
" 'Banana',\n",
" 'and',\n",
" 'Brown',\n",
" 'Sugar',\n",
" 'Shake',\n",
" 'is',\n",
" 'truly',\n",
" 'to',\n",
" 'die',\n",
" 'for',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'A\",\n",
" 'few',\n",
" 'extra',\n",
" 'minutes',\n",
" 'in',\n",
" 'the',\n",
" 'car',\n",
" 'is',\n",
" 'worth',\n",
" 'it',\n",
" 'for',\n",
" 'this',\n",
" 'authentic',\n",
" 'Mexican',\n",
" 'treat',\n",
" '.',\n",
" 'Located',\n",
" 'in',\n",
" 'Round',\n",
" 'Rock',\n",
" ',',\n",
" 'Paleteria',\n",
" 'La',\n",
" 'Selva',\n",
" 'ought',\n",
" 'to',\n",
" 'be',\n",
" 'your',\n",
" 'go-to',\n",
" 'for',\n",
" 'all',\n",
" 'things',\n",
" 'Mexican',\n",
" 'ice',\n",
" 'cream',\n",
" '.',\n",
" 'The',\n",
" 'favorites',\n",
" 'here',\n",
" 'are',\n",
" 'definitely',\n",
" 'their',\n",
" 'popsicles',\n",
" ',',\n",
" 'but',\n",
" 'we’re',\n",
" 'not',\n",
" 'talking',\n",
" 'your',\n",
" 'average',\n",
" 'joe',\n",
" ',',\n",
" 'run-of-the-mill',\n",
" 'pops',\n",
" '.',\n",
" 'With',\n",
" 'flavors',\n",
" 'like',\n",
" 'strawberry',\n",
" 'cheesecake',\n",
" 'and',\n",
" 'hot',\n",
" 'chocolate',\n",
" 'dipped',\n",
" 'in',\n",
" 'coconut',\n",
" ',',\n",
" 'you',\n",
" 'might',\n",
" 'never',\n",
" 'be',\n",
" 'able',\n",
" 'to',\n",
" 'eat',\n",
" 'an',\n",
" 'ordinary',\n",
" 'popsicle',\n",
" 'again',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'So\",\n",
" 'you',\n",
" 'just',\n",
" 'finished',\n",
" 'that',\n",
" 'long',\n",
" 'workout',\n",
" 'of',\n",
" 'yours',\n",
" '.',\n",
" 'Yeah',\n",
" ',',\n",
" 'you',\n",
" 'totally',\n",
" 'killed',\n",
" 'it',\n",
" '.',\n",
" '(',\n",
" 'props',\n",
" '!',\n",
" ')',\n",
" 'Now',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'refuel',\n",
" 'before',\n",
" 'crushing',\n",
" 'the',\n",
" 'rest',\n",
" 'of',\n",
" 'your',\n",
" 'day',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'How\",\n",
" 'about',\n",
" 'a',\n",
" 'fresh-squeezed',\n",
" ',',\n",
" 'locally-sourced',\n",
" ',',\n",
" 'organic',\n",
" ',',\n",
" 'made-to-order',\n",
" ',',\n",
" 'juice',\n",
" 'or',\n",
" 'smoothie',\n",
" '?',\n",
" 'We’ll',\n",
" 'take',\n",
" 'that',\n",
" 'drool',\n",
" 'on',\n",
" 'your',\n",
" 'face',\n",
" 'as',\n",
" 'a',\n",
" 'yes',\n",
" 'and',\n",
" 'suggest',\n",
" 'you',\n",
" 'check',\n",
" 'out',\n",
" 'this',\n",
" 'list',\n",
" 'of',\n",
" 'legit',\n",
" 'juice',\n",
" 'bars',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Offering',\n",
" 'delicious',\n",
" 'options',\n",
" 'and',\n",
" 'served',\n",
" 'by',\n",
" 'friendly',\n",
" 'locals',\n",
" ',',\n",
" 'these',\n",
" 'nourishing',\n",
" 'neighborhood',\n",
" 'spots',\n",
" 'are',\n",
" 'just',\n",
" 'too',\n",
" 'good',\n",
" 'to',\n",
" 'pass',\n",
" 'up',\n",
" '.',\n",
" 'So',\n",
" 'what',\n",
" 'are',\n",
" 'you',\n",
" 'waiting',\n",
" 'for',\n",
" '?',\n",
" 'Head',\n",
" 'to',\n",
" 'these',\n",
" 'nine',\n",
" 'juice',\n",
" 'and',\n",
" 'smoothie',\n",
" 'joints',\n",
" 'around',\n",
" 'town',\n",
" ',',\n",
" '\\\\xa0for',\n",
" 'a',\n",
" 'grab-and-go',\n",
" 'snack',\n",
" 'that’s',\n",
" 'actually',\n",
" 'good',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'spot',\n",
" 'might',\n",
" 'be',\n",
" 'Austin’s',\n",
" 'most',\n",
" 'well-known',\n",
" 'juice',\n",
" 'and',\n",
" 'smoothie',\n",
" 'bars',\n",
" '.',\n",
" 'JuiceLand',\n",
" 'offers',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'options',\n",
" 'and',\n",
" 'even',\n",
" 'more',\n",
" 'ways',\n",
" 'to',\n",
" 'customize',\n",
" 'them',\n",
" '.',\n",
" 'And',\n",
" 'with',\n",
" '14',\n",
" 'shops',\n",
" 'around',\n",
" 'the',\n",
" 'city',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'be',\n",
" 'positive',\n",
" 'they’re',\n",
" 'cranking',\n",
" 'out',\n",
" 'a',\n",
" 'lot',\n",
" 'of',\n",
" 'juice',\n",
" '.',\n",
" 'With',\n",
" 'hipster',\n",
" 'vibes',\n",
" 'and',\n",
" 'down',\n",
" 'right',\n",
" 'delicious',\n",
" 'drinks',\n",
" ',',\n",
" 'JuiceLand',\n",
" 'knows',\n",
" 'how',\n",
" 'to',\n",
" 'please',\n",
" 'the',\n",
" 'locals',\n",
" 'and',\n",
" 'keep',\n",
" '‘em',\n",
" 'coming',\n",
" 'back',\n",
" 'for',\n",
" 'more',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Raw\",\n",
" ',',\n",
" 'cold-pressed',\n",
" ',',\n",
" 'and',\n",
" '100',\n",
" '%',\n",
" 'organic',\n",
" ',',\n",
" 'oh',\n",
" 'my',\n",
" '!',\n",
" 'Honestly',\n",
" ',',\n",
" 'what',\n",
" 'more',\n",
" 'could',\n",
" 'you',\n",
" 'want',\n",
" 'in',\n",
" 'a',\n",
" 'juice',\n",
" '?',\n",
" 'Juice',\n",
" 'Society',\n",
" 'officially',\n",
" 'opened',\n",
" 'their',\n",
" 'doors',\n",
" 'in',\n",
" 'April',\n",
" '2016',\n",
" 'and',\n",
" 'it’s',\n",
" 'already',\n",
" 'a',\n",
" 'booming',\n",
" 'success',\n",
" '.',\n",
" 'Their',\n",
" 'juices',\n",
" 'are',\n",
" 'all',\n",
" 'prepackaged',\n",
" 'and',\n",
" 'packed',\n",
" 'full',\n",
" 'of',\n",
" 'clean',\n",
" 'nutrients',\n",
" 'that',\n",
" 'each',\n",
" 'serve',\n",
" 'a',\n",
" 'purpose',\n",
" ',',\n",
" 'meaning',\n",
" 'they',\n",
" 'don’t',\n",
" 'just',\n",
" 'throw',\n",
" 'ingredients',\n",
" 'in',\n",
" 'just',\n",
" 'because',\n",
" '.',\n",
" 'This',\n",
" 'quaint',\n",
" 'little',\n",
" 'space',\n",
" 'serves',\n",
" 'it',\n",
" 'up',\n",
" 'in',\n",
" 'a',\n",
" 'new',\n",
" 'South',\n",
" 'Lamar',\n",
" 'district',\n",
" 'surrounded',\n",
" 'by',\n",
" 'just',\n",
" 'about',\n",
" 'everything',\n",
" 'you',\n",
" 'can',\n",
" 'think',\n",
" 'of',\n",
" 'having',\n",
" 'to',\n",
" 'do',\n",
" 'with',\n",
" 'fitness',\n",
" ',',\n",
" 'food',\n",
" ',',\n",
" 'and',\n",
" 'shopping',\n",
" '!',\n",
" 'It',\n",
" 'makes',\n",
" 'for',\n",
" 'a',\n",
" 'pretty',\n",
" 'clutch',\n",
" 'stop',\n",
" 'on',\n",
" 'a',\n",
" 'beautiful',\n",
" 'outing',\n",
" 'with',\n",
" 'friends',\n",
" 'or',\n",
" 'family',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'From\",\n",
" 'being',\n",
" 'born',\n",
" 'and',\n",
" 'raised',\n",
" 'off',\n",
" 'of',\n",
" 'good',\n",
" 'ol’',\n",
" 'Barton',\n",
" 'Springs',\n",
" 'Road',\n",
" 'back',\n",
" 'in',\n",
" '2003',\n",
" 'to',\n",
" 'expanding',\n",
" 'with',\n",
" '11',\n",
" 'locations',\n",
" 'around',\n",
" 'Austin',\n",
" ',',\n",
" 'Houston',\n",
" ',',\n",
" 'and',\n",
" 'Nashville',\n",
" ',',\n",
" 'these',\n",
" 'guys',\n",
" 'obviously',\n",
" 'know',\n",
" 'a',\n",
" 'thing',\n",
" 'or',\n",
" 'two',\n",
" 'about',\n",
" 'juicing',\n",
" '.',\n",
" 'From',\n",
" 'the',\n",
" 'simplicity',\n",
" 'of',\n",
" 'a',\n",
" 'Pure',\n",
" '&',\n",
" 'Simple',\n",
" 'to',\n",
" 'the',\n",
" 'coconut/kale',\n",
" 'combo',\n",
" 'of',\n",
" 'the',\n",
" 'Depth',\n",
" 'Charge',\n",
" ',',\n",
" 'even',\n",
" 'the',\n",
" 'pickiest',\n",
" 'will',\n",
" 'find',\n",
" 'a',\n",
" 'juice',\n",
" 'to',\n",
" 'guzzle',\n",
" '.',\n",
" 'They',\n",
" 'pride',\n",
" 'themselves',\n",
" '(',\n",
" 'daily',\n",
" ')',\n",
" 'on',\n",
" 'their',\n",
" 'quality',\n",
" 'of',\n",
" 'ingredients',\n",
" 'and',\n",
" 'RAW',\n",
" ',',\n",
" 'cold-pressed',\n",
" '(',\n",
" 'never',\n",
" 'processed',\n",
" ')',\n",
" 'juices',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Parked\",\n",
" 'on',\n",
" 'S.',\n",
" 'Congress',\n",
" ',',\n",
" 'this',\n",
" 'incredibly',\n",
" 'Austin',\n",
" 'trailer',\n",
" 'offers',\n",
" 'ridiculously',\n",
" 'healthy',\n",
" 'and',\n",
" 'refreshing',\n",
" 'vegan',\n",
" 'and',\n",
" 'vegetarian',\n",
" 'option',\n",
" '.',\n",
" 'Although',\n",
" 'S.',\n",
" 'Congress',\n",
" 'is',\n",
" 'their',\n",
" 'main',\n",
" 'squeeze',\n",
" ',',\n",
" 'they',\n",
" 'pack',\n",
" 'up',\n",
" 'shop',\n",
" 'and',\n",
" 'drive',\n",
" 'to',\n",
" 'events',\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" '.',\n",
" 'Bonus',\n",
" ':',\n",
" 'Not',\n",
" 'only',\n",
" 'do',\n",
" 'they',\n",
" 'offer',\n",
" 'freshly',\n",
" 'squeezed',\n",
" 'juices',\n",
" 'but',\n",
" 'also',\n",
" 'menu',\n",
" 'items',\n",
" 'like',\n",
" 'smoothies',\n",
" ',',\n",
" 'granola',\n",
" 'bowls',\n",
" ',',\n",
" 'salads',\n",
" ',',\n",
" 'and',\n",
" 'sandwiches',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Now\",\n",
" ',',\n",
" 'just',\n",
" 'because',\n",
" 'these',\n",
" 'juices',\n",
" 'are',\n",
" 'not',\n",
" 'made-to-order',\n",
" 'doesn’t',\n",
" 'mean',\n",
" 'you',\n",
" 'won’t',\n",
" 'get',\n",
" 'a',\n",
" 'refreshing',\n",
" 'feeling',\n",
" 'and',\n",
" 'an',\n",
" 'easy',\n",
" 'to',\n",
" 'grab-and-go',\n",
" '.',\n",
" 'Snap',\n",
" 'Kitchen',\n",
" 'packs',\n",
" 'these',\n",
" 'incredibly',\n",
" 'flavorful',\n",
" 'juices',\n",
" 'with',\n",
" 'all',\n",
" 'sorts',\n",
" 'of',\n",
" 'crazy',\n",
" 'ingredients',\n",
" 'that',\n",
" 'we',\n",
" 'would',\n",
" 'never',\n",
" 'willingly',\n",
" 'add',\n",
" 'to',\n",
" 'our',\n",
" 'shakes',\n",
" 'at',\n",
" 'home',\n",
" '(',\n",
" 'like',\n",
" 'garlic',\n",
" 'and',\n",
" 'cilantro',\n",
" '.',\n",
" ')',\n",
" 'Sounds',\n",
" 'weird',\n",
" ',',\n",
" 'we',\n",
" 'know',\n",
" ',',\n",
" 'but',\n",
" 'their',\n",
" '“Antioxidant',\n",
" 'Juice”',\n",
" 'pours',\n",
" 'it',\n",
" 'on',\n",
" 'HEAVY',\n",
" 'and',\n",
" 'makes',\n",
" 'the',\n",
" 'immune',\n",
" 'system',\n",
" 'feel',\n",
" 'like',\n",
" 'new',\n",
" 'again',\n",
" '.',\n",
" 'Of',\n",
" 'course',\n",
" ',',\n",
" 'they',\n",
" 'have',\n",
" 'options',\n",
" 'not',\n",
" 'so',\n",
" 'far',\n",
" 'off',\n",
" 'the',\n",
" 'beaten',\n",
" 'path',\n",
" '–',\n",
" 'like',\n",
" 'their',\n",
" '“Energy',\n",
" 'Boost”',\n",
" ',',\n",
" 'a',\n",
" 'is',\n",
" 'watermelon-based',\n",
" 'and',\n",
" '“Carrot',\n",
" 'Ginger',\n",
" 'Elixir”',\n",
" 'which',\n",
" ',',\n",
" 'well',\n",
" ',',\n",
" 'is',\n",
" 'just',\n",
" 'that',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Soup\",\n",
" 'Peddler’s',\n",
" 'owner',\n",
" '(',\n",
" 'David',\n",
" ')',\n",
" 'began',\n",
" 'his',\n",
" 'quest',\n",
" 'by',\n",
" 'delivering',\n",
" 'soups',\n",
" 'to',\n",
" 'the',\n",
" 'South',\n",
" 'Austin',\n",
" 'locals',\n",
" 'on',\n",
" 'his',\n",
" 'bike',\n",
" '(',\n",
" 'go',\n",
" 'figure',\n",
" ')',\n",
" '.',\n",
" 'After',\n",
" 'opening',\n",
" 'his',\n",
" 'first',\n",
" 'brick',\n",
" 'and',\n",
" 'mortar',\n",
" 'in',\n",
" '2010',\n",
" ',',\n",
" 'he',\n",
" 'began',\n",
" 'dabbling',\n",
" 'into',\n",
" 'the',\n",
" 'juice',\n",
" 'and',\n",
" 'smoothie',\n",
" 'business',\n",
" 'alongside',\n",
" 'his',\n",
" 'famed',\n",
" 'soups',\n",
" 'and',\n",
" 'hasn’t',\n",
" 'looked',\n",
" 'back',\n",
" 'since',\n",
" '.',\n",
" 'Now',\n",
" 'self-named',\n",
" '“liquid',\n",
" 'emporium”',\n",
" ',',\n",
" 'The',\n",
" 'Soup',\n",
" 'Peddler',\n",
" 'is',\n",
" 'sure',\n",
" 'to',\n",
" 'be',\n",
" 'your',\n",
" 'one-stop-shop',\n",
" 'for',\n",
" 'soups',\n",
" ',',\n",
" 'smoothies',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'juices',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Oh\",\n",
" ',',\n",
" 'you',\n",
" 'like',\n",
" 'juice',\n",
" ',',\n",
" 'huh',\n",
" '?',\n",
" 'Don’t',\n",
" 'expect',\n",
" '“just',\n",
" 'a',\n",
" 'juice”',\n",
" 'when',\n",
" 'you',\n",
" 'hit',\n",
" 'up',\n",
" 'this',\n",
" 'North',\n",
" 'Austin',\n",
" 'Spot',\n",
" '–',\n",
" 'they',\n",
" 'set',\n",
" 'themselves',\n",
" 'apart',\n",
" 'from',\n",
" 'the',\n",
" 'others',\n",
" 'with',\n",
" 'their',\n",
" 'attention',\n",
" 'to',\n",
" 'detail',\n",
" 'on',\n",
" 'the',\n",
" 'veggie',\n",
" 'and',\n",
" 'fruit',\n",
" 'combos',\n",
" '.',\n",
" 'The',\n",
" 'Juice',\n",
" 'Spot',\n",
" 'focuses',\n",
" 'on',\n",
" 'three',\n",
" 'components',\n",
" 'when',\n",
" 'making',\n",
" 'their',\n",
" 'signature',\n",
" 'juices',\n",
" ':',\n",
" 'Health',\n",
" ',',\n",
" 'Energy',\n",
" ',',\n",
" 'and',\n",
" 'Fun',\n",
" '!',\n",
" 'So',\n",
" 'if',\n",
" 'you’re',\n",
" 'having',\n",
" 'trouble',\n",
" 'deciding',\n",
" ',',\n",
" 'let',\n",
" 'the',\n",
" 'name',\n",
" 'help',\n",
" 'you',\n",
" 'decide',\n",
" '.',\n",
" 'But',\n",
" 'we’re',\n",
" 'going',\n",
" 'to',\n",
" 'be',\n",
" 'honest',\n",
" ',',\n",
" 'gang',\n",
" '.',\n",
" 'There’s',\n",
" 'really',\n",
" 'no',\n",
" 'going',\n",
" 'wrong',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'could',\n",
" 'also',\n",
" 'call',\n",
" 'this',\n",
" 'spot',\n",
" 'straws',\n",
" 'and',\n",
" 'spoons\\\\xa0because',\n",
" 'that’s',\n",
" 'how',\n",
" 'you',\n",
" 'sip',\n",
" 'your',\n",
" 'smoothie',\n",
" 'or',\n",
" 'snack',\n",
" 'on',\n",
" 'your',\n",
" 'acai',\n",
" 'bowl',\n",
" '.',\n",
" 'Each',\n",
" 'menu',\n",
" 'item',\n",
" 'combines',\n",
" 'delicious',\n",
" 'and',\n",
" 'nutritious',\n",
" 'ingredients',\n",
" ',',\n",
" 'like',\n",
" 'fresh',\n",
" 'fruit',\n",
" ',',\n",
" 'nuts',\n",
" ',',\n",
" 'granola',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'superfoods',\n",
" ',',\n",
" 'into',\n",
" 'grab',\n",
" 'and',\n",
" 'go',\n",
" 'concoctions',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'want',\n",
" 'something',\n",
" 'to',\n",
" 'sip',\n",
" ',',\n",
" 'go',\n",
" 'with',\n",
" 'a',\n",
" 'blender',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'spoon',\n",
" ',',\n",
" 'the',\n",
" 'bowl',\n",
" 'is',\n",
" 'your',\n",
" 'best',\n",
" 'bet',\n",
" '.',\n",
" 'Be',\n",
" 'on',\n",
" 'the',\n",
" 'lookout',\n",
" 'for',\n",
" 'Blenders',\n",
" 'and',\n",
" 'Bowls',\n",
" 'locations',\n",
" 'popping',\n",
" 'up',\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'newest',\n",
" 'juice',\n",
" 'bars',\n",
" 'to',\n",
" 'join',\n",
" 'the',\n",
" 'North',\n",
" 'Austin',\n",
" 'neighborhoods',\n",
" ',',\n",
" 'O’',\n",
" 'Joy',\n",
" 'not',\n",
" 'only',\n",
" 'makes',\n",
" 'delicious',\n",
" 'drinks',\n",
" 'but',\n",
" 'know',\n",
" 'giving',\n",
" 'back',\n",
" 'is',\n",
" 'what',\n",
" 'makes',\n",
" 'it',\n",
" 'all',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" 'The',\n",
" 'husband',\n",
" 'and',\n",
" 'wife',\n",
" 'power',\n",
" 'couple',\n",
" ',',\n",
" 'Michael',\n",
" 'and',\n",
" 'Ghena',\n",
" ',',\n",
" 'let',\n",
" 'the',\n",
" 'juice',\n",
" 'flow',\n",
" 'from',\n",
" 'their',\n",
" 'North',\n",
" 'Burnet',\n",
" 'spot',\n",
" '.',\n",
" 'And',\n",
" 'both',\n",
" 'are',\n",
" 'extremely',\n",
" 'passionate',\n",
" 'about',\n",
" 'sustainable',\n",
" 'food',\n",
" 'practices',\n",
" 'and',\n",
" 'healthy',\n",
" 'living',\n",
" '.',\n",
" 'With',\n",
" 'the',\n",
" 'purchase',\n",
" 'of',\n",
" 'any',\n",
" 'menu',\n",
" 'item',\n",
" ',',\n",
" 'a',\n",
" 'meal',\n",
" 'is',\n",
" 'donated',\n",
" 'to',\n",
" 'a',\n",
" 'child',\n",
" 'living',\n",
" 'in',\n",
" 'poverty',\n",
" 'in',\n",
" 'a',\n",
" 'developing',\n",
" 'country',\n",
" '.',\n",
" 'Did',\n",
" 'we',\n",
" 'mention',\n",
" 'they',\n",
" 'use',\n",
" 'local/organic',\n",
" 'products',\n",
" 'whenever',\n",
" 'possible',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Have\",\n",
" 'a',\n",
" 'go-to',\n",
" 'Juice',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Have\",\n",
" 'a',\n",
" 'go-to',\n",
" 'Juice',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" ...],\n",
" ['[',\n",
" \"'Long\",\n",
" 'live',\n",
" 'mimosas',\n",
" ',',\n",
" 'syrupy',\n",
" 'french',\n",
" 'toast',\n",
" ',',\n",
" 'and',\n",
" 'greasy',\n",
" 'grits',\n",
" '!',\n",
" 'But',\n",
" 'if',\n",
" 'we',\n",
" 'want',\n",
" 'to',\n",
" 'live',\n",
" 'long',\n",
" 'too',\n",
" ',',\n",
" 'our',\n",
" 'brunch',\n",
" 'indulgences',\n",
" 'can’t',\n",
" 'always',\n",
" 'look',\n",
" 'like',\n",
" 'an',\n",
" 'impending',\n",
" 'heart',\n",
" 'attack',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Thankfully\",\n",
" ',',\n",
" 'Austin',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'healthy',\n",
" 'brunch',\n",
" 'options',\n",
" 'to',\n",
" 'cater',\n",
" 'to',\n",
" 'our',\n",
" 'most',\n",
" 'indulgent',\n",
" 'cravings',\n",
" 'after',\n",
" 'a',\n",
" 'long',\n",
" 'night',\n",
" 'out',\n",
" 'without',\n",
" 'the',\n",
" 'typical',\n",
" 'self-loathing',\n",
" 'that',\n",
" 'comes',\n",
" 'with',\n",
" 'it',\n",
" '.',\n",
" 'Rather',\n",
" 'than',\n",
" 'put',\n",
" 'you',\n",
" 'into',\n",
" 'a',\n",
" 'food',\n",
" 'coma',\n",
" ',',\n",
" 'these',\n",
" 'meals',\n",
" 'will',\n",
" 'leave',\n",
" 'you',\n",
" 'feeling',\n",
" 'satisfied',\n",
" ',',\n",
" 'recharged',\n",
" ',',\n",
" 'and',\n",
" 'ready',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'the',\n",
" 'day',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'East\",\n",
" 'Austin',\n",
" 'is',\n",
" 'more',\n",
" 'than',\n",
" 'dive',\n",
" 'bars',\n",
" 'and',\n",
" 'hipster',\n",
" '‘staches',\n",
" ';',\n",
" 'it’s',\n",
" 'also',\n",
" 'home',\n",
" 'to',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" 'healthy',\n",
" 'brunch',\n",
" 'spots',\n",
" 'in',\n",
" 'town',\n",
" '.',\n",
" 'With',\n",
" 'its',\n",
" 'sunny',\n",
" 'patio',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'comfortably',\n",
" 'hide',\n",
" 'last',\n",
" 'night’s',\n",
" 'damage',\n",
" 'with',\n",
" 'big',\n",
" 'sunglasses',\n",
" 'while',\n",
" 'you',\n",
" 'enjoy',\n",
" 'any',\n",
" 'number',\n",
" 'of',\n",
" 'Counter',\n",
" 'Culture’s',\n",
" 'vegan',\n",
" 'delights',\n",
" '.',\n",
" 'The',\n",
" 'raw',\n",
" 'oatmeal',\n",
" 'banana',\n",
" 'split',\n",
" 'will',\n",
" 'meet',\n",
" 'all',\n",
" 'of',\n",
" 'your',\n",
" 'gluten-free',\n",
" 'needs',\n",
" ',',\n",
" 'while',\n",
" 'the',\n",
" 'breakfast',\n",
" 'burrito',\n",
" 'with',\n",
" 'its',\n",
" 'tofu',\n",
" 'scramble',\n",
" ',',\n",
" 'seitan',\n",
" 'sausage',\n",
" ',',\n",
" 'and',\n",
" 'cashew',\n",
" 'cheeze',\n",
" 'will',\n",
" 'satisfy',\n",
" 'your',\n",
" 'most',\n",
" 'complex',\n",
" 'craving',\n",
" '.',\n",
" 'Even',\n",
" 'better',\n",
" ',',\n",
" 'no',\n",
" 'brunch',\n",
" 'menu',\n",
" 'item',\n",
" 'is',\n",
" 'more',\n",
" 'than',\n",
" '$',\n",
" '10',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '11-3',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'more',\n",
" 'of',\n",
" 'a',\n",
" 'North',\n",
" 'Austin',\n",
" 'dweller',\n",
" ',',\n",
" 'Mother’s',\n",
" 'Cafe',\n",
" 'and',\n",
" 'Garden',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'spot',\n",
" 'to',\n",
" 'feast',\n",
" 'with',\n",
" 'your',\n",
" 'friends',\n",
" ',',\n",
" 'recounting',\n",
" 'weekend',\n",
" 'tales',\n",
" 'while',\n",
" 'filling',\n",
" 'your',\n",
" 'belly',\n",
" 'with',\n",
" 'non-GMO',\n",
" ',',\n",
" 'socially',\n",
" 'responsible',\n",
" 'eats',\n",
" '.',\n",
" 'No',\n",
" 'matter',\n",
" 'your',\n",
" 'dietary',\n",
" 'needs',\n",
" ',',\n",
" 'there’s',\n",
" 'something',\n",
" 'for',\n",
" 'everyone',\n",
" 'here',\n",
" '.',\n",
" 'The',\n",
" 'gluten-free',\n",
" 'spinach',\n",
" 'omelette',\n",
" 'with',\n",
" 'sauteed',\n",
" 'mushrooms',\n",
" 'and',\n",
" 'white',\n",
" 'wine',\n",
" 'is',\n",
" 'pure',\n",
" 'decadence',\n",
" 'at',\n",
" 'a',\n",
" 'modest',\n",
" 'price',\n",
" ',',\n",
" 'while',\n",
" 'the',\n",
" 'vegan',\n",
" 'banana',\n",
" 'walnut',\n",
" 'pancakes',\n",
" '(',\n",
" 'topped',\n",
" 'with',\n",
" 'vegan',\n",
" 'margarine',\n",
" '!',\n",
" ')',\n",
" 'will',\n",
" 'please',\n",
" 'your',\n",
" 'sweetest',\n",
" 'tooth',\n",
" 'without',\n",
" 'the',\n",
" 'price',\n",
" 'of',\n",
" 'extra',\n",
" 'pounds',\n",
" 'topped',\n",
" 'with',\n",
" 'guilt',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '10-3',\n",
" \"'\",\n",
" ',',\n",
" \"'No\",\n",
" 'list',\n",
" 'of',\n",
" 'healthy',\n",
" 'delights',\n",
" 'is',\n",
" 'complete',\n",
" 'without',\n",
" 'this',\n",
" 'South',\n",
" 'Austin',\n",
" 'staple',\n",
" '.',\n",
" 'Bouldin',\n",
" 'Creek',\n",
" 'Cafe',\n",
" 'is',\n",
" 'a',\n",
" 'vegetarian',\n",
" '(',\n",
" 'and',\n",
" 'mostly',\n",
" 'vegan',\n",
" ')',\n",
" 'treasure',\n",
" 'nestled',\n",
" 'just',\n",
" 'far',\n",
" 'enough',\n",
" 'from',\n",
" 'downtown’s',\n",
" 'congestion',\n",
" 'to',\n",
" 'avoid',\n",
" 'long',\n",
" 'waits',\n",
" ',',\n",
" 'while',\n",
" 'still',\n",
" 'being',\n",
" 'a',\n",
" 'stone’s',\n",
" 'throw',\n",
" 'away',\n",
" 'from',\n",
" 'a',\n",
" 'post-brunch',\n",
" 'paddleboard',\n",
" 'on',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" '.',\n",
" 'Kickstart',\n",
" 'your',\n",
" 'lazy',\n",
" 'day',\n",
" 'with',\n",
" 'the',\n",
" 'Southwestern',\n",
" 'flare',\n",
" 'of',\n",
" 'their',\n",
" 'killer',\n",
" 'zucchini',\n",
" 'migas',\n",
" 'and',\n",
" 'sweet',\n",
" 'potato',\n",
" 'tamales',\n",
" ',',\n",
" 'or',\n",
" 'get',\n",
" 'your',\n",
" 'entire',\n",
" 'day’s',\n",
" 'worth',\n",
" 'of',\n",
" 'vegetables',\n",
" 'in',\n",
" 'by',\n",
" 'ordering',\n",
" 'the',\n",
" 'Veggin’',\n",
" 'Out',\n",
" 'Plate',\n",
" 'with',\n",
" 'steamed',\n",
" 'greens',\n",
" ',',\n",
" 'organic',\n",
" 'brown',\n",
" 'rice',\n",
" ',',\n",
" 'and',\n",
" 'vegan',\n",
" 'cornbread',\n",
" '.',\n",
" 'Brunch',\n",
" 'menu',\n",
" 'served',\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'everyday',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'all',\n",
" 'of',\n",
" 'its',\n",
" 'grains',\n",
" 'unbleached',\n",
" 'and',\n",
" 'all',\n",
" 'of',\n",
" 'its',\n",
" 'fruit',\n",
" 'and',\n",
" 'veggies',\n",
" 'organic',\n",
" ',',\n",
" 'Pacha',\n",
" 'is',\n",
" 'the',\n",
" 'go-to',\n",
" 'spot',\n",
" 'for',\n",
" 'local',\n",
" ',',\n",
" 'healthy',\n",
" 'eats',\n",
" 'near',\n",
" 'Burnet',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'the',\n",
" 'smoked',\n",
" 'wild',\n",
" 'salmon',\n",
" 'plate',\n",
" 'with',\n",
" 'tomato-dill',\n",
" 'pico',\n",
" 'for',\n",
" 'a',\n",
" 'yummy',\n",
" 'protein',\n",
" 'fix',\n",
" ',',\n",
" 'or',\n",
" 'the',\n",
" 'unique',\n",
" 'pear',\n",
" 'and',\n",
" 'scallion',\n",
" 'whole',\n",
" 'wheat',\n",
" 'pancakes',\n",
" 'to',\n",
" 'delight',\n",
" 'your',\n",
" 'savory-sweet',\n",
" 'senses',\n",
" '.',\n",
" 'With',\n",
" 'a',\n",
" 'mission',\n",
" 'to',\n",
" 'serve',\n",
" 'humanely-raised',\n",
" 'meat',\n",
" 'and',\n",
" 'dairy',\n",
" 'products',\n",
" 'from',\n",
" 'sustainable',\n",
" 'local',\n",
" 'farms',\n",
" ',',\n",
" 'you’ll',\n",
" 'leave',\n",
" 'feeling',\n",
" 'good',\n",
" 'about',\n",
" 'your',\n",
" 'body',\n",
" 'AND',\n",
" 'your',\n",
" 'conscience',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '10-3',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'the',\n",
" 'bustle',\n",
" 'of',\n",
" 'downtown',\n",
" 'is',\n",
" 'more',\n",
" 'your',\n",
" 'speed',\n",
" ',',\n",
" 'be',\n",
" 'sure',\n",
" 'to',\n",
" 'check',\n",
" 'out',\n",
" 'Swift’s',\n",
" 'Attic',\n",
" 'for',\n",
" 'fare',\n",
" 'it',\n",
" 'describes',\n",
" 'as',\n",
" '“creative',\n",
" ',',\n",
" 'whimsical',\n",
" ',',\n",
" 'and',\n",
" 'delicious”',\n",
" '.',\n",
" 'Keeping',\n",
" 'true',\n",
" 'to',\n",
" 'its',\n",
" 'description',\n",
" ',',\n",
" 'the',\n",
" 'choices',\n",
" 'on',\n",
" 'Attic’s',\n",
" 'brunch',\n",
" 'menu',\n",
" 'feature',\n",
" 'healthy',\n",
" ',',\n",
" 'protein-packed',\n",
" 'options',\n",
" 'like',\n",
" 'the',\n",
" 'Turkey',\n",
" 'Hash',\n",
" ',',\n",
" 'with',\n",
" 'house-smoked',\n",
" 'turkey',\n",
" ',',\n",
" 'roasted',\n",
" 'tomatoes',\n",
" ',',\n",
" 'and',\n",
" 'eggs',\n",
" ',',\n",
" 'or',\n",
" 'tickle',\n",
" 'your',\n",
" 'more',\n",
" 'adventurous',\n",
" 'tendencies',\n",
" 'with',\n",
" 'the',\n",
" 'yummy',\n",
" 'Shrimp',\n",
" '&',\n",
" 'Polenta',\n",
" 'made',\n",
" 'with',\n",
" 'poached',\n",
" 'Vital',\n",
" 'Farms',\n",
" 'eggs',\n",
" 'and',\n",
" 'grilled',\n",
" 'Gulf',\n",
" 'shrimp',\n",
" '.',\n",
" 'Boasting',\n",
" 'an',\n",
" 'eclectic',\n",
" 'ambiance',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'spot',\n",
" 'to',\n",
" 'kick',\n",
" 'off',\n",
" 'a',\n",
" 'healthy',\n",
" 'Sunday',\n",
" 'Funday',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '11-3',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'fresh',\n",
" 'produce',\n",
" 'delivered',\n",
" 'daily',\n",
" ',',\n",
" 'and',\n",
" 'only',\n",
" 'hormone-',\n",
" 'and',\n",
" 'antibiotic-free',\n",
" 'eggs',\n",
" 'and',\n",
" 'meat',\n",
" ',',\n",
" 'Galaxy',\n",
" 'Cafe',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'spot',\n",
" 'for',\n",
" 'a',\n",
" 'light',\n",
" 'and',\n",
" 'healthy',\n",
" 'brunch',\n",
" '.',\n",
" 'Their',\n",
" 'breakfast',\n",
" 'wraps',\n",
" 'are',\n",
" 'particularly',\n",
" 'awesome',\n",
" ',',\n",
" 'with',\n",
" 'a',\n",
" 'ton',\n",
" 'to',\n",
" 'choose',\n",
" 'from',\n",
" ',',\n",
" 'or',\n",
" 'you',\n",
" 'can',\n",
" 'build',\n",
" 'your',\n",
" 'own',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'also',\n",
" 'menu',\n",
" 'options',\n",
" 'from',\n",
" '“Around',\n",
" 'the',\n",
" 'Galaxy”',\n",
" 'featuring',\n",
" 'more',\n",
" 'worldly',\n",
" 'dishes',\n",
" 'like',\n",
" 'the',\n",
" 'Mexican',\n",
" 'Breakfast',\n",
" 'with',\n",
" 'homemade',\n",
" 'migas',\n",
" 'or',\n",
" 'the',\n",
" 'Mediterranean',\n",
" 'Breakfast',\n",
" 'with',\n",
" 'scrambled',\n",
" 'eggs',\n",
" 'and',\n",
" 'feta',\n",
" '.',\n",
" 'Everything',\n",
" 'comes',\n",
" 'in',\n",
" 'under',\n",
" '$',\n",
" '10',\n",
" 'and',\n",
" 'can',\n",
" 'be',\n",
" 'topped',\n",
" 'off',\n",
" 'with',\n",
" 'fresh-squeezed',\n",
" 'OJ',\n",
" 'or',\n",
" 'lemonade',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '7-4',\n",
" \"'\",\n",
" ',',\n",
" \"'Definitely\",\n",
" 'a',\n",
" 'favorite',\n",
" 'of',\n",
" 'northern',\n",
" 'Austinites',\n",
" ',',\n",
" 'The',\n",
" 'Steeping',\n",
" 'Room',\n",
" 'has',\n",
" 'plenty',\n",
" 'of',\n",
" 'gluten-free',\n",
" ',',\n",
" 'vegan',\n",
" 'options',\n",
" '.',\n",
" 'The',\n",
" 'Gravlax',\n",
" 'and',\n",
" 'Latkes',\n",
" 'are',\n",
" 'super',\n",
" 'popular',\n",
" 'and',\n",
" 'for',\n",
" 'good',\n",
" 'reason',\n",
" ':',\n",
" 'jasmine',\n",
" 'tea-cured',\n",
" 'Atlantic',\n",
" 'salmon',\n",
" 'served',\n",
" 'on',\n",
" 'potato',\n",
" 'pancakes',\n",
" '?',\n",
" 'Yes',\n",
" ',',\n",
" 'please',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'craving',\n",
" 'something',\n",
" 'on',\n",
" 'the',\n",
" 'sweet',\n",
" 'side',\n",
" ',',\n",
" 'the',\n",
" 'Organic',\n",
" 'Oatmeal',\n",
" 'and',\n",
" 'Banana',\n",
" 'Brulee',\n",
" 'is',\n",
" 'beyond',\n",
" 'satisfying',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'just',\n",
" 'can’t',\n",
" 'decide',\n",
" 'what',\n",
" 'you’re',\n",
" 'in',\n",
" 'the',\n",
" 'mood',\n",
" 'for',\n",
" ',',\n",
" 'then',\n",
" 'the',\n",
" 'loaded',\n",
" 'Breakfast',\n",
" 'Bowl',\n",
" 'with',\n",
" 'black',\n",
" 'beans',\n",
" ',',\n",
" 'potatoes',\n",
" ',',\n",
" 'and',\n",
" 'vegan',\n",
" 'cashew',\n",
" 'sauce',\n",
" 'will',\n",
" 'surely',\n",
" 'give',\n",
" 'you',\n",
" 'everything',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'And',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'there’s',\n",
" 'tea',\n",
" 'from',\n",
" 'nearly',\n",
" 'any',\n",
" 'region',\n",
" 'to',\n",
" 'go',\n",
" 'along',\n",
" 'with',\n",
" 'whatever',\n",
" 'you',\n",
" 'choose',\n",
" '.',\n",
" 'Sun',\n",
" '.',\n",
" '10-2',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'feelin’',\n",
" 'fancy',\n",
" 'and',\n",
" 'want',\n",
" 'to',\n",
" 'fuel',\n",
" 'yourself',\n",
" 'before',\n",
" 'a',\n",
" 'day',\n",
" 'of',\n",
" 'exploring',\n",
" 'SoCo',\n",
" ',',\n",
" 'then',\n",
" 'Perla’s',\n",
" 'is',\n",
" 'pretty',\n",
" 'much',\n",
" 'perfect',\n",
" '.',\n",
" 'While',\n",
" 'relaxing',\n",
" 'on',\n",
" 'the',\n",
" 'huge',\n",
" 'outdoor',\n",
" 'patio',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'soak',\n",
" 'up',\n",
" 'the',\n",
" 'sun',\n",
" 'and',\n",
" 'people-watch',\n",
" 'while',\n",
" 'you',\n",
" 'enjoy',\n",
" 'menu',\n",
" 'options',\n",
" 'like',\n",
" 'the',\n",
" 'Lobster',\n",
" '&',\n",
" 'Egg',\n",
" 'White',\n",
" 'Fritatta',\n",
" 'or',\n",
" 'the',\n",
" 'Breakfast',\n",
" 'Bouillabaisse',\n",
" 'with',\n",
" 'crispy',\n",
" 'poached',\n",
" 'eggs',\n",
" 'and',\n",
" 'saffron',\n",
" 'rouille',\n",
" '.',\n",
" 'The',\n",
" 'unique',\n",
" ',',\n",
" 'ever-evolving',\n",
" 'brunch',\n",
" 'menu',\n",
" ',',\n",
" 'along',\n",
" 'with',\n",
" 'its',\n",
" 'location',\n",
" 'and',\n",
" 'relaxed',\n",
" 'Austin',\n",
" 'vibe',\n",
" ',',\n",
" 'makes',\n",
" 'Perla’s',\n",
" 'especially',\n",
" 'great',\n",
" 'for',\n",
" 'taking',\n",
" 'out-of-town',\n",
" 'visitors',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '10:30-2:30',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'downtown’s',\n",
" 'newest',\n",
" 'arrivals',\n",
" 'for',\n",
" 'good',\n",
" 'eats',\n",
" ',',\n",
" 'Nightcap',\n",
" 'is',\n",
" 'swiftly',\n",
" 'gaining',\n",
" 'popularity',\n",
" 'among',\n",
" 'locals',\n",
" 'and',\n",
" 'tourists',\n",
" 'alike',\n",
" '.',\n",
" 'The',\n",
" 'Salmon',\n",
" 'Rillette',\n",
" 'on',\n",
" 'rye',\n",
" 'toast',\n",
" 'with',\n",
" 'avocado',\n",
" ',',\n",
" 'hard-boiled',\n",
" 'egg',\n",
" ',',\n",
" 'and',\n",
" 'radishes',\n",
" 'is',\n",
" 'unlike',\n",
" 'anything',\n",
" 'you’ve',\n",
" 'ever',\n",
" 'had',\n",
" ',',\n",
" 'but',\n",
" 'in',\n",
" 'the',\n",
" 'very',\n",
" 'best',\n",
" 'possible',\n",
" 'way',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'try',\n",
" 'it',\n",
" ',',\n",
" 'you’ll',\n",
" 'no',\n",
" 'doubt',\n",
" ...],\n",
" ['[',\n",
" \"'Let’s\",\n",
" 'be',\n",
" 'honest',\n",
" '–',\n",
" 'there',\n",
" 'are',\n",
" 'days',\n",
" 'we’d',\n",
" 'rather',\n",
" 'stay',\n",
" 'at',\n",
" 'home',\n",
" 'in',\n",
" 'sweatpants',\n",
" 'instead',\n",
" 'of',\n",
" 'venturing',\n",
" 'out',\n",
" 'into',\n",
" 'the',\n",
" 'world',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Enter\",\n",
" ':',\n",
" 'the',\n",
" 'glorious',\n",
" 'world',\n",
" 'of',\n",
" 'takeout',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'is',\n",
" 'you',\n",
" ':',\n",
" '“But',\n",
" 'ordering',\n",
" 'takeout',\n",
" 'means',\n",
" 'I',\n",
" 'have',\n",
" 'to',\n",
" 'eat',\n",
" 'unhealthy.”',\n",
" 'Wrong',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'tons',\n",
" 'of',\n",
" 'healthy',\n",
" 'takeout',\n",
" 'options',\n",
" 'in',\n",
" 'Austin',\n",
" 'that',\n",
" 'will',\n",
" 'satisfy',\n",
" 'your',\n",
" 'comfort',\n",
" 'food',\n",
" 'cravings',\n",
" 'without',\n",
" 'the',\n",
" 'guilt',\n",
" '–',\n",
" 'even',\n",
" 'when',\n",
" 'eaten',\n",
" 'on',\n",
" 'your',\n",
" 'couch',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ve\",\n",
" 'rounded',\n",
" 'up',\n",
" 'our',\n",
" 'some',\n",
" 'of',\n",
" 'our',\n",
" 'favorite',\n",
" 'takeout',\n",
" 'spots',\n",
" 'in',\n",
" 'ATX',\n",
" 'that',\n",
" 'are',\n",
" 'actually',\n",
" 'healthy',\n",
" '.',\n",
" 'And',\n",
" 'surprise',\n",
" 'surprise',\n",
" ',',\n",
" 'some',\n",
" 'of',\n",
" 'them',\n",
" 'are',\n",
" 'food',\n",
" 'trucks',\n",
" '(',\n",
" 'because',\n",
" 'Austin',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Leaf\",\n",
" 'might',\n",
" 'be',\n",
" 'the',\n",
" 'only',\n",
" 'reason',\n",
" 'you’d',\n",
" 'head',\n",
" 'to',\n",
" 'W.',\n",
" '6th',\n",
" 'for',\n",
" 'a',\n",
" 'salad',\n",
" 'and',\n",
" 'not',\n",
" 'a',\n",
" 'drink',\n",
" '.',\n",
" 'This',\n",
" 'joint',\n",
" 'is',\n",
" 'living',\n",
" '(',\n",
" 'no',\n",
" 'pun',\n",
" 'intended',\n",
" ')',\n",
" 'proof',\n",
" 'that',\n",
" 'not',\n",
" 'all',\n",
" 'salads',\n",
" 'are',\n",
" 'boring',\n",
" '!',\n",
" 'It’s',\n",
" 'the',\n",
" 'perfect',\n",
" 'option',\n",
" 'for',\n",
" 'those',\n",
" 'who',\n",
" 'are',\n",
" 'starving',\n",
" 'because',\n",
" 'it’s',\n",
" 'nice',\n",
" 'and',\n",
" 'quick',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'create',\n",
" 'your',\n",
" 'own',\n",
" 'salad',\n",
" 'or',\n",
" 'choose',\n",
" 'from',\n",
" 'their',\n",
" 'pre-designed',\n",
" 'classics',\n",
" '.',\n",
" 'The',\n",
" 'best',\n",
" 'part',\n",
" 'is',\n",
" ',',\n",
" 'they’re',\n",
" 'named',\n",
" 'after',\n",
" 'Austin',\n",
" 'staples',\n",
" 'like',\n",
" '“Capitol',\n",
" 'City',\n",
" 'Cobb”',\n",
" 'for',\n",
" 'one',\n",
" '.',\n",
" 'So',\n",
" 'revel',\n",
" 'in',\n",
" 'that',\n",
" 'Austin',\n",
" 'pride',\n",
" 'y’all',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'haven’t',\n",
" 'tried',\n",
" 'Soup',\n",
" 'Peddler’s',\n",
" 'Green',\n",
" 'Goddess',\n",
" 'Soup',\n",
" ',',\n",
" 'you',\n",
" 'haven’t',\n",
" 'lived',\n",
" '.',\n",
" 'Packed',\n",
" 'with',\n",
" 'broccoli',\n",
" ',',\n",
" 'spinach',\n",
" ',',\n",
" 'celery',\n",
" ',',\n",
" 'and',\n",
" 'brown',\n",
" 'rice',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'just',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'mouth-watering',\n",
" ',',\n",
" 'vegetable-packed',\n",
" 'options',\n",
" 'on',\n",
" 'the',\n",
" 'menu',\n",
" 'of',\n",
" 'the',\n",
" 'South',\n",
" 'Lamar',\n",
" 'and',\n",
" 'South',\n",
" 'Austin',\n",
" 'eateries',\n",
" '.',\n",
" 'Pair',\n",
" 'it',\n",
" 'with',\n",
" 'a',\n",
" 'yummy',\n",
" 'sandwich',\n",
" '(',\n",
" 'pepperoni',\n",
" ',',\n",
" 'sundried',\n",
" 'tomato',\n",
" 'pesto',\n",
" ',',\n",
" 'mozzarella',\n",
" '–',\n",
" 'yes',\n",
" 'please',\n",
" '!',\n",
" ')',\n",
" ',',\n",
" 'juice',\n",
" ',',\n",
" 'or',\n",
" 'smoothie',\n",
" 'for',\n",
" 'a',\n",
" 'filling',\n",
" 'meal',\n",
" 'that',\n",
" 'mom',\n",
" 'would',\n",
" 'be',\n",
" 'proud',\n",
" 'of',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'craving',\n",
" 'Asian',\n",
" 'food',\n",
" ',',\n",
" 'Pho',\n",
" 'Please',\n",
" 'is',\n",
" 'where',\n",
" 'it’s',\n",
" 'at',\n",
" '.',\n",
" 'The',\n",
" 'Vietnamese',\n",
" 'haven',\n",
" 'is',\n",
" 'an',\n",
" 'E.',\n",
" 'Riverside',\n",
" 'hidden',\n",
" 'gem…',\n",
" 'boasting',\n",
" 'simple',\n",
" 'and',\n",
" 'clean',\n",
" 'eating',\n",
" 'in',\n",
" 'the',\n",
" 'form',\n",
" 'of',\n",
" 'food',\n",
" 'euphoria',\n",
" '.',\n",
" 'Even',\n",
" 'the',\n",
" 'decor',\n",
" 'is',\n",
" 'simple',\n",
" 'and',\n",
" 'clean',\n",
" '.',\n",
" 'Pho',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Rice',\n",
" 'bowls',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Bahn',\n",
" 'Mi',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Vermicelli',\n",
" 'noodles',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Okay',\n",
" '–',\n",
" 'you',\n",
" 'get',\n",
" 'it',\n",
" '.',\n",
" 'It’s',\n",
" 'darn',\n",
" 'good',\n",
" 'and',\n",
" 'tastes',\n",
" 'great',\n",
" 'in',\n",
" 'front',\n",
" 'of',\n",
" 'Netflix',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Picnik\",\n",
" 'uses',\n",
" 'all',\n",
" 'locally',\n",
" 'sourced',\n",
" ',',\n",
" 'organic',\n",
" 'ingredients',\n",
" '.',\n",
" 'But',\n",
" 'don’t',\n",
" 'let',\n",
" 'their',\n",
" '“good',\n",
" 'for',\n",
" 'the',\n",
" 'body”',\n",
" 'food',\n",
" 'deter',\n",
" 'you',\n",
" ';',\n",
" 'it’s',\n",
" 'effing',\n",
" 'delicious',\n",
" '.',\n",
" 'Think',\n",
" 'quinoa',\n",
" 'bowls',\n",
" ',',\n",
" 'tacos',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'really',\n",
" ',',\n",
" 'everything',\n",
" 'in',\n",
" 'between',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'they',\n",
" 'have',\n",
" 'the',\n",
" 'BEST',\n",
" 'coffee',\n",
" '(',\n",
" 'often',\n",
" 'mixed',\n",
" 'with',\n",
" 'grass-fed',\n",
" 'butter',\n",
" ')',\n",
" 'in',\n",
" 'town',\n",
" '.',\n",
" 'Visit',\n",
" 'the',\n",
" '“OG”',\n",
" 'food',\n",
" 'truck',\n",
" 'on',\n",
" 'South',\n",
" 'Lamar',\n",
" 'or',\n",
" 'their',\n",
" 'new',\n",
" 'brick-and-mortar',\n",
" 'up',\n",
" 'north',\n",
" '.',\n",
" 'Though',\n",
" ',',\n",
" 'at',\n",
" 'the',\n",
" 'food',\n",
" 'truck',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'score',\n",
" 'some',\n",
" 'vegan',\n",
" 'chocolate',\n",
" 'chip',\n",
" 'cookies',\n",
" 'to',\n",
" 'go',\n",
" '.',\n",
" 'Food',\n",
" 'truck',\n",
" 'it',\n",
" 'is',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Wheatsville\",\n",
" 'is',\n",
" 'a',\n",
" 'full-service',\n",
" ',',\n",
" 'natural',\n",
" 'foods',\n",
" 'grocery',\n",
" 'store',\n",
" 'on',\n",
" 'South',\n",
" 'Lamar',\n",
" 'or',\n",
" 'off',\n",
" 'Guadalupe',\n",
" 'near',\n",
" 'campus.\\\\xa0Think',\n",
" 'Whole',\n",
" 'Foods',\n",
" 'on',\n",
" 'a',\n",
" 'much',\n",
" 'smaller',\n",
" 'scale',\n",
" '.',\n",
" 'And',\n",
" 'they',\n",
" 'have',\n",
" 'the',\n",
" 'best-kept',\n",
" 'secret',\n",
" 'in',\n",
" 'town',\n",
" '–',\n",
" 'BUFFALO',\n",
" 'POPCORN',\n",
" 'TOFU',\n",
" '.',\n",
" 'Seriously',\n",
" ',',\n",
" 'it’s',\n",
" 'like',\n",
" 'crack',\n",
" '(',\n",
" 'but',\n",
" 'legal',\n",
" ')',\n",
" '.',\n",
" 'On',\n",
" 'top',\n",
" 'of',\n",
" 'that',\n",
" ',',\n",
" 'Wheatsville',\n",
" 'has',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'vegan/veggie-friendly',\n",
" 'options',\n",
" ',',\n",
" 'fresh',\n",
" 'sandwiches',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'salad',\n",
" 'bar',\n",
" 'with',\n",
" 'a',\n",
" 'medley',\n",
" 'of',\n",
" 'fresh',\n",
" 'greens',\n",
" 'that',\n",
" 'won’t',\n",
" 'overwhelm',\n",
" 'you',\n",
" 'with',\n",
" 'options',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Let’s\",\n",
" 'face',\n",
" 'it',\n",
" '–',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'we',\n",
" 'love',\n",
" 'our',\n",
" 'Tex',\n",
" 'Mex',\n",
" '.',\n",
" 'So',\n",
" 'if',\n",
" 'you’re',\n",
" 'craving',\n",
" 'Mexican',\n",
" 'food',\n",
" 'but',\n",
" 'don’t',\n",
" 'want',\n",
" 'to',\n",
" 'ruin',\n",
" 'your',\n",
" 'hard',\n",
" 'work',\n",
" 'on',\n",
" 'queso',\n",
" 'and',\n",
" 'refried',\n",
" 'beans',\n",
" ',',\n",
" 'Fresa’s',\n",
" 'is',\n",
" 'your',\n",
" 'answer',\n",
" '.',\n",
" 'With',\n",
" 'a',\n",
" 'modern',\n",
" ',',\n",
" 'fresh',\n",
" 'take',\n",
" 'on',\n",
" 'traditional',\n",
" 'Mexican',\n",
" 'fare',\n",
" ',',\n",
" 'they',\n",
" 'offer',\n",
" 'delicious',\n",
" 'wood-grilled',\n",
" 'meals',\n",
" ',',\n",
" 'power',\n",
" 'bowls',\n",
" ',',\n",
" 'and',\n",
" 'sweet',\n",
" 'potatoes',\n",
" 'you',\n",
" 'really',\n",
" 'have',\n",
" 'to',\n",
" 'taste',\n",
" 'to',\n",
" 'grasp',\n",
" 'their',\n",
" 'amazingness',\n",
" '.',\n",
" 'Grab',\n",
" 'some',\n",
" 'fresh',\n",
" 'guac',\n",
" 'to',\n",
" 'curb',\n",
" 'your',\n",
" 'queso',\n",
" 'craving',\n",
" 'and',\n",
" 'you’ve',\n",
" 'got',\n",
" 'yourself',\n",
" 'a',\n",
" 'delicious',\n",
" 'Mexican-inspired',\n",
" 'meal',\n",
" '.',\n",
" 'Find',\n",
" 'it',\n",
" 'at',\n",
" '9th',\n",
" 'and',\n",
" 'Lamar',\n",
" 'or',\n",
" 'the',\n",
" 'new',\n",
" 'South',\n",
" 'First',\n",
" 'location',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'can’t',\n",
" 'talk',\n",
" 'about',\n",
" 'healthy',\n",
" 'food',\n",
" 'options',\n",
" 'in',\n",
" 'Austin',\n",
" 'without',\n",
" 'mentioning',\n",
" 'Snap',\n",
" 'Kitchen',\n",
" '.',\n",
" 'That’d',\n",
" 'be',\n",
" 'a',\n",
" 'sin',\n",
" '.',\n",
" 'Snap',\n",
" 'Kitchen',\n",
" 'and',\n",
" 'guiltless',\n",
" 'takeout',\n",
" 'go',\n",
" 'together',\n",
" 'like',\n",
" 'peanut',\n",
" 'butter',\n",
" 'and',\n",
" 'jelly',\n",
" '.',\n",
" 'All',\n",
" 'their',\n",
" 'handmade',\n",
" 'meals',\n",
" 'give',\n",
" 'you',\n",
" 'the',\n",
" 'satisfaction',\n",
" 'of',\n",
" 'savory',\n",
" ',',\n",
" 'calorie-filled',\n",
" 'decadence…',\n",
" 'but',\n",
" 'they’re',\n",
" 'actually',\n",
" 'good',\n",
" 'for',\n",
" 'you',\n",
" '!',\n",
" 'All',\n",
" 'over',\n",
" 'Austin',\n",
" ',',\n",
" 'they',\n",
" 'play',\n",
" 'off',\n",
" 'of',\n",
" 'classics',\n",
" 'like',\n",
" 'lasagna',\n",
" ',',\n",
" 'mac',\n",
" 'and',\n",
" 'cheese',\n",
" ',',\n",
" 'sliders',\n",
" ',',\n",
" 'enchiladas',\n",
" '.',\n",
" 'But',\n",
" 'Snap',\n",
" 'makes',\n",
" 'magic',\n",
" 'happen',\n",
" 'in',\n",
" 'their',\n",
" 'kitchen',\n",
" '.',\n",
" 'See',\n",
" 'for',\n",
" 'yourself',\n",
" '.',\n",
" 'Bonus',\n",
" ':',\n",
" 'They',\n",
" 'also',\n",
" 'put',\n",
" 'the',\n",
" 'nutritional',\n",
" 'information',\n",
" 'on',\n",
" 'all',\n",
" 'their',\n",
" 'meals',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'A\",\n",
" 'favorite',\n",
" 'local',\n",
" 'Austin',\n",
" 'joint',\n",
" ',',\n",
" 'Kerbey',\n",
" 'Lane',\n",
" 'Cafe',\n",
" 'is',\n",
" 'open',\n",
" '24',\n",
" 'hours',\n",
" ',',\n",
" 'making',\n",
" 'it',\n",
" 'the',\n",
" 'perfect',\n",
" 'choice',\n",
" 'for',\n",
" 'those',\n",
" 'who',\n",
" 'wake',\n",
" 'up',\n",
" 'from',\n",
" 'a',\n",
" 'nap',\n",
" 'at',\n",
" '10pm',\n",
" 'starving',\n",
" '.',\n",
" 'Kerbey',\n",
" 'knows',\n",
" 'what',\n",
" 'Austinites',\n",
" 'like',\n",
" ':',\n",
" 'Options',\n",
" '.',\n",
" 'They',\n",
" 'have',\n",
" 'an',\n",
" 'entire',\n",
" 'gluten-free',\n",
" 'menu',\n",
" 'and',\n",
" 'tons',\n",
" 'of',\n",
" 'vegan',\n",
" 'entrees',\n",
" 'as',\n",
" 'well',\n",
" '.',\n",
" 'With',\n",
" 'seasonal',\n",
" 'menus',\n",
" 'that',\n",
" 'constantly',\n",
" 'change',\n",
" '(',\n",
" 'with',\n",
" 'the',\n",
" 'season…',\n",
" ')',\n",
" 'and',\n",
" 'all',\n",
" 'day',\n",
" 'breakfast',\n",
" ',',\n",
" 'Kerbey',\n",
" 'Lane',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'choice',\n",
" 'for',\n",
" 'takeout',\n",
" 'at',\n",
" 'any',\n",
" 'time',\n",
" 'of',\n",
" 'day',\n",
" ',',\n",
" 'pretty',\n",
" 'much',\n",
" 'anywhere',\n",
" 'around',\n",
" 'Austin',\n",
" '.',\n",
" 'Opt',\n",
" 'for',\n",
" 'a',\n",
" 'salad',\n",
" 'with',\n",
" 'sweet',\n",
" 'potato',\n",
" 'fries',\n",
" 'or',\n",
" 'delicious',\n",
" 'omelette',\n",
" 'or',\n",
" 'veggie',\n",
" 'burger',\n",
" 'or…',\n",
" 'you',\n",
" 'get',\n",
" 'it',\n",
" '.',\n",
" 'The',\n",
" 'possibilities',\n",
" 'are',\n",
" 'endless',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Adding\",\n",
" 'another',\n",
" 'food',\n",
" 'truck',\n",
" 'to',\n",
" 'the',\n",
" 'list',\n",
" 'because',\n",
" 'we',\n",
" 'can’t',\n",
" 'help',\n",
" 'it',\n",
" '.',\n",
" 'Conscious',\n",
" 'Cravings',\n",
" 'has',\n",
" 'your',\n",
" 'typical',\n",
" 'salads',\n",
" ',',\n",
" 'wraps',\n",
" ',',\n",
" 'and',\n",
" 'smoothies…',\n",
" 'without',\n",
" 'any',\n",
" 'meat',\n",
" '.',\n",
" 'Don’t',\n",
" 'fret',\n",
" '–',\n",
" 'their',\n",
" '“modern',\n",
" 'plant-based',\n",
" 'cuisine”',\n",
" 'would',\n",
" 'satisfy',\n",
" 'any',\n",
" 'carnivore',\n",
" '.',\n",
" 'And',\n",
" 'this',\n",
" 'time',\n",
" ',',\n",
" 'you',\n",
" 'don’t',\n",
" 'even',\n",
" 'have',\n",
" 'to',\n",
" 'put',\n",
" 'shoes',\n",
" 'on',\n",
" '.',\n",
" 'This',\n",
" 'food',\n",
" 'truck',\n",
" 'actually',\n",
" 'delivers',\n",
" 'to',\n",
" 'the',\n",
" 'South',\n",
" 'Austin',\n",
" 'and',\n",
" 'Mueller',\n",
" 'areas',\n",
" '(',\n",
" 'say',\n",
" 'what',\n",
" '?',\n",
" '!',\n",
" ')',\n",
" '.',\n",
" 'Do',\n",
" 'work',\n",
" 'on',\n",
" 'the',\n",
" 'Chimichurri',\n",
" 'Seitan',\n",
" 'Wrap…',\n",
" 'it',\n",
" 'rocks',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'ever',\n",
" 'your',\n",
" 'french',\n",
" 'fry',\n",
" 'craving',\n",
" 'is',\n",
" 'strong',\n",
" ',',\n",
" 'try',\n",
" 'their',\n",
" 'Baked',\n",
" 'Rosemary',\n",
" 'Fries',\n",
" 'for',\n",
" 'a',\n",
" 'lighter',\n",
" 'option',\n",
" 'that’s',\n",
" 'packed',\n",
" 'with',\n",
" 'flavor',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'name',\n",
" 'gives',\n",
" 'it',\n",
" 'away',\n",
" '.',\n",
" 'It’s',\n",
" 'Thai',\n",
" 'food',\n",
" '.',\n",
" 'It’s',\n",
" 'fresh',\n",
" '.',\n",
" 'And',\n",
" 'we',\n",
" 'mean',\n",
" 'really',\n",
" 'fresh',\n",
" '.',\n",
" 'For',\n",
" 'those',\n",
" 'that',\n",
" 'live',\n",
" 'in',\n",
" ...],\n",
" ['[',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" 'trot',\n",
" 'through',\n",
" 'the',\n",
" 'wilderness',\n",
" '?',\n",
" 'Thanks',\n",
" 'to',\n",
" 'Austin’s',\n",
" 'expansive',\n",
" 'running',\n",
" 'scene',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'places',\n",
" 'to',\n",
" 'log',\n",
" 'as',\n",
" 'many',\n",
" 'miles',\n",
" 'as',\n",
" 'you’d',\n",
" 'like',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'know',\n",
" 'that',\n",
" 'a',\n",
" 'quality',\n",
" 'trail',\n",
" 'can',\n",
" 'make',\n",
" 'all',\n",
" 'the',\n",
" 'difference',\n",
" 'between',\n",
" 'staying',\n",
" 'in',\n",
" 'bed',\n",
" 'and',\n",
" 'hitting',\n",
" 'the',\n",
" 'pavement',\n",
" '.',\n",
" 'So',\n",
" 'we',\n",
" 'put',\n",
" 'together',\n",
" 'this',\n",
" 'list',\n",
" 'of',\n",
" 'running',\n",
" 'routes',\n",
" 'so',\n",
" 'fun',\n",
" 'that',\n",
" 'it’s',\n",
" 'tough',\n",
" 'not',\n",
" 'to',\n",
" 'take',\n",
" 'them',\n",
" 'on',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Kicking\",\n",
" 'off',\n",
" 'our',\n",
" 'list',\n",
" 'is',\n",
" 'one',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'most',\n",
" 'popular',\n",
" 'routes',\n",
" 'for',\n",
" 'runners',\n",
" '–',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'Hike',\n",
" 'and',\n",
" 'Bike',\n",
" 'Trail',\n",
" '.',\n",
" 'Beginners',\n",
" 'will',\n",
" 'love',\n",
" 'the',\n",
" 'flat',\n",
" '3.2-mile',\n",
" 'loop',\n",
" 'from',\n",
" 'the',\n",
" 'South',\n",
" 'First',\n",
" 'Bridge',\n",
" 'to',\n",
" 'the',\n",
" 'Mopac',\n",
" 'Bridge',\n",
" '.',\n",
" 'And',\n",
" 'those',\n",
" 'looking',\n",
" 'to',\n",
" 'get',\n",
" 'in',\n",
" 'more',\n",
" 'mileage',\n",
" 'can',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" '7-',\n",
" 'and',\n",
" '10-mile',\n",
" 'loops',\n",
" 'along',\n",
" 'the',\n",
" 'river',\n",
" '.',\n",
" 'No',\n",
" 'matter',\n",
" 'which',\n",
" 'route',\n",
" 'you',\n",
" 'choose',\n",
" ',',\n",
" 'you’ll',\n",
" 'run',\n",
" 'into',\n",
" '(',\n",
" 'pun',\n",
" 'intended',\n",
" ')',\n",
" 'a',\n",
" 'number',\n",
" 'of',\n",
" 'places',\n",
" 'to',\n",
" 'go',\n",
" 'for',\n",
" 'a',\n",
" 'swim',\n",
" ',',\n",
" 'rent',\n",
" 'a',\n",
" 'kayak',\n",
" ',',\n",
" 'or',\n",
" 'rest',\n",
" 'and',\n",
" 'observe',\n",
" 'the',\n",
" 'skyline',\n",
" 'views',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'neighborhood',\n",
" 'running',\n",
" 'is',\n",
" 'more',\n",
" 'your',\n",
" 'speed',\n",
" ',',\n",
" 'Travis',\n",
" 'Heights',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'place',\n",
" 'to',\n",
" 'hit',\n",
" 'the',\n",
" 'pavement',\n",
" '.',\n",
" 'This',\n",
" 'hilly',\n",
" 'neighborhood',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'quiet',\n",
" ',',\n",
" 'meandering',\n",
" 'streets',\n",
" 'that',\n",
" 'are',\n",
" 'safe',\n",
" 'for',\n",
" 'all',\n",
" ',',\n",
" 'and',\n",
" 'perfect',\n",
" 'for',\n",
" 'those',\n",
" 'who',\n",
" 'want',\n",
" 'to',\n",
" 'get',\n",
" 'away',\n",
" 'from',\n",
" 'the',\n",
" 'heavy',\n",
" 'foot',\n",
" 'traffic',\n",
" 'of',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" '.',\n",
" 'It’s',\n",
" 'also',\n",
" 'a',\n",
" 'stone’s',\n",
" 'throw',\n",
" 'from',\n",
" 'SoCo',\n",
" ',',\n",
" 'so',\n",
" 'there',\n",
" 'are',\n",
" 'lots',\n",
" 'of',\n",
" 'yummy',\n",
" 'options',\n",
" 'for',\n",
" 'a',\n",
" 'post-run',\n",
" 'refuel',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'challenging',\n",
" 'trek',\n",
" 'atop',\n",
" 'topsy-turvy',\n",
" 'terrain',\n",
" ',',\n",
" 'the',\n",
" 'Greenbelt',\n",
" 'at',\n",
" 'Barton',\n",
" 'Creek',\n",
" 'is',\n",
" 'calling',\n",
" 'your',\n",
" 'name',\n",
" '.',\n",
" 'You’ll',\n",
" 'start',\n",
" 'at',\n",
" 'Zilker',\n",
" 'Park',\n",
" 'and',\n",
" 'take',\n",
" 'off',\n",
" 'on',\n",
" 'a',\n",
" '7-mile',\n",
" 'trail',\n",
" 'through',\n",
" 'the',\n",
" 'woods',\n",
" '.',\n",
" 'While',\n",
" 'this',\n",
" 'route',\n",
" 'ain’t',\n",
" 'easy',\n",
" ',',\n",
" 'it’s',\n",
" 'plenty',\n",
" 'rewarding',\n",
" '–',\n",
" 'with',\n",
" 'limestone',\n",
" 'cliffs',\n",
" ',',\n",
" 'waterfalls',\n",
" ',',\n",
" 'and',\n",
" 'swimming',\n",
" 'holes',\n",
" 'at',\n",
" 'every',\n",
" 'turn',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'lots',\n",
" 'of',\n",
" 'opportunities',\n",
" 'to',\n",
" 'stop',\n",
" 'and',\n",
" 'take',\n",
" 'a',\n",
" 'breather',\n",
" '(',\n",
" 'don’t',\n",
" 'worry',\n",
" ',',\n",
" 'we',\n",
" 'won’t',\n",
" 'tell',\n",
" '.',\n",
" ')',\n",
" \"'\",\n",
" ',',\n",
" \"'Central\",\n",
" 'Austin',\n",
" 'is',\n",
" 'home',\n",
" 'to',\n",
" 'this',\n",
" '3-mile',\n",
" ',',\n",
" 'one-way',\n",
" 'route',\n",
" 'beginning',\n",
" 'on',\n",
" 'N.',\n",
" 'Lamar',\n",
" 'and',\n",
" 'winding',\n",
" 'down',\n",
" 'to',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" '.',\n",
" 'It’s',\n",
" 'not',\n",
" 'as',\n",
" 'well-groomed',\n",
" 'as',\n",
" 'some',\n",
" 'other',\n",
" 'central',\n",
" 'routes',\n",
" '–',\n",
" 'expect',\n",
" 'to',\n",
" 'dodge',\n",
" 'some',\n",
" 'rocky',\n",
" 'debris',\n",
" 'and',\n",
" 'a',\n",
" 'fallen',\n",
" 'branch',\n",
" 'or',\n",
" 'two',\n",
" '–',\n",
" 'but',\n",
" 'what',\n",
" 'it',\n",
" 'lacks',\n",
" 'in',\n",
" 'polish',\n",
" ',',\n",
" 'it',\n",
" 'more',\n",
" 'than',\n",
" 'makes',\n",
" 'up',\n",
" 'for',\n",
" 'in',\n",
" 'peace',\n",
" 'and',\n",
" 'quiet',\n",
" '.',\n",
" 'Despite',\n",
" 'its',\n",
" 'proximity',\n",
" 'to',\n",
" 'Downtown',\n",
" ',',\n",
" 'you’ll',\n",
" 'feel',\n",
" 'like',\n",
" 'you’re',\n",
" 'in',\n",
" 'a',\n",
" 'beautiful',\n",
" ',',\n",
" 'wild',\n",
" 'refuge',\n",
" 'from',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'Great',\n",
" 'for',\n",
" 'a',\n",
" 'post-work',\n",
" '(',\n",
" 'pre-happy',\n",
" 'hour',\n",
" ')',\n",
" 'jaunt',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Okay\",\n",
" ',',\n",
" 'this',\n",
" 'one',\n",
" 'will',\n",
" 'cost',\n",
" 'you',\n",
" '$',\n",
" '6',\n",
" ',',\n",
" 'but',\n",
" 'anyone',\n",
" 'who',\n",
" 'has',\n",
" 'trotted',\n",
" 'along',\n",
" 'these',\n",
" 'trails',\n",
" 'will',\n",
" 'tell',\n",
" 'you',\n",
" 'the',\n",
" 'price',\n",
" 'is',\n",
" 'well',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" 'This',\n",
" 'state',\n",
" 'park',\n",
" 'in',\n",
" 'Southeast',\n",
" 'Austin',\n",
" 'is',\n",
" 'packed',\n",
" 'full',\n",
" 'of',\n",
" 'breathtaking',\n",
" 'scenery',\n",
" ',',\n",
" 'flowing',\n",
" 'waterfalls',\n",
" ',',\n",
" 'and',\n",
" 'well-maintained',\n",
" 'trails',\n",
" 'for',\n",
" 'runners',\n",
" 'of',\n",
" 'all',\n",
" 'levels',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'keep',\n",
" 'your',\n",
" 'eyes',\n",
" 'open',\n",
" ',',\n",
" 'you',\n",
" 'might',\n",
" 'even',\n",
" 'run',\n",
" 'into',\n",
" '“Old',\n",
" 'Baldy”',\n",
" ',',\n",
" 'a',\n",
" 'historic',\n",
" 'cypress',\n",
" 'tree',\n",
" 'that',\n",
" 'has',\n",
" 'seen',\n",
" 'it',\n",
" 'all',\n",
" 'during',\n",
" 'its',\n",
" '300-year',\n",
" 'residency',\n",
" 'at',\n",
" 'the',\n",
" 'park',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Scenic\",\n",
" 'beauty',\n",
" ',',\n",
" 'majestic',\n",
" 'waterfalls',\n",
" ',',\n",
" 'and',\n",
" 'miles',\n",
" 'of',\n",
" 'hilly',\n",
" 'trails',\n",
" 'make',\n",
" 'this',\n",
" 'North',\n",
" 'Austin',\n",
" 'park',\n",
" 'a',\n",
" 'running',\n",
" 'favorite',\n",
" '.',\n",
" 'Newbies',\n",
" 'and',\n",
" 'experienced',\n",
" 'runners',\n",
" 'alike',\n",
" 'love',\n",
" 'this',\n",
" 'spot',\n",
" 'for',\n",
" 'its',\n",
" 'ample',\n",
" 'shade',\n",
" ',',\n",
" 'various',\n",
" 'routes',\n",
" ',',\n",
" 'and',\n",
" 'creekside',\n",
" 'location',\n",
" '.',\n",
" 'It’s',\n",
" 'also',\n",
" 'very',\n",
" 'dog-friendly',\n",
" ',',\n",
" 'so',\n",
" 'feel',\n",
" 'free',\n",
" 'to',\n",
" 'bring',\n",
" 'along',\n",
" 'your',\n",
" 'furry',\n",
" 'friend',\n",
" '.',\n",
" 'But',\n",
" 'bear',\n",
" 'in',\n",
" 'mind',\n",
" 'that',\n",
" 'the',\n",
" 'beauty',\n",
" 'of',\n",
" 'this',\n",
" 'park',\n",
" 'attracts',\n",
" 'many',\n",
" 'far',\n",
" 'and',\n",
" 'wide',\n",
" '(',\n",
" 'including',\n",
" 'bikers',\n",
" ')',\n",
" ',',\n",
" 'so',\n",
" 'it',\n",
" 'can',\n",
" 'get',\n",
" 'very',\n",
" 'crowded',\n",
" 'at',\n",
" 'peak',\n",
" 'times',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Westlake\",\n",
" 'folks',\n",
" 'are',\n",
" 'neighbors',\n",
" 'to',\n",
" 'this',\n",
" 'rocky',\n",
" 'running',\n",
" 'route',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'choose',\n",
" 'to',\n",
" 'take',\n",
" 'it',\n",
" 'on',\n",
" ',',\n",
" 'you’ll',\n",
" 'want',\n",
" 'to',\n",
" 'lace',\n",
" 'up',\n",
" 'your',\n",
" 'trail',\n",
" 'sneakers',\n",
" 'tightly',\n",
" 'as',\n",
" 'you',\n",
" 'traverse',\n",
" 'the',\n",
" 'steep',\n",
" 'climbs',\n",
" 'and',\n",
" 'uneven',\n",
" 'terrain',\n",
" '.',\n",
" 'But',\n",
" 'with',\n",
" 'great',\n",
" 'challenges',\n",
" 'come',\n",
" 'great',\n",
" 'rewards',\n",
" '–',\n",
" 'winding',\n",
" 'along',\n",
" 'the',\n",
" '360',\n",
" 'highway',\n",
" ',',\n",
" 'runners',\n",
" 'are',\n",
" 'greeted',\n",
" 'with',\n",
" 'scenic',\n",
" 'overlooks',\n",
" 'of',\n",
" 'the',\n",
" 'Hill',\n",
" 'Country',\n",
" 'around',\n",
" 'every',\n",
" 'turn',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You’ll\",\n",
" 'have',\n",
" 'to',\n",
" 'trek',\n",
" 'a',\n",
" 'little',\n",
" 'further',\n",
" 'for',\n",
" 'this',\n",
" 'gem',\n",
" ',',\n",
" 'which',\n",
" 'is',\n",
" 'technically',\n",
" 'in',\n",
" 'Cedar',\n",
" 'Park',\n",
" '.',\n",
" 'But',\n",
" 'given',\n",
" 'its',\n",
" 'popularity',\n",
" ',',\n",
" 'it’s',\n",
" 'obvious',\n",
" 'that',\n",
" 'the',\n",
" 'distance',\n",
" 'doesn’t',\n",
" 'prevent',\n",
" 'many',\n",
" 'Austinites',\n",
" 'from',\n",
" 'enjoying',\n",
" 'it',\n",
" '–',\n",
" 'and',\n",
" 'we',\n",
" 'can',\n",
" 'certainly',\n",
" 'see',\n",
" 'why',\n",
" '!',\n",
" 'With',\n",
" 'a',\n",
" 'lake',\n",
" 'to',\n",
" 'run',\n",
" 'around',\n",
" ',',\n",
" 'bridges',\n",
" 'to',\n",
" 'bound',\n",
" 'over',\n",
" ',',\n",
" 'and',\n",
" 'pretty',\n",
" 'parks',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" ',',\n",
" 'it’s',\n",
" 'no',\n",
" 'surprise',\n",
" 'to',\n",
" 'us',\n",
" 'why',\n",
" 'so',\n",
" 'many',\n",
" 'love',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'this',\n",
" 'all-level',\n",
" '6.5-mile',\n",
" 'route',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'forgo',\n",
" 'the',\n",
" 'trail',\n",
" 'shoes',\n",
" 'and',\n",
" 'throw',\n",
" 'on',\n",
" 'some',\n",
" 'sneaks',\n",
" 'for',\n",
" 'an',\n",
" 'urban',\n",
" 'adventure',\n",
" ',',\n",
" 'Hyde',\n",
" 'Park',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" 'for',\n",
" 'North',\n",
" 'Austinites',\n",
" '.',\n",
" 'Similar',\n",
" 'to',\n",
" 'the',\n",
" 'Travis',\n",
" 'Heights',\n",
" 'route',\n",
" 'for',\n",
" 'South',\n",
" 'Austin',\n",
" 'dwellers',\n",
" ',',\n",
" 'here',\n",
" 'you’ll',\n",
" 'find',\n",
" 'quiet',\n",
" ',',\n",
" 'residential',\n",
" 'streets',\n",
" 'perfect',\n",
" 'for',\n",
" 'safe',\n",
" ',',\n",
" 'cityscape',\n",
" 'exploring',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'also',\n",
" 'plenty',\n",
" 'of',\n",
" 'shops',\n",
" 'and',\n",
" 'cafes',\n",
" 'around',\n",
" 'to',\n",
" 'treat',\n",
" 'yourself',\n",
" 'with',\n",
" 'when',\n",
" 'you’re',\n",
" 'finished',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"''\",\n",
" ',',\n",
" \"''\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'an',\n",
" 'ultra-marathoner',\n",
" 'or',\n",
" 'a',\n",
" 'casual',\n",
" 'jogger',\n",
" ',',\n",
" 'running',\n",
" 'is',\n",
" 'always',\n",
" 'better',\n",
" 'with\\\\xa0friends',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’re',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'no',\n",
" 'trouble',\n",
" 'finding',\n",
" 'some',\n",
" 'new…',\n",
" \"'\",\n",
" ',',\n",
" \"'There’s\",\n",
" 'a',\n",
" 'lot',\n",
" 'for',\n",
" 'fitness',\n",
" 'adventures',\n",
" 'to',\n",
" 'get',\n",
" 'excited',\n",
" 'about',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'rock',\n",
" 'climbing',\n",
" 'spots',\n",
" 'a',\n",
" 'stone’s',\n",
" 'throw',\n",
" 'from',\n",
" 'downtown',\n",
" ',',\n",
" 'kayaking',\n",
" 'and',\n",
" 'paddle',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'There\",\n",
" 'comes',\n",
" 'a',\n",
" 'time',\n",
" 'in',\n",
" 'every',\n",
" 'fitness',\n",
" 'fiend’s',\n",
" 'journey',\n",
" 'when',\n",
" 'the',\n",
" 'same',\n",
" 'old',\n",
" 'routine',\n",
" 'starts',\n",
" 'to',\n",
" 'feel',\n",
" 'stale',\n",
" 'and',\n",
" 'boring\\\\xa0or',\n",
" 'even',\n",
" 'becomes',\n",
" 'less',\n",
" 'effective',\n",
" 'over',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'solemnly',\n",
" 'swear',\n",
" 'that',\n",
" 'we’re',\n",
" 'up',\n",
" 'to…some',\n",
" 'sweaty',\n",
" 'Hatha',\n",
" 'yoga',\n",
" '.',\n",
" 'You',\n",
" 'may',\n",
" 'not',\n",
" 'get',\n",
" 'that',\n",
" 'reference',\n",
" 'if',\n",
" 'you’re',\n",
" 'not',\n",
" 'a',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'fan',\n",
" ',',\n",
" 'but',\n",
" 'that',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'amazing',\n",
" 'things',\n",
" 'about',\n",
" 'Austin',\n",
" 'is',\n",
" 'its',\n",
" 'unique',\n",
" 'blend',\n",
" 'of',\n",
" 'urban',\n",
" 'and',\n",
" 'outdoor',\n",
" 'activities',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'spend',\n",
" 'the',\n",
" 'day',\n",
" 'at',\n",
" 'the',\n",
" 'office',\n",
" ',',\n",
" 'then',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'As\",\n",
" 'the',\n",
" 'sweltering',\n",
" 'heat',\n",
" 'of',\n",
" 'summer',\n",
" 'has',\n",
" 'finally',\n",
" 'behind',\n",
" 'us',\n",
" ',',\n",
" 'we',\n",
" 'now',\n",
" 'have',\n",
" 'months',\n",
" 'of',\n",
" 'sunny',\n",
" ',',\n",
" 'mild',\n",
" 'weather',\n",
" 'to',\n",
" 'look',\n",
" 'forward',\n",
" 'to',\n",
" '.',\n",
" 'Yes',\n",
" ',',\n",
" 'fall',\n",
" 'is',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Austin\",\n",
" 'is',\n",
" 'known',\n",
" 'for',\n",
" 'its',\n",
" 'general',\n",
" 'weirdness',\n",
" ',',\n",
" 'awesome',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'and',\n",
" 'delicious',\n",
" 'grub',\n",
" '–',\n",
" 'but',\n",
" 'what',\n",
" 'really',\n",
" 'makes',\n",
" 'our',\n",
" 'city',\n",
" 'shine',\n",
" 'are',\n",
" 'the',\n",
" 'scenic',\n",
" 'wilderness',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Let’s\",\n",
" 'be',\n",
" 'honest',\n",
" '–',\n",
" 'there',\n",
" 'are',\n",
" 'days',\n",
" 'we’d',\n",
" 'rather',\n",
" 'stay',\n",
" 'at',\n",
" 'home',\n",
" 'in',\n",
" 'sweatpants',\n",
" 'instead',\n",
" 'of',\n",
" 'venturing',\n",
" 'out',\n",
" 'into',\n",
" 'the',\n",
" 'world',\n",
" '.',\n",
" 'Enter',\n",
" ':',\n",
" 'the',\n",
" 'glorious',\n",
" 'world…',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'So\",\n",
" 'you',\n",
" 'just',\n",
" 'finished',\n",
" 'that',\n",
" 'long',\n",
" 'workout',\n",
" 'of',\n",
" 'yours',\n",
" '.',\n",
" 'Yeah',\n",
" ',',\n",
" 'you',\n",
" 'totally',\n",
" 'killed',\n",
" 'it',\n",
" '.',\n",
" '(',\n",
" 'props',\n",
" '!',\n",
" ')',\n",
" 'Now',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'refuel',\n",
" 'before',\n",
" 'crushing',\n",
" 'the',\n",
" 'rest',\n",
" 'of',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Even\",\n",
" 'the',\n",
" 'MOST',\n",
" 'disciplined',\n",
" 'among',\n",
" 'us',\n",
" 'know',\n",
" 'what',\n",
" 'the',\n",
" 'thought',\n",
" 'of',\n",
" 'a',\n",
" 'hot',\n",
" ',',\n",
" 'cheesy',\n",
" 'slice',\n",
" 'of',\n",
" 'pizza',\n",
" 'can',\n",
" 'do',\n",
" 'to',\n",
" 'our',\n",
" 'willpower',\n",
" '.',\n",
" 'But',\n",
" 'come',\n",
" 'on',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Some\",\n",
" 'of',\n",
" 'us',\n",
" 'work',\n",
" 'on',\n",
" 'our',\n",
" 'fitness',\n",
" 'for',\n",
" 'health',\n",
" ',',\n",
" 'others',\n",
" 'work',\n",
" 'on',\n",
" 'it',\n",
" 'for',\n",
" 'a',\n",
" 'killer',\n",
" 'beach',\n",
" 'bod',\n",
" ',',\n",
" 'and',\n",
" 'still',\n",
" 'more',\n",
" 'do',\n",
" 'it',\n",
" 'so',\n",
" 'they',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'You’ve\",\n",
" 'logged',\n",
" 'some',\n",
" 'serious',\n",
" 'mileage',\n",
" ',',\n",
" 'lifted',\n",
" 'all',\n",
" 'of',\n",
" 'the',\n",
" 'weights',\n",
" ',',\n",
" 'and',\n",
" 'fueled',\n",
" 'up',\n",
" 'on',\n",
" 'protein',\n",
" 'and',\n",
" 'greens',\n",
" '(',\n",
" 'right',\n",
" '?',\n",
" ')',\n",
" '.',\n",
" 'Now',\n",
" 'it’s',\n",
" 'time',\n",
" 'to',\n",
" 'treat',\n",
" 'yourself',\n",
" '.',\n",
" 'Calories',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'warm',\n",
" 'temps',\n",
" 'and',\n",
" 'sunny',\n",
" 'days',\n",
" 'make',\n",
" 'it',\n",
" 'tough',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'get',\n",
" 'into',\n",
" 'the',\n",
" 'holiday',\n",
" 'spirit',\n",
" ',',\n",
" 'then',\n",
" 'it’s',\n",
" 'time',\n",
" 'to',\n",
" 'rejoice',\n",
" '!',\n",
" 'We',\n",
" 'found',\n",
" 'a',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Ah\",\n",
" ',',\n",
" 'November',\n",
" 'is',\n",
" 'upon',\n",
" 'us',\n",
" ',',\n",
" 'which',\n",
" 'means',\n",
" 'fall',\n",
" 'in',\n",
" 'Austin',\n",
" 'is',\n",
" 'in',\n",
" 'full',\n",
" 'force',\n",
" '.',\n",
" 'Outside',\n",
" 'is',\n",
" 'no',\n",
" 'longer',\n",
" 'sweltering',\n",
" ',',\n",
" 'UT',\n",
" 'football',\n",
" 'is',\n",
" 'going',\n",
" 'strong',\n",
" ',',\n",
" 'and',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'October\",\n",
" 'in',\n",
" 'Austin',\n",
" 'is',\n",
" 'a',\n",
" 'beautiful',\n",
" 'thing',\n",
" '.',\n",
" 'The',\n",
" 'blazing',\n",
" 'hot',\n",
" 'temperatures',\n",
" 'have',\n",
" 'subsided',\n",
" ',',\n",
" 'so',\n",
" 'outdoor',\n",
" 'workouts',\n",
" 'are',\n",
" 'a',\n",
" 'breeze',\n",
" ';',\n",
" 'Austin',\n",
" 'City',\n",
" 'Limits',\n",
" 'is',\n",
" 'temporarily',\n",
" 'taking',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Well\",\n",
" 'folks',\n",
" ',',\n",
" 'the',\n",
" 'bittersweet',\n",
" 'time',\n",
" 'of',\n",
" 'summer’s',\n",
" 'end',\n",
" 'is',\n",
" 'upon',\n",
" 'us',\n",
" ',',\n",
" 'which',\n",
" 'means',\n",
" 'fewer',\n",
" 'days',\n",
" 'on',\n",
" 'the',\n",
" 'lake',\n",
" ',',\n",
" 'the',\n",
" 'fireworks',\n",
" 'are',\n",
" 'packed',\n",
" 'away',\n",
" 'until',\n",
" 'next',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'amazing',\n",
" 'things',\n",
" 'about',\n",
" 'Austin',\n",
" 'is',\n",
" 'its',\n",
" 'unique',\n",
" 'blend',\n",
" 'of',\n",
" 'urban',\n",
" 'and',\n",
" 'outdoor',\n",
" 'activities',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'spend',\n",
" 'the',\n",
" 'day',\n",
" 'at',\n",
" 'the',\n",
" 'office',\n",
" ',',\n",
" 'then',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Austin\",\n",
" 'is',\n",
" 'known',\n",
" 'for',\n",
" 'its',\n",
" 'general',\n",
" 'weirdness',\n",
" ',',\n",
" 'awesome',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'and',\n",
" 'delicious',\n",
" 'grub',\n",
" '–',\n",
" 'but',\n",
" 'what',\n",
" 'really',\n",
" 'makes',\n",
" 'our',\n",
" 'city',\n",
" 'shine',\n",
" 'are',\n",
" 'the',\n",
" 'scenic',\n",
" 'wilderness',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Let’s\",\n",
" 'be',\n",
" 'honest',\n",
" '–',\n",
" 'there',\n",
" 'are',\n",
" 'days',\n",
" 'we’d',\n",
" 'rather',\n",
" 'stay',\n",
" 'at',\n",
" 'home',\n",
" 'in',\n",
" 'sweatpants',\n",
" 'instead',\n",
" 'of',\n",
" 'venturing',\n",
" 'out',\n",
" 'into',\n",
" 'the',\n",
" 'world',\n",
" '.',\n",
" 'Enter',\n",
" ':',\n",
" 'the',\n",
" 'glorious',\n",
" 'world…',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'So\",\n",
" 'you',\n",
" 'just',\n",
" 'finished',\n",
" 'that',\n",
" 'long',\n",
" 'workout',\n",
" 'of',\n",
" 'yours',\n",
" '.',\n",
" 'Yeah',\n",
" ',',\n",
" 'you',\n",
" 'totally',\n",
" 'killed',\n",
" 'it',\n",
" '.',\n",
" '(',\n",
" 'props',\n",
" '!',\n",
" ')',\n",
" 'Now',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'refuel',\n",
" 'before',\n",
" 'crushing',\n",
" 'the',\n",
" 'rest',\n",
" 'of',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Even\",\n",
" 'the',\n",
" 'MOST',\n",
" 'disciplined',\n",
" 'among',\n",
" 'us',\n",
" 'know',\n",
" 'what',\n",
" 'the',\n",
" 'thought',\n",
" 'of',\n",
" 'a',\n",
" 'hot',\n",
" ',',\n",
" 'cheesy',\n",
" 'slice',\n",
" 'of',\n",
" 'pizza',\n",
" 'can',\n",
" 'do',\n",
" 'to',\n",
" 'our',\n",
" 'willpower',\n",
" '.',\n",
" 'But',\n",
" 'come',\n",
" 'on',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Long\",\n",
" 'live',\n",
" 'mimosas',\n",
" ',',\n",
" 'syrupy',\n",
" 'french',\n",
" 'toast',\n",
" ',',\n",
" 'and',\n",
" 'greasy',\n",
" 'grits',\n",
" '!',\n",
" 'But',\n",
" 'if',\n",
" 'we',\n",
" 'want',\n",
" 'to',\n",
" 'live',\n",
" 'long',\n",
" 'too',\n",
" ',',\n",
" 'our',\n",
" 'brunch',\n",
" 'indulgences',\n",
" 'can’t',\n",
" 'always',\n",
" 'look',\n",
" 'like',\n",
" 'an',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'an',\n",
" 'ultra-marathoner',\n",
" 'or',\n",
" 'a',\n",
" 'casual',\n",
" 'jogger',\n",
" ',',\n",
" 'running',\n",
" 'is',\n",
" 'always',\n",
" 'better',\n",
" 'with\\\\xa0friends',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’re',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'no',\n",
" 'trouble',\n",
" 'finding',\n",
" 'some',\n",
" 'new…',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ve\",\n",
" 'got',\n",
" 'it',\n",
" 'made',\n",
" '.',\n",
" 'Austin’s',\n",
" 'climate',\n",
" 'means',\n",
" 'year-round',\n",
" 'patio',\n",
" 'brunches',\n",
" ',',\n",
" 'all-season',\n",
" 'swimming',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'yearlong',\n",
" 'calendar',\n",
" 'of',\n",
" 'fun',\n",
" 'races',\n",
" 'to',\n",
" 'run',\n",
" 'your',\n",
" 'butt',\n",
" 'off',\n",
" 'in',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Running\",\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'fit',\n",
" '.',\n",
" 'But',\n",
" 'nowadays',\n",
" ',',\n",
" 'shaping',\n",
" 'up',\n",
" 'isn’t',\n",
" 'the',\n",
" 'only',\n",
" 'reason',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" '.',\n",
" 'These',\n",
" 'new',\n",
" 'crop',\n",
" 'of',\n",
" 'fun',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'There\",\n",
" 'comes',\n",
" 'a',\n",
" 'time',\n",
" 'in',\n",
" 'every',\n",
" 'fitness',\n",
" 'fiend’s',\n",
" 'journey',\n",
" 'when',\n",
" 'the',\n",
" 'same',\n",
" 'old',\n",
" 'routine',\n",
" 'starts',\n",
" 'to',\n",
" 'feel',\n",
" 'stale',\n",
" 'and',\n",
" 'boring\\\\xa0or',\n",
" 'even',\n",
" 'becomes',\n",
" 'less',\n",
" 'effective',\n",
" 'over',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'training',\n",
" 'for',\n",
" 'Regionals',\n",
" 'or',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'tackle',\n",
" 'everyday',\n",
" 'activities',\n",
" 'with',\n",
" 'more',\n",
" 'energy',\n",
" ',',\n",
" 'CrossFit',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'it',\n",
" 'done',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'training',\n",
" 'for',\n",
" 'Regionals',\n",
" 'or',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'tackle',\n",
" 'everyday',\n",
" 'activities',\n",
" 'with',\n",
" 'more',\n",
" 'energy',\n",
" ',',\n",
" 'CrossFit',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'it',\n",
" 'done',\n",
" '.',\n",
" 'Any',\n",
" 'doubts',\n",
" 'about',\n",
" 'its',\n",
" 'effectiveness',\n",
" 'are',\n",
" 'dispelled',\n",
" 'by',\n",
" 'all',\n",
" 'of',\n",
" 'the',\n",
" 'outrageously',\n",
" 'fit',\n",
" 'crew',\n",
" 'at',\n",
" 'your',\n",
" 'local',\n",
" 'CrossFit',\n",
" 'box',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'And\",\n",
" 'if',\n",
" 'you’re',\n",
" 'thinking',\n",
" 'about',\n",
" 'getting',\n",
" 'in',\n",
" 'on',\n",
" 'the',\n",
" 'action',\n",
" ',',\n",
" 'you’re',\n",
" 'probably',\n",
" 'wondering',\n",
" 'where',\n",
" 'to',\n",
" 'start',\n",
" '.',\n",
" 'Well',\n",
" ',',\n",
" 'we',\n",
" 'scanned',\n",
" 'the',\n",
" 'city',\n",
" 'to',\n",
" 'bring',\n",
" 'you',\n",
" 'the',\n",
" 'cream',\n",
" 'of',\n",
" 'the',\n",
" 'CrossFit',\n",
" 'crop',\n",
" '.',\n",
" 'The',\n",
" 'coaches',\n",
" 'are',\n",
" 'supportive',\n",
" ',',\n",
" 'the',\n",
" 'communities',\n",
" 'are',\n",
" 'incredible',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'locations',\n",
" 'are',\n",
" 'everywhere',\n",
" '.',\n",
" 'So',\n",
" 'all',\n",
" 'of',\n",
" 'you',\n",
" 'Austinites',\n",
" ',',\n",
" 'no',\n",
" 'matter',\n",
" 'which',\n",
" 'part',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'you',\n",
" 'call',\n",
" 'home',\n",
" ',',\n",
" 'can',\n",
" 'find',\n",
" 'the',\n",
" 'right',\n",
" 'CrossFit',\n",
" 'family',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'As\",\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'first',\n",
" '50',\n",
" 'CrossFit',\n",
" 'affiliates',\n",
" 'in',\n",
" 'the',\n",
" 'world',\n",
" ',',\n",
" 'CrossFit',\n",
" 'Central',\n",
" 'is',\n",
" 'an',\n",
" 'authority',\n",
" 'here',\n",
" 'in',\n",
" 'the',\n",
" 'Austin',\n",
" 'workout',\n",
" 'scene',\n",
" '.',\n",
" 'This',\n",
" 'family-operated',\n",
" 'business',\n",
" 'has',\n",
" 'three',\n",
" 'different',\n",
" 'locations',\n",
" ',',\n",
" 'so',\n",
" 'all',\n",
" 'Austinites',\n",
" 'can',\n",
" 'easily',\n",
" 'jump',\n",
" 'in',\n",
" 'and',\n",
" 'master',\n",
" 'their',\n",
" 'skills',\n",
" 'in',\n",
" 'strength',\n",
" 'and',\n",
" 'endurance',\n",
" '.',\n",
" 'With',\n",
" 'exclusive',\n",
" 'competitions',\n",
" 'for',\n",
" 'members',\n",
" ',',\n",
" 'monthly',\n",
" 'nutrition',\n",
" 'meetings',\n",
" ',',\n",
" 'and',\n",
" 'free',\n",
" 'body',\n",
" 'composition',\n",
" 'assessments',\n",
" ',',\n",
" 'there’s',\n",
" 'no',\n",
" 'shortage',\n",
" 'of',\n",
" 'incentives',\n",
" 'to',\n",
" 'become',\n",
" 'a',\n",
" 'part',\n",
" 'of',\n",
" 'this',\n",
" 'tight-knit',\n",
" 'community',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Westlake\",\n",
" 'is',\n",
" 'home',\n",
" 'to',\n",
" 'beautiful',\n",
" 'estates',\n",
" ',',\n",
" 'eye-catching',\n",
" 'scenery',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'great',\n",
" 'place',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'workout',\n",
" 'on',\n",
" '.',\n",
" 'Offering',\n",
" 'small',\n",
" 'group',\n",
" 'classes',\n",
" ',',\n",
" 'private',\n",
" 'training',\n",
" ',',\n",
" 'and',\n",
" 'nutrition',\n",
" 'counseling',\n",
" ',',\n",
" 'Westlake',\n",
" 'CrossFit',\n",
" 'has',\n",
" 'it',\n",
" 'all',\n",
" '.',\n",
" 'And',\n",
" 'with',\n",
" 'teen',\n",
" 'strength',\n",
" 'and',\n",
" 'conditioning',\n",
" 'classes',\n",
" 'every',\n",
" 'Tuesday',\n",
" 'and',\n",
" 'Thursday',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'even',\n",
" 'make',\n",
" 'it',\n",
" 'a',\n",
" 'family',\n",
" 'affair',\n",
" '.',\n",
" 'Still',\n",
" 'unsure',\n",
" '?',\n",
" 'No',\n",
" 'problem',\n",
" '.',\n",
" 'The',\n",
" 'people',\n",
" 'here',\n",
" 'are',\n",
" 'so',\n",
" 'confident',\n",
" 'you’ll',\n",
" 'fall',\n",
" 'in',\n",
" 'love',\n",
" 'that',\n",
" 'they',\n",
" 'offer',\n",
" 'free',\n",
" 'weekly',\n",
" 'classes',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'test',\n",
" 'the',\n",
" 'waters',\n",
" 'without',\n",
" 'commitment',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Calling\",\n",
" 'all',\n",
" 'SoCo',\n",
" 'dwellers',\n",
" '!',\n",
" 'We',\n",
" 'found',\n",
" 'your',\n",
" 'home',\n",
" 'gym',\n",
" '.',\n",
" 'CrossFit',\n",
" 'Austin',\n",
" 'makes',\n",
" 'a',\n",
" 'point',\n",
" 'of',\n",
" 'being',\n",
" 'well-rounded',\n",
" '–',\n",
" 'in',\n",
" 'addition',\n",
" 'to',\n",
" 'honing',\n",
" 'your',\n",
" 'body',\n",
" ',',\n",
" 'they',\n",
" 'want',\n",
" 'your',\n",
" 'mind',\n",
" 'and',\n",
" 'spirit',\n",
" 'to',\n",
" 'get',\n",
" 'fit',\n",
" ',',\n",
" 'too',\n",
" '.',\n",
" 'Their',\n",
" 'coaches',\n",
" 'are',\n",
" 'friendly',\n",
" ',',\n",
" 'knowledgeable',\n",
" ',',\n",
" 'and',\n",
" 'well-equipped',\n",
" 'to',\n",
" 'meet',\n",
" 'you',\n",
" 'where',\n",
" 'you',\n",
" 'are',\n",
" '.',\n",
" 'So',\n",
" 'whether',\n",
" 'you’ve',\n",
" 'been',\n",
" 'doing',\n",
" 'WODs',\n",
" 'for',\n",
" 'years',\n",
" ',',\n",
" 'or',\n",
" 'have',\n",
" 'no',\n",
" 'idea',\n",
" 'what',\n",
" 'that',\n",
" 'means',\n",
" ',',\n",
" 'this',\n",
" 'gym',\n",
" 'has',\n",
" 'you',\n",
" 'covered',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'folks',\n",
" 'here',\n",
" 'know',\n",
" 'that',\n",
" 'with',\n",
" 'tough',\n",
" 'workouts',\n",
" 'can',\n",
" 'come',\n",
" 'even',\n",
" 'tougher',\n",
" 'injuries',\n",
" ',',\n",
" 'so',\n",
" 'Fortitude',\n",
" 'Fitness',\n",
" 'makes',\n",
" 'safety',\n",
" 'their',\n",
" 'number',\n",
" 'one',\n",
" 'priority',\n",
" '.',\n",
" 'Coming',\n",
" 'into',\n",
" 'a',\n",
" 'clean',\n",
" '+',\n",
" 'jerk',\n",
" 'or',\n",
" 'box',\n",
" 'jump',\n",
" 'cold',\n",
" 'can',\n",
" 'be',\n",
" 'frightening',\n",
" '.',\n",
" 'That’s',\n",
" 'why',\n",
" 'they',\n",
" 'have',\n",
" 'a',\n",
" 'leveling',\n",
" 'system',\n",
" 'designed',\n",
" 'to',\n",
" 'make',\n",
" 'sure',\n",
" 'no',\n",
" 'one',\n",
" 'is',\n",
" 'asked',\n",
" 'to',\n",
" 'perform',\n",
" 'exercises',\n",
" 'beyond',\n",
" 'their',\n",
" 'body’s',\n",
" 'capability',\n",
" ';',\n",
" 'you',\n",
" 'can',\n",
" 'be',\n",
" 'confident',\n",
" 'that',\n",
" 'you’re',\n",
" 'in',\n",
" 'safe',\n",
" 'hands',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'a',\n",
" 'northeast',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'to',\n",
" 'see',\n",
" 'if',\n",
" 'CrossFit',\n",
" 'is',\n",
" 'the',\n",
" 'right',\n",
" 'workout',\n",
" 'for',\n",
" 'you',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'explore',\n",
" 'it',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Having\",\n",
" 'a',\n",
" 'rough',\n",
" 'day',\n",
" '?',\n",
" 'Overwhelmed',\n",
" '?',\n",
" 'Live',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" '?',\n",
" 'Voodoo',\n",
" 'CrossFit',\n",
" '512',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'forget',\n",
" 'about',\n",
" 'the',\n",
" 'day’s',\n",
" 'troubles',\n",
" 'while',\n",
" 'getting',\n",
" 'in',\n",
" 'a',\n",
" 'super',\n",
" 'powerful',\n",
" 'workout',\n",
" '.',\n",
" 'When',\n",
" 'you',\n",
" 'enter',\n",
" 'the',\n",
" 'magical',\n",
" 'Voodoo',\n",
" 'Box',\n",
" ',',\n",
" 'you',\n",
" 'enter',\n",
" 'a',\n",
" 'special',\n",
" 'kind',\n",
" 'of',\n",
" 'sanctuary',\n",
" 'with',\n",
" 'a',\n",
" 'full-on',\n",
" 'party',\n",
" 'atmosphere',\n",
" 'where',\n",
" 'everyone',\n",
" 'knows',\n",
" 'your',\n",
" 'name',\n",
" '.',\n",
" 'Folks',\n",
" 'here',\n",
" 'want',\n",
" 'to',\n",
" 'know',\n",
" 'you',\n",
" ',',\n",
" 'and',\n",
" 'they',\n",
" 'want',\n",
" 'to',\n",
" 'help',\n",
" 'you',\n",
" 'be',\n",
" 'the',\n",
" 'best',\n",
" 'version',\n",
" 'of',\n",
" 'yourself',\n",
" 'you',\n",
" 'can',\n",
" 'be',\n",
" '.',\n",
" 'So',\n",
" 'if',\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'family',\n",
" 'that',\n",
" 'emphasizes',\n",
" 'fun',\n",
" ',',\n",
" 'it',\n",
" 'doesn’t',\n",
" 'get',\n",
" 'much',\n",
" 'better',\n",
" 'than',\n",
" 'this',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Powerlift\",\n",
" 'your',\n",
" 'way',\n",
" 'to',\n",
" 'an',\n",
" 'enviable',\n",
" 'bod',\n",
" 'at',\n",
" 'this',\n",
" 'North',\n",
" 'Lamar',\n",
" 'studio',\n",
" '.',\n",
" 'Proclaiming',\n",
" 'itself',\n",
" '“the',\n",
" 'most',\n",
" 'social',\n",
" 'gym”',\n",
" 'in',\n",
" 'Austin',\n",
" '(',\n",
" 'tell',\n",
" 'that',\n",
" 'to',\n",
" 'Voodoo',\n",
" ')',\n",
" ',',\n",
" 'community',\n",
" 'is',\n",
" 'king',\n",
" 'at',\n",
" 'CrossFit',\n",
" 'City',\n",
" 'Limits',\n",
" '.',\n",
" 'Not',\n",
" 'only',\n",
" 'will',\n",
" 'you',\n",
" 'satisfy',\n",
" 'your',\n",
" 'most',\n",
" 'intense',\n",
" 'workout',\n",
" 'craving',\n",
" ',',\n",
" 'but',\n",
" 'becoming',\n",
" 'a',\n",
" 'member',\n",
" 'also',\n",
" 'means',\n",
" 'happy',\n",
" 'hours',\n",
" ',',\n",
" 'community',\n",
" 'service',\n",
" 'events',\n",
" ',',\n",
" 'and',\n",
" 'intra-gym',\n",
" 'competitions',\n",
" '.',\n",
" 'So',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'adopt',\n",
" 'a',\n",
" 'group',\n",
" 'of',\n",
" 'like-minded',\n",
" 'friends',\n",
" 'along',\n",
" 'with',\n",
" 'your',\n",
" 'healthy',\n",
" 'lifestyle',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'do',\n",
" 'it',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Eastsiders\",\n",
" ',',\n",
" 'we',\n",
" 'haven’t',\n",
" 'forgotten',\n",
" 'about',\n",
" 'you',\n",
" '!',\n",
" 'This',\n",
" 'Eastside',\n",
" 'studio',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" 'pushing',\n",
" 'further',\n",
" 'than',\n",
" 'you',\n",
" 'thought',\n",
" 'you',\n",
" 'could',\n",
" 'go',\n",
" '.',\n",
" 'Their',\n",
" 'tough',\n",
" 'love',\n",
" 'approach',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'unlimited',\n",
" 'support',\n",
" 'all',\n",
" 'the',\n",
" 'while',\n",
" 'holding',\n",
" 'you',\n",
" 'accountable',\n",
" 'and',\n",
" 'ensuring',\n",
" 'you',\n",
" 'meet',\n",
" 'your',\n",
" 'goals',\n",
" '.',\n",
" 'Kicking',\n",
" 'routine',\n",
" 'to',\n",
" 'the',\n",
" 'curb',\n",
" ',',\n",
" 'the',\n",
" 'CrossFit',\n",
" 'workouts',\n",
" 'here',\n",
" 'are',\n",
" 'intense',\n",
" ',',\n",
" 'variable',\n",
" ',',\n",
" 'and',\n",
" 'designed',\n",
" 'to',\n",
" 'take',\n",
" 'you',\n",
" 'to',\n",
" 'the',\n",
" 'next',\n",
" 'level',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Lots\",\n",
" 'of',\n",
" 'folks',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" 'choose',\n",
" 'to',\n",
" 'get',\n",
" 'their',\n",
" 'WOD',\n",
" 'in',\n",
" 'here',\n",
" ',',\n",
" 'which',\n",
" 'is',\n",
" 'no',\n",
" 'surprise',\n",
" '.',\n",
" 'Coaches',\n",
" 'at',\n",
" 'TexFit',\n",
" 'specialize',\n",
" 'in',\n",
" 'functional',\n",
" ',',\n",
" 'efficient',\n",
" ',',\n",
" 'and',\n",
" 'results-oriented',\n",
" 'fitness',\n",
" '.',\n",
" 'What',\n",
" 'you’ll',\n",
" 'see',\n",
" 'when',\n",
" 'you',\n",
" 'walk',\n",
" 'in',\n",
" 'is',\n",
" 'mostly',\n",
" 'just',\n",
" 'a',\n",
" 'whole',\n",
" 'lot',\n",
" 'of',\n",
" 'space',\n",
" '.',\n",
" 'That’s',\n",
" 'because',\n",
" 'they',\n",
" 'don’t',\n",
" 'want',\n",
" 'machines',\n",
" 'to',\n",
" 'do',\n",
" 'the',\n",
" 'work',\n",
" 'for',\n",
" 'you',\n",
" '–',\n",
" 'they',\n",
" 'want',\n",
" 'your',\n",
" 'body',\n",
" 'to',\n",
" 'be',\n",
" 'the',\n",
" 'machine',\n",
" '.',\n",
" 'With',\n",
" 'an',\n",
" 'ever-changing',\n",
" 'series',\n",
" 'of',\n",
" 'workouts',\n",
" 'around',\n",
" 'gymnastics',\n",
" ',',\n",
" 'weightlifting',\n",
" ',',\n",
" 'cardio',\n",
" ',',\n",
" 'or',\n",
" 'a',\n",
" 'combination',\n",
" 'of',\n",
" 'all',\n",
" 'three',\n",
" ',',\n",
" 'you’ll',\n",
" 'leave',\n",
" 'here',\n",
" 'stronger',\n",
" 'and',\n",
" 'more',\n",
" 'equipped',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'any',\n",
" 'challenge',\n",
" 'life',\n",
" 'throws',\n",
" 'your',\n",
" 'way',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'guys',\n",
" 'and',\n",
" 'gals',\n",
" 'at',\n",
" 'CrossFit',\n",
" 'and',\n",
" 'Fearless',\n",
" 'want',\n",
" 'you',\n",
" 'to',\n",
" 'be',\n",
" 'better',\n",
" '.',\n",
" 'And',\n",
" ',',\n",
" 'well',\n",
" ',',\n",
" 'fearless',\n",
" '!',\n",
" 'They',\n",
" 'want',\n",
" 'you',\n",
" 'to',\n",
" 'aim',\n",
" 'high',\n",
" 'and',\n",
" 'jump',\n",
" 'even',\n",
" 'higher',\n",
" '.',\n",
" 'Emphasizing',\n",
" 'physical',\n",
" 'and',\n",
" 'mental',\n",
" 'strength',\n",
" ',',\n",
" 'community',\n",
" ',',\n",
" 'and',\n",
" 'teamwork',\n",
" ',',\n",
" 'the',\n",
" 'four',\n",
" 'coaches',\n",
" 'at',\n",
" 'this',\n",
" 'South',\n",
" 'Austin',\n",
" 'box',\n",
" 'are',\n",
" 'committed',\n",
" 'to',\n",
" 'supporting',\n",
" 'you',\n",
" 'during',\n",
" 'every',\n",
" 'step',\n",
" 'of',\n",
" 'your',\n",
" 'fitness',\n",
" 'journey',\n",
" '.',\n",
" 'They',\n",
" 'have',\n",
" 'classes',\n",
" 'all',\n",
" 'day',\n",
" 'and',\n",
" 'drop-ins',\n",
" 'are',\n",
" 'welcome',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'have',\n",
" 'every',\n",
" 'opportunity',\n",
" 'to',\n",
" 'fit',\n",
" 'it',\n",
" 'into',\n",
" 'your',\n",
" 'schedule',\n",
" '–',\n",
" 'no',\n",
" 'excuses',\n",
" 'allowed',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'coaches',\n",
" 'at',\n",
" 'CrossFit',\n",
" 'South',\n",
" 'Lamar',\n",
" 'design',\n",
" 'their',\n",
" 'workouts',\n",
" 'to',\n",
" 'be',\n",
" 'broad',\n",
" ',',\n",
" 'general',\n",
" ',',\n",
" 'and',\n",
" 'all-inclusive',\n",
" '.',\n",
" 'They',\n",
" 'believe',\n",
" 'that',\n",
" 'specialization',\n",
" 'is',\n",
" 'the',\n",
" 'enemy',\n",
" ',',\n",
" 'and',\n",
" 'instead',\n",
" 'want',\n",
" 'to',\n",
" 'prepare',\n",
" 'you',\n",
" 'for',\n",
" 'any',\n",
" 'and',\n",
" 'all',\n",
" 'obstacles',\n",
" 'that',\n",
" 'might',\n",
" 'get',\n",
" 'in',\n",
" 'your',\n",
" 'way',\n",
" '.',\n",
" 'So',\n",
" 'whether',\n",
" 'you’re',\n",
" 'a',\n",
" 'cage',\n",
" 'fighter',\n",
" 'who',\n",
" 'wants',\n",
" 'to',\n",
" 'perfect',\n",
" 'your',\n",
" 'moves',\n",
" ...],\n",
" ['[',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'a',\n",
" 'killer',\n",
" 'workout',\n",
" 'in',\n",
" 'an',\n",
" 'environment',\n",
" 'designed',\n",
" 'to',\n",
" 'motivate',\n",
" 'and',\n",
" 'inspire',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'And\",\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" ',',\n",
" 'people',\n",
" 'like',\n",
" 'you',\n",
" 'are',\n",
" 'saddlin’',\n",
" 'up',\n",
" 'and',\n",
" 'getting',\n",
" 'those',\n",
" 'wheels',\n",
" 'turning',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'a',\n",
" 'cycling',\n",
" 'newbie',\n",
" 'or',\n",
" 'a',\n",
" 'seasoned',\n",
" 'vet',\n",
" ',',\n",
" 'you’ll',\n",
" 'find',\n",
" 'plenty',\n",
" 'of',\n",
" 'places',\n",
" 'around',\n",
" 'town',\n",
" 'to',\n",
" 'sprint',\n",
" ',',\n",
" 'climb',\n",
" ',',\n",
" 'pedal',\n",
" ',',\n",
" 'and',\n",
" 'power',\n",
" 'your',\n",
" 'way',\n",
" 'into',\n",
" 'tip',\n",
" 'top',\n",
" 'shape',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'The',\n",
" 'time',\n",
" 'has',\n",
" 'come',\n",
" ',',\n",
" 'gang',\n",
" '.',\n",
" 'SoulCycle',\n",
" 'has',\n",
" 'arrived',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Head',\n",
" 'over',\n",
" 'to',\n",
" 'The',\n",
" 'Domain\\\\xa0for',\n",
" 'a',\n",
" 'heart-racing',\n",
" ',',\n",
" 'adrenalin',\n",
" 'pumping',\n",
" 'workout',\n",
" '.',\n",
" 'Like',\n",
" 'many',\n",
" 'riders',\n",
" 'who’ve',\n",
" 'come',\n",
" 'before',\n",
" 'you',\n",
" ',',\n",
" 'you’ll',\n",
" 'be',\n",
" 'addicted',\n",
" 'in',\n",
" 'no',\n",
" 'time',\n",
" '.',\n",
" 'The',\n",
" 'community',\n",
" 'vibe',\n",
" 'and',\n",
" 'energetic',\n",
" 'instructors',\n",
" 'all',\n",
" 'but',\n",
" 'guarantee',\n",
" 'it',\n",
" '.',\n",
" 'Your',\n",
" 'sweat-drenched',\n",
" 'clothes',\n",
" 'and',\n",
" 'post-workout',\n",
" 'high',\n",
" 'put',\n",
" 'your',\n",
" 'SoulCycle',\n",
" 'experience',\n",
" 'over',\n",
" 'the',\n",
" 'top',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'a',\n",
" 'commitment',\n",
" 'to',\n",
" 'moving',\n",
" 'you',\n",
" 'musically',\n",
" ',',\n",
" 'physically',\n",
" ',',\n",
" 'emotionally',\n",
" ',',\n",
" 'and',\n",
" 'spiritually',\n",
" ',',\n",
" 'the',\n",
" 'folks',\n",
" 'at',\n",
" 'LOVE',\n",
" 'Cycling',\n",
" 'Studio',\n",
" 'downtown',\n",
" 'make',\n",
" 'every',\n",
" 'workout',\n",
" 'fun',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'brand',\n",
" 'new',\n",
" 'to',\n",
" 'the',\n",
" 'cycling',\n",
" 'scene',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'their',\n",
" 'LOVE',\n",
" '101',\n",
" 'class',\n",
" 'where',\n",
" 'you',\n",
" 'can',\n",
" 'learn',\n",
" 'the',\n",
" 'basics',\n",
" 'in',\n",
" 'a',\n",
" 'playful',\n",
" '45-minute',\n",
" 'class',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’ve',\n",
" 'been',\n",
" 'in',\n",
" 'the',\n",
" 'cycling',\n",
" 'game',\n",
" 'for',\n",
" 'a',\n",
" 'while',\n",
" ',',\n",
" 'challenge',\n",
" 'yourself',\n",
" 'with',\n",
" 'Power',\n",
" 'of',\n",
" 'Love',\n",
" '–',\n",
" 'a',\n",
" 'one-hour',\n",
" 'high-intensity',\n",
" 'class',\n",
" 'simulating',\n",
" 'an',\n",
" 'outdoor',\n",
" 'ride',\n",
" 'and',\n",
" 'designed',\n",
" 'to',\n",
" 'be',\n",
" 'extra',\n",
" 'challenging',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'downtown',\n",
" 'cycling',\n",
" 'studio',\n",
" 'has',\n",
" 'your',\n",
" 'enjoyment',\n",
" 'at',\n",
" 'the',\n",
" 'top',\n",
" 'of',\n",
" 'their',\n",
" 'priority',\n",
" 'list',\n",
" '.',\n",
" 'They',\n",
" 'deliver',\n",
" 'a',\n",
" '“workout',\n",
" 'that',\n",
" 'loves',\n",
" 'you',\n",
" 'back”',\n",
" 'with',\n",
" 'intense',\n",
" '45-minute',\n",
" 'rides',\n",
" 'set',\n",
" 'to',\n",
" 'tunes',\n",
" 'that',\n",
" 'will',\n",
" 'motivate',\n",
" 'you',\n",
" 'to',\n",
" 'ride',\n",
" 'faster',\n",
" 'and',\n",
" 'farther',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'any',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'classes',\n",
" 'they',\n",
" 'have',\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'every',\n",
" 'day',\n",
" '.',\n",
" 'But',\n",
" 'we',\n",
" 'especially',\n",
" 'recommend',\n",
" 'the',\n",
" 'Beyoncé',\n",
" 'vs.',\n",
" 'Jay-Z',\n",
" 'RIDE',\n",
" 'for',\n",
" 'some',\n",
" 'music-bumping',\n",
" ',',\n",
" 'heart-pounding',\n",
" 'fun',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'North\",\n",
" 'Austinites',\n",
" 'love',\n",
" 'this',\n",
" 'studio',\n",
" 'for',\n",
" 'its',\n",
" 'focus',\n",
" 'on',\n",
" 'community',\n",
" 'and',\n",
" 'full-body',\n",
" 'cycling',\n",
" 'workouts',\n",
" '.',\n",
" 'All',\n",
" 'cycle',\n",
" 'sessions',\n",
" 'are',\n",
" 'done',\n",
" 'to',\n",
" 'the',\n",
" 'beats',\n",
" 'of',\n",
" 'songs',\n",
" 'from',\n",
" 'a',\n",
" 'carefully',\n",
" 'crafted',\n",
" 'playlist',\n",
" ',',\n",
" 'so',\n",
" 'you’ll',\n",
" 'stay',\n",
" 'rhythmically',\n",
" 'engaged',\n",
" 'from',\n",
" 'start',\n",
" 'to',\n",
" 'finish',\n",
" '(',\n",
" 'you',\n",
" 'might',\n",
" 'even',\n",
" 'catch',\n",
" 'yourself',\n",
" 'singing',\n",
" 'if',\n",
" 'you',\n",
" 'can',\n",
" 'catch',\n",
" 'your',\n",
" 'breath',\n",
" ')',\n",
" '.',\n",
" 'Incorporating',\n",
" 'endurance',\n",
" 'intervals',\n",
" 'and',\n",
" 'free',\n",
" 'weights',\n",
" ',',\n",
" 'every',\n",
" 'body',\n",
" 'part',\n",
" 'will',\n",
" 'get',\n",
" 'a',\n",
" 'lot',\n",
" 'of',\n",
" 'love',\n",
" 'by',\n",
" 'the',\n",
" 'time',\n",
" 'you’re',\n",
" 'done',\n",
" 'with',\n",
" 'these',\n",
" '45-minute',\n",
" 'rides',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'enhance',\n",
" 'your',\n",
" 'strength',\n",
" ',',\n",
" 'up',\n",
" 'your',\n",
" 'cardio',\n",
" ',',\n",
" 'or',\n",
" 'learn',\n",
" 'the',\n",
" 'basics',\n",
" ',',\n",
" 'there’s',\n",
" 'a',\n",
" 'class',\n",
" 'at',\n",
" 'RIZE',\n",
" 'Urban',\n",
" 'Cycling',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" 'Calling',\n",
" 'North',\n",
" 'Austin',\n",
" 'home',\n",
" ',',\n",
" 'the',\n",
" 'studio',\n",
" 'doesn’t',\n",
" 'stop',\n",
" 'at',\n",
" 'cycling',\n",
" '–',\n",
" 'they',\n",
" 'also',\n",
" 'have',\n",
" 'weekly',\n",
" 'meditation',\n",
" 'classes',\n",
" 'and',\n",
" 'yoga',\n",
" 'designed',\n",
" 'especially',\n",
" 'for',\n",
" 'cyclists',\n",
" ',',\n",
" 'so',\n",
" 'your',\n",
" 'mind',\n",
" ',',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'soul',\n",
" 'are',\n",
" 'all',\n",
" 'covered',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'South\",\n",
" 'Austinites',\n",
" ',',\n",
" 'we',\n",
" 'haven’t',\n",
" 'forgotten',\n",
" 'about',\n",
" 'you',\n",
" '!',\n",
" 'Resolute',\n",
" 'Fitness',\n",
" 'is',\n",
" 'your',\n",
" 'new',\n",
" 'go-to',\n",
" 'for',\n",
" 'yoga-cycling',\n",
" 'fusion',\n",
" '.',\n",
" 'Didn’t',\n",
" 'know',\n",
" 'this',\n",
" 'was',\n",
" 'a',\n",
" 'thing',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'choose',\n",
" 'from',\n",
" 'all',\n",
" 'yoga',\n",
" 'or',\n",
" 'all',\n",
" 'cycling',\n",
" 'classes',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'fusion',\n",
" 'classes',\n",
" 'are',\n",
" 'what',\n",
" 'really',\n",
" 'shine',\n",
" 'here',\n",
" '–',\n",
" 'starting',\n",
" 'with',\n",
" '30-minute',\n",
" 'interval',\n",
" 'training',\n",
" 'on',\n",
" 'the',\n",
" 'bike',\n",
" 'and',\n",
" 'finishing',\n",
" 'with',\n",
" '30',\n",
" 'minutes',\n",
" 'of',\n",
" 'strength-building',\n",
" 'yoga',\n",
" ',',\n",
" 'no',\n",
" 'fitness',\n",
" 'stone',\n",
" 'is',\n",
" 'left',\n",
" 'unturned',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'like',\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'fitness',\n",
" 'fusion',\n",
" 'and',\n",
" 'you',\n",
" 'live',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'folks',\n",
" 'at',\n",
" 'Kor180',\n",
" '.',\n",
" 'They',\n",
" 'combine',\n",
" 'Pilates',\n",
" 'reformers',\n",
" 'and',\n",
" 'state-of-the-art',\n",
" 'bikes',\n",
" 'for',\n",
" 'the',\n",
" 'ultimate',\n",
" 'in',\n",
" 'full-body',\n",
" 'workouts',\n",
" '.',\n",
" 'Be',\n",
" 'ready',\n",
" 'to',\n",
" 'cover',\n",
" 'all',\n",
" 'your',\n",
" 'bases',\n",
" 'here',\n",
" '.',\n",
" 'With',\n",
" 'strength',\n",
" 'training',\n",
" ',',\n",
" 'cardio',\n",
" ',',\n",
" 'and',\n",
" 'functional',\n",
" 'stretching',\n",
" ',',\n",
" 'it’s',\n",
" 'like',\n",
" 'an',\n",
" 'all-you-can-eat',\n",
" 'fitness',\n",
" 'buffet',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Hey\",\n",
" ',',\n",
" 'Westlakers',\n",
" ',',\n",
" 'how',\n",
" 'lucky',\n",
" 'you',\n",
" 'are',\n",
" 'to',\n",
" 'have',\n",
" 'CycleFit',\n",
" 'in',\n",
" 'your',\n",
" 'backyard',\n",
" '?',\n",
" '!',\n",
" 'Very',\n",
" '.',\n",
" 'The',\n",
" 'cycling',\n",
" 'classes',\n",
" 'at',\n",
" 'this',\n",
" 'studio',\n",
" 'are',\n",
" 'very',\n",
" 'detail-oriented',\n",
" 'when',\n",
" 'it',\n",
" 'comes',\n",
" 'to',\n",
" 'entertainment',\n",
" '.',\n",
" 'The',\n",
" 'lights',\n",
" 'are',\n",
" 'low',\n",
" ',',\n",
" 'the',\n",
" 'music',\n",
" 'is',\n",
" 'loud',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'big',\n",
" 'screen',\n",
" 'at',\n",
" 'the',\n",
" 'front',\n",
" 'tells',\n",
" 'you',\n",
" 'how',\n",
" 'far',\n",
" 'you’ve',\n",
" 'come',\n",
" '.',\n",
" 'The',\n",
" 'boutique-feel',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'a',\n",
" 'strong',\n",
" 'sense',\n",
" 'of',\n",
" 'community',\n",
" 'while',\n",
" 'the',\n",
" 'workouts',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'a',\n",
" 'stronger',\n",
" 'self',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'studio',\n",
" 'is',\n",
" 'your',\n",
" 'favorite',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" 'at',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'cycling',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'studio',\n",
" 'is',\n",
" 'your',\n",
" 'favorite',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" 'at',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'cycling',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'warm',\n",
" 'temps',\n",
" 'and',\n",
" 'sunny',\n",
" 'days',\n",
" 'make',\n",
" 'it',\n",
" 'tough',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'get',\n",
" 'into',\n",
" 'the',\n",
" 'holiday',\n",
" 'spirit',\n",
" ',',\n",
" 'then',\n",
" 'it’s',\n",
" 'time',\n",
" 'to',\n",
" 'rejoice',\n",
" '!',\n",
" 'We',\n",
" 'found',\n",
" 'a',\n",
" 'whole',\n",
" 'bunch',\n",
" 'of',\n",
" 'festive',\n",
" 'fitness',\n",
" 'events',\n",
" 'to',\n",
" 'make',\n",
" 'your',\n",
" 'month',\n",
" 'a',\n",
" 'little\\\\xa0more',\n",
" 'merry',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'can',\n",
" 'escape',\n",
" 'to',\n",
" 'a',\n",
" 'rooftop',\n",
" 'winter',\n",
" 'wonderland',\n",
" 'for',\n",
" 'ice',\n",
" 'skating',\n",
" ',',\n",
" 'go',\n",
" 'for',\n",
" 'a',\n",
" 'jingle',\n",
" 'bell',\n",
" 'jog',\n",
" ',',\n",
" 'or',\n",
" 'take',\n",
" 'on',\n",
" 'a',\n",
" 'workout',\n",
" 'circuit',\n",
" 'through',\n",
" 'the',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you’d',\n",
" 'prefer',\n",
" 'to',\n",
" 'take',\n",
" 'a',\n",
" 'break',\n",
" 'from',\n",
" 'the',\n",
" 'holiday',\n",
" 'mayhem',\n",
" 'and',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'sweat',\n",
" 'on–well',\n",
" ',',\n",
" 'there’s',\n",
" 'rock',\n",
" 'climbing',\n",
" ',',\n",
" 'yoga',\n",
" ',',\n",
" 'and',\n",
" 'boxing',\n",
" 'events',\n",
" 'just',\n",
" 'waiting',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'come',\n",
" 'out',\n",
" 'and',\n",
" 'show',\n",
" 'your',\n",
" 'stuff',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'point',\n",
" 'is',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'fitness',\n",
" 'events',\n",
" 'happening',\n",
" 'this',\n",
" 'month',\n",
" ',',\n",
" 'no',\n",
" 'matter',\n",
" 'your',\n",
" 'holiday',\n",
" 'sensibilities',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You’ll\",\n",
" 'have',\n",
" 'to',\n",
" 'make',\n",
" 'a',\n",
" 'trek',\n",
" 'out',\n",
" 'to',\n",
" 'nearby',\n",
" 'Kyle',\n",
" 'to',\n",
" 'take',\n",
" 'advantage',\n",
" 'of',\n",
" 'this',\n",
" 'event',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you’re',\n",
" 'a',\n",
" 'dedicated',\n",
" 'CrossFitter',\n",
" 'with',\n",
" 'a',\n",
" 'taste',\n",
" 'for',\n",
" 'competition',\n",
" ',',\n",
" 'it’s',\n",
" 'well',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" 'All',\n",
" 'skill-levels',\n",
" 'are',\n",
" 'invited',\n",
" 'to',\n",
" 'compete',\n",
" 'in',\n",
" 'these',\n",
" 'holiday-themed',\n",
" 'WODs',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'top',\n",
" 'three',\n",
" 'teams',\n",
" 'in',\n",
" 'each',\n",
" 'division',\n",
" 'will',\n",
" 'win',\n",
" 'some',\n",
" 'fabulous',\n",
" 'prizes',\n",
" '.',\n",
" 'So',\n",
" 'grab',\n",
" 'your',\n",
" 'favorite',\n",
" 'workout',\n",
" 'partner',\n",
" 'and',\n",
" 'head',\n",
" 'on',\n",
" 'out',\n",
" '!',\n",
" 'And',\n",
" 'with',\n",
" 'WOD',\n",
" 'names',\n",
" 'like',\n",
" 'Sleigh',\n",
" 'Ride',\n",
" 'and',\n",
" 'Oh',\n",
" 'Holy',\n",
" 'Squats',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'satisfy',\n",
" 'both',\n",
" 'your',\n",
" 'fitness',\n",
" 'and',\n",
" 'your',\n",
" 'festive',\n",
" 'fix',\n",
" '.',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'Sure\",\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'participate',\n",
" 'in',\n",
" 'a',\n",
" 'regular',\n",
" 'old',\n",
" 'pub',\n",
" 'crawl',\n",
" '.',\n",
" 'OR',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'get',\n",
" 'delighted',\n",
" 'in',\n",
" 'a',\n",
" 'sparkling',\n",
" ',',\n",
" 'magical',\n",
" ',',\n",
" 'holiday',\n",
" 'Fit',\n",
" 'Crawl',\n",
" 'from',\n",
" 'inside',\n",
" 'of',\n",
" 'the',\n",
" 'oh-so-wonderful',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" 'in',\n",
" 'Zilker',\n",
" 'Park',\n",
" '!',\n",
" 'You’ll',\n",
" 'be',\n",
" 'able',\n",
" 'to',\n",
" 'see',\n",
" 'the',\n",
" 'lights',\n",
" 'before',\n",
" 'they’re',\n",
" 'open',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'while',\n",
" 'you',\n",
" 'go',\n",
" 'through',\n",
" 'a',\n",
" 'series',\n",
" 'of',\n",
" 'quick',\n",
" 'workouts',\n",
" 'under',\n",
" 'their',\n",
" 'glow',\n",
" '.',\n",
" 'All',\n",
" 'levels',\n",
" 'and',\n",
" 'experiences',\n",
" 'are',\n",
" 'welcome',\n",
" 'to',\n",
" 'enjoy',\n",
" 'this',\n",
" 'casual',\n",
" 'event',\n",
" '.',\n",
" 'Just',\n",
" 'be',\n",
" 'sure',\n",
" 'you’re',\n",
" 'okay',\n",
" 'with',\n",
" 'light',\n",
" 'running',\n",
" 'and',\n",
" 'three',\n",
" '15-minute',\n",
" 'workouts',\n",
" '.',\n",
" 'This',\n",
" 'event',\n",
" 'fills',\n",
" 'up',\n",
" 'fast',\n",
" ',',\n",
" 'so',\n",
" 'get',\n",
" 'your',\n",
" 'tickets',\n",
" 'soon',\n",
" '!',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'North\",\n",
" 'Austin',\n",
" 'Rock',\n",
" 'Gym',\n",
" 'and',\n",
" 'Texas',\n",
" 'Rock',\n",
" 'Climbing',\n",
" 'have',\n",
" 'teamed',\n",
" 'up',\n",
" 'to',\n",
" 'deliver',\n",
" 'an',\n",
" 'awesome',\n",
" 'climbing',\n",
" 'event',\n",
" 'benefitting',\n",
" 'the',\n",
" 'greater',\n",
" 'good',\n",
" 'of',\n",
" 'the',\n",
" 'climbing',\n",
" 'community',\n",
" '.',\n",
" 'From',\n",
" 'their',\n",
" 'gym',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'the',\n",
" 'opportunity',\n",
" 'to',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'a',\n",
" 'night',\n",
" 'of',\n",
" 'fun',\n",
" 'climbs',\n",
" ',',\n",
" 'nosh',\n",
" 'on',\n",
" 'delicious',\n",
" 'pizza',\n",
" 'and',\n",
" 'beer',\n",
" 'from',\n",
" 'Pizza',\n",
" 'Pinthouse',\n",
" ',',\n",
" 'and',\n",
" 'chat',\n",
" 'with',\n",
" 'a',\n",
" 'whole',\n",
" 'bunch',\n",
" 'of',\n",
" 'fellow',\n",
" 'climbing',\n",
" 'enthusiasts',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" '50',\n",
" '%',\n",
" 'of',\n",
" 'your',\n",
" 'registration',\n",
" 'fee',\n",
" 'will',\n",
" 'go',\n",
" 'to',\n",
" 'Texas',\n",
" 'Rock',\n",
" 'Climbing',\n",
" 'to',\n",
" 'ensure',\n",
" 'Austin',\n",
" 'keeps',\n",
" 'cultivating',\n",
" 'its',\n",
" 'community',\n",
" 'crags',\n",
" ',',\n",
" 'so',\n",
" 'everybody',\n",
" 'wins',\n",
" '!',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'It\",\n",
" 'simply',\n",
" 'isn’t',\n",
" 'the',\n",
" 'holidays',\n",
" 'without',\n",
" 'a',\n",
" 'good',\n",
" 'ol’',\n",
" 'fashioned',\n",
" 'Jingle',\n",
" 'Bell',\n",
" 'run',\n",
" '.',\n",
" 'For',\n",
" '20',\n",
" 'years',\n",
" 'Austinites',\n",
" 'have',\n",
" 'been',\n",
" 'running',\n",
" 'this',\n",
" 'fun',\n",
" 'family',\n",
" '5K',\n",
" 'to',\n",
" 'get',\n",
" 'into',\n",
" 'the',\n",
" 'festive',\n",
" 'spirit',\n",
" ',',\n",
" 'and',\n",
" 'this',\n",
" 'year',\n",
" 'is',\n",
" 'no',\n",
" 'exception',\n",
" '.',\n",
" 'To',\n",
" 'get',\n",
" 'in',\n",
" 'on',\n",
" 'the',\n",
" 'action',\n",
" ',',\n",
" 'head',\n",
" 'to',\n",
" 'The',\n",
" 'Domain',\n",
" ',',\n",
" 'rain',\n",
" 'or',\n",
" 'shine',\n",
" ',',\n",
" 'while',\n",
" 'donning',\n",
" 'your',\n",
" 'finest',\n",
" 'holiday',\n",
" 'garb',\n",
" '–',\n",
" 'think',\n",
" 'Santa',\n",
" 'hats',\n",
" ',',\n",
" 'jingle',\n",
" 'bells',\n",
" ',',\n",
" 'elf',\n",
" 'ears',\n",
" ',',\n",
" 'and',\n",
" 'anything',\n",
" 'else',\n",
" 'your',\n",
" 'seasonal',\n",
" 'spirit',\n",
" 'deems',\n",
" 'fit',\n",
" '.',\n",
" 'From',\n",
" 'there',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'run',\n",
" 'the',\n",
" 'route',\n",
" 'at',\n",
" 'your',\n",
" 'own',\n",
" 'pace',\n",
" 'and',\n",
" 'end',\n",
" 'it',\n",
" 'with',\n",
" 'a',\n",
" 'meal',\n",
" 'at',\n",
" 'any',\n",
" 'number',\n",
" 'of',\n",
" 'the',\n",
" 'surrounding',\n",
" 'tasty',\n",
" 'grub',\n",
" 'spots',\n",
" '.',\n",
" 'December',\n",
" '11',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'very',\n",
" 'few',\n",
" 'shortcomings',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'climate',\n",
" 'is',\n",
" 'that',\n",
" 'we',\n",
" 'don’t',\n",
" 'get',\n",
" 'many',\n",
" 'opportunities',\n",
" 'to',\n",
" 'have',\n",
" 'a',\n",
" 'wintery-white',\n",
" 'holiday',\n",
" 'season',\n",
" '.',\n",
" 'Thankfully',\n",
" ',',\n",
" 'each',\n",
" 'year',\n",
" 'Whole',\n",
" 'Foods',\n",
" 'throws',\n",
" 'us',\n",
" 'a',\n",
" 'seasonal',\n",
" 'bone',\n",
" 'and',\n",
" 'transforms',\n",
" 'the',\n",
" 'Plaza',\n",
" 'into',\n",
" 'a',\n",
" 'public',\n",
" 'ice',\n",
" 'skating',\n",
" 'rink',\n",
" 'bursting',\n",
" 'with',\n",
" 'holiday',\n",
" 'vibes',\n",
" '.',\n",
" 'For',\n",
" 'a',\n",
" '$',\n",
" '10',\n",
" 'flat',\n",
" 'rate',\n",
" '(',\n",
" 'rental',\n",
" 'skates',\n",
" 'included',\n",
" '!',\n",
" ')',\n",
" 'you',\n",
" 'can',\n",
" 'glide',\n",
" 'around',\n",
" 'for',\n",
" 'as',\n",
" 'long',\n",
" 'as',\n",
" 'you’d',\n",
" 'like',\n",
" ',',\n",
" 'seven',\n",
" 'days',\n",
" 'per',\n",
" 'week',\n",
" ',',\n",
" 'while',\n",
" 'enjoying',\n",
" 'tunes',\n",
" 'and',\n",
" 'a',\n",
" 'rooftop',\n",
" 'view',\n",
" 'of',\n",
" 'downtown',\n",
" '.',\n",
" 'It’s',\n",
" 'pretty',\n",
" 'much',\n",
" 'the',\n",
" 'perfect',\n",
" 'way',\n",
" 'to',\n",
" 'spend',\n",
" 'a',\n",
" 'winter',\n",
" 'day',\n",
" '.',\n",
" 'But',\n",
" 'that’s',\n",
" 'not',\n",
" 'all',\n",
" '!',\n",
" 'You',\n",
" 'can',\n",
" 'also',\n",
" 'get',\n",
" 'your',\n",
" 'do-good',\n",
" 'gold',\n",
" 'star',\n",
" 'for',\n",
" 'the',\n",
" 'month',\n",
" 'if',\n",
" 'you',\n",
" 'lace',\n",
" 'up',\n",
" 'your',\n",
" 'skates',\n",
" 'for',\n",
" 'charity',\n",
" 'at',\n",
" 'the',\n",
" 'rink’s',\n",
" 'mid-month',\n",
" 'Skate',\n",
" 'for',\n",
" 'a',\n",
" 'Cause',\n",
" 'event',\n",
" 'benefitting',\n",
" 'Boneshaker',\n",
" '.',\n",
" 'December',\n",
" '18',\n",
" \"'\",\n",
" ',',\n",
" \"'Fresh\",\n",
" 'air',\n",
" ',',\n",
" 'a',\n",
" 'soul-nurturing',\n",
" 'yoga',\n",
" 'session',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'way',\n",
" 'to',\n",
" 'support',\n",
" 'young',\n",
" 'women',\n",
" 'in',\n",
" 'the',\n",
" 'community',\n",
" '?',\n",
" 'Sounds',\n",
" 'like',\n",
" 'a',\n",
" 'stellar',\n",
" 'day',\n",
" 'to',\n",
" 'us',\n",
" '.',\n",
" 'The',\n",
" 'Young',\n",
" 'Women’s',\n",
" 'Alliance',\n",
" 'is',\n",
" 'putting',\n",
" 'on',\n",
" 'a',\n",
" 'community',\n",
" 'yoga',\n",
" 'fundraiser',\n",
" 'from',\n",
" 'the',\n",
" 'scenically-delightful',\n",
" 'location',\n",
" 'of',\n",
" 'Auditorium',\n",
" 'Shores',\n",
" '.',\n",
" 'Proceeds',\n",
" 'go',\n",
" 'to',\n",
" 'the',\n",
" 'Girls',\n",
" 'Empowerment',\n",
" 'Network',\n",
" '–',\n",
" 'all',\n",
" 'you',\n",
" 'have',\n",
" 'to',\n",
" 'do',\n",
" 'is',\n",
" 'bring',\n",
" 'your',\n",
" 'own',\n",
" 'yoga',\n",
" 'mat',\n",
" 'and',\n",
" 'any',\n",
" 'donation',\n",
" 'you',\n",
" 'can',\n",
" 'afford',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'rest',\n",
" 'is',\n",
" 'all',\n",
" 'taken',\n",
" 'care',\n",
" 'of',\n",
" '.',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'Jarrett\",\n",
" 'and',\n",
" 'Jenny',\n",
" 'Customized',\n",
" 'Self',\n",
" 'Defense',\n",
" 'is',\n",
" 'joining',\n",
" 'forces',\n",
" 'with',\n",
" 'professional',\n",
" 'boxing',\n",
" 'coach',\n",
" ',',\n",
" 'Alfred',\n",
" 'Ortiz',\n",
" ',',\n",
" 'to',\n",
" 'bring',\n",
" 'you',\n",
" 'a',\n",
" 'day',\n",
" 'of',\n",
" 'punching',\n",
" ',',\n",
" 'brunching',\n",
" 'goodness',\n",
" '.',\n",
" 'From',\n",
" 'their',\n",
" 'South',\n",
" 'Austin',\n",
" 'gym',\n",
" ',',\n",
" 'you’ll',\n",
" 'spend',\n",
" '90',\n",
" 'minutes',\n",
" 'working',\n",
" 'on',\n",
" 'punching',\n",
" 'combinations',\n",
" 'with',\n",
" 'a',\n",
" 'self-defense',\n",
" 'twist',\n",
" ',',\n",
" 'after',\n",
" 'which',\n",
" 'you’ll',\n",
" 'head',\n",
" 'to',\n",
" 'District',\n",
" 'Kitchen',\n",
" 'for',\n",
" 'some',\n",
" 'brunch',\n",
" 'noms',\n",
" 'and',\n",
" 'social',\n",
" 'banter',\n",
" '.',\n",
" 'It’s',\n",
" 'open',\n",
" 'to',\n",
" 'all',\n",
" 'fitness',\n",
" 'and',\n",
" 'experience',\n",
" 'levels',\n",
" ',',\n",
" 'so',\n",
" 'there’s',\n",
" 'no',\n",
" 'reason',\n",
" 'not',\n",
" 'to',\n",
" 'take',\n",
" 'advantage',\n",
" 'of',\n",
" 'this',\n",
" 'fitness',\n",
" 'fun',\n",
" '.',\n",
" 'December',\n",
" '4',\n",
" \"'\",\n",
" ',',\n",
" \"'Central\",\n",
" 'Texas',\n",
" 'cyclists',\n",
" 'unite',\n",
" '!',\n",
" 'You’re',\n",
" 'invited',\n",
" 'to',\n",
" 'the',\n",
" 'very',\n",
" 'first',\n",
" 'social',\n",
" 'ride',\n",
" 'of',\n",
" 'the',\n",
" '2017',\n",
" 'Tour',\n",
" 'de',\n",
" 'Cure',\n",
" 'season',\n",
" '.',\n",
" 'What',\n",
" ',',\n",
" 'exactly',\n",
" ',',\n",
" 'does',\n",
" 'that',\n",
" 'mean',\n",
" '?',\n",
" 'It',\n",
" 'means',\n",
" 'you',\n",
" ',',\n",
" 'and',\n",
" 'many',\n",
" 'other',\n",
" 'central',\n",
" 'Texas',\n",
" 'cycling',\n",
" 'fiends',\n",
" 'will',\n",
" 'head',\n",
" 'out',\n",
" 'to',\n",
" 'San',\n",
" 'Marcos',\n",
" 'for',\n",
" 'a',\n",
" 'three-hour',\n",
" 'leisurely',\n",
" 'ride',\n",
" 'around',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'Coffee',\n",
" 'and',\n",
" 'snacks',\n",
" 'will',\n",
" 'be',\n",
" 'available',\n",
" 'for',\n",
" 'all',\n",
" 'riders',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'a',\n",
" 'friend',\n",
" ',',\n",
" 'don',\n",
" 'a',\n",
" 'Tour',\n",
" 'de',\n",
" 'Cure',\n",
" 'jersey',\n",
" 'if',\n",
" 'you’ve',\n",
" 'got',\n",
" 'one',\n",
" ',',\n",
" 'and',\n",
" 'get',\n",
" 'ready',\n",
" 'to',\n",
" 'enjoy',\n",
" 'the',\n",
" 'day',\n",
" '.',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'of',\n",
" 'these',\n",
" 'Festive',\n",
" 'happenings',\n",
" 'is',\n",
" 'your',\n",
" 'favorite',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'of',\n",
" 'these',\n",
" 'Festive',\n",
" 'happenings',\n",
" 'is',\n",
" 'your',\n",
" 'favorite',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" ...],\n",
" ['[',\n",
" \"'You’ve\",\n",
" 'logged',\n",
" 'some',\n",
" 'serious',\n",
" 'mileage',\n",
" ',',\n",
" 'lifted',\n",
" 'all',\n",
" 'of',\n",
" 'the',\n",
" 'weights',\n",
" ',',\n",
" 'and',\n",
" 'fueled',\n",
" 'up',\n",
" 'on',\n",
" 'protein',\n",
" 'and',\n",
" 'greens',\n",
" '(',\n",
" 'right',\n",
" '?',\n",
" ')',\n",
" '.',\n",
" 'Now',\n",
" 'it’s',\n",
" 'time',\n",
" 'to',\n",
" 'treat',\n",
" 'yourself',\n",
" '.',\n",
" 'Calories',\n",
" ',',\n",
" 'hah',\n",
" '!',\n",
" 'What',\n",
" 'calories',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'It’s\",\n",
" 'no',\n",
" 'secret',\n",
" 'that',\n",
" 'Austin',\n",
" 'has',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'great',\n",
" 'grub',\n",
" ',',\n",
" 'which',\n",
" 'is',\n",
" 'awesome',\n",
" '.',\n",
" 'Except',\n",
" 'when',\n",
" 'trying',\n",
" 'to',\n",
" 'chow',\n",
" 'down',\n",
" 'on',\n",
" 'cheat',\n",
" 'day',\n",
" '.',\n",
" 'We',\n",
" 'want',\n",
" 'to',\n",
" 'make',\n",
" 'it',\n",
" 'easy',\n",
" 'on',\n",
" 'you',\n",
" ',',\n",
" 'so',\n",
" 'we',\n",
" 'put',\n",
" 'together',\n",
" 'some',\n",
" 'of',\n",
" 'the',\n",
" 'all',\n",
" 'time',\n",
" 'great',\n",
" 'cheat',\n",
" 'worthy',\n",
" 'meals',\n",
" 'in',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'in',\n",
" 'the',\n",
" 'mood',\n",
" 'for',\n",
" 'the',\n",
" 'best',\n",
" 'burger',\n",
" 'of',\n",
" 'your',\n",
" 'life',\n",
" 'or',\n",
" 'an',\n",
" 'ice',\n",
" 'cream',\n",
" 'sundae',\n",
" 'sent',\n",
" 'from',\n",
" 'heaven',\n",
" ',',\n",
" 'Austin’s',\n",
" 'got',\n",
" 'you',\n",
" 'covered',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Doughnut\",\n",
" '+',\n",
" 'hamburger',\n",
" '=',\n",
" 'cheat',\n",
" 'day',\n",
" 'bliss',\n",
" '.',\n",
" 'Gourdough’s',\n",
" 'on',\n",
" 'S.',\n",
" 'Lamar',\n",
" 'takes',\n",
" 'indulgence',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" 'level',\n",
" '.',\n",
" 'They',\n",
" 'make',\n",
" 'some',\n",
" 'of',\n",
" 'the',\n",
" 'most',\n",
" 'delicious',\n",
" 'burgers',\n",
" 'in',\n",
" 'the',\n",
" 'game',\n",
" ',',\n",
" 'and',\n",
" 'instead',\n",
" 'of',\n",
" 'a',\n",
" 'bun',\n",
" 'they',\n",
" 'use—you',\n",
" 'guessed',\n",
" 'it—fried',\n",
" 'doughnut',\n",
" 'goodness',\n",
" '.',\n",
" 'You',\n",
" 'obviously',\n",
" 'can’t',\n",
" 'go',\n",
" 'wrong',\n",
" 'with',\n",
" 'this',\n",
" 'formula',\n",
" ',',\n",
" 'so',\n",
" 'pretty',\n",
" 'much',\n",
" 'everything',\n",
" 'on',\n",
" 'the',\n",
" 'menu',\n",
" 'is',\n",
" 'awesome',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'Ron',\n",
" 'Burgundy',\n",
" 'with',\n",
" 'bacon',\n",
" ',',\n",
" 'fried',\n",
" 'egg',\n",
" ',',\n",
" 'guacamole',\n",
" ',',\n",
" 'and',\n",
" 'mayo',\n",
" 'encased',\n",
" 'in',\n",
" 'a',\n",
" 'savory',\n",
" ',',\n",
" 'soft',\n",
" 'doughnut',\n",
" 'will',\n",
" 'have',\n",
" 'you',\n",
" 'weak',\n",
" 'in',\n",
" 'the',\n",
" 'knees',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'might',\n",
" 'not',\n",
" 'know',\n",
" 'it',\n",
" ',',\n",
" 'but',\n",
" 'you’ve',\n",
" 'been',\n",
" 'waiting',\n",
" 'for',\n",
" 'these',\n",
" 'scrumptious',\n",
" 'treats',\n",
" 'all',\n",
" 'week',\n",
" '.',\n",
" 'Imagine',\n",
" 'sitting',\n",
" 'down',\n",
" 'to',\n",
" 'eat',\n",
" 'after',\n",
" 'a',\n",
" 'long',\n",
" 'night',\n",
" 'out',\n",
" 'and',\n",
" 'sinking',\n",
" 'your',\n",
" 'teeth',\n",
" 'into',\n",
" 'a',\n",
" 'crunchy',\n",
" ',',\n",
" 'cheesy',\n",
" ',',\n",
" 'steamy',\n",
" 'bite',\n",
" 'of',\n",
" 'the',\n",
" 'Tex-Mex-style',\n",
" 'scrambled',\n",
" 'eggs',\n",
" 'of',\n",
" 'your',\n",
" 'dreams',\n",
" '.',\n",
" 'Migas',\n",
" 'at',\n",
" 'Mi',\n",
" 'Madre’s',\n",
" 'are',\n",
" 'a',\n",
" 'big',\n",
" 'ol’',\n",
" 'slice',\n",
" 'of',\n",
" 'wonderful',\n",
" 'right',\n",
" 'on',\n",
" 'your',\n",
" 'plate',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" ',',\n",
" 'there’s',\n",
" 'no',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'reward',\n",
" 'yourself',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'It\",\n",
" 'comes',\n",
" 'as',\n",
" 'no',\n",
" 'surprise',\n",
" 'why',\n",
" 'Eastsiders',\n",
" 'flock',\n",
" 'to',\n",
" 'this',\n",
" 'place',\n",
" '.',\n",
" 'The',\n",
" 'bread',\n",
" 'is',\n",
" 'made',\n",
" 'in-house',\n",
" ',',\n",
" 'the',\n",
" 'beer',\n",
" 'on',\n",
" 'tap',\n",
" 'is',\n",
" 'always',\n",
" 'unique',\n",
" ',',\n",
" 'and',\n",
" 'you',\n",
" 'can',\n",
" 'play',\n",
" 'ping',\n",
" 'pong',\n",
" 'in',\n",
" 'the',\n",
" 'back',\n",
" 'yard',\n",
" 'to',\n",
" 'the',\n",
" 'sounds',\n",
" 'of',\n",
" 'live',\n",
" 'music',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'real',\n",
" 'shining',\n",
" 'star',\n",
" 'here',\n",
" 'is',\n",
" 'the',\n",
" 'beer',\n",
" 'cheese',\n",
" '.',\n",
" 'Paired',\n",
" 'with',\n",
" 'a',\n",
" 'warm',\n",
" ',',\n",
" 'house-made',\n",
" 'soft',\n",
" 'pretzel',\n",
" ',',\n",
" 'grubbing',\n",
" 'on',\n",
" 'this',\n",
" 'dangerous',\n",
" 'combination',\n",
" 'is',\n",
" 'so',\n",
" 'good',\n",
" 'you’ll',\n",
" 'be',\n",
" 'hard-pressed',\n",
" 'not',\n",
" 'to',\n",
" 'make',\n",
" 'every',\n",
" 'day',\n",
" 'cheat',\n",
" 'day',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Hey\",\n",
" ',',\n",
" 'did',\n",
" 'you',\n",
" 'read',\n",
" 'that',\n",
" '?',\n",
" 'We',\n",
" 'said',\n",
" ':',\n",
" 'Carrot',\n",
" 'Cake',\n",
" 'French',\n",
" 'Toast',\n",
" '.',\n",
" 'This',\n",
" 'life-changing',\n",
" 'meal',\n",
" 'in',\n",
" 'SoCo',\n",
" 'tastes',\n",
" 'like',\n",
" 'everything',\n",
" 'you’ve',\n",
" 'ever',\n",
" 'loved',\n",
" '.',\n",
" 'We’re',\n",
" 'talking',\n",
" 'carrot',\n",
" 'cake',\n",
" 'cooked',\n",
" 'in',\n",
" 'cinnamon',\n",
" 'vanilla',\n",
" 'egg',\n",
" 'batter',\n",
" ',',\n",
" 'topped',\n",
" 'with',\n",
" 'cream',\n",
" 'cheese-pecan',\n",
" 'syrup',\n",
" '(',\n",
" 'seriously',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'a',\n",
" 'real',\n",
" 'thing',\n",
" ')',\n",
" '.',\n",
" 'Add',\n",
" 'some',\n",
" 'applewood',\n",
" 'smoked',\n",
" 'bacon',\n",
" 'or',\n",
" 'smoked',\n",
" 'wild',\n",
" 'boar',\n",
" 'sausage',\n",
" ',',\n",
" 'and',\n",
" 'you',\n",
" 'won’t',\n",
" 'even',\n",
" 'remember',\n",
" 'your',\n",
" 'own',\n",
" 'name',\n",
" 'while',\n",
" 'you’re',\n",
" 'chowing',\n",
" 'down',\n",
" 'on',\n",
" 'this',\n",
" 'glorious',\n",
" 'wonder',\n",
" 'of',\n",
" 'the',\n",
" 'universe',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Nestled\",\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" ',',\n",
" 'the',\n",
" 'soul',\n",
" 'food',\n",
" 'at',\n",
" 'Nubian',\n",
" 'Queen',\n",
" 'Lola’s',\n",
" 'will',\n",
" 'catapult',\n",
" 'your',\n",
" 'spirit',\n",
" 'to',\n",
" 'new',\n",
" 'heights',\n",
" '.',\n",
" 'Our',\n",
" 'favorite',\n",
" ',',\n",
" 'the',\n",
" 'Jumbo',\n",
" 'Chicken',\n",
" 'Wing',\n",
" 'Dinner',\n",
" 'comes',\n",
" 'with',\n",
" 'a',\n",
" 'heaping',\n",
" 'pile',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" 'fried',\n",
" 'chicken',\n",
" 'you’ve',\n",
" 'ever',\n",
" 'had',\n",
" ',',\n",
" 'and',\n",
" 'your',\n",
" 'choice',\n",
" 'of',\n",
" 'two',\n",
" 'mouth-watering',\n",
" 'sides',\n",
" '.',\n",
" 'We',\n",
" 'recommend',\n",
" 'the',\n",
" 'mac',\n",
" '&',\n",
" 'cheese',\n",
" 'and',\n",
" 'candied',\n",
" 'yams',\n",
" 'for',\n",
" 'ultimate',\n",
" 'cheat',\n",
" 'day',\n",
" 'satisfaction',\n",
" '.',\n",
" 'Top',\n",
" 'it',\n",
" 'off',\n",
" 'with',\n",
" 'bread',\n",
" 'pudding',\n",
" 'soaked',\n",
" 'in',\n",
" 'bourbon',\n",
" 'sauce',\n",
" ',',\n",
" 'and',\n",
" 'use',\n",
" 'it',\n",
" 'as',\n",
" 'fuel',\n",
" 'to',\n",
" 'fill',\n",
" 'next',\n",
" 'week’s',\n",
" 'tank',\n",
" '.',\n",
" 'Then',\n",
" 'repeat',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'While\",\n",
" 'everyone',\n",
" 'else',\n",
" 'in',\n",
" 'the',\n",
" 'city',\n",
" 'is',\n",
" 'waiting',\n",
" 'in',\n",
" 'the',\n",
" 'hours-long',\n",
" 'line',\n",
" 'at',\n",
" 'Franklin',\n",
" 'BBQ',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'slip',\n",
" 'on',\n",
" 'over',\n",
" 'to',\n",
" 'the',\n",
" 'Eastside',\n",
" 'for',\n",
" 'Micklethwait',\n",
" 'Craft',\n",
" 'Meats',\n",
" ',',\n",
" 'Austin’s',\n",
" 'better-kept',\n",
" 'BBQ',\n",
" 'secret',\n",
" '.',\n",
" 'This',\n",
" 'food',\n",
" 'truck',\n",
" 'doesn’t',\n",
" 'look',\n",
" 'like',\n",
" 'much',\n",
" 'on',\n",
" 'the',\n",
" 'outside',\n",
" ',',\n",
" 'but',\n",
" 'what',\n",
" 'they',\n",
" 'deliver',\n",
" 'is',\n",
" 'everything',\n",
" 'you',\n",
" 'could',\n",
" 'ever',\n",
" 'want',\n",
" 'in',\n",
" 'a',\n",
" 'cheat',\n",
" 'meal',\n",
" '.',\n",
" 'We',\n",
" 'go',\n",
" 'nuts',\n",
" 'for',\n",
" 'their',\n",
" 'Frito',\n",
" 'Pie',\n",
" ',',\n",
" 'which',\n",
" 'comes',\n",
" 'with',\n",
" 'brisket',\n",
" ',',\n",
" 'chili',\n",
" ',',\n",
" 'cheddar',\n",
" 'cheese',\n",
" ',',\n",
" 'cilantro',\n",
" ',',\n",
" 'and',\n",
" 'is',\n",
" 'topped',\n",
" 'with',\n",
" 'tasty',\n",
" 'crema',\n",
" '.',\n",
" 'But',\n",
" 'don’t',\n",
" 'stop',\n",
" 'there',\n",
" ',',\n",
" 'because',\n",
" 'the',\n",
" 'side',\n",
" 'game',\n",
" 'here',\n",
" 'is',\n",
" 'strong',\n",
" '–',\n",
" 'we',\n",
" 'can’t',\n",
" 'get',\n",
" 'enough',\n",
" 'of',\n",
" 'the',\n",
" 'dill',\n",
" 'potato',\n",
" 'salad',\n",
" 'and',\n",
" 'the',\n",
" 'jalapeño',\n",
" 'cheese',\n",
" 'grits',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Do\",\n",
" 'you',\n",
" 'hear',\n",
" 'that',\n",
" '?',\n",
" 'It’s',\n",
" 'Detroit-style',\n",
" 'deep',\n",
" 'dish',\n",
" 'pizza',\n",
" 'calling',\n",
" 'your',\n",
" 'name',\n",
" '.',\n",
" 'Or',\n",
" 'maybe',\n",
" 'it’s',\n",
" 'just',\n",
" 'our',\n",
" 'stomachs',\n",
" 'growling',\n",
" 'as',\n",
" 'we',\n",
" 'envision',\n",
" 'taking',\n",
" 'a',\n",
" 'bite',\n",
" 'out',\n",
" 'of',\n",
" 'the',\n",
" 'tasty',\n",
" 'goodness',\n",
" 'that',\n",
" 'is',\n",
" 'The',\n",
" 'Cadillac',\n",
" '.',\n",
" 'Picture',\n",
" 'this',\n",
" ':',\n",
" 'gorgonzola',\n",
" ',',\n",
" 'fig',\n",
" 'preserves',\n",
" ',',\n",
" 'prosciutto',\n",
" ',',\n",
" 'and',\n",
" 'parmesan',\n",
" 'cheese',\n",
" 'pizza',\n",
" 'with',\n",
" 'a',\n",
" 'light',\n",
" 'balsamic',\n",
" 'glaze',\n",
" '.',\n",
" 'One',\n",
" 'part',\n",
" 'sweet',\n",
" ',',\n",
" 'one',\n",
" 'part',\n",
" 'savory',\n",
" ',',\n",
" 'and',\n",
" 'all',\n",
" 'parts',\n",
" 'the',\n",
" 'best',\n",
" 'pizza',\n",
" 'of',\n",
" 'your',\n",
" 'life',\n",
" '.',\n",
" 'With',\n",
" 'two',\n",
" 'restaurants',\n",
" 'and',\n",
" 'a',\n",
" 'smattering',\n",
" 'of',\n",
" 'food',\n",
" 'trucks',\n",
" 'all',\n",
" 'around',\n",
" 'Austin',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'easily',\n",
" 'bask',\n",
" 'in',\n",
" 'this',\n",
" 'culinary',\n",
" 'treat',\n",
" 'no',\n",
" 'matter',\n",
" 'where',\n",
" 'it',\n",
" 'is',\n",
" 'you',\n",
" 'call',\n",
" 'home',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'It\",\n",
" 'wouldn’t',\n",
" 'be',\n",
" 'a',\n",
" 'cheat',\n",
" 'day',\n",
" 'without',\n",
" 'dessert',\n",
" '.',\n",
" 'And',\n",
" 'while',\n",
" 'Austin',\n",
" 'has',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'worthy',\n",
" 'sweetness',\n",
" 'in',\n",
" 'dessert',\n",
" 'form',\n",
" ',',\n",
" 'there’s',\n",
" 'little',\n",
" 'better',\n",
" 'than',\n",
" 'the',\n",
" 'Banana',\n",
" 'Split',\n",
" 'at',\n",
" 'Sway',\n",
" '.',\n",
" 'This',\n",
" 'South',\n",
" 'Austin',\n",
" 'favorite',\n",
" 'isn’t',\n",
" 'your',\n",
" 'average',\n",
" 'banana',\n",
" 'split',\n",
" ',',\n",
" 'folks',\n",
" '.',\n",
" 'This',\n",
" 'is',\n",
" 'three',\n",
" 'scoops',\n",
" 'of',\n",
" 'five-spice',\n",
" 'chocolate',\n",
" ',',\n",
" 'condensed',\n",
" 'milk',\n",
" ',',\n",
" 'and',\n",
" 'cashew-caramel',\n",
" 'swirl',\n",
" 'ice',\n",
" 'cream',\n",
" 'hugging',\n",
" 'a',\n",
" 'perfect',\n",
" 'slice',\n",
" 'of',\n",
" 'banana',\n",
" '.',\n",
" 'And',\n",
" 'it’s',\n",
" 'topped',\n",
" 'with',\n",
" 'black',\n",
" 'sesame',\n",
" 'brownie',\n",
" 'bites',\n",
" ',',\n",
" 'candied',\n",
" 'cashews',\n",
" ',',\n",
" 'caramel',\n",
" 'coconut',\n",
" 'milk',\n",
" 'jam',\n",
" ',',\n",
" 'and',\n",
" 'drunken',\n",
" 'cherries',\n",
" 'with',\n",
" 'a',\n",
" 'swell',\n",
" 'of',\n",
" 'homemade',\n",
" 'whipped',\n",
" 'cream',\n",
" '.',\n",
" 'Enough',\n",
" 'said',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Yes\",\n",
" ',',\n",
" 'you',\n",
" 'read',\n",
" 'that',\n",
" 'right',\n",
" '.',\n",
" 'Downtown',\n",
" 'is',\n",
" 'home',\n",
" 'to',\n",
" 'a',\n",
" 'restaurant',\n",
" 'that',\n",
" 'serves',\n",
" 'all',\n",
" 'bacon',\n",
" ',',\n",
" 'all',\n",
" 'the',\n",
" 'time',\n",
" '.',\n",
" 'Given',\n",
" 'the',\n",
" 'name',\n",
" ',',\n",
" 'it',\n",
" 'should',\n",
" 'be',\n",
" 'obvious',\n",
" 'that',\n",
" 'you',\n",
" 'can’t',\n",
" 'go',\n",
" 'wrong',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'Bacon',\n",
" 'Waffle',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'Bacon',\n",
" 'Fries',\n",
" 'is',\n",
" 'a',\n",
" 'standout',\n",
" 'favorite',\n",
" '.',\n",
" 'The',\n",
" 'waffle',\n",
" 'has',\n",
" 'bacon',\n",
" 'cooked',\n",
" 'directly',\n",
" 'into',\n",
" 'it',\n",
" '.',\n",
" 'And',\n",
" 'the',\n",
" 'fries',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'they',\n",
" 'come',\n",
" 'in',\n",
" 'a',\n",
" 'heaping',\n",
" 'pile',\n",
" 'topped',\n",
" 'with',\n",
" 'melted',\n",
" 'sharp',\n",
" 'cheddar',\n",
" 'cheese',\n",
" ',',\n",
" 'chives',\n",
" ',',\n",
" 'sour',\n",
" 'cream',\n",
" ',',\n",
" 'and',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'bacon',\n",
" '.',\n",
" 'Simply',\n",
" 'put',\n",
" ':',\n",
" 'you',\n",
" 'need',\n",
" 'this',\n",
" 'in',\n",
" 'your',\n",
" 'life',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'After\",\n",
" 'cooling',\n",
" 'off',\n",
" 'in',\n",
" 'Barton',\n",
" 'Springs',\n",
" ',',\n",
" 'satisfy',\n",
" 'your',\n",
" 'most',\n",
" 'cheat-worthy',\n",
" 'craving',\n",
" 'at',\n",
" 'the',\n",
" 'nearby',\n",
" 'Hey',\n",
" ...],\n",
" ['[',\n",
" \"'There’s\",\n",
" 'always',\n",
" 'an',\n",
" 'awesome',\n",
" 'way',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'That’s',\n",
" 'even',\n",
" 'true',\n",
" 'during',\n",
" 'the',\n",
" 'winter',\n",
" 'months',\n",
" 'and',\n",
" 'at',\n",
" 'the',\n",
" 'start',\n",
" 'of',\n",
" 'a',\n",
" 'new',\n",
" 'year',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'From\",\n",
" 'fun',\n",
" 'runs',\n",
" 'to',\n",
" 'yoga',\n",
" 'and',\n",
" 'even',\n",
" 'some',\n",
" 'booze',\n",
" ',',\n",
" 'here',\n",
" 'are',\n",
" 'the',\n",
" 'upcoming',\n",
" 'events',\n",
" 'making',\n",
" 'it',\n",
" 'a',\n",
" 'whole',\n",
" 'lot',\n",
" 'easier',\n",
" 'to',\n",
" 'find',\n",
" 'some',\n",
" 'balance',\n",
" 'and',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" 'while',\n",
" 'celebrating',\n",
" 'the',\n",
" 'holiday',\n",
" 'season',\n",
" ',',\n",
" 'new',\n",
" 'year',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'winter',\n",
" 'months',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" '``',\n",
" 'Are',\n",
" 'you',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'brave',\n",
" 'souls',\n",
" 'preparing',\n",
" 'for',\n",
" 'the',\n",
" 'upcoming',\n",
" 'Houston',\n",
" 'Marathon',\n",
" '?',\n",
" 'Then',\n",
" 'head',\n",
" 'downtown',\n",
" 'to',\n",
" 'Rogue',\n",
" 'Running',\n",
" 'for',\n",
" 'tips',\n",
" ',',\n",
" 'tricks',\n",
" ',',\n",
" 'and',\n",
" 'magic-making',\n",
" 'skills',\n",
" 'from',\n",
" 'their',\n",
" 'awesome',\n",
" 'coaches',\n",
" '.',\n",
" 'They',\n",
" \"'ll\",\n",
" 'make',\n",
" 'sure',\n",
" 'you',\n",
" \"'re\",\n",
" 'prepared',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'the',\n",
" 'race',\n",
" 'like',\n",
" 'the',\n",
" 'champ',\n",
" 'that',\n",
" 'you',\n",
" 'are',\n",
" '!',\n",
" '``',\n",
" ',',\n",
" \"'The\",\n",
" 'Dance',\n",
" 'Walk',\n",
" 'community',\n",
" 'is',\n",
" 'a',\n",
" 'group',\n",
" 'of',\n",
" 'fine',\n",
" 'folks',\n",
" 'who',\n",
" 'are',\n",
" 'movin’',\n",
" 'and',\n",
" 'groovin’',\n",
" 'their',\n",
" 'way',\n",
" 'to',\n",
" 'a',\n",
" 'healthy',\n",
" 'life',\n",
" '.',\n",
" 'To',\n",
" 'dance',\n",
" 'your',\n",
" 'way',\n",
" 'into',\n",
" 'the',\n",
" 'new',\n",
" 'year',\n",
" 'with',\n",
" '’em',\n",
" ',',\n",
" 'head',\n",
" 'out',\n",
" 'to',\n",
" 'Mueller',\n",
" 'this',\n",
" 'month',\n",
" 'with',\n",
" 'your',\n",
" 'favorite',\n",
" 'costume',\n",
" 'and',\n",
" 'wildest',\n",
" 'accessories',\n",
" ',',\n",
" 'and',\n",
" 'they’ll',\n",
" 'bring',\n",
" 'the',\n",
" 'jams',\n",
" 'to',\n",
" 'get',\n",
" 'you',\n",
" 'going',\n",
" '.',\n",
" 'Just',\n",
" 'try',\n",
" 'to',\n",
" 'do',\n",
" 'this',\n",
" 'workout',\n",
" 'without',\n",
" 'smiling',\n",
" '.',\n",
" 'We',\n",
" 'dare',\n",
" 'you',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'kick',\n",
" 'off',\n",
" 'the',\n",
" 'new',\n",
" 'year',\n",
" 'with',\n",
" 'a',\n",
" 'big',\n",
" 'win',\n",
" ',',\n",
" 'lace',\n",
" 'up',\n",
" 'your',\n",
" 'favorite',\n",
" 'running',\n",
" 'sneaks',\n",
" 'and',\n",
" 'head',\n",
" 'to',\n",
" 'Katy',\n",
" 'for',\n",
" 'this',\n",
" 'quarter',\n",
" 'marathon',\n",
" '.',\n",
" 'Feel',\n",
" 'free',\n",
" 'to',\n",
" 'bring',\n",
" 'the',\n",
" 'kiddos',\n",
" 'along',\n",
" 'too',\n",
" 'for',\n",
" 'an',\n",
" 'easy',\n",
" 'peasy',\n",
" ',',\n",
" '1.25-mile',\n",
" 'mini-quarter',\n",
" 'run',\n",
" '.',\n",
" 'But',\n",
" 'fellas',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'to',\n",
" 'sit',\n",
" 'this',\n",
" 'one',\n",
" 'out–it’s',\n",
" 'ladies',\n",
" 'only',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Show\",\n",
" '2017',\n",
" 'what',\n",
" 'you’re',\n",
" 'made',\n",
" 'of',\n",
" 'by',\n",
" 'challenging',\n",
" 'your',\n",
" 'fitness',\n",
" 'skills',\n",
" 'at',\n",
" 'Duncan',\n",
" 'Park',\n",
" '.',\n",
" 'Just',\n",
" 'beware',\n",
" ':',\n",
" 'When',\n",
" 'we',\n",
" 'say',\n",
" 'challenge',\n",
" ',',\n",
" 'we',\n",
" 'mean',\n",
" 'it',\n",
" '–',\n",
" 'a',\n",
" 'sandbell',\n",
" 'hill',\n",
" 'medley',\n",
" ',',\n",
" 'kettlebell',\n",
" 'high',\n",
" 'pulls',\n",
" ',',\n",
" 'and',\n",
" 'infinite',\n",
" 'burpees',\n",
" '(',\n",
" '!',\n",
" ')',\n",
" 'will',\n",
" 'put',\n",
" 'your',\n",
" 'skills',\n",
" 'to',\n",
" 'the',\n",
" 'ultimate',\n",
" 'test',\n",
" '.',\n",
" 'It',\n",
" 'won’t',\n",
" 'be',\n",
" 'easy',\n",
" ',',\n",
" 'but',\n",
" 'it’ll',\n",
" 'be',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Free\",\n",
" 'fitness',\n",
" ',',\n",
" 'all',\n",
" 'day',\n",
" 'long',\n",
" '?',\n",
" 'Yes',\n",
" ',',\n",
" 'please',\n",
" '!',\n",
" 'The',\n",
" 'kind',\n",
" 'folks',\n",
" 'at',\n",
" 'Ballet',\n",
" 'Austin',\n",
" 'are',\n",
" 'hosting',\n",
" 'a',\n",
" 'day-long',\n",
" 'event',\n",
" 'filled',\n",
" 'with',\n",
" 'free',\n",
" 'Pilates',\n",
" 'and',\n",
" 'yoga',\n",
" 'classes',\n",
" ',',\n",
" 'health',\n",
" 'screenings',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'round',\n",
" 'of',\n",
" 'Q',\n",
" '&',\n",
" 'As',\n",
" ';',\n",
" 'with',\n",
" 'some',\n",
" 'fit-minded',\n",
" 'experts',\n",
" '.',\n",
" 'So',\n",
" 'start',\n",
" 'the',\n",
" 'year',\n",
" 'off',\n",
" 'right',\n",
" 'with',\n",
" 'this',\n",
" 'free–let',\n",
" 'us',\n",
" 'repeat',\n",
" ',',\n",
" 'FREE–all-day',\n",
" 'event',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Farm-to-table\",\n",
" 'grub',\n",
" 'paired',\n",
" 'with',\n",
" 'rare',\n",
" ',',\n",
" 'local',\n",
" 'craft',\n",
" 'brew',\n",
" '?',\n",
" 'Sounds',\n",
" 'like',\n",
" 'a',\n",
" 'perfect',\n",
" 'evening',\n",
" 'to',\n",
" 'us',\n",
" '.',\n",
" 'Treat',\n",
" 'yo’self',\n",
" 'in',\n",
" 'the',\n",
" 'new',\n",
" 'year',\n",
" 'and',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'this',\n",
" 'five-course',\n",
" 'meal',\n",
" 'paired',\n",
" 'with',\n",
" 'booze',\n",
" 'that',\n",
" 'will',\n",
" 'impress',\n",
" 'even',\n",
" 'the',\n",
" 'nerdiest',\n",
" 'of',\n",
" 'beer',\n",
" 'nerds',\n",
" '.',\n",
" 'It’s',\n",
" 'a',\n",
" 'short',\n",
" 'trek',\n",
" 'to',\n",
" 'Round',\n",
" 'Rock',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Onnit\",\n",
" 'and',\n",
" 'Austin',\n",
" 'Fit',\n",
" 'Magazine',\n",
" 'are',\n",
" 'bringing',\n",
" 'South',\n",
" 'Austinities',\n",
" 'an',\n",
" 'awesome',\n",
" 'Tim',\n",
" 'Kennedy-inspired',\n",
" '(',\n",
" 'which',\n",
" 'likely',\n",
" 'means',\n",
" 'crazy-intense',\n",
" ')',\n",
" 'workout',\n",
" 'to',\n",
" 'celebrate',\n",
" 'the',\n",
" 'launch',\n",
" 'of',\n",
" 'Get',\n",
" 'Onnit',\n",
" 'Magazine',\n",
" '.',\n",
" 'And',\n",
" 'the',\n",
" 'best',\n",
" 'part',\n",
" '?',\n",
" 'Your',\n",
" '$',\n",
" '20',\n",
" 'goes',\n",
" 'straight',\n",
" 'to',\n",
" 'getting',\n",
" 'first',\n",
" 'responders',\n",
" 'the',\n",
" 'best',\n",
" 'training',\n",
" 'possible',\n",
" 'to',\n",
" 'keep',\n",
" 'our',\n",
" 'communities',\n",
" 'safe',\n",
" 'and',\n",
" 'healthy',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'A\",\n",
" 'winter',\n",
" 'canoe',\n",
" 'race',\n",
" 'sounds',\n",
" 'like',\n",
" 'torture',\n",
" 'for',\n",
" 'most',\n",
" 'people',\n",
" ',',\n",
" 'but',\n",
" 'not',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Take',\n",
" 'advantage',\n",
" 'of',\n",
" 'our',\n",
" 'amazing',\n",
" 'climate',\n",
" 'from',\n",
" 'atop',\n",
" 'Ladybird',\n",
" 'Lake',\n",
" 'by',\n",
" 'signing',\n",
" 'up',\n",
" 'for',\n",
" 'this',\n",
" '100k',\n",
" 'canoe',\n",
" 'race',\n",
" '.',\n",
" 'You’ll',\n",
" 'begin',\n",
" 'in',\n",
" 'Austin',\n",
" 'and',\n",
" 'end',\n",
" 'in',\n",
" 'Bastrop',\n",
" 'where',\n",
" 'you’ll',\n",
" 'be',\n",
" 'fitter',\n",
" ',',\n",
" 'stronger',\n",
" ',',\n",
" 'and',\n",
" 'even',\n",
" 'more',\n",
" 'awesome',\n",
" 'than',\n",
" 'when',\n",
" 'you',\n",
" 'started',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'10\",\n",
" 'years',\n",
" 'and',\n",
" 'going',\n",
" 'strong',\n",
" ',',\n",
" 'the',\n",
" 'Fittest',\n",
" 'Games',\n",
" '(',\n",
" 'held',\n",
" 'at',\n",
" 'Travis',\n",
" 'County',\n",
" 'Exposition',\n",
" 'Center',\n",
" ')',\n",
" 'is',\n",
" 'a',\n",
" 'competition',\n",
" 'for',\n",
" 'all',\n",
" 'fitness',\n",
" 'lovers',\n",
" 'looking',\n",
" 'to',\n",
" 'challenge',\n",
" 'themselves',\n",
" 'in',\n",
" 'an',\n",
" 'official',\n",
" 'competition',\n",
" 'setting',\n",
" '.',\n",
" 'The',\n",
" 'games',\n",
" 'change',\n",
" 'every',\n",
" 'year',\n",
" ',',\n",
" 'but',\n",
" 'one',\n",
" 'thing',\n",
" 'remains',\n",
" 'constant',\n",
" ':',\n",
" 'it’s',\n",
" 'super',\n",
" ',',\n",
" 'duper',\n",
" 'fun',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Austin’s\",\n",
" 'beloved',\n",
" 'Top',\n",
" 'Golf',\n",
" '(',\n",
" 'driving',\n",
" 'range',\n",
" 'of',\n",
" 'the',\n",
" 'future',\n",
" ')',\n",
" 'is',\n",
" 'kicking',\n",
" 'off',\n",
" 'another',\n",
" 'league',\n",
" 'season',\n",
" 'in',\n",
" 'a',\n",
" 'few',\n",
" 'short',\n",
" 'weeks',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'get',\n",
" 'in',\n",
" 'on',\n",
" 'the',\n",
" 'action',\n",
" ',',\n",
" 'you',\n",
" 'better',\n",
" 'start',\n",
" 'rounding',\n",
" 'up',\n",
" 'your',\n",
" 'team',\n",
" 'now',\n",
" '.',\n",
" 'Teams',\n",
" 'can',\n",
" 'be',\n",
" '4-',\n",
" 'or',\n",
" '2-person',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'only',\n",
" 'requirement',\n",
" 'is',\n",
" 'a',\n",
" 'willingness',\n",
" 'to',\n",
" 'enjoy',\n",
" 'the',\n",
" 'hell',\n",
" 'out',\n",
" 'of',\n",
" 'yourself',\n",
" '.',\n",
" 'Do',\n",
" 'yourself',\n",
" 'a',\n",
" 'favor',\n",
" 'and',\n",
" 'don’t',\n",
" 'miss',\n",
" 'this',\n",
" 'day',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Austin\",\n",
" 'is',\n",
" 'known',\n",
" 'for',\n",
" 'its',\n",
" 'general',\n",
" 'weirdness',\n",
" ',',\n",
" 'awesome',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'and',\n",
" 'delicious',\n",
" 'grub',\n",
" '–',\n",
" 'but',\n",
" 'what',\n",
" 'really',\n",
" 'makes',\n",
" 'our',\n",
" 'city',\n",
" 'shine',\n",
" 'are',\n",
" 'the',\n",
" 'scenic',\n",
" 'wilderness',\n",
" 'trails',\n",
" 'that’ll',\n",
" 'let',\n",
" 'you',\n",
" 'forget',\n",
" 'you’re',\n",
" 'in',\n",
" 'a',\n",
" 'city',\n",
" 'altogether',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'take',\n",
" 'a',\n",
" 'break',\n",
" 'from',\n",
" 'the',\n",
" 'hustle',\n",
" 'and',\n",
" 'bustle',\n",
" 'of',\n",
" 'city',\n",
" 'life',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'this',\n",
" 'list',\n",
" 'of',\n",
" 'our',\n",
" 'favorite',\n",
" 'hiking',\n",
" 'spots',\n",
" 'to',\n",
" 'add',\n",
" 'a',\n",
" 'heavy',\n",
" 'dose',\n",
" 'of',\n",
" 'nature',\n",
" 'to',\n",
" 'your',\n",
" 'fitness',\n",
" 'routine',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'For',\n",
" 'a',\n",
" 'moderate',\n",
" 'hike',\n",
" 'and',\n",
" 'some',\n",
" 'killer',\n",
" 'scenery',\n",
" ',',\n",
" 'Sculpture',\n",
" 'Falls',\n",
" 'is',\n",
" 'your',\n",
" 'best',\n",
" 'bet',\n",
" '.',\n",
" 'Barton',\n",
" 'Creek',\n",
" 'Wilderness',\n",
" 'Park',\n",
" 'is',\n",
" 'home',\n",
" 'to',\n",
" 'this',\n",
" 'intermediate',\n",
" ',',\n",
" 'five-mile',\n",
" 'trail',\n",
" '.',\n",
" 'A',\n",
" 'lot',\n",
" 'of',\n",
" 'people',\n",
" 'favor',\n",
" 'this',\n",
" 'spot',\n",
" 'for',\n",
" 'its',\n",
" 'waterfalls',\n",
" 'and',\n",
" 'swimming',\n",
" 'holes',\n",
" ',',\n",
" 'so',\n",
" 'expect',\n",
" 'to',\n",
" 'see',\n",
" 'many',\n",
" 'faces',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" '.',\n",
" 'It’s',\n",
" 'also',\n",
" 'super',\n",
" 'dog-friendly',\n",
" ',',\n",
" 'so',\n",
" 'feel',\n",
" 'free',\n",
" 'to',\n",
" 'bring',\n",
" 'your',\n",
" 'furry',\n",
" 'companion',\n",
" 'to',\n",
" 'enjoy',\n",
" 'it',\n",
" ',',\n",
" 'too',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'This',\n",
" 'heavily',\n",
" 'trafficked',\n",
" 'one-mile',\n",
" 'loop',\n",
" 'has',\n",
" 'a',\n",
" 'split',\n",
" 'personality',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'decide',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'the',\n",
" 'south',\n",
" 'side',\n",
" 'at',\n",
" 'Bull',\n",
" 'Creek',\n",
" ',',\n",
" 'you’ll',\n",
" 'find',\n",
" 'an',\n",
" 'uber-challenging',\n",
" 'rocky',\n",
" 'bluff',\n",
" 'that',\n",
" 'makes',\n",
" 'for',\n",
" 'awesome',\n",
" 'climbing',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you’d',\n",
" 'rather',\n",
" 'take',\n",
" 'it',\n",
" 'easy',\n",
" 'and',\n",
" 'soak',\n",
" 'in',\n",
" 'the',\n",
" 'sights',\n",
" ',',\n",
" 'the',\n",
" 'north',\n",
" 'side',\n",
" 'offers',\n",
" 'a',\n",
" 'flat',\n",
" ',',\n",
" 'simple',\n",
" 'trail',\n",
" 'with',\n",
" 'swimming',\n",
" 'holes',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Keeping',\n",
" 'within',\n",
" 'the',\n",
" 'confines',\n",
" 'of',\n",
" 'McKinney',\n",
" 'State',\n",
" 'Park',\n",
" ',',\n",
" 'this',\n",
" 'one-mile',\n",
" 'loop',\n",
" 'is',\n",
" 'great',\n",
" 'for',\n",
" 'families',\n",
" '.',\n",
" 'Here',\n",
" 'you’ll',\n",
" 'discover',\n",
" 'a',\n",
" 'magical',\n",
" 'land',\n",
" 'of',\n",
" 'caves',\n",
" ',',\n",
" 'waterfalls',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'historic',\n",
" 'natural',\n",
" 'rock',\n",
" 'formation',\n",
" 'Native',\n",
" 'Americans',\n",
" 'formerly',\n",
" 'used',\n",
" 'as',\n",
" 'shelter',\n",
" '.',\n",
" 'Perfect',\n",
" 'for',\n",
" 'an',\n",
" 'educational',\n",
" 'day',\n",
" 'of',\n",
" 'family',\n",
" ',',\n",
" 'fitness',\n",
" ',',\n",
" 'and',\n",
" 'fun',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'What',\n",
" 'sort',\n",
" 'of',\n",
" 'list',\n",
" 'would',\n",
" 'this',\n",
" 'be',\n",
" 'without',\n",
" 'the',\n",
" 'mention',\n",
" 'of',\n",
" 'our',\n",
" 'beloved',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'Trail',\n",
" '?',\n",
" 'The',\n",
" 'convenient',\n",
" 'trail',\n",
" 'is',\n",
" 'a',\n",
" 'five-mile',\n",
" 'loop',\n",
" 'with',\n",
" 'a',\n",
" 'number',\n",
" 'of',\n",
" 'access',\n",
" 'points',\n",
" '.',\n",
" 'With',\n",
" 'entry',\n",
" 'at',\n",
" 'Downtown',\n",
" ',',\n",
" 'Zilker',\n",
" ',',\n",
" 'and',\n",
" 'Butler',\n",
" 'Park',\n",
" ',',\n",
" 'it',\n",
" 'feels',\n",
" 'like',\n",
" 'a',\n",
" 'natural',\n",
" 'refuge',\n",
" 'right',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'Dogs',\n",
" ',',\n",
" 'joggers',\n",
" ',',\n",
" 'walkers',\n",
" ',',\n",
" 'and',\n",
" 'strollers',\n",
" 'populate',\n",
" 'this',\n",
" 'busy',\n",
" 'route',\n",
" ',',\n",
" 'enjoying',\n",
" 'skyline',\n",
" 'views',\n",
" 'and',\n",
" 'access',\n",
" 'to',\n",
" 'the',\n",
" 'river',\n",
" '.',\n",
" 'Bonus',\n",
" ':',\n",
" 'There',\n",
" 'are',\n",
" 'also',\n",
" 'stops',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" 'to',\n",
" 'rent',\n",
" 'paddleboards',\n",
" 'and',\n",
" 'kayaks',\n",
" 'if',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'cool',\n",
" 'off',\n",
" 'from',\n",
" 'the',\n",
" 'Texas',\n",
" 'heat',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'The',\n",
" 'Turkey',\n",
" 'Creek',\n",
" 'Trail',\n",
" 'treats',\n",
" 'lucky',\n",
" 'travelers',\n",
" 'in',\n",
" 'Emma',\n",
" 'Long',\n",
" 'Metro',\n",
" 'Park',\n",
" ',',\n",
" 'offering',\n",
" 'a',\n",
" 'moderately',\n",
" 'difficult',\n",
" ',',\n",
" 'three-mile',\n",
" 'out-and-back',\n",
" 'route',\n",
" 'along',\n",
" 'the',\n",
" 'Colorado',\n",
" 'River',\n",
" '.',\n",
" 'Dogs',\n",
" 'love',\n",
" 'this',\n",
" 'spot',\n",
" 'because',\n",
" 'they’re',\n",
" 'free',\n",
" 'to',\n",
" 'run',\n",
" 'off-leash',\n",
" 'on',\n",
" 'the',\n",
" 'mostly',\n",
" 'flat',\n",
" 'terrain',\n",
" '.',\n",
" 'It',\n",
" 'can',\n",
" 'get',\n",
" 'pretty',\n",
" 'busy',\n",
" 'on',\n",
" 'the',\n",
" 'weekends',\n",
" ',',\n",
" 'though',\n",
" ',',\n",
" 'so',\n",
" 'if',\n",
" 'tranquility',\n",
" 'is',\n",
" 'your',\n",
" 'priority',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'a',\n",
" 'better',\n",
" 'weekday',\n",
" 'adventure',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'The',\n",
" 'River',\n",
" 'Place',\n",
" 'Nature',\n",
" 'Trail',\n",
" 'isn’t',\n",
" 'for',\n",
" 'the',\n",
" 'faint',\n",
" 'of',\n",
" 'heart',\n",
" ',',\n",
" 'but',\n",
" 'it',\n",
" 'will',\n",
" 'definitely',\n",
" 'give',\n",
" 'that',\n",
" 'heart',\n",
" 'a',\n",
" 'serious',\n",
" 'workout',\n",
" '.',\n",
" 'The',\n",
" 'entry',\n",
" 'point',\n",
" 'is',\n",
" 'on',\n",
" 'Big',\n",
" 'View',\n",
" 'Drive',\n",
" 'and',\n",
" 'the',\n",
" 'trail',\n",
" 'winds',\n",
" 'for',\n",
" 'five',\n",
" 'miles',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'willing',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'some',\n",
" 'intense',\n",
" 'hills',\n",
" ',',\n",
" 'you’ll',\n",
" 'be',\n",
" 'handsomely',\n",
" 'rewarded',\n",
" 'for',\n",
" 'all',\n",
" 'that',\n",
" 'huffing',\n",
" 'and',\n",
" 'puffing',\n",
" 'with',\n",
" 'the',\n",
" 'beautiful',\n",
" 'sights',\n",
" '–',\n",
" 'waterfalls',\n",
" ',',\n",
" 'ponds',\n",
" ',',\n",
" 'and',\n",
" 'some',\n",
" 'friendly',\n",
" 'neighborhood',\n",
" 'turtles',\n",
" 'abound',\n",
" 'throughout',\n",
" 'this',\n",
" 'challenging',\n",
" 'trail',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'This',\n",
" 'lesser-known',\n",
" 'trail',\n",
" 'in',\n",
" 'the',\n",
" 'Greenbelt',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'natural',\n",
" 'adventures',\n",
" '.',\n",
" 'The',\n",
" 'trail',\n",
" 'begins',\n",
" 'at',\n",
" 'the',\n",
" 'hilltops',\n",
" 'of',\n",
" 'Camp',\n",
" 'Craft',\n",
" 'Road',\n",
" 'and',\n",
" 'meanders',\n",
" 'through',\n",
" 'a',\n",
" 'three-mile',\n",
" 'descent',\n",
" 'to',\n",
" 'Twin',\n",
" 'Falls',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'decide',\n",
" 'to',\n",
" 'make',\n",
" 'the',\n",
" 'trek',\n",
" 'after',\n",
" 'heavy',\n",
" 'rains',\n",
" ',',\n",
" 'you’ll',\n",
" 'find',\n",
" 'waterfalls',\n",
" 'and',\n",
" 'plenty',\n",
" 'of',\n",
" 'spots',\n",
" 'to',\n",
" 'take',\n",
" 'a',\n",
" 'dip',\n",
" '–',\n",
" 'which',\n",
" 'you’ll',\n",
" 'likely',\n",
" 'crave',\n",
" 'before',\n",
" 'taking',\n",
" 'the',\n",
" 'tough',\n",
" ',',\n",
" 'uphill',\n",
" 'climb',\n",
" 'home',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'For',\n",
" 'a',\n",
" 'family',\n",
" 'fun',\n",
" 'day',\n",
" ',',\n",
" 'this',\n",
" 'one-mile',\n",
" 'Butler',\n",
" 'Park',\n",
" 'trail',\n",
" 'is',\n",
" 'great',\n",
" 'for',\n",
" 'all',\n",
" 'ages',\n",
" '.',\n",
" 'You’ll',\n",
" 'be',\n",
" 'graced',\n",
" 'with',\n",
" 'plenty',\n",
" 'of',\n",
" 'shade',\n",
" 'as',\n",
" 'you',\n",
" 'and',\n",
" 'your',\n",
" 'little',\n",
" 'ones',\n",
" 'stroll',\n",
" 'along',\n",
" 'this',\n",
" 'easy',\n",
" ',',\n",
" 'Instagrammable',\n",
" 'route',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'boredom',\n",
" 'is',\n",
" 'a',\n",
" 'concern',\n",
" ',',\n",
" 'it',\n",
" 'shouldn’t',\n",
" 'be',\n",
" 'because',\n",
" 'peacocks',\n",
" 'are',\n",
" 'strutting',\n",
" 'around',\n",
" 'every',\n",
" 'corner',\n",
" 'looking',\n",
" 'to',\n",
" 'entertain',\n",
" 'you',\n",
" 'throughout',\n",
" 'your',\n",
" 'walk',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'This',\n",
" 'natural',\n",
" 'preserve',\n",
" 'off',\n",
" 'of',\n",
" 'West',\n",
" 'Gate',\n",
" 'and',\n",
" 'William',\n",
" 'Cannon',\n",
" 'is',\n",
" 'yet',\n",
" 'another',\n",
" 'refuge',\n",
" 'in',\n",
" 'the',\n",
" 'middle',\n",
" 'of',\n",
" 'city',\n",
" 'life',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'lots',\n",
" 'different',\n",
" 'looping',\n",
" 'trails',\n",
" 'here',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'take',\n",
" 'in',\n",
" 'an',\n",
" 'easy',\n",
" 'one-miler',\n",
" ',',\n",
" 'or',\n",
" 'wander',\n",
" 'and',\n",
" 'explore',\n",
" 'for',\n",
" 'more',\n",
" 'than',\n",
" 'four',\n",
" 'miles',\n",
" '.',\n",
" 'It’s',\n",
" 'also',\n",
" 'home',\n",
" 'to',\n",
" 'a',\n",
" 'lot',\n",
" 'of',\n",
" 'critters',\n",
" ',',\n",
" 'so',\n",
" 'expect',\n",
" 'to',\n",
" 'come',\n",
" 'across',\n",
" 'any',\n",
" 'number',\n",
" 'of',\n",
" 'deer',\n",
" ',',\n",
" 'rabbits',\n",
" ',',\n",
" 'butterflies',\n",
" ',',\n",
" 'and',\n",
" 'lizards',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'This',\n",
" 'is',\n",
" 'a',\n",
" 'light',\n",
" 'traffic',\n",
" 'loop',\n",
" 'trail',\n",
" ',',\n",
" 'perfect',\n",
" 'for',\n",
" 'a',\n",
" 'laid-back',\n",
" ',',\n",
" 'after',\n",
" 'work',\n",
" 'jaunt',\n",
" 'for',\n",
" 'those',\n",
" 'living',\n",
" 'in',\n",
" 'South',\n",
" 'Austin',\n",
" '.',\n",
" 'Open',\n",
" 'from',\n",
" 'March',\n",
" 'to',\n",
" 'October',\n",
" ',',\n",
" 'this',\n",
" 'mostly-paved',\n",
" 'trail',\n",
" 'features',\n",
" 'a',\n",
" 'waterfall',\n",
" 'and',\n",
" 'easy',\n",
" 'terrain',\n",
" 'for',\n",
" 'those',\n",
" 'recovering',\n",
" ',',\n",
" 'rehabbing',\n",
" ',',\n",
" 'or',\n",
" 'looking',\n",
" 'to',\n",
" 'take',\n",
" 'their',\n",
" 'pup',\n",
" 'for',\n",
" 'a',\n",
" 'scenic',\n",
" 'stroll',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'you’re',\n",
" 'in',\n",
" 'the',\n",
" 'mood',\n",
" 'for',\n",
" 'a',\n",
" 'peaceful',\n",
" 'route',\n",
" 'for',\n",
" 'all',\n",
" 'levels',\n",
" ',',\n",
" 'this',\n",
" 'three-mile',\n",
" 'loop',\n",
" 'at',\n",
" 'McKinney',\n",
" 'Falls',\n",
" 'State',\n",
" 'Park',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" '.',\n",
" 'Bikers',\n",
" 'and',\n",
" 'hikers',\n",
" 'alike',\n",
" 'enjoy',\n",
" 'this',\n",
" 'spot',\n",
" 'for',\n",
" 'its',\n",
" 'long',\n",
" 'and',\n",
" 'winding',\n",
" 'paved',\n",
" 'trails',\n",
" 'with',\n",
" 'light',\n",
" 'foot',\n",
" 'traffic',\n",
" '.',\n",
" 'And',\n",
" 'it’s',\n",
" 'especially',\n",
" 'popular',\n",
" 'in',\n",
" 'the',\n",
" 'spring',\n",
" ',',\n",
" 'as',\n",
" 'there',\n",
" 'are',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'wildflowers',\n",
" 'blooming',\n",
" 'around',\n",
" 'every',\n",
" 'bend',\n",
" ',',\n",
" 'making',\n",
" 'it',\n",
" 'feel',\n",
" 'a',\n",
" 'lot',\n",
" 'like',\n",
" 'paradise',\n",
" '(',\n",
" 'probably',\n",
" 'because',\n",
" 'it',\n",
" 'is',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'less',\n",
" 'foot',\n",
" 'traffic',\n",
" 'and',\n",
" 'more',\n",
" 'nature',\n",
" 'are',\n",
" 'on',\n",
" 'your',\n",
" 'hiking',\n",
" 'agenda',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'two-mile',\n",
" 'trail',\n",
" 'at',\n",
" 'Roy',\n",
" 'G.',\n",
" 'Guerrero',\n",
" 'Colorado',\n",
" 'River',\n",
" 'Park',\n",
" ',',\n",
" 'just',\n",
" 'east',\n",
" 'of',\n",
" 'I-35',\n",
" '.',\n",
" 'All',\n",
" 'skill',\n",
" 'levels',\n",
" 'will',\n",
" 'enjoy',\n",
" 'this',\n",
" 'peaceful',\n",
" ',',\n",
" 'scenic',\n",
" 'route',\n",
" 'along',\n",
" 'the',\n",
" 'water',\n",
" ',',\n",
" 'where',\n",
" 'you’re',\n",
" 'likely',\n",
" 'to',\n",
" 'run',\n",
" 'into',\n",
" 'a',\n",
" 'wild',\n",
" 'animal',\n",
" 'or',\n",
" 'two',\n",
" '.',\n",
" 'You’ll',\n",
" 'also',\n",
" 'discover',\n",
" 'a',\n",
" 'top',\n",
" 'secret',\n",
" 'beach',\n",
" 'somewhere',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" ',',\n",
" 'perfect',\n",
" 'for',\n",
" 'cooling',\n",
" 'off',\n",
" 'and',\n",
" 'catching',\n",
" 'a',\n",
" 'few',\n",
" 'rays',\n",
" '(',\n",
" 'per',\n",
" 'Austin',\n",
" 'rules',\n",
" ',',\n",
" 'we',\n",
" 'can’t',\n",
" 'tell',\n",
" 'you',\n",
" 'exactly',\n",
" 'where—you’ll',\n",
" 'have',\n",
" 'to',\n",
" 'hit',\n",
" 'the',\n",
" 'trail',\n",
" 'to',\n",
" 'find',\n",
" 'it',\n",
" '.',\n",
" ')',\n",
" \"'\",\n",
" ',',\n",
" \"'What\",\n",
" 'do',\n",
" 'you',\n",
" 'think',\n",
" 'about',\n",
" 'these',\n",
" ...],\n",
" ['[',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" 'girls',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'yes',\n",
" ',',\n",
" 'couples',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'From\",\n",
" 'canoeing',\n",
" 'to',\n",
" 'laser',\n",
" 'tag',\n",
" 'to',\n",
" 'zip',\n",
" 'lining',\n",
" ',',\n",
" 'we',\n",
" 'put',\n",
" 'together',\n",
" 'the',\n",
" 'perfect',\n",
" 'list',\n",
" 'of',\n",
" 'activities',\n",
" 'to',\n",
" 'kick',\n",
" 'up',\n",
" 'your',\n",
" 'heart',\n",
" 'rate',\n",
" 'and',\n",
" 'win',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'your',\n",
" 'date',\n",
" '.',\n",
" 'Fall',\n",
" 'in',\n",
" 'love',\n",
" 'with',\n",
" 'our',\n",
" 'picks',\n",
" 'for',\n",
" 'the',\n",
" 'best',\n",
" 'active',\n",
" 'date',\n",
" 'ideas',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Every\",\n",
" 'Thursday',\n",
" 'at',\n",
" '7pm',\n",
" ',',\n",
" 'cyclists',\n",
" 'around',\n",
" 'Austin',\n",
" 'get',\n",
" 'together',\n",
" 'for',\n",
" 'a',\n",
" 'casual',\n",
" 'ride',\n",
" 'about',\n",
" 'town',\n",
" 'at',\n",
" 'dusk',\n",
" '.',\n",
" 'Starting',\n",
" 'at',\n",
" 'Festival',\n",
" 'Beach',\n",
" ',',\n",
" 'you',\n",
" 'and',\n",
" 'your',\n",
" 'sweetie',\n",
" 'will',\n",
" 'join',\n",
" 'a',\n",
" 'group',\n",
" 'of',\n",
" 'about',\n",
" 'a',\n",
" 'hundred',\n",
" 'other',\n",
" 'friendly',\n",
" 'folks',\n",
" 'as',\n",
" 'you',\n",
" 'explore',\n",
" 'the',\n",
" 'city',\n",
" 'by',\n",
" 'bike',\n",
" '.',\n",
" 'The',\n",
" 'tour',\n",
" 'stops',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" 'to',\n",
" 'enjoy',\n",
" 'the',\n",
" 'sights',\n",
" 'at',\n",
" 'sunset',\n",
" 'and',\n",
" 'kick',\n",
" 'back',\n",
" 'at',\n",
" 'the',\n",
" 'park',\n",
" '.',\n",
" 'Finishing',\n",
" 'at',\n",
" 'a',\n",
" 'different',\n",
" 'host',\n",
" 'bar',\n",
" 'each',\n",
" 'time',\n",
" ',',\n",
" 'it’s',\n",
" 'an',\n",
" 'awesome',\n",
" 'way',\n",
" 'to',\n",
" 'build',\n",
" 'a',\n",
" 'bond',\n",
" 'over',\n",
" 'bikes',\n",
" 'and',\n",
" 'brews',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Austin’s\",\n",
" 'go-to',\n",
" 'spot',\n",
" 'for',\n",
" 'line',\n",
" 'dancing',\n",
" ',',\n",
" 'The',\n",
" 'White',\n",
" 'Horse',\n",
" 'on',\n",
" 'the',\n",
" 'Eastside',\n",
" 'changes',\n",
" 'things',\n",
" 'up',\n",
" 'on',\n",
" 'the',\n",
" 'second',\n",
" 'Sunday',\n",
" 'of',\n",
" 'each',\n",
" 'month',\n",
" 'with',\n",
" 'a',\n",
" 'sock',\n",
" 'hop',\n",
" '.',\n",
" 'Tunes',\n",
" 'of',\n",
" 'the',\n",
" '50s',\n",
" 'and',\n",
" '60s',\n",
" 'will',\n",
" 'get',\n",
" 'your',\n",
" 'feet',\n",
" 'moving',\n",
" 'as',\n",
" 'you',\n",
" 'and',\n",
" 'your',\n",
" 'date',\n",
" 'show',\n",
" 'off',\n",
" 'your',\n",
" 'moves',\n",
" 'on',\n",
" 'the',\n",
" 'dance',\n",
" 'floor',\n",
" ',',\n",
" 'and',\n",
" 'quite',\n",
" 'possibly',\n",
" 'dance',\n",
" 'your',\n",
" 'socks',\n",
" 'off',\n",
" '.',\n",
" 'By',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'the',\n",
" 'night',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'had',\n",
" 'so',\n",
" 'much',\n",
" 'fun',\n",
" 'you',\n",
" 'won’t',\n",
" 'realize',\n",
" 'how',\n",
" 'many',\n",
" 'calories',\n",
" 'you',\n",
" 'burned',\n",
" '.',\n",
" 'The',\n",
" 'night',\n",
" 'begins',\n",
" 'at',\n",
" '9pm',\n",
" ',',\n",
" 'and',\n",
" 'most',\n",
" 'folks',\n",
" 'come',\n",
" 'dressed',\n",
" 'to',\n",
" 'impress',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'Texas',\n",
" 'Rowing',\n",
" 'Center',\n",
" 'on',\n",
" 'Town',\n",
" 'Lake',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'place',\n",
" 'to',\n",
" 'kick',\n",
" 'off',\n",
" 'a',\n",
" 'cool',\n",
" 'date',\n",
" 'on',\n",
" 'a',\n",
" 'hot',\n",
" 'day',\n",
" '.',\n",
" 'Park',\n",
" 'along',\n",
" 'Veterans',\n",
" 'Drive',\n",
" 'and',\n",
" 'head',\n",
" 'down',\n",
" 'to',\n",
" 'the',\n",
" 'water',\n",
" 'to',\n",
" 'rent',\n",
" 'a',\n",
" 'couple',\n",
" 'of',\n",
" 'paddle',\n",
" 'boards',\n",
" 'for',\n",
" 'a',\n",
" 'day',\n",
" 'date',\n",
" 'of',\n",
" 'fun',\n",
" 'and',\n",
" 'fitness',\n",
" '.',\n",
" 'Once',\n",
" 'you',\n",
" 'find',\n",
" 'your',\n",
" 'sea',\n",
" 'legs',\n",
" ',',\n",
" 'prepare',\n",
" 'to',\n",
" 'strengthen',\n",
" 'your',\n",
" 'core',\n",
" 'and',\n",
" 'tone',\n",
" 'your',\n",
" 'arms',\n",
" 'as',\n",
" 'you',\n",
" 'embark',\n",
" 'on',\n",
" 'a',\n",
" 'romantic',\n",
" 'exploration',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'as',\n",
" 'you',\n",
" 'glide',\n",
" 'along',\n",
" 'our',\n",
" 'beautiful',\n",
" 'Town',\n",
" 'Lake',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'For\",\n",
" 'the',\n",
" 'ultimate',\n",
" 'in',\n",
" 'refreshing',\n",
" 'fitness',\n",
" ',',\n",
" 'head',\n",
" 'with',\n",
" 'your',\n",
" 'honey',\n",
" 'over',\n",
" 'to',\n",
" 'Hamilton',\n",
" 'Pool',\n",
" 'in',\n",
" 'Dripping',\n",
" 'Springs',\n",
" '.',\n",
" 'Pack',\n",
" 'a',\n",
" 'cooler',\n",
" ',',\n",
" 'sunscreen',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'timer',\n",
" 'to',\n",
" 'see',\n",
" 'who',\n",
" 'can',\n",
" 'swim',\n",
" 'laps',\n",
" 'the',\n",
" 'fastest',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'you',\n",
" 'know',\n",
" ',',\n",
" 'just',\n",
" 'enjoy',\n",
" 'the',\n",
" 'water',\n",
" '.',\n",
" 'With',\n",
" 'a',\n",
" 'gorgeous',\n",
" 'grotto',\n",
" 'and',\n",
" 'natural',\n",
" 'swimming',\n",
" 'area',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" 'for',\n",
" 'an',\n",
" 'active',\n",
" 'summer',\n",
" 'romance',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'For\",\n",
" 'a',\n",
" 'good',\n",
" 'night',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'The',\n",
" 'Goodnight',\n",
" '!',\n",
" 'Okay',\n",
" ',',\n",
" 'that',\n",
" 'was',\n",
" 'too',\n",
" 'easy',\n",
" ',',\n",
" 'but',\n",
" 'we',\n",
" 'promise',\n",
" 'it’s',\n",
" 'true',\n",
" '.',\n",
" 'Featuring',\n",
" 'vintage',\n",
" 'bowling',\n",
" 'lanes',\n",
" ',',\n",
" 'pool',\n",
" 'tables',\n",
" ',',\n",
" 'ping-pong',\n",
" ',',\n",
" 'and',\n",
" 'shuffleboard',\n",
" 'in',\n",
" 'a',\n",
" 'swanky',\n",
" 'atmosphere',\n",
" ',',\n",
" 'you',\n",
" 'and',\n",
" 'your',\n",
" 'date',\n",
" 'can',\n",
" 'bond',\n",
" 'over',\n",
" 'a',\n",
" 'little',\n",
" 'healthy',\n",
" 'competition',\n",
" '.',\n",
" 'Top',\n",
" 'it',\n",
" 'off',\n",
" 'with',\n",
" 'entrees',\n",
" 'and',\n",
" 'drinks',\n",
" 'from',\n",
" 'their',\n",
" 'delicious',\n",
" 'menu',\n",
" ',',\n",
" 'and',\n",
" 'you',\n",
" 'just',\n",
" 'might',\n",
" 'get',\n",
" 'lucky',\n",
" 'for',\n",
" 'dessert',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'hike',\n",
" 'is',\n",
" 'more',\n",
" 'romantic',\n",
" 'than',\n",
" 'it',\n",
" 'is',\n",
" 'heart-pounding',\n",
" ',',\n",
" 'but',\n",
" 'you’ll',\n",
" 'definitely',\n",
" 'get',\n",
" 'a',\n",
" 'little',\n",
" 'movement',\n",
" 'in',\n",
" 'as',\n",
" 'you',\n",
" 'ascend',\n",
" 'the',\n",
" 'long',\n",
" 'staircase',\n",
" 'to',\n",
" 'the',\n",
" 'top',\n",
" 'of',\n",
" 'Mt',\n",
" '.',\n",
" 'Bonnell',\n",
" '.',\n",
" 'From',\n",
" 'there',\n",
" 'you’ll',\n",
" 'have',\n",
" 'a',\n",
" 'beautiful',\n",
" 'view',\n",
" 'of',\n",
" 'Lake',\n",
" 'Austin',\n",
" 'as',\n",
" 'you',\n",
" 'pull',\n",
" 'out',\n",
" 'the',\n",
" 'blanket',\n",
" 'and',\n",
" 'picnic',\n",
" 'supplies',\n",
" 'you',\n",
" 'carefully',\n",
" 'planned',\n",
" 'ahead',\n",
" 'for',\n",
" '(',\n",
" 'right',\n",
" '?',\n",
" ')',\n",
" 'We',\n",
" 'recommend',\n",
" 'going',\n",
" 'at',\n",
" 'sunset',\n",
" 'for',\n",
" 'the',\n",
" 'ultimate',\n",
" 'in',\n",
" 'romantic',\n",
" 'satisfaction',\n",
" '.',\n",
" 'FYI',\n",
" ':',\n",
" 'if',\n",
" 'Mt',\n",
" '.',\n",
" 'Bonnell',\n",
" 'fills',\n",
" 'up',\n",
" 'with',\n",
" 'couples',\n",
" ',',\n",
" 'you',\n",
" 'could',\n",
" 'always',\n",
" 'try',\n",
" 'another',\n",
" 'one',\n",
" 'of',\n",
" 'these',\n",
" 'Austin',\n",
" 'hikes',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Lucky\",\n",
" 'for',\n",
" 'you',\n",
" 'and',\n",
" 'your',\n",
" 'date',\n",
" ',',\n",
" 'the',\n",
" 'largest',\n",
" 'laser',\n",
" 'tag',\n",
" 'arena',\n",
" 'in',\n",
" 'Texas',\n",
" ',',\n",
" 'Blazer',\n",
" 'Tag',\n",
" ',',\n",
" 'calls',\n",
" 'South',\n",
" 'Austin',\n",
" 'home',\n",
" '.',\n",
" 'This',\n",
" 'isn’t',\n",
" 'your',\n",
" 'ordinary',\n",
" 'laser',\n",
" 'tag',\n",
" '–',\n",
" 'this',\n",
" 'is',\n",
" 'a',\n",
" 'three-story',\n",
" 'maze',\n",
" 'of',\n",
" 'lights',\n",
" ',',\n",
" 'color',\n",
" ',',\n",
" 'and',\n",
" 'sound',\n",
" ',',\n",
" 'with',\n",
" 'ramps',\n",
" 'and',\n",
" 'bridges',\n",
" 'abounding',\n",
" '.',\n",
" 'Check',\n",
" 'it',\n",
" 'out',\n",
" 'on',\n",
" 'Friday',\n",
" 'and',\n",
" 'Saturday',\n",
" 'nights',\n",
" 'after',\n",
" '10pm',\n",
" 'for',\n",
" 'a',\n",
" 'discounted',\n",
" 'rate',\n",
" 'and',\n",
" 'with',\n",
" 'no',\n",
" 'little',\n",
" 'kids',\n",
" 'standing',\n",
" 'between',\n",
" 'you',\n",
" ',',\n",
" 'your',\n",
" 'date',\n",
" ',',\n",
" 'and',\n",
" 'laser',\n",
" 'tag',\n",
" 'victory',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Take\",\n",
" 'your',\n",
" 'date',\n",
" 'for',\n",
" 'a',\n",
" 'walk',\n",
" 'on',\n",
" 'the',\n",
" 'Town',\n",
" 'Lake',\n",
" 'trail',\n",
" 'and',\n",
" 'finish',\n",
" 'it',\n",
" 'off',\n",
" 'at',\n",
" 'Zilker',\n",
" 'Park',\n",
" 'Boat',\n",
" 'Rentals',\n",
" 'for',\n",
" 'a',\n",
" 'fun',\n",
" 'afternoon',\n",
" 'of',\n",
" 'canoeing',\n",
" '.',\n",
" 'In',\n",
" 'a',\n",
" 'canoe',\n",
" 'built',\n",
" 'for',\n",
" 'two',\n",
" ',',\n",
" 'you',\n",
" 'and',\n",
" 'the',\n",
" 'apple',\n",
" 'of',\n",
" 'your',\n",
" 'eye',\n",
" 'will',\n",
" 'row',\n",
" 'alongside',\n",
" 'skyline',\n",
" 'views',\n",
" ',',\n",
" 'sunbathing',\n",
" 'turtles',\n",
" ',',\n",
" 'and',\n",
" 'plenty',\n",
" 'of',\n",
" 'opportunities',\n",
" 'to',\n",
" 'jump',\n",
" 'in',\n",
" 'and',\n",
" 'cool',\n",
" 'off',\n",
" 'those',\n",
" 'hard-working',\n",
" 'arms',\n",
" '(',\n",
" 'that',\n",
" 'you',\n",
" 'were',\n",
" 'definitely',\n",
" 'not',\n",
" 'flexing',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'For\",\n",
" 'one',\n",
" 'weekend',\n",
" 'a',\n",
" 'month',\n",
" 'each',\n",
" 'summer',\n",
" ',',\n",
" 'Volente',\n",
" 'Beach',\n",
" 'opens',\n",
" 'its',\n",
" 'nighttime',\n",
" 'doors',\n",
" 'for',\n",
" 'grown-ups',\n",
" '(',\n",
" 'or',\n",
" 'at',\n",
" 'least',\n",
" 'those',\n",
" 'pretending',\n",
" 'to',\n",
" 'be',\n",
" ')',\n",
" 'for',\n",
" 'Adult',\n",
" 'Night',\n",
" '.',\n",
" 'Enjoy',\n",
" 'drinks',\n",
" 'by',\n",
" 'the',\n",
" 'pool',\n",
" ',',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'a',\n",
" 'game',\n",
" 'of',\n",
" 'water',\n",
" 'volleyball',\n",
" ',',\n",
" 'and',\n",
" 'finish',\n",
" 'off',\n",
" 'the',\n",
" 'fun',\n",
" 'by',\n",
" 'slipping',\n",
" 'and',\n",
" 'sliding',\n",
" 'down',\n",
" 'some',\n",
" 'super',\n",
" 'awesome',\n",
" 'water',\n",
" 'slides',\n",
" '.',\n",
" 'We’re',\n",
" 'pretty',\n",
" 'sure',\n",
" 'there’s',\n",
" 'no',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'woo',\n",
" 'your',\n",
" 'date',\n",
" 'while',\n",
" 'beating',\n",
" 'the',\n",
" 'Texas',\n",
" 'heat',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Lake\",\n",
" 'Travis',\n",
" 'Zipline',\n",
" 'Adventures',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'blend',\n",
" 'of',\n",
" 'adrenaline',\n",
" ',',\n",
" 'beauty',\n",
" ',',\n",
" 'and',\n",
" 'action-packed',\n",
" 'romance',\n",
" '.',\n",
" 'You’ll',\n",
" 'have',\n",
" 'to',\n",
" 'head',\n",
" 'out',\n",
" 'to',\n",
" 'Leander',\n",
" 'to',\n",
" 'make',\n",
" 'it',\n",
" 'a',\n",
" 'reality',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'well',\n",
" 'worth',\n",
" 'the',\n",
" 'trek',\n",
" '.',\n",
" 'Your',\n",
" 'three-hour',\n",
" 'adventure',\n",
" 'involves',\n",
" 'five',\n",
" 'zips',\n",
" 'ranging',\n",
" 'from',\n",
" '250',\n",
" 'feet',\n",
" 'to',\n",
" '2,800',\n",
" ',',\n",
" 'with',\n",
" 'awesome',\n",
" 'views',\n",
" 'of',\n",
" 'Lake',\n",
" 'Travis',\n",
" 'and',\n",
" 'the',\n",
" 'Texas',\n",
" 'Hill',\n",
" 'Country',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'kick',\n",
" 'it',\n",
" 'up',\n",
" 'a',\n",
" 'notch',\n",
" ',',\n",
" 'head',\n",
" 'out',\n",
" 'for',\n",
" 'the',\n",
" 'Night',\n",
" 'Flight',\n",
" ',',\n",
" 'which',\n",
" 'will',\n",
" 'have',\n",
" 'you',\n",
" 'zipping',\n",
" 'through',\n",
" 'the',\n",
" 'dark',\n",
" 'with',\n",
" 'headlamps',\n",
" 'and',\n",
" 'glow',\n",
" 'sticks',\n",
" 'lighting',\n",
" 'your',\n",
" 'way',\n",
" '.',\n",
" 'Hope',\n",
" 'you’re',\n",
" 'not',\n",
" 'afraid',\n",
" 'of',\n",
" 'the',\n",
" 'dark…or',\n",
" 'heights',\n",
" ',',\n",
" 'for',\n",
" 'that',\n",
" 'matter',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'…stays\",\n",
" 'together',\n",
" '.',\n",
" 'It’s',\n",
" 'the',\n",
" 'perfect',\n",
" 'recipe',\n",
" 'for',\n",
" 'a',\n",
" 'date',\n",
" ':',\n",
" 'good',\n",
" 'food',\n",
" ',',\n",
" 'good',\n",
" 'conversation',\n",
" ',',\n",
" 'and',\n",
" 'mimosas',\n",
" '.',\n",
" 'Thankfully',\n",
" ',',\n",
" 'Austin',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'brunch',\n",
" 'options',\n",
" '.',\n",
" 'Even',\n",
" 'better',\n",
" ',',\n",
" 'we',\n",
" 'did',\n",
" 'the',\n",
" 'hard',\n",
" 'work',\n",
" 'for',\n",
" 'you',\n",
" 'by',\n",
" 'putting',\n",
" 'together',\n",
" 'a',\n",
" 'list',\n",
" 'of',\n",
" 'the',\n",
" 'healthiest',\n",
" ',',\n",
" 'tastiest',\n",
" 'choices',\n",
" 'the',\n",
" 'city',\n",
" ...],\n",
" ['[',\n",
" \"'As\",\n",
" 'the',\n",
" 'sweltering',\n",
" 'heat',\n",
" 'of',\n",
" 'summer',\n",
" 'has',\n",
" 'finally',\n",
" 'behind',\n",
" 'us',\n",
" ',',\n",
" 'we',\n",
" 'now',\n",
" 'have',\n",
" 'months',\n",
" 'of',\n",
" 'sunny',\n",
" ',',\n",
" 'mild',\n",
" 'weather',\n",
" 'to',\n",
" 'look',\n",
" 'forward',\n",
" 'to',\n",
" '.',\n",
" 'Yes',\n",
" ',',\n",
" 'fall',\n",
" 'is',\n",
" 'upon',\n",
" 'us',\n",
" ',',\n",
" 'friends',\n",
" '!',\n",
" 'And',\n",
" 'here',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'that',\n",
" 'means',\n",
" 'all',\n",
" 'kinds',\n",
" 'of',\n",
" 'active',\n",
" 'outdoor',\n",
" 'goodness',\n",
" 'is',\n",
" 'calling',\n",
" 'our',\n",
" 'name',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Avid\",\n",
" 'hikers',\n",
" 'will',\n",
" 'find',\n",
" 'their',\n",
" 'favorite',\n",
" 'trails',\n",
" 'that',\n",
" 'much',\n",
" 'prettier',\n",
" 'with',\n",
" 'the',\n",
" 'changing',\n",
" 'leaves',\n",
" ',',\n",
" 'while',\n",
" 'runners',\n",
" 'won’t',\n",
" 'have',\n",
" 'to',\n",
" 'contend',\n",
" 'with',\n",
" 'temperatures',\n",
" 'of',\n",
" 'the',\n",
" 'underworld',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'a',\n",
" 'bunch',\n",
" 'of',\n",
" 'essential',\n",
" 'fall',\n",
" 'activities',\n",
" ',',\n",
" 'like',\n",
" 'picking',\n",
" 'apples',\n",
" 'and',\n",
" 'getting',\n",
" 'lost',\n",
" 'in',\n",
" 'a',\n",
" 'corn',\n",
" 'maze',\n",
" ',',\n",
" 'that',\n",
" 'are',\n",
" 'ready',\n",
" 'and',\n",
" 'waiting',\n",
" 'to',\n",
" 'fill',\n",
" 'your',\n",
" 'day',\n",
" 'with',\n",
" 'active',\n",
" 'fall',\n",
" 'fun',\n",
" ',',\n",
" 'so',\n",
" 'check',\n",
" '‘em',\n",
" 'out',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'An\",\n",
" 'apple',\n",
" 'a',\n",
" 'day…',\n",
" 'oh',\n",
" ',',\n",
" 'you',\n",
" 'know',\n",
" 'the',\n",
" 'saying',\n",
" '.',\n",
" 'The',\n",
" 'truth',\n",
" 'is',\n",
" ',',\n",
" 'nothing',\n",
" 'says',\n",
" 'fall',\n",
" 'spirit',\n",
" 'quite',\n",
" 'like',\n",
" 'some',\n",
" 'good',\n",
" 'ol’',\n",
" 'fashioned',\n",
" 'apple-picking',\n",
" '.',\n",
" 'Strolling',\n",
" 'through',\n",
" 'an',\n",
" 'orchard',\n",
" 'in',\n",
" 'crisp',\n",
" 'fall',\n",
" 'weather',\n",
" ',',\n",
" 'snacking',\n",
" 'on',\n",
" 'one',\n",
" 'of',\n",
" 'nature’s',\n",
" 'greatest',\n",
" 'delights',\n",
" 'is',\n",
" 'a',\n",
" 'lovely',\n",
" 'way',\n",
" 'to',\n",
" 'spend',\n",
" 'the',\n",
" 'day',\n",
" '.',\n",
" 'And',\n",
" 'fortunately',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'a',\n",
" 'couple',\n",
" 'of',\n",
" 'awesome',\n",
" 'orchards',\n",
" 'near',\n",
" 'Austin',\n",
" 'to',\n",
" 'make',\n",
" 'it',\n",
" 'happen',\n",
" '.',\n",
" 'Sonlight',\n",
" 'Apple',\n",
" 'Orchard',\n",
" 'in',\n",
" 'Mason',\n",
" 'has',\n",
" 'an',\n",
" 'adjacent',\n",
" 'bed',\n",
" 'and',\n",
" 'breakfast',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'make',\n",
" 'a',\n",
" 'little',\n",
" 'weekend',\n",
" 'getaway',\n",
" 'out',\n",
" 'of',\n",
" 'it',\n",
" '.',\n",
" 'And',\n",
" 'Apple',\n",
" 'Valley',\n",
" 'Orchard',\n",
" 'in',\n",
" 'Llano',\n",
" 'has',\n",
" 'every',\n",
" 'variety',\n",
" 'of',\n",
" 'apple',\n",
" 'under',\n",
" 'the',\n",
" 'sun',\n",
" ',',\n",
" 'as',\n",
" 'well',\n",
" 'as',\n",
" 'honey',\n",
" ',',\n",
" 'peaches',\n",
" ',',\n",
" 'and',\n",
" 'blackberries',\n",
" ',',\n",
" 'oh',\n",
" 'my',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'It’s\",\n",
" 'no',\n",
" 'secret',\n",
" 'that',\n",
" 'Austin',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'prime',\n",
" 'hiking',\n",
" 'spots',\n",
" ',',\n",
" 'and',\n",
" 'autumn',\n",
" 'just',\n",
" 'might',\n",
" 'be',\n",
" 'the',\n",
" 'absolute',\n",
" 'best',\n",
" 'time',\n",
" 'to',\n",
" 'enjoy',\n",
" 'them',\n",
" '.',\n",
" 'The',\n",
" 'temperature',\n",
" 'is',\n",
" 'perfect',\n",
" ',',\n",
" 'the',\n",
" 'scenery',\n",
" 'is',\n",
" 'beautiful',\n",
" ',',\n",
" 'and',\n",
" 'there',\n",
" 'are',\n",
" 'endless',\n",
" 'options',\n",
" 'to',\n",
" 'choose',\n",
" 'from',\n",
" '.',\n",
" 'To',\n",
" 'really',\n",
" 'take',\n",
" 'in',\n",
" 'the',\n",
" 'scenic',\n",
" 'beauty',\n",
" ',',\n",
" 'head',\n",
" 'to',\n",
" 'Sculpture',\n",
" 'Falls',\n",
" 'at',\n",
" 'Barton',\n",
" 'Creek',\n",
" 'for',\n",
" 'an',\n",
" 'intermediate',\n",
" ',',\n",
" 'five-mile',\n",
" 'trail',\n",
" 'bursting',\n",
" 'with',\n",
" 'natural',\n",
" 'treasures',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'if',\n",
" 'you’re',\n",
" 'a',\n",
" 'beginner',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'hike',\n",
" 'that’s',\n",
" 'more',\n",
" 'of',\n",
" 'a',\n",
" 'leisurely',\n",
" 'stroll',\n",
" ',',\n",
" 'you',\n",
" 'can’t',\n",
" 'go',\n",
" 'wrong',\n",
" 'with',\n",
" 'the',\n",
" 'family-friendly',\n",
" 'one-mile',\n",
" 'loop',\n",
" 'at',\n",
" 'Rock',\n",
" 'Shelter',\n",
" 'Trail',\n",
" 'in',\n",
" 'McKinney',\n",
" 'State',\n",
" 'Park',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'While\",\n",
" 'there',\n",
" 'aren’t',\n",
" 'many',\n",
" 'corn',\n",
" 'mazes',\n",
" 'within',\n",
" 'the',\n",
" 'confines',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" ',',\n",
" 'the',\n",
" 'surrounding',\n",
" 'Hill',\n",
" 'Country',\n",
" 'is',\n",
" 'bursting',\n",
" 'with',\n",
" 'opportunities',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'get',\n",
" 'lost',\n",
" '.',\n",
" 'Barton',\n",
" 'Hills',\n",
" 'Farms',\n",
" 'outside',\n",
" 'of',\n",
" 'Bastrop',\n",
" 'boasts',\n",
" 'a',\n",
" 'five-acre',\n",
" 'corn',\n",
" 'maze',\n",
" ',',\n",
" 'a',\n",
" 'pumpkin',\n",
" 'patch',\n",
" ',',\n",
" 'and',\n",
" 'live',\n",
" 'music',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'boogie',\n",
" 'on',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you’re',\n",
" 'willing',\n",
" 'to',\n",
" 'go',\n",
" 'the',\n",
" 'distance',\n",
" ',',\n",
" 'a',\n",
" 'road',\n",
" 'trip',\n",
" 'to',\n",
" 'Rocky',\n",
" 'Creek',\n",
" 'Maze',\n",
" 'at',\n",
" 'Chaloupka',\n",
" 'Farm',\n",
" 'will',\n",
" 'get',\n",
" 'you',\n",
" 'an',\n",
" 'eight-acre',\n",
" 'maze',\n",
" ',',\n",
" 'hayrides',\n",
" ',',\n",
" 'a',\n",
" 'family',\n",
" 'slide',\n",
" ',',\n",
" 'duck',\n",
" 'races',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'corn',\n",
" 'cannon',\n",
" '.',\n",
" 'That’s',\n",
" 'right',\n",
" ',',\n",
" 'a',\n",
" 'corn',\n",
" 'cannon',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Texas\",\n",
" 'is',\n",
" 'nothing',\n",
" 'without',\n",
" 'its',\n",
" 'horses',\n",
" '.',\n",
" 'And',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'places',\n",
" 'around',\n",
" 'town',\n",
" 'where',\n",
" 'you',\n",
" 'can',\n",
" 'saddle',\n",
" 'up',\n",
" 'this',\n",
" 'season',\n",
" '.',\n",
" 'Texas',\n",
" 'Trail',\n",
" 'Rides',\n",
" 'offers',\n",
" 'trail',\n",
" 'riding',\n",
" ',',\n",
" 'ranch',\n",
" 'rodeos',\n",
" ',',\n",
" 'year-round',\n",
" 'swimming',\n",
" ',',\n",
" 'and',\n",
" 'even',\n",
" 'ATV',\n",
" 'adventures',\n",
" ',',\n",
" 'so',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'ways',\n",
" 'to',\n",
" 'enjoy',\n",
" 'this',\n",
" 'scene',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'horse',\n",
" 'walkers',\n",
" 'available',\n",
" 'to',\n",
" 'accompany',\n",
" 'small',\n",
" 'children',\n",
" ',',\n",
" 'so',\n",
" 'no',\n",
" 'matter',\n",
" 'your',\n",
" 'age',\n",
" 'and',\n",
" 'skill-level',\n",
" ',',\n",
" 'you’ll',\n",
" 'be',\n",
" 'good',\n",
" 'to',\n",
" 'go',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'take',\n",
" 'your',\n",
" 'riding',\n",
" 'to',\n",
" 'the',\n",
" 'next',\n",
" 'level',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'Maverick',\n",
" 'Horseback',\n",
" 'Riding',\n",
" 'in',\n",
" 'Lockhart',\n",
" 'to',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'series',\n",
" 'of',\n",
" 'trail-based',\n",
" 'lessons',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'On\",\n",
" 'your',\n",
" 'mark',\n",
" ',',\n",
" 'get',\n",
" 'set',\n",
" ',',\n",
" 'GO',\n",
" '!',\n",
" 'The',\n",
" 'weather',\n",
" 'this',\n",
" 'time',\n",
" 'of',\n",
" 'year',\n",
" 'is',\n",
" 'begging',\n",
" 'your',\n",
" 'sneakers',\n",
" 'to',\n",
" 'hit',\n",
" 'the',\n",
" 'pavement',\n",
" 'for',\n",
" 'a',\n",
" 'little',\n",
" 'competitive',\n",
" 'racing',\n",
" '.',\n",
" 'On',\n",
" 'November',\n",
" '13th',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'all-levels',\n",
" 'Run',\n",
" 'with',\n",
" 'The',\n",
" 'Heroes',\n",
" '5K',\n",
" 'at',\n",
" 'Camp',\n",
" 'Mabry',\n",
" 'as',\n",
" 'you',\n",
" 'honor',\n",
" 'the',\n",
" 'first',\n",
" 'responders',\n",
" '(',\n",
" 'firefighters',\n",
" ',',\n",
" 'police',\n",
" 'officers',\n",
" ',',\n",
" 'EMTs',\n",
" ')',\n",
" 'who',\n",
" 'serve',\n",
" 'our',\n",
" 'community',\n",
" 'each',\n",
" 'day',\n",
" '.',\n",
" 'Or',\n",
" 'you',\n",
" 'can',\n",
" 'head',\n",
" 'out',\n",
" 'to',\n",
" 'Pioneer',\n",
" 'Farms',\n",
" 'on',\n",
" 'November',\n",
" '12th',\n",
" 'for',\n",
" 'the',\n",
" 'Pioneer',\n",
" 'Trail',\n",
" '5K',\n",
" '.',\n",
" 'It’s',\n",
" 'a',\n",
" 'super',\n",
" 'family-friendly',\n",
" 'event',\n",
" 'for',\n",
" 'all',\n",
" 'levels',\n",
" 'with',\n",
" 'the',\n",
" 'lead',\n",
" 'runner',\n",
" 'being',\n",
" 'a',\n",
" 'horse…',\n",
" 'of',\n",
" 'course',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Now\",\n",
" 'that',\n",
" 'the',\n",
" 'temperatures',\n",
" 'have',\n",
" 'dropped',\n",
" 'below',\n",
" 'fiery',\n",
" 'inferno',\n",
" 'levels',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'put',\n",
" 'your',\n",
" 'two',\n",
" 'wheels',\n",
" 'in',\n",
" 'motion',\n",
" 'and',\n",
" 'pedal',\n",
" 'your',\n",
" 'heart',\n",
" 'out',\n",
" '!',\n",
" 'There',\n",
" 'are',\n",
" 'biking',\n",
" 'trails',\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" ',',\n",
" 'so',\n",
" 'everyone',\n",
" 'from',\n",
" 'Southsiders',\n",
" 'to',\n",
" 'Northern',\n",
" 'dwellers',\n",
" 'have',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'options',\n",
" 'to',\n",
" 'choose',\n",
" 'from',\n",
" '.',\n",
" 'But',\n",
" 'you',\n",
" 'can’t',\n",
" 'really',\n",
" 'go',\n",
" 'wrong',\n",
" 'if',\n",
" 'you',\n",
" 'bring',\n",
" 'your',\n",
" 'bike',\n",
" 'central',\n",
" 'to',\n",
" 'the',\n",
" 'Town',\n",
" 'Lake',\n",
" 'Hike',\n",
" 'and',\n",
" 'Bike',\n",
" 'Trail',\n",
" '.',\n",
" 'The',\n",
" 'fall',\n",
" 'foliage',\n",
" 'looks',\n",
" 'killer',\n",
" 'over',\n",
" 'the',\n",
" 'water',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'city',\n",
" 'skyline',\n",
" 'will',\n",
" 'be',\n",
" 'with',\n",
" 'you',\n",
" 'the',\n",
" 'whole',\n",
" '10-mile',\n",
" 'way',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'art',\n",
" 'lover',\n",
" 'AND',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'make',\n",
" 'sure',\n",
" 'you',\n",
" 'get',\n",
" 'your',\n",
" 'steps',\n",
" 'in',\n",
" 'for',\n",
" 'the',\n",
" 'day',\n",
" ',',\n",
" 'then',\n",
" 'you',\n",
" 'must',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'East',\n",
" 'Austin',\n",
" 'Studio',\n",
" 'Tour',\n",
" '.',\n",
" 'It’s',\n",
" 'a',\n",
" 'free',\n",
" ',',\n",
" 'self-guided',\n",
" 'tour',\n",
" 'of',\n",
" 'the',\n",
" 'Eastside',\n",
" 'that',\n",
" 'spans',\n",
" 'across',\n",
" 'the',\n",
" 'second',\n",
" 'and',\n",
" 'third',\n",
" 'weekends',\n",
" 'of',\n",
" 'November',\n",
" ',',\n",
" 'and',\n",
" 'it',\n",
" 'really',\n",
" 'is',\n",
" 'a',\n",
" 'treat',\n",
" '.',\n",
" 'Hundreds',\n",
" 'of',\n",
" 'Austin-based',\n",
" 'artists',\n",
" 'open',\n",
" 'up',\n",
" 'their',\n",
" 'studio',\n",
" 'doors',\n",
" 'for',\n",
" 'the',\n",
" 'public',\n",
" 'in',\n",
" 'an',\n",
" 'effort',\n",
" 'to',\n",
" 'cultivate',\n",
" 'community',\n",
" 'connection',\n",
" 'and',\n",
" 'collaboration',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'plan',\n",
" 'to',\n",
" 'hit',\n",
" 'them',\n",
" 'all',\n",
" ',',\n",
" 'you',\n",
" 'better',\n",
" 'be',\n",
" 'wearing',\n",
" 'a',\n",
" 'comfortable',\n",
" 'pair',\n",
" 'of',\n",
" 'shoes',\n",
" 'because',\n",
" 'the',\n",
" 'number',\n",
" 'of',\n",
" 'participants—both',\n",
" 'official',\n",
" 'and',\n",
" 'unofficial—are',\n",
" 'nearly',\n",
" 'endless',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Are\",\n",
" 'you',\n",
" 'excited',\n",
" 'for',\n",
" 'fall',\n",
" 'in',\n",
" 'Austin',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" '\\\\xa0comment',\n",
" 'here',\n",
" 'on',\n",
" 'Facebook',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Are\",\n",
" 'you',\n",
" 'excited',\n",
" 'for',\n",
" 'fall',\n",
" 'in',\n",
" 'Austin',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" '\\\\xa0comment',\n",
" 'here',\n",
" 'on',\n",
" 'Facebook',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" 'free',\n",
" '.',\n",
" 'And',\n",
" 'you',\n",
" 'can',\n",
" ',',\n",
" 'fitness',\n",
" 'fiends',\n",
" ',',\n",
" 'any',\n",
" 'day',\n",
" 'of',\n",
" 'the',\n",
" 'week',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'scoured',\n",
" 'our',\n",
" 'great',\n",
" 'city',\n",
" 'of',\n",
" 'Austin',\n",
" 'to',\n",
" 'bring',\n",
" 'you',\n",
" 'this',\n",
" 'list',\n",
" 'of',\n",
" 'awesome',\n",
" '–',\n",
" 'free',\n",
" '–',\n",
" 'fitness',\n",
" 'groups',\n",
" 'and',\n",
" 'classes',\n",
" 'all',\n",
" 'over',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'an',\n",
" 'avid',\n",
" 'runner',\n",
" 'looking',\n",
" 'to',\n",
" 'improve',\n",
" 'your',\n",
" 'personal',\n",
" 'best',\n",
" ',',\n",
" 'or',\n",
" 'you’ve',\n",
" 'always',\n",
" 'wanted',\n",
" 'to',\n",
" 'do',\n",
" 'a',\n",
" 'downward',\n",
" 'dog',\n",
" 'under',\n",
" 'the',\n",
" 'full',\n",
" 'moon',\n",
" ',',\n",
" 'this',\n",
" 'list',\n",
" 'has',\n",
" 'you',\n",
" 'covered',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'When\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'dose',\n",
" 'of',\n",
" 'exercise',\n",
" 'but',\n",
" 'don’t',\n",
" 'know',\n",
" 'exactly',\n",
" 'what',\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" ',',\n",
" 'block',\n",
" 'off',\n",
" 'a',\n",
" 'portion',\n",
" 'of',\n",
" 'your',\n",
" 'Friday',\n",
" 'for',\n",
" 'Fresh',\n",
" 'Friday',\n",
" '.',\n",
" 'Fresh',\n",
" 'Friday’s',\n",
" 'goal',\n",
" 'is',\n",
" 'pretty',\n",
" 'simple',\n",
" ':',\n",
" 'they',\n",
" 'want',\n",
" 'to',\n",
" 'make',\n",
" 'Austin',\n",
" 'the',\n",
" 'fittest',\n",
" 'city',\n",
" 'in',\n",
" 'the',\n",
" 'US',\n",
" '.',\n",
" 'And',\n",
" 'they’re',\n",
" 'doing',\n",
" 'that',\n",
" 'by',\n",
" 'working',\n",
" 'with',\n",
" 'over',\n",
" '40',\n",
" 'different',\n",
" 'ATX',\n",
" 'sweat',\n",
" 'spots',\n",
" '(',\n",
" 'like',\n",
" 'Pedal',\n",
" 'Hard',\n",
" ',',\n",
" 'FIT',\n",
" 'Austin',\n",
" ',',\n",
" 'and',\n",
" 'CorePower',\n",
" 'Yoga',\n",
" ')',\n",
" 'to',\n",
" 'offer',\n",
" 'us',\n",
" 'a',\n",
" 'FREE',\n",
" 'class',\n",
" 'every',\n",
" 'Friday',\n",
" '.',\n",
" 'Feel',\n",
" 'out',\n",
" 'a',\n",
" 'new',\n",
" 'fitness',\n",
" 'scheme',\n",
" 'while',\n",
" 'you',\n",
" 'sweat',\n",
" 'with',\n",
" 'fellow',\n",
" 'Austinites',\n",
" '.',\n",
" 'But',\n",
" 'don’t',\n",
" 'forget',\n",
" 'to',\n",
" 'schedule',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Saturday’s\",\n",
" 'workout',\n",
" 'is',\n",
" 'brought',\n",
" 'to',\n",
" 'you',\n",
" 'by',\n",
" 'the',\n",
" 'letter',\n",
" '‘S’',\n",
" '.',\n",
" 'It’s',\n",
" 'then',\n",
" 'that',\n",
" 'these',\n",
" 'Austin',\n",
" 'outdoor',\n",
" 'fitness',\n",
" 'coaches',\n",
" 'host',\n",
" 'the',\n",
" 'Stronghorn',\n",
" 'Saturday',\n",
" 'Sweat',\n",
" 'Sessions',\n",
" '(',\n",
" 'or',\n",
" '“',\n",
" '#',\n",
" 'SSSS”',\n",
" 'if',\n",
" 'you',\n",
" 'internet',\n",
" ')',\n",
" '.',\n",
" 'These',\n",
" 'donation-based',\n",
" 'classes',\n",
" '(',\n",
" 'your',\n",
" 'donation',\n",
" 'can',\n",
" 'be',\n",
" 'sweating',\n",
" 'and',\n",
" 'complaining',\n",
" 'if',\n",
" 'you',\n",
" 'choose',\n",
" ')',\n",
" 'held',\n",
" 'in',\n",
" 'Zilker',\n",
" 'Park',\n",
" 'give',\n",
" 'you',\n",
" 'the',\n",
" 'jump-start',\n",
" 'you',\n",
" 'need',\n",
" 'to',\n",
" 'a',\n",
" 'Saturday',\n",
" '.',\n",
" 'Everyone',\n",
" 'is',\n",
" 'invited',\n",
" 'and',\n",
" 'everyone',\n",
" 'will',\n",
" 'be',\n",
" 'challenged',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'No\",\n",
" 'matter',\n",
" 'what',\n",
" 'some',\n",
" 'people',\n",
" 'say',\n",
" ',',\n",
" 'Saturdays',\n",
" 'are',\n",
" 'for',\n",
" 'everyone',\n",
" '.',\n",
" 'And',\n",
" 'apparently',\n",
" ',',\n",
" 'it’s',\n",
" 'the',\n",
" 'perfect',\n",
" 'day',\n",
" 'to',\n",
" 'sweat',\n",
" '.',\n",
" 'The',\n",
" 'Saturday',\n",
" 'Sweat',\n",
" 'Club',\n",
" 'meets',\n",
" 'around',\n",
" 'the',\n",
" 'city',\n",
" 'in',\n",
" 'places',\n",
" 'like',\n",
" 'Zilker',\n",
" 'Park',\n",
" 'and',\n",
" 'their',\n",
" 'home',\n",
" 'base',\n",
" ',',\n",
" 'Titan',\n",
" 'Evolution',\n",
" ',',\n",
" 'in',\n",
" 'Old',\n",
" 'West',\n",
" 'Austin',\n",
" '.',\n",
" 'Two',\n",
" 'things',\n",
" 'are',\n",
" 'for',\n",
" 'certain',\n",
" 'when',\n",
" 'you',\n",
" 'attend',\n",
" 'an',\n",
" 'epic',\n",
" 'sweat',\n",
" 'sesh',\n",
" ':',\n",
" 'you’re',\n",
" 'going',\n",
" 'to',\n",
" 'work',\n",
" 'really',\n",
" 'hard',\n",
" ',',\n",
" 'and',\n",
" 'you’re',\n",
" 'going',\n",
" 'to',\n",
" 'have',\n",
" 'fun',\n",
" '(',\n",
" 'both',\n",
" 'is',\n",
" 'the',\n",
" 'goal',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Every\",\n",
" 'week',\n",
" 'Whole',\n",
" 'Foods',\n",
" 'downtown',\n",
" 'hosts',\n",
" 'different',\n",
" 'yoga',\n",
" 'and',\n",
" 'fitness',\n",
" 'studios',\n",
" 'offering',\n",
" 'a',\n",
" 'bevy',\n",
" 'of',\n",
" 'free',\n",
" 'classes',\n",
" 'from',\n",
" 'barre',\n",
" 'to',\n",
" 'boot',\n",
" 'camp',\n",
" '.',\n",
" 'Their',\n",
" 'Yoga',\n",
" 'on',\n",
" 'the',\n",
" 'Plaza',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'blend',\n",
" 'of',\n",
" 'relax',\n",
" 'and',\n",
" 'revel',\n",
" ',',\n",
" 'set',\n",
" 'to',\n",
" 'a',\n",
" '60-minute',\n",
" 'playlist',\n",
" 'of',\n",
" 'fresh',\n",
" 'beats',\n",
" '.',\n",
" 'Even',\n",
" 'better',\n",
" ',',\n",
" 'they',\n",
" 'all',\n",
" 'take',\n",
" 'place',\n",
" 'on',\n",
" 'the',\n",
" 'rooftop',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'soak',\n",
" 'in',\n",
" 'the',\n",
" 'scenery',\n",
" 'for',\n",
" 'motivation',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'On\",\n",
" 'the',\n",
" 'third',\n",
" 'Thursday',\n",
" 'of',\n",
" 'each',\n",
" 'month',\n",
" ',',\n",
" 'bring',\n",
" 'your',\n",
" 'mat',\n",
" 'to',\n",
" 'the',\n",
" 'Blanton',\n",
" 'Museum',\n",
" 'for',\n",
" 'free',\n",
" 'yoga',\n",
" 'at',\n",
" 'noon',\n",
" '.',\n",
" 'The',\n",
" 'atrium',\n",
" 'becomes',\n",
" 'your',\n",
" 'studio',\n",
" 'as',\n",
" 'you’re',\n",
" 'taken',\n",
" 'through',\n",
" 'an',\n",
" 'all-levels',\n",
" ',',\n",
" '60-minute',\n",
" 'flow',\n",
" '.',\n",
" 'What',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'appreciate',\n",
" 'art',\n",
" 'than',\n",
" 'from',\n",
" 'a',\n",
" 'zen-like',\n",
" 'state',\n",
" 'of',\n",
" 'mind',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Create\",\n",
" 'a',\n",
" 'cosmic',\n",
" 'connection',\n",
" 'between',\n",
" 'your',\n",
" 'body',\n",
" 'and',\n",
" 'nature',\n",
" 'at',\n",
" 'Charles',\n",
" 'MacInerney’s',\n",
" 'monthly',\n",
" 'free',\n",
" 'full',\n",
" 'moon',\n",
" 'yoga',\n",
" 'class',\n",
" '.',\n",
" 'Locations',\n",
" 'always',\n",
" 'vary',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'dates',\n",
" 'are',\n",
" 'simple',\n",
" ':',\n",
" 'whenever',\n",
" 'the',\n",
" 'moon',\n",
" 'is',\n",
" 'full',\n",
" ',',\n",
" 'your',\n",
" 'body',\n",
" 'is',\n",
" 'called',\n",
" 'to',\n",
" 'the',\n",
" 'mat',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Start\",\n",
" 'the',\n",
" 'day',\n",
" 'with',\n",
" 'the',\n",
" 'champion',\n",
" 'combination',\n",
" 'of',\n",
" 'cardio',\n",
" 'and',\n",
" 'breakfast',\n",
" 'tacos',\n",
" 'every',\n",
" 'Tuesday',\n",
" 'at',\n",
" '6am',\n",
" '.',\n",
" 'Meet',\n",
" 'at',\n",
" 'Luke’s',\n",
" 'Locker',\n",
" 'for',\n",
" 'a',\n",
" '4.5-',\n",
" 'or',\n",
" 'seven-mile',\n",
" 'run',\n",
" ',',\n",
" 'and',\n",
" 'reward',\n",
" 'yourself',\n",
" 'with',\n",
" 'all',\n",
" 'the',\n",
" 'tacos',\n",
" 'from',\n",
" 'Tacodeli',\n",
" 'when',\n",
" 'you’re',\n",
" 'finished',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Speaking\",\n",
" 'of',\n",
" 'fitness',\n",
" 'studios',\n",
" 'hosting',\n",
" 'workouts',\n",
" ',',\n",
" 'each',\n",
" 'month',\n",
" 'Athleta',\n",
" 'and',\n",
" 'lululemon',\n",
" 'at',\n",
" 'The',\n",
" 'Domain',\n",
" 'open',\n",
" 'their',\n",
" 'doors',\n",
" 'for',\n",
" 'different',\n",
" 'studios',\n",
" 'to',\n",
" 'put',\n",
" 'on',\n",
" 'free',\n",
" 'workout',\n",
" 'classes',\n",
" 'for',\n",
" 'the',\n",
" 'public',\n",
" '.',\n",
" 'Past',\n",
" 'studios',\n",
" 'include',\n",
" 'CorePower',\n",
" 'Yoga',\n",
" ',',\n",
" 'Dane’s',\n",
" 'Body',\n",
" 'Shop',\n",
" ',',\n",
" 'and',\n",
" 'Pure',\n",
" 'Pilates',\n",
" ',',\n",
" 'so',\n",
" 'there’s',\n",
" 'a',\n",
" 'little',\n",
" 'somethin’-somethin’',\n",
" 'for',\n",
" 'everyone',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'keep',\n",
" 'hearing',\n",
" 'about',\n",
" 'it',\n",
" ',',\n",
" 'but',\n",
" 'still',\n",
" 'have',\n",
" 'no',\n",
" 'idea',\n",
" 'what',\n",
" 'The',\n",
" 'Box',\n",
" ',',\n",
" 'WODs',\n",
" ',',\n",
" 'or',\n",
" 'AMRAPs',\n",
" 'are',\n",
" '?',\n",
" 'Then',\n",
" 'check',\n",
" 'out',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'free',\n",
" ',',\n",
" 'monthly',\n",
" 'community',\n",
" 'classes',\n",
" 'at',\n",
" 'CrossFit',\n",
" 'Central',\n",
" '.',\n",
" 'With',\n",
" 'locations',\n",
" 'in',\n",
" 'downtown',\n",
" 'and',\n",
" 'North',\n",
" 'Austin',\n",
" ',',\n",
" 'there’s',\n",
" 'every',\n",
" 'reason',\n",
" 'to',\n",
" 'become',\n",
" 'a',\n",
" 'part',\n",
" 'of',\n",
" 'this',\n",
" 'cult',\n",
" 'classic',\n",
" '.',\n",
" 'You',\n",
" 'might',\n",
" 'just',\n",
" 'hit',\n",
" 'a',\n",
" 'new',\n",
" 'PR',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Every\",\n",
" 'Monday',\n",
" 'night',\n",
" 'Austin',\n",
" 'running',\n",
" 'enthusiasts',\n",
" 'are',\n",
" 'invited',\n",
" 'to',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'a',\n",
" 'three-',\n",
" 'to',\n",
" 'six-mile',\n",
" 'run',\n",
" 'in',\n",
" 'North',\n",
" 'Hills',\n",
" '.',\n",
" 'Paces',\n",
" 'range',\n",
" 'from',\n",
" 'beginner',\n",
" 'to',\n",
" 'elite',\n",
" ',',\n",
" 'so',\n",
" 'regardless',\n",
" 'of',\n",
" 'your',\n",
" 'experience',\n",
" 'if',\n",
" 'you',\n",
" 'enjoy',\n",
" 'getting',\n",
" 'your',\n",
" 'running',\n",
" 'jaunt',\n",
" 'on',\n",
" ',',\n",
" 'you’ll',\n",
" 'fit',\n",
" 'right',\n",
" 'in',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ',',\n",
" \"'Eastsiders\",\n",
" 'rejoice',\n",
" '!',\n",
" 'Your',\n",
" 'favorite',\n",
" 'coffeehouse',\n",
" 'also',\n",
" 'offers',\n",
" 'free',\n",
" 'yoga',\n",
" 'at',\n",
" '8am',\n",
" 'every',\n",
" 'Monday',\n",
" 'through',\n",
" 'Friday',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'clear',\n",
" 'your',\n",
" 'mind',\n",
" 'and',\n",
" 'energize',\n",
" 'your',\n",
" 'body',\n",
" 'at',\n",
" 'these',\n",
" 'classes',\n",
" ',',\n",
" 'you',\n",
" 'might',\n",
" 'not',\n",
" 'even',\n",
" 'need',\n",
" 'that',\n",
" 'caffeine',\n",
" 'fix',\n",
" 'after',\n",
" 'all',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'consider',\n",
" 'yourself',\n",
" 'an',\n",
" 'early',\n",
" 'bird',\n",
" 'or',\n",
" 'need',\n",
" 'to',\n",
" 'find',\n",
" 'a',\n",
" 'way',\n",
" 'to',\n",
" 'become',\n",
" 'one',\n",
" ',',\n",
" 'Project',\n",
" 'Austin',\n",
" 'is',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" 'The',\n",
" 'project',\n",
" 'is',\n",
" 'simple',\n",
" '.',\n",
" 'They’re',\n",
" 'going',\n",
" 'to',\n",
" 'invite',\n",
" 'you',\n",
" 'to',\n",
" 'workout',\n",
" 'with',\n",
" 'them',\n",
" 'three',\n",
" 'times',\n",
" 'per',\n",
" 'week',\n",
" 'at',\n",
" '6am',\n",
" '.',\n",
" 'It’s',\n",
" 'not',\n",
" 'that',\n",
" 'crazy…it',\n",
" 'is',\n",
" 'a',\n",
" 'little',\n",
" 'weird',\n",
" 'though',\n",
" '(',\n",
" 'as',\n",
" 'Austin',\n",
" 'should',\n",
" 'be',\n",
" ')',\n",
" '.',\n",
" 'This',\n",
" 'tight-knit',\n",
" 'group',\n",
" 'of',\n",
" 'all',\n",
" 'abilities',\n",
" 'and',\n",
" 'backgrounds',\n",
" 'meets',\n",
" 'Mondays',\n",
" 'at',\n",
" 'the',\n",
" 'Pfluger',\n",
" 'Bridge',\n",
" ',',\n",
" 'Wednesdays',\n",
" 'at',\n",
" 'the',\n",
" 'State',\n",
" 'Capitol',\n",
" 'steps',\n",
" ',',\n",
" 'and',\n",
" 'Fridays',\n",
" 'at',\n",
" 'the',\n",
" 'Federal',\n",
" 'Courthouse',\n",
" 'steps',\n",
" '(',\n",
" 'by',\n",
" 'Republic',\n",
" 'Square',\n",
" 'Park',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'We\",\n",
" 'solemnly',\n",
" 'swear',\n",
" 'that',\n",
" 'we’re',\n",
" 'up',\n",
" 'to…some',\n",
" 'sweaty',\n",
" 'Hatha',\n",
" 'yoga',\n",
" '.',\n",
" 'You',\n",
" 'may',\n",
" 'not',\n",
" 'get',\n",
" 'that',\n",
" 'reference',\n",
" 'if',\n",
" 'you’re',\n",
" 'not',\n",
" 'a',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'fan',\n",
" ',',\n",
" 'but',\n",
" 'that',\n",
" 'also',\n",
" 'means',\n",
" 'you',\n",
" 'won’t',\n",
" 'get',\n",
" 'as',\n",
" 'hysterical',\n",
" 'when',\n",
" 'you',\n",
" 'find',\n",
" 'out',\n",
" 'there’s',\n",
" 'a',\n",
" 'HP-inspired',\n",
" 'yoga',\n",
" 'class',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'know',\n",
" '!',\n",
" 'But',\n",
" 'take',\n",
" 'a',\n",
" 'few',\n",
" 'Ujjayi',\n",
" 'breaths',\n",
" '.',\n",
" 'You',\n",
" 'don’t',\n",
" 'need',\n",
" 'the',\n",
" 'Marauder’s',\n",
" 'Map',\n",
" 'to',\n",
" 'find',\n",
" 'these',\n",
" 'magical',\n",
" 'classes',\n",
" '–',\n",
" 'they’re',\n",
" 'here',\n",
" 'to',\n",
" 'stay',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'your',\n",
" 'patronus',\n",
" 'is',\n",
" 'a',\n",
" 'downward',\n",
" 'dog',\n",
" ',',\n",
" 'you',\n",
" 'absolutely',\n",
" 'need',\n",
" 'to',\n",
" 'experience',\n",
" 'this',\n",
" 'mash-up',\n",
" 'of',\n",
" 'the',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'and',\n",
" 'yoga',\n",
" 'worlds',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'love',\n",
" 'beer',\n",
" 'as',\n",
" 'well',\n",
" ',',\n",
" 'it’s',\n",
" 'like',\n",
" 'the',\n",
" 'ultimate',\n",
" 'trip',\n",
" 'to',\n",
" 'Hogsmeade',\n",
" '(',\n",
" 'only',\n",
" 'you’ll',\n",
" 'get',\n",
" 'the',\n",
" 'real',\n",
" 'deal',\n",
" ',',\n",
" 'not',\n",
" 'butterbeer',\n",
" ')',\n",
" '.',\n",
" 'That’s',\n",
" 'because',\n",
" 'these',\n",
" 'special',\n",
" 'editions',\n",
" 'of',\n",
" 'Pints',\n",
" '&',\n",
" 'Poses',\n",
" '(',\n",
" 'led',\n",
" 'by',\n",
" 'yoga',\n",
" 'pro',\n",
" 'Isabel',\n",
" 'Beltran',\n",
" ')',\n",
" 'go',\n",
" 'down',\n",
" 'in',\n",
" 'the',\n",
" 'tasting',\n",
" 'room',\n",
" 'of',\n",
" 'Circle',\n",
" 'Brewing',\n",
" 'Co.',\n",
" 'in',\n",
" 'North',\n",
" 'Burnet',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'So\",\n",
" 'what’s',\n",
" 'to',\n",
" 'this',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'yoga',\n",
" '?',\n",
" 'The',\n",
" 'first',\n",
" 'event',\n",
" ',',\n",
" 'a',\n",
" 'Halloween',\n",
" 'edition',\n",
" 'of',\n",
" 'Pints',\n",
" '&',\n",
" 'Poses',\n",
" ',',\n",
" 'featured',\n",
" 'yoga',\n",
" 'with',\n",
" 'very',\n",
" 'wizarding-world',\n",
" 'poses',\n",
" '–',\n",
" 'like',\n",
" 'Whomping',\n",
" 'Willow',\n",
" 'for',\n",
" 'tree',\n",
" 'pose',\n",
" 'and',\n",
" 'a',\n",
" 'very',\n",
" 'Slytherin',\n",
" 'cobra',\n",
" '.',\n",
" 'Class',\n",
" 'was',\n",
" 'topped',\n",
" 'off',\n",
" 'with',\n",
" 'a',\n",
" 'mellowing',\n",
" 'savasana',\n",
" 'under',\n",
" 'invisibility',\n",
" 'cloaks',\n",
" '(',\n",
" 'aka',\n",
" 'warm',\n",
" 'yoga',\n",
" 'blankets',\n",
" ')',\n",
" 'while',\n",
" 'the',\n",
" 'Tale',\n",
" 'of',\n",
" 'the',\n",
" 'Three',\n",
" 'Brothers',\n",
" 'was',\n",
" 'told',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'you',\n",
" 'did',\n",
" 'the',\n",
" 'whole',\n",
" 'practice',\n",
" 'with',\n",
" 'a',\n",
" 'wand',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Not\",\n",
" 'surprisingly',\n",
" ',',\n",
" 'the',\n",
" 'event',\n",
" 'sold',\n",
" 'out',\n",
" 'fast',\n",
" '.',\n",
" 'But',\n",
" 'Pints',\n",
" '&',\n",
" 'Poses',\n",
" 'knows',\n",
" 'what',\n",
" 'we',\n",
" 'want',\n",
" '(',\n",
" 'MORE',\n",
" 'MAGIC',\n",
" '!',\n",
" ')',\n",
" '.',\n",
" 'That’s',\n",
" 'why',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'yoga',\n",
" 'has',\n",
" 'added',\n",
" 'additional',\n",
" 'dates',\n",
" ',',\n",
" 'ongoing',\n",
" 'indefinitely',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Coinciding\",\n",
" 'with',\n",
" 'the',\n",
" 'release',\n",
" 'of',\n",
" 'Fantastic',\n",
" 'Beasts',\n",
" 'and',\n",
" 'Where',\n",
" 'to',\n",
" 'Find',\n",
" 'Them',\n",
" '(',\n",
" 'set',\n",
" 'in',\n",
" 'the',\n",
" 'same',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'universe',\n",
" ')',\n",
" ',',\n",
" 'Pints',\n",
" '&',\n",
" 'Poses',\n",
" 'will',\n",
" 'again',\n",
" 'be',\n",
" 'occupying',\n",
" 'Circle',\n",
" 'Brewing’s',\n",
" 'tasting',\n",
" 'room',\n",
" 'for',\n",
" 'an',\n",
" 'hour-long',\n",
" 'session',\n",
" 'of',\n",
" 'all-levels',\n",
" 'Hatha',\n",
" 'yoga',\n",
" '.',\n",
" 'Yes',\n",
" ',',\n",
" 'wands',\n",
" 'and',\n",
" 'beer',\n",
" 'will',\n",
" 'be',\n",
" 'provided',\n",
" '.',\n",
" 'Really',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'our',\n",
" 'dream',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'just',\n",
" 'need',\n",
" 'to',\n",
" 'bring',\n",
" 'a',\n",
" 'yoga',\n",
" 'mat',\n",
" ',',\n",
" 'mindful',\n",
" 'presence',\n",
" ',',\n",
" 'and',\n",
" 'maybe',\n",
" 'brush',\n",
" 'up',\n",
" 'on',\n",
" 'your',\n",
" 'spells',\n",
" 'before',\n",
" 'class',\n",
" '(',\n",
" 'Leviosa',\n",
" 'not',\n",
" 'LevioSAHHHH',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'By\",\n",
" 'the',\n",
" 'time',\n",
" 'you',\n",
" 'read',\n",
" 'this',\n",
" ',',\n",
" 'the',\n",
" 'next',\n",
" 'events',\n",
" 'may',\n",
" 'be',\n",
" 'sold',\n",
" 'out',\n",
" '(',\n",
" 'come',\n",
" 'on',\n",
" '–',\n",
" 'you’re',\n",
" 'not',\n",
" 'the',\n",
" 'only',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'nerd',\n",
" 'in',\n",
" 'ATX',\n",
" ')',\n",
" '.',\n",
" 'But',\n",
" 'check',\n",
" 'here',\n",
" 'to',\n",
" 'see',\n",
" 'if',\n",
" 'Circle',\n",
" 'is',\n",
" 'selling',\n",
" 'more',\n",
" 'tickets',\n",
" ',',\n",
" 'and',\n",
" 'watch',\n",
" 'their',\n",
" 'Instagram',\n",
" 'and',\n",
" 'Facebook',\n",
" 'for',\n",
" 'details',\n",
" 'on',\n",
" 'the',\n",
" 'next',\n",
" 'Pints',\n",
" '&',\n",
" 'Poses',\n",
" 'session',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'And\",\n",
" 'remember',\n",
" ':',\n",
" 'If',\n",
" 'you’re',\n",
" 'using',\n",
" 'the',\n",
" 'Floo',\n",
" 'Network',\n",
" 'to',\n",
" 'get',\n",
" 'to',\n",
" 'northern',\n",
" 'Austin',\n",
" ',',\n",
" 'speak',\n",
" 'very',\n",
" 'clearly',\n",
" '…or',\n",
" 'you',\n",
" 'could',\n",
" 'end',\n",
" 'up',\n",
" 'at',\n",
" 'a',\n",
" 'yoga',\n",
" 'class',\n",
" 'in',\n",
" 'Boston',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" 'level',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'But\",\n",
" 'don’t',\n",
" 'worry',\n",
" 'vegan',\n",
" 'friends',\n",
" ',',\n",
" 'veggie',\n",
" 'lovers',\n",
" ',',\n",
" 'gluten-free',\n",
" 'folks',\n",
" ',',\n",
" 'and',\n",
" 'paleo',\n",
" 'pals',\n",
" ',',\n",
" 'we',\n",
" 'have',\n",
" 'you',\n",
" 'covered',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ve\",\n",
" 'scoured',\n",
" 'the',\n",
" 'city',\n",
" 'to',\n",
" 'bring',\n",
" 'you',\n",
" 'the',\n",
" 'best',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" ',',\n",
" 'no',\n",
" 'matter',\n",
" 'your',\n",
" 'dietary',\n",
" 'limitations',\n",
" '.',\n",
" 'Our',\n",
" 'only',\n",
" 'requirement',\n",
" '?',\n",
" 'The',\n",
" 'food',\n",
" 'must',\n",
" 'be',\n",
" 'all\\\\xa0kinds',\n",
" 'of',\n",
" 'delicious',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'be',\n",
" 'sure',\n",
" 'to',\n",
" 'leave',\n",
" 'happier',\n",
" ',',\n",
" 'healthier',\n",
" ',',\n",
" 'and',\n",
" 'more',\n",
" 'satisfied',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'This',\n",
" 'spot',\n",
" 'on',\n",
" 'Cesar',\n",
" 'Chavez',\n",
" 'is',\n",
" 'where',\n",
" 'you’ll',\n",
" 'find',\n",
" 'this',\n",
" 'delightful',\n",
" 'vegan',\n",
" 'spot',\n",
" '.',\n",
" 'Every',\n",
" 'item',\n",
" 'on',\n",
" 'the',\n",
" 'menu',\n",
" 'is',\n",
" 'GMO-free',\n",
" ',',\n",
" 'cruelty-free',\n",
" ',',\n",
" '100',\n",
" '%',\n",
" 'organic',\n",
" ',',\n",
" 'low',\n",
" 'sodium',\n",
" ',',\n",
" 'and',\n",
" 'made',\n",
" 'with',\n",
" 'fluoride-free',\n",
" 'water',\n",
" ',',\n",
" 'so',\n",
" 'rest',\n",
" 'assured',\n",
" 'that',\n",
" 'you’re',\n",
" 'fueling',\n",
" 'yourself',\n",
" 'with',\n",
" 'healthy',\n",
" 'goodness',\n",
" '.',\n",
" 'Their',\n",
" 'gluten-free',\n",
" 'Freeto',\n",
" 'Pie',\n",
" 'with',\n",
" 'organic',\n",
" 'tempeh',\n",
" 'chili',\n",
" 'on',\n",
" 'organic',\n",
" 'corn',\n",
" 'chips',\n",
" 'with',\n",
" 'vegan',\n",
" 'cheese',\n",
" '(',\n",
" 'they',\n",
" 'got',\n",
" 'creative',\n",
" ')',\n",
" 'is',\n",
" 'a',\n",
" 'standout',\n",
" 'favorite',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Just',\n",
" 'east',\n",
" 'of',\n",
" 'downtown',\n",
" 'on',\n",
" 'Cesar',\n",
" 'Chavez',\n",
" 'is',\n",
" 'where',\n",
" 'you’ll',\n",
" 'find',\n",
" 'this',\n",
" 'culinary',\n",
" 'treasure',\n",
" '.',\n",
" 'Serving',\n",
" 'up',\n",
" 'comfort',\n",
" 'food',\n",
" 'in',\n",
" 'a',\n",
" 'vegan',\n",
" 'package',\n",
" ',',\n",
" 'it’s',\n",
" 'a',\n",
" 'go-to',\n",
" 'favorite',\n",
" 'for',\n",
" 'omnivores',\n",
" 'and',\n",
" 'herbivores',\n",
" 'alike',\n",
" '.',\n",
" 'What',\n",
" 'sets',\n",
" 'these',\n",
" 'guys',\n",
" 'apart',\n",
" 'is',\n",
" 'their',\n",
" 'commitment',\n",
" 'to',\n",
" 'deliciousness',\n",
" '.',\n",
" 'In',\n",
" 'other',\n",
" 'words',\n",
" ',',\n",
" 'their',\n",
" 'food',\n",
" 'isn’t',\n",
" 'always',\n",
" 'as',\n",
" 'healthy',\n",
" 'as',\n",
" 'can',\n",
" 'be',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'vegan',\n",
" ',',\n",
" 'unprocessed',\n",
" ',',\n",
" 'mostly',\n",
" 'organic',\n",
" ',',\n",
" 'and',\n",
" 'all',\n",
" 'kinds',\n",
" 'of',\n",
" 'delicious',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'their',\n",
" 'weekend',\n",
" 'brunch',\n",
" 'to',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'a',\n",
" 'Raw',\n",
" 'Oatmeal',\n",
" 'Banana',\n",
" 'Split',\n",
" ',',\n",
" 'Tofu',\n",
" 'Rancheros',\n",
" ',',\n",
" 'or',\n",
" 'a',\n",
" 'Country',\n",
" 'Biscuit',\n",
" 'Bowl',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'True-blue',\n",
" 'vegans',\n",
" 'know',\n",
" 'how',\n",
" 'tough',\n",
" 'it',\n",
" 'can',\n",
" 'be',\n",
" 'to',\n",
" 'come',\n",
" 'by',\n",
" 'vegan',\n",
" 'comfort',\n",
" 'food',\n",
" ',',\n",
" 'so',\n",
" 'we',\n",
" 'made',\n",
" 'sure',\n",
" 'to',\n",
" 'include',\n",
" 'a',\n",
" 'couple',\n",
" 'on',\n",
" 'this',\n",
" 'list',\n",
" 'for',\n",
" 'you',\n",
" 'guys',\n",
" '.',\n",
" 'Arlo’s',\n",
" 'is',\n",
" 'actually',\n",
" 'two',\n",
" 'amazing',\n",
" 'food',\n",
" 'trucks',\n",
" ';',\n",
" 'one',\n",
" 'is',\n",
" 'next',\n",
" 'to',\n",
" 'Spider',\n",
" 'House',\n",
" 'and',\n",
" 'another',\n",
" 'one',\n",
" 'can',\n",
" 'be',\n",
" 'found',\n",
" 'near',\n",
" 'Cheer',\n",
" 'Up',\n",
" 'Charlie’s',\n",
" '.',\n",
" 'But',\n",
" 'most',\n",
" 'importantly',\n",
" ',',\n",
" 'both',\n",
" 'are',\n",
" 'serving',\n",
" 'up',\n",
" 'the',\n",
" 'killer',\n",
" 'Bac-n',\n",
" 'Cheeze',\n",
" 'Burger',\n",
" 'that',\n",
" 'vegans',\n",
" 'far',\n",
" 'and',\n",
" 'wide',\n",
" 'rave',\n",
" 'about',\n",
" '.',\n",
" 'Not',\n",
" 'into',\n",
" 'burgers',\n",
" '?',\n",
" 'Then',\n",
" 'enjoy',\n",
" 'one',\n",
" '(',\n",
" 'or',\n",
" 'three',\n",
" ')',\n",
" 'Chik’n',\n",
" 'Tacos',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'Tots',\n",
" 'and',\n",
" 'Sweet',\n",
" 'Potato',\n",
" 'Fries',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'We’d',\n",
" 'be',\n",
" 'remiss',\n",
" 'if',\n",
" 'we',\n",
" 'didn’t',\n",
" 'mention',\n",
" 'the',\n",
" 'oh-so-wonderful',\n",
" 'Via',\n",
" '313',\n",
" 'when',\n",
" 'it',\n",
" 'comes',\n",
" 'to',\n",
" 'gluten-free',\n",
" 'goodness',\n",
" '.',\n",
" 'Serving',\n",
" 'up',\n",
" 'delicious',\n",
" ',',\n",
" 'deep-dish',\n",
" 'GF',\n",
" 'pizza',\n",
" 'from',\n",
" 'a',\n",
" 'food',\n",
" 'truck',\n",
" 'on',\n",
" 'the',\n",
" 'East',\n",
" 'Side',\n",
" ',',\n",
" 'it’s',\n",
" 'a',\n",
" 'true',\n",
" 'treasure',\n",
" 'for',\n",
" 'the',\n",
" 'gluten',\n",
" 'intolerant',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'anyone',\n",
" 'of',\n",
" 'their',\n",
" 'pies',\n",
" 'can',\n",
" 'be',\n",
" 'customized',\n",
" 'to',\n",
" 'meet',\n",
" 'nearly',\n",
" 'every',\n",
" 'dietary',\n",
" 'restriction',\n",
" ',',\n",
" 'so',\n",
" 'your',\n",
" 'options',\n",
" 'are',\n",
" 'limitless',\n",
" '.',\n",
" 'And',\n",
" 'while',\n",
" 'it’s',\n",
" 'all',\n",
" 'pretty',\n",
" 'darn',\n",
" 'good',\n",
" ',',\n",
" 'The',\n",
" 'Cadillac',\n",
" 'with',\n",
" 'gorgonzola',\n",
" ',',\n",
" 'fig',\n",
" 'preserves',\n",
" ',',\n",
" 'and',\n",
" 'prosciutto',\n",
" 'is',\n",
" 'all',\n",
" 'kinds',\n",
" 'of',\n",
" 'special',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Just',\n",
" 'north',\n",
" 'of',\n",
" 'UT’s',\n",
" 'campus',\n",
" 'is',\n",
" 'where',\n",
" 'you’ll',\n",
" 'find',\n",
" 'this',\n",
" 'unique',\n",
" 'restaurant',\n",
" 'dedicated',\n",
" 'to',\n",
" 'gluten-free',\n",
" 'noms',\n",
" '.',\n",
" 'Expect',\n",
" 'to',\n",
" 'discover',\n",
" 'a',\n",
" 'whole',\n",
" 'range',\n",
" 'of',\n",
" 'items',\n",
" 'not',\n",
" 'normally',\n",
" 'available',\n",
" 'to',\n",
" 'GF',\n",
" 'eaters—everything',\n",
" 'from',\n",
" 'baked',\n",
" 'goods',\n",
" 'to',\n",
" 'pasta',\n",
" 'to',\n",
" 'pizzas',\n",
" '.',\n",
" 'For',\n",
" 'a',\n",
" 'sure-thing',\n",
" ',',\n",
" 'get',\n",
" 'a',\n",
" 'helping',\n",
" 'or',\n",
" 'two',\n",
" 'of',\n",
" 'the',\n",
" 'Wild',\n",
" 'Texas',\n",
" 'Chili',\n",
" 'and',\n",
" 'Grilled',\n",
" 'Chicken',\n",
" 'Pasta',\n",
" ',',\n",
" 'then',\n",
" 'top',\n",
" 'it',\n",
" 'off',\n",
" 'with',\n",
" 'a',\n",
" 'Chocolate',\n",
" 'Mint',\n",
" 'cupcake',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Gluten-free',\n",
" 'sushi',\n",
" 'lovers',\n",
" ',',\n",
" 'rejoice',\n",
" '!',\n",
" 'Kome',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" 'knows',\n",
" 'your',\n",
" 'struggle',\n",
" ',',\n",
" 'so',\n",
" 'they',\n",
" 'make',\n",
" 'ordering',\n",
" 'sushi',\n",
" 'super',\n",
" 'simple',\n",
" 'and',\n",
" 'easy',\n",
" '.',\n",
" 'Every',\n",
" 'menu',\n",
" 'item',\n",
" 'is',\n",
" 'clearly',\n",
" 'labeled',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'stop',\n",
" 'guessing',\n",
" 'and',\n",
" 'start',\n",
" 'enjoying',\n",
" '.',\n",
" 'Both',\n",
" 'the',\n",
" 'Kome',\n",
" 'Viche',\n",
" 'with',\n",
" 'fresh',\n",
" 'salmon',\n",
" 'and',\n",
" 'mango',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'Sashimi',\n",
" 'Sampler',\n",
" 'with',\n",
" 'tuna',\n",
" ',',\n",
" 'salmon',\n",
" ',',\n",
" 'and',\n",
" 'suzuki',\n",
" 'sashimi',\n",
" 'are',\n",
" 'stellar',\n",
" 'options',\n",
" 'without',\n",
" 'a',\n",
" 'shred',\n",
" 'of',\n",
" 'gluten',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'A',\n",
" 'paleo-focused',\n",
" 'coffee',\n",
" 'shop',\n",
" '?',\n",
" 'We',\n",
" 'never',\n",
" 'thought',\n",
" 'we’d',\n",
" 'see',\n",
" 'the',\n",
" 'day',\n",
" '.',\n",
" 'But',\n",
" 'fortunately',\n",
" 'for',\n",
" 'you',\n",
" ',',\n",
" 'the',\n",
" 'day',\n",
" 'has',\n",
" 'come',\n",
" ',',\n",
" 'and',\n",
" 'it',\n",
" 'is',\n",
" 'everything',\n",
" 'you',\n",
" 'could',\n",
" 'ever',\n",
" 'hope',\n",
" 'for',\n",
" '.',\n",
" 'Try',\n",
" 'the',\n",
" 'Broccoli',\n",
" 'Crunch',\n",
" 'with',\n",
" 'Chicken',\n",
" ',',\n",
" 'the',\n",
" 'BLT',\n",
" 'Lunch',\n",
" 'Pack',\n",
" ',',\n",
" 'or',\n",
" 'the',\n",
" 'Chorizo',\n",
" 'Frittata',\n",
" '.',\n",
" 'But',\n",
" 'whatever',\n",
" 'you',\n",
" 'do',\n",
" ',',\n",
" 'don’t',\n",
" 'leave',\n",
" 'without',\n",
" 'sipping',\n",
" 'on',\n",
" 'a',\n",
" 'piping',\n",
" 'hot',\n",
" 'Butter',\n",
" 'Coffee—it’s',\n",
" 'what',\n",
" 'they’re',\n",
" 'known',\n",
" 'for',\n",
" '.',\n",
" 'And',\n",
" 'with',\n",
" 'locations',\n",
" 'in',\n",
" 'North',\n",
" 'and',\n",
" 'South',\n",
" 'Austin',\n",
" ',',\n",
" 'there’s',\n",
" 'almost',\n",
" 'definitely',\n",
" 'one',\n",
" 'near',\n",
" 'you',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'For',\n",
" 'paleo',\n",
" 'folks',\n",
" 'looking',\n",
" 'for',\n",
" 'on-the-go',\n",
" 'grub',\n",
" ',',\n",
" 'the',\n",
" 'search',\n",
" 'can',\n",
" 'be',\n",
" 'a',\n",
" 'little',\n",
" 'tough',\n",
" '.',\n",
" 'Thankfully',\n",
" ',',\n",
" 'Snap',\n",
" 'Kitchen',\n",
" 'makes',\n",
" 'it',\n",
" 'super',\n",
" 'easy',\n",
" '.',\n",
" 'Nestled',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'downtown',\n",
" ',',\n",
" 'this',\n",
" 'place',\n",
" 'offers',\n",
" 'up',\n",
" 'healthy',\n",
" ',',\n",
" 'fresh',\n",
" 'pre-made',\n",
" 'meals',\n",
" 'daily',\n",
" ',',\n",
" 'ready',\n",
" 'to',\n",
" 'be',\n",
" 'enjoyed',\n",
" 'at',\n",
" 'a',\n",
" 'moment’s',\n",
" 'notice',\n",
" '.',\n",
" 'Order',\n",
" 'the',\n",
" 'Almond-Crusted',\n",
" 'Crispy',\n",
" 'Chicken',\n",
" ',',\n",
" 'the',\n",
" 'Braised',\n",
" 'Grass-Fed',\n",
" 'Meatballs',\n",
" ',',\n",
" 'or',\n",
" 'the',\n",
" 'Scottish',\n",
" 'Salmon',\n",
" 'for',\n",
" 'a',\n",
" 'satisfying',\n",
" ',',\n",
" 'paleo-friendly',\n",
" 'meal',\n",
" 'on-the-go',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Not',\n",
" 'only',\n",
" 'is',\n",
" 'Wholly',\n",
" 'Cow',\n",
" 'often',\n",
" 'found',\n",
" 'on',\n",
" 'lists',\n",
" 'of',\n",
" 'the',\n",
" 'top',\n",
" '10',\n",
" 'burgers',\n",
" 'in',\n",
" 'the',\n",
" 'U.S.',\n",
" ',',\n",
" 'it’s',\n",
" 'also',\n",
" 'a',\n",
" 'paleo',\n",
" 'lover’s',\n",
" 'dream',\n",
" '.',\n",
" 'All',\n",
" 'of',\n",
" 'the',\n",
" 'burgers',\n",
" 'are',\n",
" 'local',\n",
" ',',\n",
" 'hormone-free',\n",
" ',',\n",
" 'organically',\n",
" 'raised',\n",
" ',',\n",
" 'grass-fed',\n",
" ',',\n",
" 'and',\n",
" 'served',\n",
" 'up',\n",
" 'with',\n",
" 'organic',\n",
" 'seasonal',\n",
" 'produce',\n",
" '.',\n",
" 'Try',\n",
" 'the',\n",
" 'Fit',\n",
" 'Cross',\n",
" 'Paleo',\n",
" 'Burger',\n",
" 'with',\n",
" 'Portabella',\n",
" 'Buns',\n",
" 'for',\n",
" 'the',\n",
" 'ultimate',\n",
" 'in',\n",
" 'healthy',\n",
" 'paleo',\n",
" 'goodness',\n",
" '.',\n",
" 'It’s',\n",
" 'waiting',\n",
" 'for',\n",
" 'you',\n",
" 'on',\n",
" 'South',\n",
" 'Lamar',\n",
" ',',\n",
" 'so',\n",
" 'get',\n",
" 'to',\n",
" 'it',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'you’re',\n",
" 'a',\n",
" 'vegetarian',\n",
" 'in',\n",
" 'Austin',\n",
" 'and',\n",
" 'you',\n",
" 'haven’t',\n",
" 'been',\n",
" 'to',\n",
" 'this',\n",
" 'Southside',\n",
" 'gem',\n",
" ',',\n",
" 'drop',\n",
" 'everything',\n",
" 'and',\n",
" 'GO',\n",
" '.',\n",
" 'Why',\n",
" '?',\n",
" 'Because',\n",
" 'it',\n",
" 'is',\n",
" 'everything',\n",
" 'a',\n",
" 'veggie-lover',\n",
" 'could',\n",
" 'want',\n",
" '.',\n",
" 'Chill',\n",
" 'atmosphere',\n",
" ',',\n",
" 'cool',\n",
" 'waitstaff',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'most',\n",
" 'importantly',\n",
" ',',\n",
" 'uber-tasty',\n",
" 'grub',\n",
" '.',\n",
" 'Try',\n",
" 'their',\n",
" 'Tamale',\n",
" 'Breakfast',\n",
" 'with',\n",
" 'cage-free',\n",
" 'eggs',\n",
" ',',\n",
" 'sweet',\n",
" 'potato',\n",
" 'tamales',\n",
" ',',\n",
" 'and',\n",
" 'homemade',\n",
" 'salsa',\n",
" 'to',\n",
" 'be',\n",
" 'transported',\n",
" 'to',\n",
" 'vegetarian',\n",
" 'heaven',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Northsiders',\n",
" ',',\n",
" 'fret',\n",
" 'not',\n",
" '!',\n",
" 'We',\n",
" 'haven’t',\n",
" 'forgotten',\n",
" 'about',\n",
" 'you',\n",
" ',',\n",
" 'and',\n",
" 'neither',\n",
" 'has',\n",
" 'this',\n",
" '30-year-old',\n",
" 'veggie-lovin’',\n",
" 'restaurant',\n",
" '.',\n",
" 'Not',\n",
" 'only',\n",
" 'is',\n",
" 'the',\n",
" 'menu',\n",
" 'all',\n",
" 'vegetarian',\n",
" 'all',\n",
" 'the',\n",
" 'time',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'also',\n",
" 'non-GMO',\n",
" ',',\n",
" 'organic',\n",
" ',',\n",
" 'and',\n",
" 'super',\n",
" 'easy',\n",
" 'to',\n",
" 'customize',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'vegetarian',\n",
" 'experience',\n",
" 'like',\n",
" 'no',\n",
" 'other',\n",
" ',',\n",
" 'tear',\n",
" 'into',\n",
" 'the',\n",
" 'Chili',\n",
" 'Relleno',\n",
" 'stuffed',\n",
" 'with',\n",
" 'jack',\n",
" 'cheese',\n",
" ...],\n",
" ['[',\n",
" \"'Even\",\n",
" 'the',\n",
" 'MOST',\n",
" 'disciplined',\n",
" 'among',\n",
" 'us',\n",
" 'know',\n",
" 'what',\n",
" 'the',\n",
" 'thought',\n",
" 'of',\n",
" 'a',\n",
" 'hot',\n",
" ',',\n",
" 'cheesy',\n",
" 'slice',\n",
" 'of',\n",
" 'pizza',\n",
" 'can',\n",
" 'do',\n",
" 'to',\n",
" 'our',\n",
" 'willpower',\n",
" '.',\n",
" 'But',\n",
" 'come',\n",
" 'on',\n",
" '.',\n",
" 'What’s',\n",
" 'so',\n",
" 'great',\n",
" 'about',\n",
" 'pizza',\n",
" ',',\n",
" 'anyway',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Oh\",\n",
" ',',\n",
" 'right',\n",
" '.',\n",
" 'Just',\n",
" 'about',\n",
" 'everything',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'pizza',\n",
" 'struggle',\n",
" 'is',\n",
" 'very',\n",
" 'real',\n",
" '.',\n",
" 'Thankfully',\n",
" ',',\n",
" 'Austin',\n",
" 'has',\n",
" 'quite',\n",
" 'a',\n",
" 'few',\n",
" 'options',\n",
" 'for',\n",
" 'folks',\n",
" 'looking',\n",
" 'to',\n",
" 'get',\n",
" 'their',\n",
" 'pizza',\n",
" 'fix',\n",
" 'without',\n",
" 'damaging',\n",
" 'their',\n",
" 'fitness',\n",
" 'efforts',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'our',\n",
" 'picks',\n",
" 'for',\n",
" 'pies',\n",
" 'that',\n",
" 'taste',\n",
" 'great',\n",
" 'and',\n",
" 'make',\n",
" 'you',\n",
" 'feel',\n",
" 'good',\n",
" 'about',\n",
" 'eating',\n",
" 'them',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Organic\",\n",
" 'and',\n",
" 'all-natural',\n",
" 'is',\n",
" 'the',\n",
" 'name',\n",
" 'of',\n",
" 'the',\n",
" 'game',\n",
" 'at',\n",
" 'this',\n",
" 'North',\n",
" 'Austin',\n",
" 'pizza',\n",
" 'joint',\n",
" '.',\n",
" 'Their',\n",
" 'ingredients',\n",
" 'are',\n",
" 'healthy',\n",
" ',',\n",
" 'their',\n",
" 'food',\n",
" 'practices',\n",
" 'sustainable',\n",
" ',',\n",
" 'and',\n",
" 'most',\n",
" 'importantly',\n",
" ',',\n",
" 'their',\n",
" 'pizza',\n",
" 'is',\n",
" 'delicious',\n",
" '.',\n",
" 'We',\n",
" 'like',\n",
" 'their',\n",
" 'Nature’s',\n",
" 'Choice',\n",
" 'veggie',\n",
" 'pizza',\n",
" ',',\n",
" 'loaded',\n",
" 'with',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'organic',\n",
" 'veggies',\n",
" 'on',\n",
" 'a',\n",
" 'gluten-free',\n",
" 'crust',\n",
" 'and',\n",
" 'served',\n",
" 'with',\n",
" 'your',\n",
" 'choice',\n",
" 'of',\n",
" 'cheese',\n",
" '.',\n",
" 'With',\n",
" 'the',\n",
" 'option',\n",
" 'of',\n",
" '100',\n",
" '%',\n",
" 'plant-based',\n",
" 'cheese',\n",
" ',',\n",
" 'vegans',\n",
" ',',\n",
" 'vegetarians',\n",
" ',',\n",
" 'and',\n",
" 'general',\n",
" 'lovers',\n",
" 'of',\n",
" 'pizza',\n",
" 'everywhere',\n",
" 'unite',\n",
" 'at',\n",
" 'this',\n",
" 'local',\n",
" 'favorite',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'ingredients',\n",
" 'sourced',\n",
" 'from',\n",
" 'local',\n",
" 'farms',\n",
" 'and',\n",
" 'ranches',\n",
" ',',\n",
" 'East',\n",
" 'Side',\n",
" 'Pies',\n",
" 'makes',\n",
" 'freshness',\n",
" 'a',\n",
" 'priority',\n",
" '.',\n",
" 'Sauces',\n",
" 'are',\n",
" 'made',\n",
" 'in-house',\n",
" 'and',\n",
" 'come',\n",
" 'in',\n",
" 'a',\n",
" 'range',\n",
" 'of',\n",
" 'traditional',\n",
" 'red',\n",
" 'to',\n",
" 'the',\n",
" 'more',\n",
" 'unconventional',\n",
" '(',\n",
" 'but',\n",
" 'no',\n",
" 'less',\n",
" 'delicious',\n",
" ')',\n",
" 'black',\n",
" 'bean',\n",
" 'sauce',\n",
" '.',\n",
" 'We',\n",
" 'love',\n",
" 'the',\n",
" 'Nacho',\n",
" 'Veggie',\n",
" '–',\n",
" 'a',\n",
" 'thin',\n",
" 'crust',\n",
" 'pizza',\n",
" 'with',\n",
" 'jalapeños',\n",
" ',',\n",
" 'red',\n",
" 'onions',\n",
" ',',\n",
" 'cherry',\n",
" 'tomatoes',\n",
" ',',\n",
" 'and',\n",
" 'avocados',\n",
" ',',\n",
" 'atop',\n",
" 'that',\n",
" 'special',\n",
" 'black',\n",
" 'bean',\n",
" 'sauce',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'number',\n",
" 'of',\n",
" 'great',\n",
" 'options',\n",
" 'here',\n",
" 'is',\n",
" 'pretty',\n",
" 'much',\n",
" 'endless',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'can’t',\n",
" 'go',\n",
" 'wrong',\n",
" 'with',\n",
" 'anything',\n",
" 'you',\n",
" 'choose',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Deep\",\n",
" 'dish',\n",
" 'and',\n",
" 'gluten-free',\n",
" 'don’t',\n",
" 'typically',\n",
" 'go',\n",
" 'hand-in-hand',\n",
" ',',\n",
" 'but',\n",
" 'Via',\n",
" '313',\n",
" 'on',\n",
" 'E.',\n",
" '6th',\n",
" 'doesn’t',\n",
" 'let',\n",
" 'a',\n",
" 'thing',\n",
" 'like',\n",
" '“typical”',\n",
" 'get',\n",
" 'in',\n",
" 'the',\n",
" 'way',\n",
" 'of',\n",
" 'delivering',\n",
" 'gluten-free',\n",
" 'goodness',\n",
" '.',\n",
" 'The',\n",
" 'GF',\n",
" 'crusts',\n",
" 'here',\n",
" 'are',\n",
" 'just',\n",
" 'as',\n",
" 'thick',\n",
" 'as',\n",
" 'the',\n",
" 'regular',\n",
" 'version',\n",
" 'and',\n",
" 'just',\n",
" 'as',\n",
" 'tasty',\n",
" '.',\n",
" 'For',\n",
" 'a',\n",
" 'vegan',\n",
" 'bonus',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'their',\n",
" 'no-cheese',\n",
" 'Marinara',\n",
" 'pizza',\n",
" 'with',\n",
" 'garlic',\n",
" ',',\n",
" 'red',\n",
" 'sauce',\n",
" ',',\n",
" 'and',\n",
" 'oregano',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Top\",\n",
" 'a',\n",
" 'sunny',\n",
" 'SoCo',\n",
" 'Saturday',\n",
" 'off',\n",
" 'with',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'scrumptious',\n",
" 'pies',\n",
" 'from',\n",
" 'Southside',\n",
" 'Flying',\n",
" 'Pizza',\n",
" '.',\n",
" 'The',\n",
" 'folks',\n",
" 'here',\n",
" 'take',\n",
" 'their',\n",
" 'bread',\n",
" 'seriously',\n",
" ',',\n",
" 'so',\n",
" 'all',\n",
" 'dough',\n",
" '–',\n",
" 'with',\n",
" 'gluten',\n",
" 'and',\n",
" 'without',\n",
" '–',\n",
" 'is',\n",
" 'made',\n",
" 'freshly',\n",
" 'in-house',\n",
" '.',\n",
" 'Try',\n",
" 'the',\n",
" 'GF',\n",
" 'specialty',\n",
" 'pizza',\n",
" ',',\n",
" 'the',\n",
" 'Zygmont',\n",
" ',',\n",
" 'with',\n",
" 'goat',\n",
" 'cheese',\n",
" ',',\n",
" 'spinach',\n",
" ',',\n",
" 'and',\n",
" 'mushrooms',\n",
" 'for',\n",
" 'a',\n",
" 'treat',\n",
" 'so',\n",
" 'tasty',\n",
" 'it’ll',\n",
" 'convert',\n",
" 'even',\n",
" 'your',\n",
" 'most',\n",
" 'gluten-committed',\n",
" 'friends',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Counter\",\n",
" 'Culture',\n",
" 'is',\n",
" 'a',\n",
" 'popular',\n",
" 'go-to',\n",
" 'among',\n",
" 'Austinites',\n",
" 'in',\n",
" 'the',\n",
" 'market',\n",
" 'for',\n",
" 'a',\n",
" 'healthy',\n",
" 'meal',\n",
" '.',\n",
" 'With',\n",
" 'such',\n",
" 'a',\n",
" 'health-conscious',\n",
" 'reputation',\n",
" ',',\n",
" 'you',\n",
" 'might',\n",
" 'not',\n",
" 'expect',\n",
" 'it',\n",
" 'to',\n",
" 'have',\n",
" 'such',\n",
" 'great',\n",
" 'pizza',\n",
" 'hiding',\n",
" 'on',\n",
" 'its',\n",
" 'menu',\n",
" '.',\n",
" 'But',\n",
" 'they',\n",
" 'nailed',\n",
" 'it',\n",
" 'with',\n",
" 'their',\n",
" 'all-vegan',\n",
" 'pies',\n",
" 'and',\n",
" 'choice',\n",
" 'of',\n",
" 'toppings',\n",
" 'on',\n",
" 'an',\n",
" 'organic',\n",
" 'whole',\n",
" 'wheat',\n",
" 'cornmeal',\n",
" 'crust',\n",
" '.',\n",
" 'This',\n",
" 'local',\n",
" 'gem',\n",
" 'hails',\n",
" 'from',\n",
" 'the',\n",
" 'Eastside',\n",
" ',',\n",
" 'but',\n",
" 'no',\n",
" 'matter',\n",
" 'where',\n",
" 'in',\n",
" 'Austin',\n",
" 'you',\n",
" 'call',\n",
" 'home',\n",
" ',',\n",
" 'it’s',\n",
" 'worth',\n",
" 'the',\n",
" 'trek',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Considering\",\n",
" 'it’s',\n",
" 'the',\n",
" 'home',\n",
" 'of',\n",
" 'the',\n",
" 'first',\n",
" 'vegan',\n",
" 'pizza',\n",
" 'pie',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'our',\n",
" 'list',\n",
" 'wouldn’t',\n",
" 'be',\n",
" 'complete',\n",
" 'without',\n",
" 'mentioning',\n",
" 'The',\n",
" 'Parlor',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" '.',\n",
" 'With',\n",
" 'vegan-friendly',\n",
" 'cheese',\n",
" ',',\n",
" 'chicken',\n",
" ',',\n",
" 'pepperoni',\n",
" ',',\n",
" 'and',\n",
" 'sausage',\n",
" ',',\n",
" 'there’s',\n",
" 'something',\n",
" 'for',\n",
" 'everyone',\n",
" 'here',\n",
" '.',\n",
" 'We',\n",
" 'love',\n",
" 'Autumn’s',\n",
" 'Deluxe',\n",
" ',',\n",
" 'which',\n",
" 'is',\n",
" 'loaded',\n",
" 'with',\n",
" 'veggies',\n",
" 'and',\n",
" 'vegan',\n",
" 'meats',\n",
" '.',\n",
" 'But',\n",
" 'you’d',\n",
" 'be',\n",
" 'remiss',\n",
" 'if',\n",
" 'you',\n",
" 'didn’t',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'vegan',\n",
" 'french',\n",
" 'bread',\n",
" ',',\n",
" 'too',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'in',\n",
" 'the',\n",
" 'mood',\n",
" 'for',\n",
" 'a',\n",
" 'healthy',\n",
" 'pizza',\n",
" 'with',\n",
" 'a',\n",
" 'touch',\n",
" 'of',\n",
" 'fancy',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'Due',\n",
" 'Forni',\n",
" 'on',\n",
" 'E.',\n",
" '6th',\n",
" '.',\n",
" 'First',\n",
" ',',\n",
" 'you’ll',\n",
" 'decide',\n",
" 'between',\n",
" 'Neapolitan',\n",
" 'or',\n",
" 'Roman',\n",
" '(',\n",
" 'that',\n",
" 'means',\n",
" 'crispy',\n",
" 'or',\n",
" 'soft',\n",
" ')',\n",
" 'gluten-free',\n",
" 'crusts',\n",
" '.',\n",
" 'Then',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'choose',\n",
" 'from',\n",
" 'a',\n",
" 'bunch',\n",
" 'of',\n",
" 'unusual',\n",
" ',',\n",
" 'but',\n",
" 'crazy-good',\n",
" 'topping',\n",
" 'combinations',\n",
" '.',\n",
" 'We',\n",
" 'recommend',\n",
" 'the',\n",
" 'Tartufo',\n",
" 'with',\n",
" 'roasted',\n",
" 'cremini',\n",
" 'mushrooms',\n",
" 'and',\n",
" 'an',\n",
" 'over-easy',\n",
" 'egg',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Vegan\",\n",
" 'cheese',\n",
" ',',\n",
" 'whole',\n",
" 'wheat',\n",
" 'crust',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'daily',\n",
" 'happy',\n",
" 'hour',\n",
" 'make',\n",
" 'this',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" 'for',\n",
" 'Austinites',\n",
" 'looking',\n",
" 'to',\n",
" 'get',\n",
" 'their',\n",
" 'pizza',\n",
" 'fix',\n",
" 'after',\n",
" 'a',\n",
" 'long',\n",
" 'day',\n",
" '.',\n",
" 'And',\n",
" 'with',\n",
" 'three',\n",
" 'locations',\n",
" 'spread',\n",
" 'from',\n",
" 'north',\n",
" 'to',\n",
" 'south',\n",
" ',',\n",
" 'chances',\n",
" 'are',\n",
" 'there’s',\n",
" 'one',\n",
" 'near',\n",
" 'you',\n",
" '.',\n",
" 'The',\n",
" 'Veggie',\n",
" 'Supreme',\n",
" 'on',\n",
" 'whole',\n",
" 'wheat',\n",
" 'is',\n",
" 'super',\n",
" 'satisfying',\n",
" 'topped',\n",
" 'with',\n",
" 'every',\n",
" 'veggie',\n",
" 'under',\n",
" 'the',\n",
" 'sun',\n",
" '.',\n",
" 'Add',\n",
" 'Daiya',\n",
" 'vegan',\n",
" 'cheese',\n",
" 'and',\n",
" 'you’ve',\n",
" 'just',\n",
" 'met',\n",
" 'your',\n",
" 'new',\n",
" 'favorite',\n",
" 'health-conscious',\n",
" 'pie',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sure\",\n",
" ',',\n",
" 'downtown',\n",
" 'dwellers',\n",
" 'with',\n",
" 'the',\n",
" 'late-night',\n",
" 'munchies',\n",
" 'flock',\n",
" 'to',\n",
" 'this',\n",
" 'place',\n",
" 'after',\n",
" 'boozy',\n",
" 'nights',\n",
" 'out',\n",
" '.',\n",
" 'But',\n",
" 'did',\n",
" 'you',\n",
" 'know',\n",
" 'they',\n",
" 'actually',\n",
" 'have',\n",
" 'stellar',\n",
" 'options',\n",
" 'for',\n",
" 'those',\n",
" 'looking',\n",
" 'to',\n",
" 'snag',\n",
" 'a',\n",
" 'healthy',\n",
" 'slice',\n",
" '?',\n",
" 'Their',\n",
" 'Vegan',\n",
" 'Delight',\n",
" 'on',\n",
" 'whole',\n",
" 'wheat',\n",
" 'is',\n",
" 'oh-so-scrumptious',\n",
" '.',\n",
" 'With',\n",
" 'spinach',\n",
" ',',\n",
" 'mushrooms',\n",
" ',',\n",
" 'Roma',\n",
" 'tomatoes',\n",
" ',',\n",
" 'and',\n",
" 'house-made',\n",
" 'tofu',\n",
" 'ricotta',\n",
" ',',\n",
" 'it’s',\n",
" 'an',\n",
" 'indulgence',\n",
" 'you',\n",
" 'can',\n",
" 'feel',\n",
" 'good',\n",
" 'about',\n",
" '.',\n",
" 'Check',\n",
" '‘em',\n",
" 'out',\n",
" 'on',\n",
" 'Tuesdays',\n",
" 'for',\n",
" '1/2-off',\n",
" 'build-your-own',\n",
" 'pies',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'of',\n",
" 'the',\n",
" 'spots',\n",
" 'serves',\n",
" 'up',\n",
" 'your',\n",
" 'favorite',\n",
" 'slice',\n",
" '?',\n",
" '\\\\xa0Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'of',\n",
" 'the',\n",
" 'spots',\n",
" 'serves',\n",
" 'up',\n",
" 'your',\n",
" 'favorite',\n",
" 'slice',\n",
" '?',\n",
" '\\\\xa0Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '.',\n",
" 'Add',\n",
" 'to',\n",
" 'that',\n",
" 'the',\n",
" 'fact',\n",
" 'that',\n",
" 'our',\n",
" 'lovely',\n",
" 'city',\n",
" 'is',\n",
" 'practically',\n",
" 'overflowing',\n",
" 'with',\n",
" 'options',\n",
" ',',\n",
" 'and',\n",
" 'it',\n",
" 'becomes',\n",
" 'too',\n",
" 'easy',\n",
" 'to',\n",
" 'choose',\n",
" 'the',\n",
" 'couch',\n",
" 'over',\n",
" 'deciding',\n",
" 'where',\n",
" 'to',\n",
" 'practice',\n",
" '.',\n",
" 'We’ve',\n",
" 'totally',\n",
" 'been',\n",
" 'there',\n",
" ',',\n",
" 'so',\n",
" 'we',\n",
" 'want',\n",
" 'to',\n",
" 'make',\n",
" 'it',\n",
" 'easy',\n",
" 'on',\n",
" 'you',\n",
" 'with',\n",
" 'this',\n",
" 'tried-and-true',\n",
" 'list',\n",
" 'of',\n",
" 'these',\n",
" '13',\n",
" 'places',\n",
" 'to',\n",
" 'find',\n",
" 'your',\n",
" 'flow',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Can\",\n",
" 'you',\n",
" 'say',\n",
" '$',\n",
" '10',\n",
" 'recommended',\n",
" 'donation',\n",
" '(',\n",
" 'we’re',\n",
" 'betting',\n",
" 'you',\n",
" 'can',\n",
" ')',\n",
" '?',\n",
" 'That’s',\n",
" 'all',\n",
" 'it',\n",
" 'takes',\n",
" 'to',\n",
" 'practice',\n",
" 'in',\n",
" 'this',\n",
" 'Eastside',\n",
" 'gem',\n",
" 'of',\n",
" 'a',\n",
" 'studio',\n",
" '.',\n",
" 'Rightly',\n",
" 'boasting',\n",
" '“absurdly',\n",
" 'high-quality',\n",
" 'donation',\n",
" 'yoga”',\n",
" ',',\n",
" 'you’ll',\n",
" 'find',\n",
" 'yoga',\n",
" 'teachers',\n",
" 'and',\n",
" 'students',\n",
" 'alike',\n",
" 'enjoying',\n",
" 'the',\n",
" 'wide',\n",
" 'range',\n",
" 'of',\n",
" 'weekly',\n",
" 'classes',\n",
" '–',\n",
" 'a',\n",
" 'testament',\n",
" 'to',\n",
" 'the',\n",
" 'combo',\n",
" 'of',\n",
" 'quality',\n",
" 'and',\n",
" 'affordability',\n",
" 'at',\n",
" 'this',\n",
" 'place',\n",
" '.',\n",
" 'This',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" 'for',\n",
" 'anyone',\n",
" ',',\n",
" 'but',\n",
" 'especially',\n",
" 'for',\n",
" 'Eastside',\n",
" 'artists',\n",
" 'on',\n",
" 'a',\n",
" 'budget',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'its',\n",
" 'founder',\n",
" ',',\n",
" 'Zoe',\n",
" 'Mantarakis',\n",
" ',',\n",
" 'voted',\n",
" 'Best',\n",
" 'Yoga',\n",
" 'Teacher',\n",
" 'by',\n",
" 'Austin',\n",
" 'Fit',\n",
" ',',\n",
" 'it’s',\n",
" 'no',\n",
" 'surprise',\n",
" 'that',\n",
" 'this',\n",
" 'is',\n",
" 'a',\n",
" 'favorite',\n",
" 'among',\n",
" 'serious',\n",
" 'yogis',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Focusing',\n",
" 'on',\n",
" 'form',\n",
" 'and',\n",
" 'spirituality',\n",
" ',',\n",
" 'this',\n",
" 'SoCo',\n",
" 'studio',\n",
" 'offers',\n",
" 'classes',\n",
" 'like',\n",
" 'Agni',\n",
" 'Hotra',\n",
" 'and',\n",
" 'Shakti',\n",
" 'Vinyasa',\n",
" 'to',\n",
" 'help',\n",
" 'you',\n",
" 'expand',\n",
" 'your',\n",
" 'practice',\n",
" 'and',\n",
" 'increase',\n",
" 'your',\n",
" 'yogic',\n",
" 'knowledge',\n",
" '.',\n",
" 'With',\n",
" 'an',\n",
" 'emphasis',\n",
" 'on',\n",
" 'spirituality',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'awesome',\n",
" 'for',\n",
" 'those',\n",
" 'days',\n",
" 'when',\n",
" 'you',\n",
" 'need',\n",
" 'some',\n",
" 'extra',\n",
" 'Zen',\n",
" 'in',\n",
" 'your',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'really',\n",
" 'can’t',\n",
" 'get',\n",
" 'more',\n",
" 'Austin',\n",
" 'than',\n",
" 'practicing',\n",
" 'at',\n",
" 'Balance',\n",
" 'Yoga',\n",
" '.',\n",
" 'Why',\n",
" ',',\n",
" 'you',\n",
" 'ask',\n",
" '?',\n",
" 'Because',\n",
" 'classes',\n",
" 'here',\n",
" 'are',\n",
" 'done',\n",
" 'on',\n",
" '–',\n",
" 'wait',\n",
" 'for',\n",
" 'it',\n",
" '–',\n",
" 'paddleboards',\n",
" '!',\n",
" 'Each',\n",
" 'class',\n",
" 'meets',\n",
" 'at',\n",
" 'SUP',\n",
" 'Lake',\n",
" 'Travis',\n",
" 'Rental',\n",
" 'where',\n",
" 'you',\n",
" 'can',\n",
" 'rent',\n",
" 'a',\n",
" 'board',\n",
" 'and',\n",
" 'enjoy',\n",
" 'any',\n",
" 'number',\n",
" 'of',\n",
" 'classes',\n",
" 'on',\n",
" 'the',\n",
" 'water',\n",
" '.',\n",
" 'We’re',\n",
" 'talking',\n",
" 'Vinyasa',\n",
" 'Flow',\n",
" ',',\n",
" 'Power',\n",
" 'Fusion',\n",
" ',',\n",
" 'Yin',\n",
" 'Yoga',\n",
" ',',\n",
" 'and',\n",
" 'Yoga',\n",
" 'Sculpt',\n",
" ',',\n",
" 'to',\n",
" 'name',\n",
" 'just',\n",
" 'a',\n",
" 'few',\n",
" '.',\n",
" 'We',\n",
" 'surely',\n",
" 'can’t',\n",
" 'think',\n",
" 'of',\n",
" 'a',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'beat',\n",
" 'the',\n",
" '100',\n",
" 'degree',\n",
" 'days',\n",
" 'than',\n",
" 'getting',\n",
" 'our',\n",
" 'zen',\n",
" 'on',\n",
" 'atop',\n",
" 'a',\n",
" 'board',\n",
" 'on',\n",
" 'Lake',\n",
" 'Travis',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'getting',\n",
" 'your',\n",
" 'sweat',\n",
" 'on',\n",
" 'is',\n",
" 'priority',\n",
" 'number',\n",
" 'one',\n",
" ',',\n",
" 'then',\n",
" 'check',\n",
" 'out',\n",
" 'Castle',\n",
" 'Hill',\n",
" 'Fitness',\n",
" 'downtown',\n",
" '.',\n",
" 'It',\n",
" 'offers',\n",
" 'a',\n",
" 'range',\n",
" 'of',\n",
" 'yoga-fitness',\n",
" 'fusion',\n",
" 'classes',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'body',\n",
" 'moving',\n",
" 'and',\n",
" 'your',\n",
" 'heart',\n",
" 'pumpin’',\n",
" '.',\n",
" 'The',\n",
" 'Yoga',\n",
" 'Tone',\n",
" 'class',\n",
" 'integrates',\n",
" 'classic',\n",
" 'yoga',\n",
" 'poses',\n",
" 'with',\n",
" 'free',\n",
" 'weights',\n",
" 'for',\n",
" 'building',\n",
" 'strength',\n",
" 'and',\n",
" 'endurance',\n",
" ',',\n",
" 'while',\n",
" 'the',\n",
" 'Yoga',\n",
" 'For',\n",
" 'Athletes',\n",
" 'class',\n",
" 'targets',\n",
" 'the',\n",
" 'aches',\n",
" 'and',\n",
" 'pains',\n",
" 'of',\n",
" 'seasoned',\n",
" 'fitness',\n",
" 'fiends',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Whether\",\n",
" 'you',\n",
" 'live',\n",
" 'North',\n",
" ',',\n",
" 'South',\n",
" ',',\n",
" 'or',\n",
" 'somewhere',\n",
" 'in',\n",
" 'between',\n",
" ',',\n",
" 'Black',\n",
" 'Swan',\n",
" 'Yoga',\n",
" 'has',\n",
" 'a',\n",
" 'studio',\n",
" 'near',\n",
" 'you',\n",
" '.',\n",
" 'But',\n",
" 'beyond',\n",
" 'being',\n",
" 'super',\n",
" 'convenient',\n",
" ',',\n",
" 'all',\n",
" 'of',\n",
" 'its',\n",
" 'locations',\n",
" 'offer',\n",
" 'fun',\n",
" 'and',\n",
" 'affordable',\n",
" 'classes',\n",
" 'with',\n",
" 'an',\n",
" 'upbeat',\n",
" 'soundtrack',\n",
" 'and',\n",
" 'funky',\n",
" 'fresh',\n",
" 'lighting',\n",
" '.',\n",
" 'Their',\n",
" 'Power',\n",
" 'Yoga',\n",
" 'classes',\n",
" 'are',\n",
" 'a',\n",
" 'community',\n",
" 'favorite',\n",
" ',',\n",
" 'but',\n",
" 'you’ll',\n",
" 'want',\n",
" 'to',\n",
" 'have',\n",
" 'a',\n",
" 'bit',\n",
" 'of',\n",
" 'beginner',\n",
" 'experience',\n",
" 'under',\n",
" 'your',\n",
" 'belt',\n",
" 'before',\n",
" 'you',\n",
" 'check',\n",
" '‘em',\n",
" 'out',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'little',\n",
" 'studio',\n",
" 'in',\n",
" 'Hyde',\n",
" 'Park',\n",
" 'is',\n",
" 'known',\n",
" 'for',\n",
" 'its',\n",
" 'friendly',\n",
" 'atmosphere',\n",
" 'and',\n",
" 'community-oriented',\n",
" 'focus',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'classes',\n",
" 'offered',\n",
" 'for',\n",
" 'every',\n",
" 'level',\n",
" ',',\n",
" 'as',\n",
" 'well',\n",
" 'as',\n",
" 'the',\n",
" 'option',\n",
" 'for',\n",
" 'one-on-one',\n",
" 'training',\n",
" 'if',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'refine',\n",
" 'your',\n",
" 'practice',\n",
" '.',\n",
" 'North',\n",
" 'Austinites',\n",
" 'love',\n",
" 'this',\n",
" 'place',\n",
" 'for',\n",
" 'its',\n",
" 'talented',\n",
" 'instructors',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'sweet',\n",
" 'boutique',\n",
" 'design',\n",
" 'and',\n",
" 'remarkably',\n",
" 'welcoming',\n",
" 'environment',\n",
" 'sure',\n",
" 'don’t',\n",
" 'hurt',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'Hyde',\n",
" 'Park',\n",
" 'studio',\n",
" 'is',\n",
" 'part',\n",
" 'art',\n",
" 'gallery',\n",
" ',',\n",
" 'part',\n",
" 'yoga',\n",
" 'studio',\n",
" ',',\n",
" 'so',\n",
" 'of',\n",
" 'course',\n",
" 'it’s',\n",
" 'uber',\n",
" 'popular',\n",
" 'among',\n",
" 'Austinites',\n",
" '.',\n",
" 'Most',\n",
" 'classes',\n",
" 'here',\n",
" 'are',\n",
" 'geared',\n",
" 'toward',\n",
" 'slowing',\n",
" 'down',\n",
" 'and',\n",
" 'recharging',\n",
" ',',\n",
" 'so',\n",
" 'it’s',\n",
" 'a',\n",
" 'great',\n",
" 'spot',\n",
" 'if',\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'gentle',\n",
" 'and',\n",
" 'restorative',\n",
" 'flows',\n",
" '.',\n",
" 'Any',\n",
" 'time',\n",
" 'you',\n",
" 'need',\n",
" 'to',\n",
" 'unwind',\n",
" 'and',\n",
" 'de-stress',\n",
" 'after',\n",
" 'a',\n",
" 'tough',\n",
" 'day',\n",
" ',',\n",
" 'this',\n",
" 'yoga-art',\n",
" 'hybrid',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'thing',\n",
" 'to',\n",
" 'rejuvenate',\n",
" 'your',\n",
" 'senses',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'aptly',\n",
" 'named',\n",
" 'studio',\n",
" 'is',\n",
" 'nestled',\n",
" 'in',\n",
" 'a',\n",
" 'grove',\n",
" 'of',\n",
" 'oak',\n",
" 'trees',\n",
" 'in',\n",
" 'South',\n",
" 'Austin',\n",
" '.',\n",
" 'Offering',\n",
" 'small',\n",
" 'Vinyasa',\n",
" ',',\n",
" 'Kundalini',\n",
" ',',\n",
" 'and',\n",
" 'Hatha',\n",
" 'Yoga',\n",
" 'classes',\n",
" 'in',\n",
" 'an',\n",
" 'intimate',\n",
" 'setting',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'an',\n",
" 'awesome',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'more',\n",
" 'one-on-one',\n",
" 'training',\n",
" '.',\n",
" 'But',\n",
" 'what',\n",
" 'really',\n",
" 'makes',\n",
" 'this',\n",
" 'space',\n",
" 'special',\n",
" 'is',\n",
" 'that',\n",
" 'it’s',\n",
" 'Austin’s',\n",
" 'only',\n",
" 'nonprofit',\n",
" 'yoga',\n",
" 'studio',\n",
" ',',\n",
" 'with',\n",
" 'proceeds',\n",
" 'from',\n",
" 'every',\n",
" 'class',\n",
" 'benefitting',\n",
" 'the',\n",
" 'Amala',\n",
" 'Foundation',\n",
" 'for',\n",
" 'at-risk',\n",
" 'youth',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'All\",\n",
" 'hot',\n",
" 'yoga',\n",
" ',',\n",
" 'all',\n",
" 'the',\n",
" 'time',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'ready',\n",
" 'to',\n",
" 'up',\n",
" 'the',\n",
" 'intensity',\n",
" 'of',\n",
" 'your',\n",
" 'practice',\n",
" 'to',\n",
" 'a',\n",
" 'steamy',\n",
" '105',\n",
" 'degrees',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'do',\n",
" 'it',\n",
" '.',\n",
" 'Pure',\n",
" 'Bikram',\n",
" 'Yoga',\n",
" 'has',\n",
" 'four',\n",
" 'different',\n",
" 'locations',\n",
" 'throughout',\n",
" 'the',\n",
" 'city',\n",
" 'offering',\n",
" '90-minute',\n",
" 'classes',\n",
" 'for',\n",
" 'all',\n",
" 'levels',\n",
" '.',\n",
" 'Targeting',\n",
" 'self-control',\n",
" ',',\n",
" 'concentration',\n",
" ',',\n",
" 'patience',\n",
" ',',\n",
" 'and',\n",
" 'determination',\n",
" 'in',\n",
" 'addition',\n",
" 'to',\n",
" 'a',\n",
" 'full',\n",
" 'body',\n",
" 'workout',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'an',\n",
" 'awesome',\n",
" 'challenge',\n",
" 'for',\n",
" 'your',\n",
" 'body',\n",
" 'and',\n",
" 'your',\n",
" 'brain',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'studio',\n",
" 'gets',\n",
" 'its',\n",
" 'name',\n",
" 'by',\n",
" 'being',\n",
" 'an',\n",
" 'affiliate',\n",
" 'of',\n",
" 'the',\n",
" 'super',\n",
" 'fun',\n",
" 'music',\n",
" 'and',\n",
" 'mindfulness',\n",
" 'festival',\n",
" ',',\n",
" 'Wanderlust',\n",
" '(',\n",
" 'if',\n",
" 'you’re',\n",
" 'not',\n",
" 'familiar',\n",
" ',',\n",
" 'it’s',\n",
" 'seriously',\n",
" 'worth',\n",
" 'checking',\n",
" 'out',\n",
" '.',\n",
" ')',\n",
" 'The',\n",
" 'unique',\n",
" 'blend',\n",
" 'of',\n",
" 'classes',\n",
" '–',\n",
" 'often',\n",
" 'accompanied',\n",
" 'by',\n",
" 'live',\n",
" 'music',\n",
" '!',\n",
" '–',\n",
" 'in',\n",
" 'this',\n",
" 'downtown',\n",
" 'studio',\n",
" 'range',\n",
" 'from',\n",
" 'hot',\n",
" 'to',\n",
" 'flow',\n",
" 'to',\n",
" 'restorative',\n",
" ',',\n",
" 'so',\n",
" 'there’s',\n",
" 'something',\n",
" 'for',\n",
" 'everyone',\n",
" 'here',\n",
" '.',\n",
" 'But',\n",
" 'their',\n",
" 'ever-popular',\n",
" 'Yoga',\n",
" 'Basics',\n",
" 'class',\n",
" 'is',\n",
" 'great',\n",
" 'for',\n",
" 'newbies',\n",
" 'looking',\n",
" 'to',\n",
" 'dip',\n",
" 'their',\n",
" 'toe',\n",
" 'in',\n",
" 'the',\n",
" 'yogi',\n",
" 'pond',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Looking\",\n",
" 'for',\n",
" 'a',\n",
" 'North',\n",
" 'Austin',\n",
" 'studio',\n",
" 'where',\n",
" 'everyone',\n",
" 'knows',\n",
" 'your',\n",
" 'name',\n",
" '?',\n",
" 'Then',\n",
" 'BFree',\n",
" 'is',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'be',\n",
" '.',\n",
" 'With',\n",
" 'a',\n",
" 'strong',\n",
" 'community',\n",
" 'vibe',\n",
" 'and',\n",
" 'a',\n",
" 'unique',\n",
" 'take',\n",
" 'on',\n",
" 'classes',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'spot',\n",
" 'to',\n",
" 'make',\n",
" 'new',\n",
" 'friends',\n",
" 'and',\n",
" 'experiment',\n",
" 'with',\n",
" 'your',\n",
" 'practice',\n",
" '.',\n",
" 'For',\n",
" 'traditional',\n",
" 'folks',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'standard',\n",
" 'classes',\n",
" 'like',\n",
" 'Vinyasa',\n",
" 'Flow',\n",
" 'and',\n",
" 'Ashtanga',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'change',\n",
" 'things',\n",
" 'up',\n",
" ',',\n",
" 'their',\n",
" 'BRocked',\n",
" '–',\n",
" 'Vinyasa',\n",
" 'Flow',\n",
" 'to',\n",
" 'classic',\n",
" 'rock',\n",
" 'will',\n",
" 'get',\n",
" 'your',\n",
" 'body',\n",
" 'movin’',\n",
" 'and',\n",
" 'groovin’',\n",
" 'to',\n",
" 'a',\n",
" 'different',\n",
" 'beat',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Yoga\",\n",
" 'so',\n",
" 'nice',\n",
" ',',\n",
" 'they',\n",
" 'had',\n",
" 'to',\n",
" 'say',\n",
" 'it',\n",
" 'twice',\n",
" '.',\n",
" 'With',\n",
" 'four',\n",
" 'different',\n",
" 'studios',\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" ',',\n",
" 'there’s',\n",
" 'sure',\n",
" 'to',\n",
" 'be',\n",
" 'one',\n",
" 'near',\n",
" 'you',\n",
" '–',\n",
" 'and',\n",
" ...],\n",
" ['[',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'interested',\n",
" 'in',\n",
" 'learning',\n",
" 'more',\n",
" 'about',\n",
" 'what',\n",
" 'we’re',\n",
" 'up',\n",
" 'to',\n",
" ',',\n",
" 'please',\n",
" 'use',\n",
" 'the',\n",
" 'contact',\n",
" 'form',\n",
" 'to',\n",
" 'reach',\n",
" 'us',\n",
" '.',\n",
" 'We',\n",
" 'can’t',\n",
" 'wait',\n",
" 'to',\n",
" 'hear',\n",
" 'from',\n",
" 'you',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" '``',\n",
" 'Follow',\n",
" 'Like',\n",
" 'Write',\n",
" 'For',\n",
" 'Us',\n",
" 'Send',\n",
" 'us',\n",
" 'a',\n",
" 'message',\n",
" '.',\n",
" 'Name',\n",
" '*',\n",
" 'Email',\n",
" '*',\n",
" 'Subject',\n",
" 'Subject',\n",
" 'Submit',\n",
" 'an',\n",
" 'Event',\n",
" 'Advertise',\n",
" 'with',\n",
" 'Fitt',\n",
" 'General',\n",
" 'Contact',\n",
" 'Message',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.bind',\n",
" '(',\n",
" \"'gform_post_render\",\n",
" \"'\",\n",
" ',',\n",
" 'function',\n",
" '(',\n",
" 'event',\n",
" ',',\n",
" 'formId',\n",
" ',',\n",
" 'currentPage',\n",
" ')',\n",
" '{',\n",
" 'if',\n",
" '(',\n",
" 'formId',\n",
" '==',\n",
" '1',\n",
" ')',\n",
" '{',\n",
" 'if',\n",
" '(',\n",
" 'typeof',\n",
" 'Placeholders',\n",
" '!',\n",
" '=',\n",
" \"'undefined\",\n",
" \"'\",\n",
" ')',\n",
" '{',\n",
" '\\\\n',\n",
" 'Placeholders.enable',\n",
" '(',\n",
" ')',\n",
" ';',\n",
" '\\\\n',\n",
" '}',\n",
" '}',\n",
" '}',\n",
" ')',\n",
" ';',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.bind',\n",
" '(',\n",
" \"'gform_post_conditional_logic\",\n",
" \"'\",\n",
" ',',\n",
" 'function',\n",
" '(',\n",
" 'event',\n",
" ',',\n",
" 'formId',\n",
" ',',\n",
" 'fields',\n",
" ',',\n",
" 'isInit',\n",
" ')',\n",
" '{',\n",
" '}',\n",
" ')',\n",
" ';',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.ready',\n",
" '(',\n",
" 'function',\n",
" '(',\n",
" ')',\n",
" '{',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.trigger',\n",
" '(',\n",
" \"'gform_post_render\",\n",
" \"'\",\n",
" ',',\n",
" '[',\n",
" '1',\n",
" ',',\n",
" '1',\n",
" ']',\n",
" ')',\n",
" '}',\n",
" ')',\n",
" ';',\n",
" \"''\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'interested',\n",
" 'in',\n",
" 'learning',\n",
" 'more',\n",
" 'about',\n",
" 'what',\n",
" 'we’re',\n",
" 'up',\n",
" 'to',\n",
" ',',\n",
" 'please',\n",
" 'use',\n",
" 'the',\n",
" 'contact',\n",
" 'form',\n",
" 'to',\n",
" 'reach',\n",
" 'us',\n",
" '.',\n",
" 'We',\n",
" 'can’t',\n",
" 'wait',\n",
" 'to',\n",
" 'hear',\n",
" 'from',\n",
" 'you',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" '``',\n",
" 'Follow',\n",
" 'Like',\n",
" 'Write',\n",
" 'For',\n",
" 'Us',\n",
" 'Send',\n",
" 'us',\n",
" 'a',\n",
" 'message',\n",
" '.',\n",
" 'Name',\n",
" '*',\n",
" 'Email',\n",
" '*',\n",
" 'Subject',\n",
" 'Subject',\n",
" 'Submit',\n",
" 'an',\n",
" 'Event',\n",
" 'Advertise',\n",
" 'with',\n",
" 'Fitt',\n",
" 'General',\n",
" 'Contact',\n",
" 'Message',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.bind',\n",
" '(',\n",
" \"'gform_post_render\",\n",
" \"'\",\n",
" ',',\n",
" 'function',\n",
" '(',\n",
" 'event',\n",
" ',',\n",
" 'formId',\n",
" ',',\n",
" 'currentPage',\n",
" ')',\n",
" '{',\n",
" 'if',\n",
" '(',\n",
" 'formId',\n",
" '==',\n",
" '1',\n",
" ')',\n",
" '{',\n",
" 'if',\n",
" '(',\n",
" 'typeof',\n",
" 'Placeholders',\n",
" '!',\n",
" '=',\n",
" \"'undefined\",\n",
" \"'\",\n",
" ')',\n",
" '{',\n",
" '\\\\n',\n",
" 'Placeholders.enable',\n",
" '(',\n",
" ')',\n",
" ';',\n",
" '\\\\n',\n",
" '}',\n",
" '}',\n",
" '}',\n",
" ')',\n",
" ';',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.bind',\n",
" '(',\n",
" \"'gform_post_conditional_logic\",\n",
" \"'\",\n",
" ',',\n",
" 'function',\n",
" '(',\n",
" 'event',\n",
" ',',\n",
" 'formId',\n",
" ',',\n",
" 'fields',\n",
" ',',\n",
" 'isInit',\n",
" ')',\n",
" '{',\n",
" '}',\n",
" ')',\n",
" ';',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.ready',\n",
" '(',\n",
" 'function',\n",
" '(',\n",
" ')',\n",
" '{',\n",
" 'jQuery',\n",
" '(',\n",
" 'document',\n",
" ')',\n",
" '.trigger',\n",
" '(',\n",
" \"'gform_post_render\",\n",
" \"'\",\n",
" ',',\n",
" '[',\n",
" '1',\n",
" ',',\n",
" '1',\n",
" ']',\n",
" ')',\n",
" '}',\n",
" ')',\n",
" ';',\n",
" \"''\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Honestly\",\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" 'and',\n",
" 'what',\n",
" 'we’re',\n",
" 'buying',\n",
" '.',\n",
" 'Major',\n",
" 'grocery',\n",
" 'stores',\n",
" 'are',\n",
" 'deceptive',\n",
" 'with',\n",
" 'their',\n",
" 'marketing—what',\n",
" 'exactly',\n",
" 'does',\n",
" '“all-natural”',\n",
" 'mean',\n",
" ',',\n",
" 'anyway',\n",
" '?',\n",
" 'And',\n",
" 'farmers',\n",
" 'markets',\n",
" 'aren’t',\n",
" 'always',\n",
" 'open',\n",
" 'and',\n",
" 'available',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Lucky\",\n",
" 'for',\n",
" 'you',\n",
" ',',\n",
" 'we',\n",
" 'know',\n",
" 'food',\n",
" 'and',\n",
" 'we',\n",
" 'know',\n",
" 'Austin',\n",
" '!',\n",
" 'Skip',\n",
" 'the',\n",
" 'same',\n",
" 'old',\n",
" 'supermarket',\n",
" 'and',\n",
" 'head',\n",
" 'to',\n",
" 'these',\n",
" 'local',\n",
" 'markets',\n",
" 'and',\n",
" 'grocery',\n",
" 'stores',\n",
" 'instead',\n",
" '.',\n",
" 'You’ll',\n",
" 'be',\n",
" 'glad',\n",
" 'you',\n",
" 'did',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'It’s\",\n",
" 'no',\n",
" 'secret',\n",
" 'that',\n",
" 'East',\n",
" 'Austin',\n",
" 'is',\n",
" 'cultivating',\n",
" 'a',\n",
" 'vibe',\n",
" 'all',\n",
" 'its',\n",
" 'own',\n",
" ',',\n",
" 'and',\n",
" 'this',\n",
" 'market',\n",
" 'adds',\n",
" 'to',\n",
" 'it',\n",
" 'perfectly',\n",
" '.',\n",
" 'Featuring',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'local',\n",
" 'fresh',\n",
" 'produce',\n",
" ',',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'art',\n",
" 'and',\n",
" 'artisans',\n",
" ',',\n",
" 'and',\n",
" 'even',\n",
" 'a',\n",
" 'monthly',\n",
" 'clothing',\n",
" 'swap',\n",
" ',',\n",
" 'this',\n",
" 'little',\n",
" 'gem',\n",
" 'tucked',\n",
" 'into',\n",
" 'the',\n",
" 'Plaza',\n",
" 'Saltillo',\n",
" 'is',\n",
" 'a',\n",
" 'perfect',\n",
" 'blend',\n",
" 'of',\n",
" 'healthy',\n",
" 'grub',\n",
" 'and',\n",
" 'Eastside',\n",
" 'experience',\n",
" '.',\n",
" 'Bonus',\n",
" ':',\n",
" 'it’s',\n",
" 'super',\n",
" 'dog-friendly',\n",
" '.',\n",
" 'So',\n",
" 'much',\n",
" 'so',\n",
" 'that',\n",
" 'one',\n",
" 'of',\n",
" 'their',\n",
" 'vendors',\n",
" 'sells',\n",
" '“doggy',\n",
" 'beer”',\n",
" ',',\n",
" 'a',\n",
" 'chicken',\n",
" 'broth-based',\n",
" 'beverage',\n",
" 'that’ll',\n",
" 'make',\n",
" 'your',\n",
" 'pup',\n",
" 'glad',\n",
" 'you’ve',\n",
" 'gone',\n",
" 'local',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Calling\",\n",
" 'all',\n",
" 'downtown',\n",
" 'dwellers',\n",
" ':',\n",
" 'we',\n",
" 'found',\n",
" 'you',\n",
" 'the',\n",
" 'perfect',\n",
" 'grocery',\n",
" 'store',\n",
" '!',\n",
" 'Well',\n",
" ',',\n",
" 'actually',\n",
" 'five',\n",
" 'of',\n",
" 'them',\n",
" '.',\n",
" 'Royal',\n",
" 'Blue',\n",
" 'expanded',\n",
" 'their',\n",
" 'gourmet',\n",
" 'approach',\n",
" 'to',\n",
" 'groceries',\n",
" 'to',\n",
" 'five',\n",
" 'different',\n",
" 'locations',\n",
" 'in',\n",
" 'the',\n",
" 'downtown',\n",
" 'area',\n",
" '.',\n",
" 'In',\n",
" 'addition',\n",
" 'to',\n",
" 'choosing',\n",
" 'from',\n",
" 'a',\n",
" 'huge',\n",
" 'selection',\n",
" 'of',\n",
" 'diverse',\n",
" ',',\n",
" 'healthy',\n",
" 'eats',\n",
" 'like',\n",
" 'the',\n",
" 'yummy',\n",
" 'white',\n",
" 'bean',\n",
" 'arugula',\n",
" 'pasta',\n",
" 'with',\n",
" 'chicken',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'also',\n",
" 'kick',\n",
" 'back',\n",
" 'and',\n",
" 'relax',\n",
" 'on',\n",
" 'their',\n",
" 'outdoor',\n",
" 'patio',\n",
" 'while',\n",
" 'enjoying',\n",
" 'coffee',\n",
" ',',\n",
" 'beer',\n",
" ',',\n",
" 'or',\n",
" 'one',\n",
" 'of',\n",
" 'their',\n",
" 'freshly',\n",
" 'made',\n",
" 'grab-and-go',\n",
" 'lunches',\n",
" ',',\n",
" 'prepared',\n",
" 'in-house',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Adventurous\",\n",
" 'eaters',\n",
" 'love',\n",
" 'this',\n",
" 'spot',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'South',\n",
" 'Austin',\n",
" 'for',\n",
" 'its',\n",
" 'ever-evolving',\n",
" 'selection',\n",
" 'of',\n",
" 'unusual',\n",
" 'foods',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'also',\n",
" 'full',\n",
" 'of',\n",
" 'your',\n",
" 'standard',\n",
" 'grocery',\n",
" 'mainstays',\n",
" '.',\n",
" 'They',\n",
" 'make',\n",
" 'it',\n",
" 'super',\n",
" 'easy',\n",
" 'to',\n",
" 'shop',\n",
" 'locally',\n",
" 'and',\n",
" 'healthfully',\n",
" ',',\n",
" 'with',\n",
" 'the',\n",
" 'vast',\n",
" 'majority',\n",
" 'of',\n",
" 'their',\n",
" 'products',\n",
" 'and',\n",
" 'produce',\n",
" 'being',\n",
" 'Texas-bound',\n",
" 'and',\n",
" 'organic',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'love',\n",
" 'it',\n",
" 'as',\n",
" 'much',\n",
" 'as',\n",
" 'we',\n",
" 'do',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'become',\n",
" 'a',\n",
" 'member',\n",
" 'of',\n",
" 'the',\n",
" 'co-op',\n",
" ',',\n",
" 'which',\n",
" 'actually',\n",
" 'makes',\n",
" 'you',\n",
" 'part',\n",
" 'owner',\n",
" '(',\n",
" 'look',\n",
" 'at',\n",
" 'you',\n",
" ',',\n",
" 'you',\n",
" 'health-nut',\n",
" ')',\n",
" '.',\n",
" 'More',\n",
" 'than',\n",
" 'a',\n",
" 'fancy',\n",
" 'owner’s',\n",
" 'title',\n",
" ',',\n",
" 'membership',\n",
" 'gets',\n",
" 'you',\n",
" 'tons',\n",
" 'of',\n",
" 'yearly',\n",
" 'discounts',\n",
" 'and',\n",
" 'deals',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'little',\n",
" 'treasure',\n",
" 'doesn’t',\n",
" 'look',\n",
" 'like',\n",
" 'much',\n",
" 'from',\n",
" 'the',\n",
" 'outside',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'a',\n",
" 'Barton',\n",
" 'Springs',\n",
" 'staple',\n",
" 'for',\n",
" 'good',\n",
" 'reason',\n",
" '–',\n",
" 'Thom’s',\n",
" 'Market',\n",
" 'clearly',\n",
" 'knows',\n",
" 'what',\n",
" 'Austinites',\n",
" 'love',\n",
" 'to',\n",
" 'eat',\n",
" 'and',\n",
" 'do',\n",
" '.',\n",
" 'In',\n",
" 'addition',\n",
" 'to',\n",
" 'fresh',\n",
" 'fruits',\n",
" 'and',\n",
" 'veggies',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'buy',\n",
" 'local',\n",
" 'cupcakes',\n",
" 'from',\n",
" 'Better',\n",
" 'Bites',\n",
" 'Bakery',\n",
" ',',\n",
" 'Taco',\n",
" 'Deli',\n",
" 'tacos',\n",
" ',',\n",
" 'and',\n",
" 'even',\n",
" 'a',\n",
" 'kite',\n",
" 'to',\n",
" 'fly',\n",
" 'at',\n",
" 'nearby',\n",
" 'Zilker',\n",
" '.',\n",
" 'There’s',\n",
" 'also',\n",
" 'a',\n",
" 'wall',\n",
" 'of',\n",
" 'flyers',\n",
" 'and',\n",
" 'info',\n",
" 'about',\n",
" 'nearby',\n",
" 'concerts',\n",
" 'and',\n",
" 'events',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'a',\n",
" 'big',\n",
" 'black',\n",
" 'binder',\n",
" 'full',\n",
" 'of',\n",
" 'local',\n",
" 'recommendations',\n",
" ',',\n",
" 'furthering',\n",
" 'the',\n",
" 'sense',\n",
" 'of',\n",
" 'community',\n",
" 'that',\n",
" 'makes',\n",
" 'our',\n",
" 'city',\n",
" 'so',\n",
" 'special',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'place',\n",
" 'has',\n",
" 'been',\n",
" 'in',\n",
" 'Austin',\n",
" 'since',\n",
" '1927',\n",
" '.',\n",
" 'That’s',\n",
" 'right',\n",
" ',',\n",
" 'serving',\n",
" 'central',\n",
" 'and',\n",
" 'north',\n",
" 'Austin',\n",
" 'almost',\n",
" '100',\n",
" 'years',\n",
" '!',\n",
" 'And',\n",
" 'thank',\n",
" 'goodness',\n",
" ',',\n",
" 'because',\n",
" 'they',\n",
" 'do',\n",
" 'an',\n",
" 'awesome',\n",
" 'job',\n",
" 'of',\n",
" 'meeting',\n",
" 'everyone’s',\n",
" 'needs',\n",
" ',',\n",
" 'mixing',\n",
" 'fresh',\n",
" 'organic',\n",
" 'produce',\n",
" 'with',\n",
" 'bigger',\n",
" 'brand',\n",
" 'names',\n",
" 'you',\n",
" 'can',\n",
" 'grab',\n",
" 'in',\n",
" 'a',\n",
" 'pinch',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'care',\n",
" 'to',\n",
" 'top',\n",
" 'your',\n",
" 'healthy',\n",
" 'meals',\n",
" 'off',\n",
" 'with',\n",
" 'a',\n",
" 'cold',\n",
" 'brew',\n",
" ',',\n",
" 'you’re',\n",
" 'totally',\n",
" 'covered',\n",
" 'here',\n",
" 'because',\n",
" 'they',\n",
" 'boast',\n",
" 'a',\n",
" 'large',\n",
" 'supply',\n",
" 'of',\n",
" 'unique',\n",
" ',',\n",
" 'regional',\n",
" 'craft',\n",
" 'beers',\n",
" '.',\n",
" 'Add',\n",
" 'quirky',\n",
" ',',\n",
" 'hand-drawn',\n",
" 'greeting',\n",
" 'cards',\n",
" 'and',\n",
" 'a',\n",
" 'flower',\n",
" 'basket',\n",
" 'inviting',\n",
" 'donations',\n",
" 'for',\n",
" 'local',\n",
" 'artists',\n",
" 'to',\n",
" 'the',\n",
" 'mix',\n",
" ',',\n",
" 'and',\n",
" 'it’s',\n",
" 'easy',\n",
" 'to',\n",
" 'see',\n",
" 'why',\n",
" 'this',\n",
" 'spot',\n",
" 'has',\n",
" 'been',\n",
" 'supported',\n",
" 'by',\n",
" 'the',\n",
" 'community',\n",
" 'for',\n",
" 'so',\n",
" 'long',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'When\",\n",
" 'The',\n",
" 'Daily',\n",
" 'Meal',\n",
" 'included',\n",
" 'the',\n",
" 'SFC',\n",
" 'Farmers’',\n",
" 'Market',\n",
" 'in',\n",
" 'their',\n",
" 'list',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" 'farmers',\n",
" 'markets',\n",
" 'in',\n",
" 'America',\n",
" ',',\n",
" 'there',\n",
" 'were',\n",
" 'no',\n",
" 'surprises',\n",
" 'here',\n",
" '.',\n",
" 'For',\n",
" 'one',\n",
" 'thing',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'four',\n",
" 'different',\n",
" 'markets',\n",
" 'throughout',\n",
" 'the',\n",
" 'week',\n",
" ',',\n",
" 'so',\n",
" 'most',\n",
" 'everyone',\n",
" 'can',\n",
" 'find',\n",
" 'the',\n",
" 'time',\n",
" 'to',\n",
" 'check',\n",
" 'it',\n",
" 'out',\n",
" '.',\n",
" 'And',\n",
" 'hosting',\n",
" 'more',\n",
" 'local',\n",
" 'farmers',\n",
" 'than',\n",
" 'anywhere',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'this',\n",
" 'sweet',\n",
" 'downtown',\n",
" 'spot',\n",
" 'prides',\n",
" 'itself',\n",
" 'on',\n",
" 'only',\n",
" 'allowing',\n",
" 'farmers',\n",
" 'to',\n",
" 'sell',\n",
" 'what',\n",
" 'they',\n",
" 'grow',\n",
" 'and',\n",
" 'vendors',\n",
" 'sell',\n",
" 'what',\n",
" 'they',\n",
" 'themselves',\n",
" 'make',\n",
" '.',\n",
" 'So',\n",
" 'you',\n",
" 'can',\n",
" 'feel',\n",
" 'good',\n",
" 'about',\n",
" 'contributing',\n",
" 'to',\n",
" 'the',\n",
" 'local',\n",
" 'economy',\n",
" ',',\n",
" 'while',\n",
" 'being',\n",
" 'sure',\n",
" 'that',\n",
" 'what',\n",
" 'you',\n",
" 'get',\n",
" 'isn’t',\n",
" 'full',\n",
" 'of',\n",
" 'mysterious',\n",
" 'ingredients',\n",
" 'from',\n",
" 'faraway',\n",
" 'lands',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Don’t\",\n",
" 'be',\n",
" 'fooled',\n",
" 'by',\n",
" 'the',\n",
" 'small',\n",
" 'size',\n",
" 'of',\n",
" 'this',\n",
" 'place',\n",
" 'on',\n",
" 'SoCo',\n",
" ',',\n",
" 'because',\n",
" 'it’s',\n",
" 'packed',\n",
" 'full',\n",
" 'of',\n",
" 'healthy',\n",
" 'treats',\n",
" 'for',\n",
" 'your',\n",
" 'appetite',\n",
" '.',\n",
" 'With',\n",
" 'a',\n",
" 'wall',\n",
" 'of',\n",
" 'local',\n",
" 'salsa',\n",
" 'reigning',\n",
" 'over',\n",
" 'its',\n",
" 'cozy',\n",
" 'layout',\n",
" ',',\n",
" 'you',\n",
" 'have',\n",
" 'every',\n",
" 'opportunity',\n",
" 'to',\n",
" 'make',\n",
" 'their',\n",
" 'already-amazing',\n",
" 'homemade',\n",
" 'enchiladas',\n",
" 'even',\n",
" 'more',\n",
" 'delicious',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’re',\n",
" 'just',\n",
" 'stopping',\n",
" 'in',\n",
" 'for',\n",
" 'a',\n",
" 'bite',\n",
" ',',\n",
" 'you',\n",
" 'won’t',\n",
" 'be',\n",
" 'alone',\n",
" '–',\n",
" 'the',\n",
" 'deli',\n",
" 'is',\n",
" 'always',\n",
" 'buzzing',\n",
" 'with',\n",
" 'customers',\n",
" 'during',\n",
" 'breakfast',\n",
" 'and',\n",
" 'lunch',\n",
" 'for',\n",
" 'fresh',\n",
" ',',\n",
" 'worldly',\n",
" 'foods',\n",
" 'on-the-go',\n",
" 'like',\n",
" 'Korean',\n",
" 'meatballs',\n",
" ',',\n",
" 'butternut',\n",
" 'squash',\n",
" ',',\n",
" 'and',\n",
" 'DIY',\n",
" 'breakfast',\n",
" 'tacos',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Keeping\",\n",
" 'true',\n",
" 'to',\n",
" 'weird',\n",
" 'Austin',\n",
" 'form',\n",
" ',',\n",
" 'what',\n",
" 'began',\n",
" 'as',\n",
" 'a',\n",
" 'gas',\n",
" 'station',\n",
" 'convenience',\n",
" 'store',\n",
" 'turned',\n",
" 'into',\n",
" 'an',\n",
" 'organic',\n",
" 'market',\n",
" ',',\n",
" 'pub',\n",
" ',',\n",
" 'microbrewery',\n",
" ',',\n",
" 'and',\n",
" 'favorite',\n",
" 'hangout',\n",
" 'spot',\n",
" 'for',\n",
" 'South',\n",
" 'Austinites',\n",
" '.',\n",
" 'Whip',\n",
" 'In’s',\n",
" 'shelves',\n",
" 'are',\n",
" 'lined',\n",
" 'with',\n",
" 'sustainable',\n",
" ',',\n",
" 'local',\n",
" 'foods',\n",
" 'to',\n",
" 'grab',\n",
" 'and',\n",
" 'take',\n",
" 'home',\n",
" '.',\n",
" 'Or',\n",
" 'you',\n",
" 'can',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'some',\n",
" 'authentic',\n",
" 'Indian',\n",
" 'grub',\n",
" 'prepared',\n",
" 'fresh',\n",
" 'in',\n",
" 'the',\n",
" 'kitchen',\n",
" '.',\n",
" 'Even',\n",
" 'if',\n",
" 'you’re',\n",
" 'just',\n",
" 'in',\n",
" 'the',\n",
" 'mood',\n",
" 'for',\n",
" 'a',\n",
" 'drink',\n",
" ',',\n",
" 'you’ll',\n",
" 'get',\n",
" 'above',\n",
" 'and',\n",
" 'beyond',\n",
" 'here',\n",
" 'as',\n",
" 'you',\n",
" 'choose',\n",
" 'from',\n",
" 'any',\n",
" 'of',\n",
" 'the',\n",
" 'unique',\n",
" ',',\n",
" 'natural',\n",
" 'ingredient',\n",
" 'beers',\n",
" 'from',\n",
" 'the',\n",
" 'Whip',\n",
" 'In’s',\n",
" 'own',\n",
" 'brewery',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'We’ve\",\n",
" 'got',\n",
" 'it',\n",
" 'made',\n",
" '.',\n",
" 'Austin’s',\n",
" 'climate',\n",
" 'means',\n",
" 'year-round',\n",
" 'patio',\n",
" 'brunches',\n",
" ',',\n",
" 'all-season',\n",
" 'swimming',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'yearlong',\n",
" 'calendar',\n",
" 'of',\n",
" 'fun',\n",
" 'races',\n",
" 'to',\n",
" 'run',\n",
" 'your',\n",
" 'butt',\n",
" 'off',\n",
" 'in',\n",
" 'style',\n",
" '.',\n",
" 'Featuring',\n",
" 'gorilla',\n",
" 'suits',\n",
" ',',\n",
" 'glow-in-the-dark',\n",
" 'gear',\n",
" ',',\n",
" 'and',\n",
" 'packs',\n",
" 'of',\n",
" 'zombies',\n",
" ',',\n",
" 'we',\n",
" 'picked',\n",
" 'our',\n",
" 'favorites',\n",
" 'for',\n",
" 'each',\n",
" 'month',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'hit',\n",
" 'the',\n",
" 'races',\n",
" 'whenever',\n",
" 'the',\n",
" 'spirit',\n",
" 'moves',\n",
" 'you',\n",
" '.',\n",
" 'Mark',\n",
" 'your',\n",
" 'calendars',\n",
" ',',\n",
" 'gang',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Nothing\",\n",
" 'like',\n",
" 'ringing',\n",
" 'in',\n",
" 'the',\n",
" 'new',\n",
" 'year',\n",
" 'with',\n",
" 'a',\n",
" 'bunch',\n",
" 'of',\n",
" 'gorillas',\n",
" '.',\n",
" 'The',\n",
" 'Austin',\n",
" 'Gorilla',\n",
" 'Run',\n",
" 'is',\n",
" 'a',\n",
" '5K',\n",
" 'that',\n",
" 'starts',\n",
" 'and',\n",
" 'finishes',\n",
" 'at',\n",
" 'the',\n",
" 'Camp',\n",
" 'Mabry',\n",
" 'Parade',\n",
" 'Field',\n",
" '.',\n",
" 'Showing',\n",
" 'support',\n",
" 'for',\n",
" 'the',\n",
" 'Mountain',\n",
" 'Gorilla',\n",
" 'Conservation',\n",
" 'Fund',\n",
" ',',\n",
" 'race',\n",
" 'registrants',\n",
" 'are',\n",
" 'encouraged',\n",
" 'to',\n",
" 'don',\n",
" 'full-body',\n",
" 'gorilla',\n",
" 'suits',\n",
" '(',\n",
" 'included',\n",
" 'in',\n",
" 'ticket',\n",
" 'price',\n",
" ')',\n",
" 'in',\n",
" 'solidarity',\n",
" 'as',\n",
" 'they',\n",
" 'bound',\n",
" 'through',\n",
" 'the',\n",
" 'wild',\n",
" 'of',\n",
" 'North',\n",
" 'Austin',\n",
" '.',\n",
" 'There’s',\n",
" 'even',\n",
" 'a',\n",
" 'pre-race',\n",
" 'bar',\n",
" 'crawl',\n",
" 'a',\n",
" 'week',\n",
" 'before',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'meet',\n",
" 'and',\n",
" 'mingle',\n",
" 'with',\n",
" 'all',\n",
" 'of',\n",
" 'your',\n",
" 'new',\n",
" 'gorilla',\n",
" 'friends',\n",
" 'before',\n",
" 'you',\n",
" 'hit',\n",
" 'the',\n",
" 'pavement',\n",
" '.',\n",
" 'January',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" '25',\n",
" 'years',\n",
" 'under',\n",
" 'its',\n",
" 'belt',\n",
" ',',\n",
" 'there’s',\n",
" 'no',\n",
" 'denying',\n",
" 'that',\n",
" 'the',\n",
" 'Austin',\n",
" 'Marathon',\n",
" 'is',\n",
" 'a',\n",
" 'mainstay',\n",
" 'among',\n",
" 'local',\n",
" 'runners',\n",
" '.',\n",
" 'When',\n",
" 'the',\n",
" 'starting',\n",
" 'gun',\n",
" 'goes',\n",
" 'off',\n",
" ',',\n",
" 'some',\n",
" '15,000',\n",
" 'runners',\n",
" 'set',\n",
" 'off',\n",
" 'from',\n",
" 'the',\n",
" 'shadow',\n",
" 'of',\n",
" 'the',\n",
" 'Texas',\n",
" 'State',\n",
" 'Capitol',\n",
" 'on',\n",
" 'Congress',\n",
" 'Avenue',\n",
" 'for',\n",
" 'a',\n",
" 'journey',\n",
" 'through',\n",
" 'the',\n",
" 'streets',\n",
" 'of',\n",
" 'Austin',\n",
" '.',\n",
" 'Fun',\n",
" 'runners',\n",
" ',',\n",
" 'first-timers',\n",
" ',',\n",
" 'and',\n",
" 'finely',\n",
" 'tuned',\n",
" 'athletes',\n",
" 'log',\n",
" '13.1',\n",
" 'or',\n",
" '26.2',\n",
" 'miles',\n",
" 'through',\n",
" 'downtown',\n",
" ',',\n",
" 'past',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" ',',\n",
" 'trendy',\n",
" 'SoCo',\n",
" ',',\n",
" 'Hyde',\n",
" 'Park',\n",
" ',',\n",
" 'and',\n",
" 'UT',\n",
" 'before',\n",
" 'crossing',\n",
" 'the',\n",
" 'finish',\n",
" 'line',\n",
" 'back',\n",
" 'near',\n",
" 'the',\n",
" 'Capitol',\n",
" '.',\n",
" 'This',\n",
" 'race',\n",
" 'is',\n",
" 'no',\n",
" 'walk',\n",
" 'in',\n",
" 'the',\n",
" 'park',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'a',\n",
" 'must',\n",
" 'for',\n",
" 'local',\n",
" 'runners',\n",
" '.',\n",
" 'February',\n",
" \"'\",\n",
" ',',\n",
" \"'Been\",\n",
" 'looking',\n",
" 'to',\n",
" 'test',\n",
" 'out',\n",
" 'your',\n",
" 'Apocalypse',\n",
" 'chops',\n",
" '?',\n",
" 'Think',\n",
" 'you',\n",
" 'have',\n",
" 'the',\n",
" 'stuff',\n",
" 'to',\n",
" 'take',\n",
" 'down',\n",
" 'a',\n",
" 'pack',\n",
" 'of',\n",
" 'zombies',\n",
" '?',\n",
" 'Then',\n",
" 'this',\n",
" '5K',\n",
" 'is',\n",
" 'just',\n",
" 'what',\n",
" 'you’ve',\n",
" 'been',\n",
" 'waiting',\n",
" 'for',\n",
" '.',\n",
" 'At',\n",
" 'Dripping',\n",
" 'Springs',\n",
" 'Ranch',\n",
" 'Park',\n",
" ',',\n",
" 'participants',\n",
" 'will',\n",
" 'run',\n",
" 'two',\n",
" 'laps',\n",
" 'around',\n",
" 'the',\n",
" 'park',\n",
" 'while',\n",
" 'they’re',\n",
" 'chased',\n",
" 'by',\n",
" 'loads',\n",
" 'of',\n",
" 'zombies',\n",
" 'with',\n",
" 'a',\n",
" 'taste',\n",
" 'for',\n",
" 'human',\n",
" 'flesh',\n",
" '.',\n",
" 'The',\n",
" 'goal',\n",
" 'is',\n",
" 'to',\n",
" 'keep',\n",
" 'your',\n",
" 'flag',\n",
" 'out',\n",
" 'of',\n",
" 'the',\n",
" 'hands',\n",
" 'of',\n",
" 'the',\n",
" 'dead',\n",
" '’til',\n",
" 'the',\n",
" 'end',\n",
" ',',\n",
" 'or',\n",
" 'you',\n",
" ',',\n",
" 'too',\n",
" ',',\n",
" 'will',\n",
" 'become',\n",
" 'a',\n",
" 'part',\n",
" 'of',\n",
" 'the',\n",
" 'walking',\n",
" 'dead',\n",
" '.',\n",
" 'March',\n",
" \"'\",\n",
" ',',\n",
" \"'Every\",\n",
" 'spring',\n",
" 'for',\n",
" 'nearly',\n",
" 'four',\n",
" 'decades',\n",
" ',',\n",
" 'Austin',\n",
" 'shuts',\n",
" 'down',\n",
" 'its',\n",
" 'downtown',\n",
" 'streets',\n",
" 'to',\n",
" 'cars',\n",
" 'and',\n",
" 'opens',\n",
" 'them',\n",
" 'up',\n",
" 'to',\n",
" 'the',\n",
" 'thousands',\n",
" 'of',\n",
" 'runners',\n",
" 'participating',\n",
" 'in',\n",
" 'the',\n",
" 'historic',\n",
" 'and',\n",
" 'celebrated',\n",
" 'Statesman',\n",
" 'Capitol',\n",
" '10,000',\n",
" '.',\n",
" 'Beginning',\n",
" 'on',\n",
" 'the',\n",
" 'Congress',\n",
" 'bridge',\n",
" ',',\n",
" 'runners',\n",
" 'will',\n",
" 'weave',\n",
" 'and',\n",
" 'wind',\n",
" 'through',\n",
" 'the',\n",
" 'downtown',\n",
" 'city',\n",
" 'streets',\n",
" 'for',\n",
" '10',\n",
" 'kilometers',\n",
" '.',\n",
" 'Come',\n",
" 'for',\n",
" 'the',\n",
" 'run',\n",
" 'and',\n",
" 'stay',\n",
" 'for',\n",
" 'the',\n",
" 'post-race',\n",
" 'festival',\n",
" ',',\n",
" 'which',\n",
" 'includes',\n",
" 'a',\n",
" 'free',\n",
" '(',\n",
" '!',\n",
" ')',\n",
" 'sports',\n",
" 'massage',\n",
" ',',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'and',\n",
" 'delicious',\n",
" 'food',\n",
" 'trucks',\n",
" 'waiting',\n",
" 'to',\n",
" 'reward',\n",
" 'you',\n",
" 'for',\n",
" 'your',\n",
" 'hard',\n",
" 'work',\n",
" '.',\n",
" 'April',\n",
" \"'\",\n",
" ',',\n",
" \"'What\",\n",
" 'do',\n",
" 'you',\n",
" 'get',\n",
" 'when',\n",
" 'you',\n",
" 'combine',\n",
" 'a',\n",
" '10-mile',\n",
" 'race',\n",
" 'with',\n",
" '20',\n",
" 'local',\n",
" 'bands',\n",
" '?',\n",
" 'Say',\n",
" 'hello',\n",
" 'to',\n",
" 'the',\n",
" 'Austin',\n",
" '10/20',\n",
" '.',\n",
" 'Sure',\n",
" ',',\n",
" '10',\n",
" 'miles',\n",
" 'seems',\n",
" 'a',\n",
" 'bit',\n",
" 'more',\n",
" 'daunting',\n",
" 'than',\n",
" 'your',\n",
" 'traditional',\n",
" '5K',\n",
" 'or',\n",
" '10K',\n",
" '.',\n",
" 'But',\n",
" 'this',\n",
" 'race',\n",
" 'helps',\n",
" 'to',\n",
" 'keep',\n",
" 'you',\n",
" 'moving',\n",
" 'and',\n",
" 'motivated',\n",
" 'by',\n",
" 'putting',\n",
" 'a',\n",
" 'stage',\n",
" 'and',\n",
" 'live',\n",
" 'rock',\n",
" 'band',\n",
" 'every',\n",
" 'half-mile',\n",
" 'along',\n",
" 'the',\n",
" 'route',\n",
" '.',\n",
" 'As',\n",
" 'if',\n",
" 'that',\n",
" 'wasn’t',\n",
" 'reason',\n",
" 'enough',\n",
" 'to',\n",
" 'run',\n",
" ',',\n",
" 'participants',\n",
" 'are',\n",
" 'entitled',\n",
" 'to',\n",
" 'some',\n",
" 'sweet',\n",
" 'swag',\n",
" 'and',\n",
" 'a',\n",
" 'post-race',\n",
" 'party',\n",
" '.',\n",
" 'Sign',\n",
" 'us',\n",
" 'up',\n",
" '!',\n",
" 'April',\n",
" \"'\",\n",
" ',',\n",
" \"'Austin’s\",\n",
" 'oldest',\n",
" '5K',\n",
" 'is',\n",
" 'barreling',\n",
" 'towards',\n",
" 'its',\n",
" '40th',\n",
" 'annual',\n",
" 'running',\n",
" '.',\n",
" 'Impressive',\n",
" ',',\n",
" 'huh',\n",
" '?',\n",
" 'We',\n",
" 'sure',\n",
" 'think',\n",
" 'so',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'do',\n",
" 'too',\n",
" ',',\n",
" 'kick',\n",
" 'off',\n",
" 'your',\n",
" 'Memorial',\n",
" 'Day',\n",
" 'with',\n",
" 'the',\n",
" 'Daisy',\n",
" '5K',\n",
" '.',\n",
" 'No',\n",
" 'matter',\n",
" 'your',\n",
" 'age',\n",
" 'or',\n",
" 'experience',\n",
" 'level',\n",
" ',',\n",
" 'this',\n",
" 'race',\n",
" 'has',\n",
" 'something',\n",
" 'to',\n",
" 'offer',\n",
" '.',\n",
" 'There’s',\n",
" 'a',\n",
" 'one-mile',\n",
" 'kids',\n",
" 'run',\n",
" ',',\n",
" 'the',\n",
" 'traditional',\n",
" '5K',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'new',\n",
" 'cross',\n",
" 'country-style',\n",
" 'team',\n",
" 'challenge',\n",
" '.',\n",
" 'Round',\n",
" 'up',\n",
" 'your',\n",
" 'friends',\n",
" ',',\n",
" 'family',\n",
" ',',\n",
" 'and',\n",
" 'hit',\n",
" 'up',\n",
" 'the',\n",
" 'group',\n",
" 'chat',\n",
" 'to',\n",
" 'see',\n",
" 'who’ll',\n",
" 'take',\n",
" 'part',\n",
" 'in',\n",
" 'this',\n",
" 'local',\n",
" 'tradition',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'As\",\n",
" 'far',\n",
" 'as',\n",
" 'we’re',\n",
" 'concerned',\n",
" ',',\n",
" 'nothing',\n",
" 'pairs',\n",
" 'better',\n",
" 'with',\n",
" 'fitness',\n",
" 'than',\n",
" 'food',\n",
" '.',\n",
" 'And',\n",
" 'the',\n",
" 'organizers',\n",
" 'at',\n",
" 'the',\n",
" 'Fit',\n",
" 'Foodie',\n",
" '5K',\n",
" 'seem',\n",
" 'to',\n",
" 'agree',\n",
" '.',\n",
" 'This',\n",
" 'race',\n",
" 'takes',\n",
" 'place',\n",
" 'on',\n",
" 'a',\n",
" 'Saturday',\n",
" 'morning',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'event',\n",
" 'spans',\n",
" 'an',\n",
" 'entire',\n",
" 'weekend',\n",
" 'of',\n",
" 'celebrity',\n",
" 'chef',\n",
" 'presentations',\n",
" ',',\n",
" 'tastings',\n",
" ',',\n",
" 'and',\n",
" 'post-race',\n",
" 'refuel',\n",
" 'sessions',\n",
" '.',\n",
" 'Even',\n",
" 'better',\n",
" ',',\n",
" 'the',\n",
" 'race',\n",
" 'is',\n",
" 'held',\n",
" 'in',\n",
" 'the',\n",
" 'scenic',\n",
" 'Mueller',\n",
" 'Lake',\n",
" 'Park',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'feast',\n",
" 'your',\n",
" 'eyes',\n",
" 'on',\n",
" 'nature',\n",
" 'as',\n",
" 'you',\n",
" 'prepare',\n",
" 'for',\n",
" 'the',\n",
" 'finish',\n",
" 'line',\n",
" 'feast',\n",
" 'that',\n",
" 'awaits',\n",
" '.',\n",
" 'June',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'blazing',\n",
" 'Texas',\n",
" 'heat',\n",
" 'can',\n",
" 'make',\n",
" 'it',\n",
" 'tough',\n",
" 'to',\n",
" 'come',\n",
" 'out',\n",
" 'and',\n",
" 'hit',\n",
" 'the',\n",
" 'summer',\n",
" 'pavement',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'folks',\n",
" 'organizing',\n",
" 'this',\n",
" 'race',\n",
" 'know',\n",
" 'that',\n",
" 'fitness',\n",
" 'knows',\n",
" 'no',\n",
" 'season',\n",
" '.',\n",
" 'So',\n",
" 'they’ve',\n",
" 'cooled',\n",
" 'down',\n",
" 'this',\n",
" 'Plum',\n",
" 'Creek',\n",
" 'course',\n",
" 'with',\n",
" 'popsicle',\n",
" 'incentives',\n",
" '.',\n",
" 'The',\n",
" 'entire',\n",
" 'family',\n",
" 'is',\n",
" 'encouraged',\n",
" 'to',\n",
" 'come',\n",
" 'out',\n",
" 'and',\n",
" 'run',\n",
" 'the',\n",
" 'four-mile',\n",
" 'course',\n",
" 'or',\n",
" 'the',\n",
" 'kids’',\n",
" '1K',\n",
" 'fun',\n",
" 'run',\n",
" '.',\n",
" 'Trust',\n",
" 'us',\n",
" ',',\n",
" 'you’ve',\n",
" 'never',\n",
" 'tasted',\n",
" 'a',\n",
" 'better',\n",
" 'frozen',\n",
" 'treat',\n",
" 'than',\n",
" 'the',\n",
" 'one',\n",
" 'waiting',\n",
" 'for',\n",
" 'you',\n",
" 'at',\n",
" 'the',\n",
" 'finish',\n",
" 'line',\n",
" '.',\n",
" 'July',\n",
" \"'\",\n",
" ',',\n",
" \"'While\",\n",
" 'the',\n",
" 'rest',\n",
" 'of',\n",
" 'Texas',\n",
" 'is',\n",
" 'blasting',\n",
" 'A/C',\n",
" 'to',\n",
" 'keep',\n",
" 'out',\n",
" 'the',\n",
" 'late-summer',\n",
" 'heat',\n",
" ',',\n",
" 'the',\n",
" 'bravest',\n",
" 'among',\n",
" 'us',\n",
" 'are',\n",
" 'taking',\n",
" 'on',\n",
" 'this',\n",
" 'steamy',\n",
" ',',\n",
" '5-person',\n",
" 'relay',\n",
" 'at',\n",
" 'Buescher',\n",
" 'State',\n",
" 'Park',\n",
" '.',\n",
" 'You',\n",
" 'and',\n",
" 'four',\n",
" 'of',\n",
" 'your',\n",
" 'most',\n",
" 'extreme',\n",
" 'friends',\n",
" 'can',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'your',\n",
" 'choice',\n",
" 'of',\n",
" '100M',\n",
" '(',\n",
" 'yes',\n",
" ',',\n",
" 'that’s',\n",
" '100',\n",
" 'miles',\n",
" ')',\n",
" ',',\n",
" '100K',\n",
" ',',\n",
" 'or',\n",
" '50K',\n",
" '.',\n",
" 'Kicking',\n",
" 'off',\n",
" 'at',\n",
" 'high',\n",
" 'noon',\n",
" 'with',\n",
" 'a',\n",
" '30-hour',\n",
" 'cutoff',\n",
" ',',\n",
" 'this',\n",
" 'course',\n",
" 'will',\n",
" 'test',\n",
" 'your',\n",
" 'strength',\n",
" ',',\n",
" 'endurance',\n",
" ',',\n",
" 'and',\n",
" 'sanity',\n",
" ',',\n",
" 'but',\n",
" 'leave',\n",
" 'you',\n",
" 'with',\n",
" 'bragging',\n",
" 'rights',\n",
" 'to',\n",
" 'last',\n",
" 'a',\n",
" 'lifetime',\n",
" '.',\n",
" 'August',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'prefer',\n",
" 'a',\n",
" 'more',\n",
" 'sane',\n",
" 'version',\n",
" 'of',\n",
" 'a',\n",
" 'relay',\n",
" ',',\n",
" 'you',\n",
" 'need',\n",
" 'only',\n",
" 'wait',\n",
" 'until',\n",
" 'September',\n",
" 'for',\n",
" 'this',\n",
" '10-mile',\n",
" 'course',\n",
" '.',\n",
" 'You',\n",
" 'and',\n",
" 'three',\n",
" 'running',\n",
" 'buddies',\n",
" 'can',\n",
" 'get',\n",
" 'in',\n",
" 'on',\n",
" 'some',\n",
" 'easy',\n",
" 'relay',\n",
" 'action',\n",
" 'at',\n",
" 'Zilker',\n",
" 'Park',\n",
" 'as',\n",
" 'you',\n",
" 'each',\n",
" 'run',\n",
" '2.5',\n",
" 'miles',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'real',\n",
" 'winner',\n",
" 'here',\n",
" 'is',\n",
" 'the',\n",
" 'post-race',\n",
" 'after',\n",
" 'party',\n",
" 'where',\n",
" 'runners',\n",
" 'of',\n",
" 'all',\n",
" 'ages',\n",
" 'convene',\n",
" 'for',\n",
" 'a',\n",
" 'festival',\n",
" 'of',\n",
" 'music',\n",
" ',',\n",
" 'food',\n",
" ',',\n",
" 'and',\n",
" 'fitness',\n",
" 'to',\n",
" ...],\n",
" ['[',\n",
" \"'There’s\",\n",
" 'a',\n",
" 'lot',\n",
" 'for',\n",
" 'fitness',\n",
" 'adventures',\n",
" 'to',\n",
" 'get',\n",
" 'excited',\n",
" 'about',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'There\",\n",
" 'are',\n",
" 'rock',\n",
" 'climbing',\n",
" 'spots',\n",
" 'a',\n",
" 'stone’s',\n",
" 'throw',\n",
" 'from',\n",
" 'downtown',\n",
" ',',\n",
" 'kayaking',\n",
" 'and',\n",
" 'paddle',\n",
" 'boarding',\n",
" 'on',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" ',',\n",
" 'and',\n",
" 'beautiful',\n",
" 'hiking',\n",
" 'trails',\n",
" 'minutes',\n",
" 'from',\n",
" 'virtually',\n",
" 'anywhere',\n",
" '.',\n",
" 'In',\n",
" 'fact',\n",
" ',',\n",
" 'it',\n",
" 'seems',\n",
" 'like',\n",
" 'the',\n",
" 'only',\n",
" 'thing',\n",
" 'we',\n",
" 'DON’T',\n",
" 'have',\n",
" ',',\n",
" 'is',\n",
" 'surfing',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Until\",\n",
" 'now',\n",
" ',',\n",
" 'that',\n",
" 'is',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'As\",\n",
" 'it',\n",
" 'turns',\n",
" 'out',\n",
" ',',\n",
" 'we',\n",
" 'don’t',\n",
" 'need',\n",
" 'to',\n",
" 'let',\n",
" 'our',\n",
" 'inland',\n",
" 'status',\n",
" 'crush',\n",
" 'our',\n",
" 'dreams',\n",
" 'of',\n",
" 'becoming',\n",
" 'stellar',\n",
" 'surfers',\n",
" '.',\n",
" 'And',\n",
" 'it’s',\n",
" 'all',\n",
" 'thanks',\n",
" 'to',\n",
" 'NLand',\n",
" 'Surf',\n",
" 'Park',\n",
" ',',\n",
" 'a',\n",
" 'magical',\n",
" 'place',\n",
" 'in',\n",
" 'Del',\n",
" 'Valle',\n",
" 'that',\n",
" 'makes',\n",
" 'every',\n",
" 'surfing',\n",
" 'dream',\n",
" 'come',\n",
" 'true',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Doug\",\n",
" 'Coors',\n",
" ',',\n",
" 'NLand’s',\n",
" 'founder',\n",
" 'and',\n",
" 'CEO',\n",
" ',',\n",
" 'is',\n",
" 'a',\n",
" 'master',\n",
" 'engineer',\n",
" 'and',\n",
" 'surfer',\n",
" 'who',\n",
" 'decided',\n",
" 'to',\n",
" 'use',\n",
" 'his',\n",
" 'powers',\n",
" 'to',\n",
" 'create',\n",
" 'the',\n",
" 'only',\n",
" 'surfing',\n",
" 'destination',\n",
" 'of',\n",
" 'its',\n",
" 'kind',\n",
" 'in',\n",
" 'North',\n",
" 'America',\n",
" '(',\n",
" 'be',\n",
" 'jealous',\n",
" ',',\n",
" 'everywhere',\n",
" 'else',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'It’s\",\n",
" 'a',\n",
" 'surf',\n",
" 'park',\n",
" 'dedicated',\n",
" 'to',\n",
" 'bringing',\n",
" 'the',\n",
" 'biggest',\n",
" 'and',\n",
" 'best',\n",
" 'barreling',\n",
" 'waves',\n",
" 'to',\n",
" 'anyone',\n",
" 'looking',\n",
" 'to',\n",
" 'get',\n",
" 'their',\n",
" 'feet',\n",
" 'wet',\n",
" 'in',\n",
" 'the',\n",
" 'surfing',\n",
" 'scene',\n",
" '.',\n",
" 'Designed',\n",
" 'for',\n",
" 'beginners',\n",
" 'and',\n",
" 'world-class',\n",
" 'competitors',\n",
" 'alike',\n",
" ',',\n",
" 'it’s',\n",
" 'pretty',\n",
" 'much',\n",
" 'the',\n",
" 'best',\n",
" 'thing',\n",
" 'ever',\n",
" '.',\n",
" 'Who',\n",
" 'needs',\n",
" 'an',\n",
" 'ocean',\n",
" 'when',\n",
" 'you',\n",
" 'can',\n",
" 'have',\n",
" 'perfect',\n",
" ',',\n",
" 'consistent',\n",
" 'waves',\n",
" 'whenever',\n",
" 'you',\n",
" 'want',\n",
" 'them',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Now\",\n",
" ',',\n",
" 'an',\n",
" 'environmentally',\n",
" 'conscious',\n",
" 'soul',\n",
" 'might',\n",
" 'think',\n",
" ',',\n",
" '“That',\n",
" 'sounds',\n",
" 'great',\n",
" ',',\n",
" 'but',\n",
" 'doesn’t',\n",
" 'it',\n",
" 'waste',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'water',\n",
" '?',\n",
" '”',\n",
" 'We',\n",
" 'appreciate',\n",
" 'your',\n",
" 'concern',\n",
" 'and',\n",
" 'are',\n",
" 'happy',\n",
" 'to',\n",
" 'report',\n",
" 'that',\n",
" 'this',\n",
" 'business',\n",
" 'is',\n",
" 'super',\n",
" 'sustainable',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'NLand\",\n",
" 'collects',\n",
" 'rainwater',\n",
" 'and',\n",
" 'channels',\n",
" 'it',\n",
" 'to',\n",
" 'a',\n",
" 'wet',\n",
" 'pond',\n",
" 'where',\n",
" 'it’s',\n",
" 'bio-filtered',\n",
" 'by',\n",
" 'algae',\n",
" 'and',\n",
" 'fish',\n",
" 'before',\n",
" 'moving',\n",
" 'into',\n",
" 'a',\n",
" 'deep',\n",
" 'reservoir',\n",
" 'and',\n",
" 'filtration',\n",
" 'system',\n",
" 'for',\n",
" 'treatment',\n",
" '.',\n",
" 'That’s',\n",
" 'science',\n",
" '.',\n",
" 'And',\n",
" 'that',\n",
" 'means',\n",
" ',',\n",
" 'even',\n",
" 'in',\n",
" 'a',\n",
" 'drought',\n",
" ',',\n",
" 'this',\n",
" 'magical',\n",
" 'lagoon',\n",
" 'is',\n",
" 'completely',\n",
" 'self-sustaining',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'So\",\n",
" ',',\n",
" 'how',\n",
" 'can',\n",
" 'you',\n",
" 'get',\n",
" 'in',\n",
" 'on',\n",
" 'the',\n",
" 'sustainable',\n",
" 'surfing',\n",
" 'action',\n",
" '?',\n",
" 'Easy',\n",
" 'peasy',\n",
" '.',\n",
" 'Coaching',\n",
" 'sessions',\n",
" 'and',\n",
" 'clinics',\n",
" 'range',\n",
" 'from',\n",
" '$',\n",
" '65-',\n",
" '$',\n",
" '190',\n",
" ',',\n",
" 'depending',\n",
" 'on',\n",
" 'your',\n",
" 'level',\n",
" 'of',\n",
" 'instruction',\n",
" ',',\n",
" 'with',\n",
" '30',\n",
" 'minutes',\n",
" 'of',\n",
" 'dry',\n",
" 'land',\n",
" 'training',\n",
" 'and',\n",
" '60',\n",
" 'in',\n",
" 'the',\n",
" 'lagoon',\n",
" '.',\n",
" 'And',\n",
" 'they’re',\n",
" 'open',\n",
" 'seven',\n",
" 'days',\n",
" 'a',\n",
" 'week',\n",
" ',',\n",
" 'so',\n",
" 'you’re',\n",
" 'good',\n",
" 'to',\n",
" 'go',\n",
" 'no',\n",
" 'matter',\n",
" 'your',\n",
" 'schedule',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Not\",\n",
" 'so',\n",
" 'interested',\n",
" 'in',\n",
" 'surfing',\n",
" 'but',\n",
" 'curious',\n",
" 'to',\n",
" 'see',\n",
" 'the',\n",
" 'awesome',\n",
" 'surfers',\n",
" 'in',\n",
" 'action',\n",
" '?',\n",
" 'You’re',\n",
" 'not',\n",
" 'alone',\n",
" '.',\n",
" 'That’s',\n",
" 'why',\n",
" 'they',\n",
" 'offer',\n",
" 'a',\n",
" 'Shore',\n",
" 'Pass',\n",
" 'for',\n",
" '$',\n",
" '5',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'And\",\n",
" 'whether',\n",
" 'you',\n",
" 'choose',\n",
" 'to',\n",
" 'surf',\n",
" 'or',\n",
" 'prefer',\n",
" 'to',\n",
" 'chill',\n",
" 'and',\n",
" 'watch',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'definitely',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'the',\n",
" 'farm-fresh',\n",
" ',',\n",
" 'locally-sourced',\n",
" 'food',\n",
" 'from',\n",
" 'the',\n",
" 'onsite',\n",
" 'restaurant',\n",
" ',',\n",
" 'Blue',\n",
" 'Prairie',\n",
" '.',\n",
" 'Delicious',\n",
" 'tapas',\n",
" ',',\n",
" 'burgers',\n",
" ',',\n",
" 'and',\n",
" 'salads',\n",
" 'abound',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'refuel',\n",
" 'and',\n",
" 'recharge',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'In\",\n",
" 'a',\n",
" 'nutshell',\n",
" ',',\n",
" 'you',\n",
" 'owe',\n",
" 'it',\n",
" 'to',\n",
" 'yourself',\n",
" 'to',\n",
" 'check',\n",
" 'this',\n",
" 'special',\n",
" 'place',\n",
" 'out',\n",
" 'ASAP',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Ah\",\n",
" ',',\n",
" 'November',\n",
" 'is',\n",
" 'upon',\n",
" 'us',\n",
" ',',\n",
" 'which',\n",
" 'means',\n",
" 'fall',\n",
" 'in',\n",
" 'Austin',\n",
" 'is',\n",
" 'in',\n",
" 'full',\n",
" 'force',\n",
" '.',\n",
" 'Outside',\n",
" 'is',\n",
" 'no',\n",
" 'longer',\n",
" 'sweltering',\n",
" ',',\n",
" 'UT',\n",
" 'football',\n",
" 'is',\n",
" 'going',\n",
" 'strong',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'holiday',\n",
" 'season',\n",
" 'is',\n",
" 'on',\n",
" 'the',\n",
" 'horizon',\n",
" ',',\n",
" 'whether',\n",
" 'we’re',\n",
" 'ready',\n",
" 'or',\n",
" 'not',\n",
" '.',\n",
" 'But',\n",
" 'that',\n",
" 'doesn’t',\n",
" 'mean',\n",
" 'it’s',\n",
" 'couch',\n",
" 'season…',\n",
" \"'\",\n",
" ',',\n",
" \"'Take\",\n",
" 'full',\n",
" 'advantage',\n",
" 'of',\n",
" 'the',\n",
" 'milder',\n",
" 'temperatures',\n",
" 'and',\n",
" 'pre-holiday',\n",
" 'chaos',\n",
" 'by',\n",
" 'checking',\n",
" 'out',\n",
" 'one',\n",
" 'of',\n",
" 'these',\n",
" 'events',\n",
" 'this',\n",
" 'month',\n",
" '.',\n",
" 'From',\n",
" 'a',\n",
" 'CrossFit',\n",
" 'competition',\n",
" 'to',\n",
" 'glow-in-the-dark',\n",
" 'runs',\n",
" 'and',\n",
" 'brewery',\n",
" 'yoga',\n",
" ',',\n",
" 'you’re',\n",
" 'bound',\n",
" 'to',\n",
" 'find',\n",
" 'something',\n",
" 'to',\n",
" 'fit',\n",
" 'your',\n",
" 'fall',\n",
" 'fitness',\n",
" 'fancy',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'way',\n",
" 'to',\n",
" 'combine',\n",
" 'your',\n",
" 'love',\n",
" 'of',\n",
" 'fitness',\n",
" 'with',\n",
" 'a',\n",
" 'good',\n",
" 'cause',\n",
" '(',\n",
" 'and',\n",
" 'a',\n",
" 'good',\n",
" 'brew',\n",
" ')',\n",
" ',',\n",
" 'you’re',\n",
" 'in',\n",
" 'luck',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'the',\n",
" 'Fit',\n",
" 'Fox',\n",
" '5K',\n",
" '.',\n",
" 'Running',\n",
" 'around',\n",
" 'Twisted',\n",
" 'X',\n",
" 'Brewing',\n",
" 'Company',\n",
" 'in',\n",
" 'Dripping',\n",
" 'Springs',\n",
" ',',\n",
" 'proceeds',\n",
" 'from',\n",
" 'this',\n",
" 'race',\n",
" 'benefit',\n",
" 'the',\n",
" 'hard',\n",
" 'working',\n",
" 'folks',\n",
" 'of',\n",
" 'the',\n",
" 'Hays',\n",
" 'County',\n",
" 'Sheriff’s',\n",
" 'department',\n",
" '.',\n",
" 'All',\n",
" 'levels',\n",
" 'are',\n",
" 'encouraged',\n",
" 'to',\n",
" 'come',\n",
" 'out',\n",
" 'and',\n",
" 'get',\n",
" 'fit',\n",
" ',',\n",
" 'with',\n",
" 'timing',\n",
" 'being',\n",
" 'optional',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'each',\n",
" 'registrant',\n",
" 'gets',\n",
" 'a',\n",
" 'shirt',\n",
" ',',\n",
" 'a',\n",
" 'free',\n",
" 'pint',\n",
" 'of',\n",
" 'brew',\n",
" ',',\n",
" 'AND',\n",
" 'a',\n",
" 'free',\n",
" 'cryotherapy',\n",
" 'session',\n",
" 'at',\n",
" 'Restore',\n",
" 'Cryotherapy',\n",
" ',',\n",
" 'so',\n",
" 'everyone’s',\n",
" 'a',\n",
" 'winner',\n",
" 'here',\n",
" '.',\n",
" 'November',\n",
" '19',\n",
" \"'\",\n",
" ',',\n",
" \"'Well\",\n",
" ',',\n",
" 'this',\n",
" 'one',\n",
" 'is',\n",
" 'pretty',\n",
" 'straightforward',\n",
" 'but',\n",
" 'no',\n",
" 'less',\n",
" 'awesome',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'into',\n",
" 'free',\n",
" 'workouts',\n",
" ',',\n",
" 'head',\n",
" 'on',\n",
" 'over',\n",
" 'to',\n",
" 'The',\n",
" 'Domain',\n",
" 'for',\n",
" 'an',\n",
" 'hour-long',\n",
" ',',\n",
" 'no-charge',\n",
" 'SoulCycle',\n",
" 'workout',\n",
" '.',\n",
" 'Bonus',\n",
" ':',\n",
" 'this',\n",
" 'all-levels',\n",
" 'class',\n",
" 'is',\n",
" 'close',\n",
" 'to',\n",
" 'plenty',\n",
" 'of',\n",
" 'delicious',\n",
" 'post-workout',\n",
" 'restaurants',\n",
" ',',\n",
" 'so',\n",
" 'there’s',\n",
" 'pretty',\n",
" 'much',\n",
" 'every',\n",
" 'reason',\n",
" 'to',\n",
" 'be',\n",
" 'there',\n",
" '.',\n",
" 'Bring',\n",
" 'only',\n",
" 'your',\n",
" 'workout',\n",
" 'clothes',\n",
" 'and',\n",
" 'the',\n",
" 'will',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'sweat',\n",
" 'on',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'rest',\n",
" 'is',\n",
" 'totally',\n",
" 'taken',\n",
" 'care',\n",
" 'of',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" 'Well',\n",
" ',',\n",
" 'aside',\n",
" 'from',\n",
" 'the',\n",
" 'whole',\n",
" 'workout',\n",
" 'part',\n",
" '.',\n",
" 'That',\n",
" 'part',\n",
" 'you',\n",
" 'have',\n",
" 'to',\n",
" 'do',\n",
" 'too',\n",
" '.',\n",
" 'November',\n",
" '5',\n",
" \"'\",\n",
" ',',\n",
" \"'For\",\n",
" 'this',\n",
" 'three-mile',\n",
" 'run',\n",
" ',',\n",
" 'your',\n",
" 'focus',\n",
" 'shouldn’t',\n",
" 'be',\n",
" 'a',\n",
" 'PR',\n",
" 'or',\n",
" 'beating',\n",
" 'the',\n",
" 'person',\n",
" 'beside',\n",
" 'you',\n",
" '.',\n",
" 'No',\n",
" ',',\n",
" 'no',\n",
" '.',\n",
" 'This',\n",
" 'run',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" 'getting',\n",
" 'glowed',\n",
" 'up',\n",
" 'from',\n",
" 'the',\n",
" 'flo’',\n",
" 'up',\n",
" '.',\n",
" 'It’s',\n",
" 'a',\n",
" 'nighttime',\n",
" 'blacklight',\n",
" 'run',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" 'for',\n",
" 'any',\n",
" 'and',\n",
" 'all',\n",
" 'levels',\n",
" ',',\n",
" 'so',\n",
" 'come',\n",
" 'as',\n",
" 'you',\n",
" 'are',\n",
" '.',\n",
" 'Walkers',\n",
" ',',\n",
" 'joggers',\n",
" ',',\n",
" 'and',\n",
" 'runners',\n",
" 'of',\n",
" 'all',\n",
" 'kinds',\n",
" 'will',\n",
" 'come',\n",
" 'out',\n",
" 'in',\n",
" 'their',\n",
" 'finest',\n",
" 'glowing',\n",
" 'gear',\n",
" 'ready',\n",
" 'to',\n",
" 'light',\n",
" 'up',\n",
" 'the',\n",
" 'night',\n",
" '.',\n",
" 'No',\n",
" 'glowing',\n",
" 'gear',\n",
" 'of',\n",
" 'your',\n",
" 'own',\n",
" '?',\n",
" 'No',\n",
" 'problem',\n",
" '.',\n",
" 'Registrants',\n",
" 'will',\n",
" 'have',\n",
" 'the',\n",
" 'chance',\n",
" 'to',\n",
" 'cop',\n",
" 'some',\n",
" 'glowing',\n",
" 'goodies',\n",
" 'at',\n",
" 'the',\n",
" 'race’s',\n",
" 'start',\n",
" ',',\n",
" 'including',\n",
" 'glow-in-the-dark',\n",
" 'tattoos',\n",
" ',',\n",
" 'LED',\n",
" 'shades',\n",
" ',',\n",
" 'and',\n",
" 'jelly',\n",
" 'rings',\n",
" '.',\n",
" 'November',\n",
" '19',\n",
" \"'\",\n",
" ',',\n",
" \"'It’s\",\n",
" 'a',\n",
" 'new',\n",
" 'month',\n",
" ',',\n",
" 'which',\n",
" 'means',\n",
" 'another',\n",
" 'free',\n",
" 'community',\n",
" 'run',\n",
" 'hosted',\n",
" 'by',\n",
" 'Shake',\n",
" 'Shack',\n",
" 'on',\n",
" 'S.',\n",
" 'Lamar',\n",
" '.',\n",
" 'You’ll',\n",
" 'complete',\n",
" 'a',\n",
" 'three-four-mile',\n",
" 'loop',\n",
" 'up',\n",
" 'and',\n",
" 'around',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'and',\n",
" 'finish',\n",
" 'it',\n",
" 'up',\n",
" 'in',\n",
" 'the',\n",
" 'home',\n",
" 'of',\n",
" 'one',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'best',\n",
" 'burgers',\n",
" '.',\n",
" 'Sure',\n",
" ',',\n",
" 'the',\n",
" 'scenic',\n",
" 'views',\n",
" 'will',\n",
" 'be',\n",
" 'good',\n",
" 'and',\n",
" 'the',\n",
" 'company',\n",
" 'will',\n",
" 'be',\n",
" 'great',\n",
" '.',\n",
" 'But',\n",
" 'want',\n",
" 'to',\n",
" 'know',\n",
" 'the',\n",
" 'best',\n",
" 'part',\n",
" '?',\n",
" 'Your',\n",
" 'first',\n",
" 'drink',\n",
" 'is',\n",
" 'free',\n",
" '.',\n",
" 'And',\n",
" 'the',\n",
" 'only',\n",
" 'thing',\n",
" 'better',\n",
" 'than',\n",
" 'a',\n",
" 'drink',\n",
" 'reward',\n",
" 'after',\n",
" 'a',\n",
" 'run',\n",
" 'is',\n",
" 'a',\n",
" 'FREE',\n",
" 'drink',\n",
" 'reward',\n",
" 'after',\n",
" 'a',\n",
" 'run',\n",
" '.',\n",
" 'November',\n",
" '8',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'certainly',\n",
" 'couldn’t',\n",
" 'do',\n",
" 'a',\n",
" 'post',\n",
" 'on',\n",
" 'November',\n",
" 'events',\n",
" 'in',\n",
" 'Austin',\n",
" 'without',\n",
" 'including',\n",
" 'the',\n",
" 'ThunderCloud',\n",
" 'Turkey',\n",
" 'Trot',\n",
" '.',\n",
" 'For',\n",
" '26',\n",
" 'years',\n",
" ',',\n",
" 'ThunderCloud',\n",
" 'Subs',\n",
" 'has',\n",
" 'hosted',\n",
" 'this',\n",
" 'five-mile',\n",
" 'run',\n",
" 'on',\n",
" 'Thanksgiving',\n",
" 'morning',\n",
" ',',\n",
" 'rain',\n",
" 'or',\n",
" 'shine',\n",
" '.',\n",
" 'Competitive',\n",
" 'runners',\n",
" 'can',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'the',\n",
" 'timed',\n",
" 'five-mile',\n",
" 'while',\n",
" 'casual',\n",
" 'trotters',\n",
" 'can',\n",
" 'enjoy',\n",
" 'jogging',\n",
" 'the',\n",
" 'untimed',\n",
" 'version',\n",
" '.',\n",
" 'And',\n",
" 'both',\n",
" 'groups',\n",
" 'can',\n",
" 'go',\n",
" 'home',\n",
" 'and',\n",
" 'grub',\n",
" 'on',\n",
" 'turkey',\n",
" 'with',\n",
" 'reckless',\n",
" 'abandon',\n",
" 'knowing',\n",
" 'that',\n",
" 'they’ve',\n",
" 'already',\n",
" 'put',\n",
" 'in',\n",
" 'their',\n",
" 'work',\n",
" 'for',\n",
" 'the',\n",
" 'day',\n",
" '.',\n",
" 'November',\n",
" '24',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'haven’t',\n",
" 'made',\n",
" 'it',\n",
" 'to',\n",
" 'the',\n",
" 'Fall',\n",
" 'Festival',\n",
" 'at',\n",
" 'Barton',\n",
" 'Hills',\n",
" 'Farms',\n",
" 'yet',\n",
" ',',\n",
" 'your',\n",
" 'time',\n",
" 'is',\n",
" 'running',\n",
" 'out',\n",
" '!',\n",
" 'This',\n",
" 'festival',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'fall',\n",
" 'goodness',\n",
" 'to',\n",
" 'explore',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'get',\n",
" 'in',\n",
" 'on',\n",
" 'some',\n",
" 'pumpkin',\n",
" 'painting',\n",
" 'action',\n",
" ',',\n",
" 'plenty',\n",
" 'of',\n",
" 'food',\n",
" 'and',\n",
" 'drink',\n",
" ',',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'the',\n",
" 'Lonesome',\n",
" 'Dove',\n",
" 'Corn',\n",
" 'Maze',\n",
" '.',\n",
" 'It',\n",
" 'just',\n",
" 'might',\n",
" 'be',\n",
" 'the',\n",
" 'best',\n",
" 'way',\n",
" 'to',\n",
" 'take',\n",
" 'advantage',\n",
" 'of',\n",
" 'this',\n",
" 'awesome',\n",
" 'autumn',\n",
" 'weather',\n",
" '.',\n",
" 'That',\n",
" 'said',\n",
" ',',\n",
" 'it',\n",
" 'ends',\n",
" 'November',\n",
" '13th',\n",
" ',',\n",
" 'so',\n",
" 'it’s',\n",
" 'now',\n",
" 'or',\n",
" 'never',\n",
" ',',\n",
" 'fitness',\n",
" 'friends',\n",
" '.',\n",
" 'Saturdays',\n",
" 'and',\n",
" 'Sundays',\n",
" 'until',\n",
" 'November',\n",
" '13',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'a',\n",
" 'competitive',\n",
" 'fitness',\n",
" 'fiend',\n",
" 'looking',\n",
" 'to',\n",
" 'test',\n",
" 'your',\n",
" 'limits',\n",
" 'and',\n",
" 'show',\n",
" 'off',\n",
" 'your',\n",
" 'skills',\n",
" ',',\n",
" 'head',\n",
" 'out',\n",
" 'to',\n",
" 'the',\n",
" '2016',\n",
" 'Wurst',\n",
" 'Games',\n",
" 'at',\n",
" 'Alpha',\n",
" 'CrossFit',\n",
" 'in',\n",
" 'New',\n",
" 'Braunfels',\n",
" '.',\n",
" 'Less',\n",
" 'than',\n",
" 'an',\n",
" 'hour-long',\n",
" 'road',\n",
" 'trip',\n",
" 'will',\n",
" 'leave',\n",
" 'you',\n",
" 'with',\n",
" 'some',\n",
" 'of',\n",
" 'Texas’',\n",
" 'finest',\n",
" 'individual',\n",
" 'and',\n",
" 'team',\n",
" 'athletes',\n",
" 'competing',\n",
" 'for',\n",
" 'the',\n",
" 'Wurst',\n",
" 'Games',\n",
" 'Championship',\n",
" 'with',\n",
" 'round',\n",
" 'after',\n",
" 'round',\n",
" 'of',\n",
" 'grueling',\n",
" 'WODs',\n",
" '.',\n",
" 'There’s',\n",
" 'also',\n",
" 'plenty',\n",
" 'of',\n",
" 'food',\n",
" ',',\n",
" 'fun',\n",
" ',',\n",
" 'and',\n",
" 'partying',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'along',\n",
" 'the',\n",
" 'fam',\n",
" 'to',\n",
" 'cheer',\n",
" 'you',\n",
" 'on',\n",
" 'in',\n",
" 'your',\n",
" 'quest',\n",
" 'for',\n",
" 'the',\n",
" 'multiple',\n",
" 'cash-prize',\n",
" 'championship',\n",
" 'titles',\n",
" '!',\n",
" 'November',\n",
" '12',\n",
" \"'\",\n",
" ',',\n",
" \"'Firefighters\",\n",
" ',',\n",
" 'EMS',\n",
" ',',\n",
" 'and',\n",
" 'police',\n",
" 'first',\n",
" 'responders',\n",
" 'help',\n",
" 'us',\n",
" 'stay',\n",
" 'fit',\n",
" 'and',\n",
" 'active',\n",
" 'by',\n",
" 'keeping',\n",
" 'our',\n",
" 'communities',\n",
" 'safe',\n",
" 'and',\n",
" 'healthy',\n",
" '.',\n",
" 'Show',\n",
" 'them',\n",
" 'and',\n",
" 'their',\n",
" 'families',\n",
" 'your',\n",
" 'support',\n",
" 'by',\n",
" 'making',\n",
" 'your',\n",
" 'way',\n",
" 'to',\n",
" 'Camp',\n",
" 'Mabry',\n",
" 'for',\n",
" 'this',\n",
" '5k',\n",
" 'honoring',\n",
" 'the',\n",
" 'heroes',\n",
" 'who’ve',\n",
" 'fallen',\n",
" 'protecting',\n",
" 'our',\n",
" 'community',\n",
" '.',\n",
" 'This',\n",
" 'is',\n",
" 'an',\n",
" 'all-levels',\n",
" ',',\n",
" 'family-friendly',\n",
" 'event',\n",
" 'with',\n",
" 'plenty',\n",
" 'of',\n",
" 'post-race',\n",
" 'fun',\n",
" 'and',\n",
" 'celebrations',\n",
" ',',\n",
" 'so',\n",
" 'come',\n",
" 'prepared',\n",
" 'to',\n",
" 'run',\n",
" 'a',\n",
" 'time',\n",
" 'you’d',\n",
" 'be',\n",
" 'proud',\n",
" 'of',\n",
" '!',\n",
" 'November',\n",
" '13',\n",
" \"'\",\n",
" ',',\n",
" \"'Like\",\n",
" 'art',\n",
" '?',\n",
" 'Like',\n",
" 'scavenger',\n",
" 'hunts',\n",
" '?',\n",
" 'Like',\n",
" 'biking',\n",
" '?',\n",
" 'Then',\n",
" 'this',\n",
" 'event',\n",
" 'will',\n",
" 'make',\n",
" 'your',\n",
" 'dreams',\n",
" 'come',\n",
" 'true',\n",
" '.',\n",
" 'Make',\n",
" 'a',\n",
" 'montage',\n",
" 'of',\n",
" 'the',\n",
" 'hundreds',\n",
" 'of',\n",
" 'artists',\n",
" 'participating',\n",
" 'in',\n",
" 'the',\n",
" 'annual',\n",
" 'East',\n",
" 'Austin',\n",
" 'Studio',\n",
" 'Tour',\n",
" 'by',\n",
" 'cruisin’',\n",
" 'by',\n",
" 'on',\n",
" 'two',\n",
" 'wheels',\n",
" '.',\n",
" 'You’ll',\n",
" 'start',\n",
" 'by',\n",
" 'receiving',\n",
" 'a',\n",
" 'list',\n",
" 'of',\n",
" 'artsy',\n",
" 'checkpoints',\n",
" 'you’re',\n",
" 'challenged',\n",
" 'to',\n",
" 'find',\n",
" '.',\n",
" 'As',\n",
" 'you',\n",
" 'discover',\n",
" 'each',\n",
" 'checkpoint',\n",
" 'you’ll',\n",
" 'get',\n",
" 'a',\n",
" 'new',\n",
" 'raffle',\n",
" 'ticket',\n",
" 'toward',\n",
" 'all',\n",
" 'sorts',\n",
" 'of',\n",
" 'cool',\n",
" 'prizes',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'prizes',\n",
" 'for',\n",
" 'best',\n",
" 'costumes',\n",
" 'and',\n",
" 'most',\n",
" 'pimped-out',\n",
" 'rides',\n",
" ',',\n",
" 'so',\n",
" 'you’re',\n",
" 'encouraged',\n",
" 'to',\n",
" 'bring',\n",
" 'your',\n",
" 'silliest',\n",
" 'creativity',\n",
" 'along',\n",
" 'with',\n",
" 'you',\n",
" '.',\n",
" 'November',\n",
" '13',\n",
" \"'\",\n",
" ',',\n",
" \"'Like\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'getting',\n",
" 'your',\n",
" ...],\n",
" ['[',\n",
" \"'October\",\n",
" 'in',\n",
" 'Austin',\n",
" 'is',\n",
" 'a',\n",
" 'beautiful',\n",
" 'thing',\n",
" '.',\n",
" 'The',\n",
" 'blazing',\n",
" 'hot',\n",
" 'temperatures',\n",
" 'have',\n",
" 'subsided',\n",
" ',',\n",
" 'so',\n",
" 'outdoor',\n",
" 'workouts',\n",
" 'are',\n",
" 'a',\n",
" 'breeze',\n",
" ';',\n",
" 'Austin',\n",
" 'City',\n",
" 'Limits',\n",
" 'is',\n",
" 'temporarily',\n",
" 'taking',\n",
" 'over',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'get',\n",
" 'in',\n",
" 'a',\n",
" 'year’s',\n",
" 'worth',\n",
" 'of',\n",
" 'live',\n",
" 'music',\n",
" 'in',\n",
" 'just',\n",
" 'two',\n",
" 'weekends',\n",
" ';',\n",
" 'and',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'activities',\n",
" 'you',\n",
" 'can',\n",
" 'take',\n",
" 'on',\n",
" 'to',\n",
" 'step',\n",
" 'up',\n",
" 'your',\n",
" 'fitness',\n",
" 'game',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'your',\n",
" 'body',\n",
" 'and',\n",
" 'brain',\n",
" 'could',\n",
" 'use',\n",
" 'a',\n",
" 'break',\n",
" 'from',\n",
" 'the',\n",
" 'ACL',\n",
" 'mayhem',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'one',\n",
" '(',\n",
" 'or',\n",
" 'all',\n",
" ')',\n",
" 'of',\n",
" 'these',\n",
" 'events',\n",
" 'to',\n",
" 'fuel',\n",
" 'this',\n",
" 'month',\n",
" 'with',\n",
" 'all',\n",
" 'kinds',\n",
" 'of',\n",
" 'healthy',\n",
" 'goodness',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Been',\n",
" 'dying',\n",
" 'to',\n",
" 'dip',\n",
" 'your',\n",
" 'toe',\n",
" 'in',\n",
" 'the',\n",
" 'yogic',\n",
" 'waters',\n",
" 'but',\n",
" 'haven’t',\n",
" 'found',\n",
" 'the',\n",
" 'right',\n",
" 'opportunity',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'what',\n",
" 'if',\n",
" 'we',\n",
" 'told',\n",
" 'you',\n",
" 'that',\n",
" 'you',\n",
" 'could',\n",
" 'get',\n",
" 'your',\n",
" 'yoga',\n",
" 'on',\n",
" 'along',\n",
" 'with',\n",
" 'a',\n",
" 'healthy',\n",
" 'dose',\n",
" 'of',\n",
" 'liquid',\n",
" 'courage',\n",
" '?',\n",
" 'Traveling',\n",
" 'yogi',\n",
" 'and',\n",
" 'drinker',\n",
" 'Brooke',\n",
" 'of',\n",
" 'BeerYoga',\n",
" 'and',\n",
" 'East',\n",
" 'Austin’s',\n",
" 'Hops',\n",
" '&',\n",
" 'Grain',\n",
" 'Brewing',\n",
" 'are',\n",
" 'teaming',\n",
" 'up',\n",
" 'to',\n",
" 'host',\n",
" 'a',\n",
" 'one-hour',\n",
" ',',\n",
" 'beginner-friendly',\n",
" 'yoga',\n",
" 'class',\n",
" 'followed',\n",
" 'by',\n",
" 'a',\n",
" 'pint',\n",
" 'of',\n",
" 'delicious',\n",
" 'brew',\n",
" 'for',\n",
" 'all',\n",
" 'participants',\n",
" '.',\n",
" 'All',\n",
" 'they',\n",
" 'ask',\n",
" 'is',\n",
" 'that',\n",
" 'you',\n",
" 'be',\n",
" '21',\n",
" 'years',\n",
" 'of',\n",
" 'age',\n",
" 'or',\n",
" 'older',\n",
" 'and',\n",
" 'bring',\n",
" 'your',\n",
" 'own',\n",
" 'mat',\n",
" '(',\n",
" 'BYOM',\n",
" ')',\n",
" '…obviously',\n",
" ',',\n",
" 'they’ve',\n",
" 'got',\n",
" 'the',\n",
" 'brew',\n",
" '.',\n",
" 'Oct.',\n",
" '23',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'The',\n",
" 'Annual',\n",
" 'Lake',\n",
" 'Travis',\n",
" 'Relay',\n",
" 'is',\n",
" 'finally',\n",
" 'upon',\n",
" 'us',\n",
" '!',\n",
" 'If',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'take',\n",
" 'advantage',\n",
" 'of',\n",
" 'the',\n",
" 'last',\n",
" 'warm',\n",
" 'weather',\n",
" 'of',\n",
" 'the',\n",
" 'season',\n",
" ',',\n",
" 'gather',\n",
" 'five',\n",
" 'buddies',\n",
" 'and',\n",
" 'head',\n",
" 'to',\n",
" 'Lake',\n",
" 'Travis',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'competitive',\n",
" 'swim',\n",
" 'on',\n",
" '.',\n",
" 'This',\n",
" 'is',\n",
" 'a',\n",
" '10-12-mile',\n",
" 'open-water',\n",
" 'swim',\n",
" 'where',\n",
" 'you',\n",
" 'and',\n",
" 'your',\n",
" 'teammates',\n",
" 'will',\n",
" 'take',\n",
" 'turns',\n",
" 'with',\n",
" 'swim',\n",
" 'sprints',\n",
" 'as',\n",
" 'you',\n",
" 'compete',\n",
" 'for',\n",
" 'your',\n",
" 'names',\n",
" 'to',\n",
" 'live',\n",
" 'eternally',\n",
" 'on',\n",
" 'the',\n",
" 'Lake',\n",
" 'Travis',\n",
" 'Relay',\n",
" 'perpetual',\n",
" 'trophy',\n",
" '.',\n",
" 'Not',\n",
" 'a',\n",
" 'competitive',\n",
" 'swimmer',\n",
" '?',\n",
" 'No',\n",
" 'problem',\n",
" '!',\n",
" 'Lots',\n",
" 'of',\n",
" 'participants',\n",
" 'come',\n",
" 'out',\n",
" 'just',\n",
" 'for',\n",
" 'fun',\n",
" ',',\n",
" 'so',\n",
" 'don’t',\n",
" 'worry',\n",
" 'if',\n",
" 'you',\n",
" 'don’t',\n",
" 'take',\n",
" 'this',\n",
" 'whole',\n",
" 'competition',\n",
" 'thing',\n",
" 'so',\n",
" 'seriously',\n",
" '.',\n",
" 'Oct.',\n",
" '8',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'To',\n",
" 'combat',\n",
" 'homelessness',\n",
" 'through',\n",
" 'the',\n",
" 'power',\n",
" 'of',\n",
" 'community',\n",
" 'awareness',\n",
" ',',\n",
" 'Back',\n",
" 'on',\n",
" 'My',\n",
" 'Feet',\n",
" 'Austin',\n",
" 'hosts',\n",
" 'this',\n",
" 'annual',\n",
" 'trail',\n",
" 'race',\n",
" 'for',\n",
" 'all',\n",
" 'levels',\n",
" '.',\n",
" 'This',\n",
" 'year',\n",
" ',',\n",
" 'it',\n",
" 'takes',\n",
" 'place',\n",
" 'in',\n",
" 'San',\n",
" 'Marcos',\n",
" 'within',\n",
" 'the',\n",
" 'parkland',\n",
" 'of',\n",
" 'Spring',\n",
" 'Lake',\n",
" 'Preserve',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'bet',\n",
" 'you’ll',\n",
" 'be',\n",
" 'soaking',\n",
" 'in',\n",
" 'a',\n",
" 'whole',\n",
" 'lot',\n",
" 'of',\n",
" 'beauty',\n",
" 'as',\n",
" 'you',\n",
" 'hit',\n",
" 'the',\n",
" 'trail',\n",
" '.',\n",
" 'Choose',\n",
" 'from',\n",
" 'a',\n",
" '5K',\n",
" ',',\n",
" '10K',\n",
" ',',\n",
" 'or',\n",
" 'a',\n",
" '30K',\n",
" '(',\n",
" 'headlamps',\n",
" 'required',\n",
" 'for',\n",
" '30k',\n",
" ')',\n",
" 'and',\n",
" 'lace',\n",
" 'up',\n",
" 'your',\n",
" 'sneaks',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'fitness',\n",
" 'on',\n",
" 'for',\n",
" 'a',\n",
" 'great',\n",
" 'cause',\n",
" '.',\n",
" '(',\n",
" 'Oct.',\n",
" '15',\n",
" ')',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Promoting',\n",
" 'the',\n",
" 'life-saving',\n",
" 'benefits',\n",
" 'of',\n",
" 'walking',\n",
" ',',\n",
" 'the',\n",
" 'American',\n",
" 'Heart',\n",
" 'Association',\n",
" 'invites',\n",
" 'you',\n",
" 'to',\n",
" 'join',\n",
" 'your',\n",
" 'fellow',\n",
" 'walking',\n",
" 'enthusiasts',\n",
" 'for',\n",
" 'a',\n",
" 'hearty',\n",
" '5K',\n",
" '.',\n",
" 'You’ll',\n",
" 'start',\n",
" 'at',\n",
" 'the',\n",
" 'Long',\n",
" 'Center',\n",
" 'and',\n",
" 'make',\n",
" 'your',\n",
" 'way',\n",
" 'around',\n",
" 'a',\n",
" 'three-mile',\n",
" 'city',\n",
" 'loop',\n",
" 'with',\n",
" 'the',\n",
" 'group',\n",
" '.',\n",
" 'Have',\n",
" 'a',\n",
" 'need',\n",
" 'for',\n",
" 'more',\n",
" 'speed',\n",
" '?',\n",
" 'Then',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'the',\n",
" 'competitive',\n",
" '5K',\n",
" 'run',\n",
" 'which',\n",
" 'happens',\n",
" 'at',\n",
" 'the',\n",
" 'same',\n",
" 'place',\n",
" ',',\n",
" 'same',\n",
" 'time',\n",
" '.',\n",
" 'Both',\n",
" 'walkers',\n",
" 'and',\n",
" 'runners',\n",
" 'have',\n",
" 'the',\n",
" 'opportunity',\n",
" 'to',\n",
" 'raise',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'money',\n",
" 'for',\n",
" 'this',\n",
" 'cause',\n",
" ',',\n",
" 'so',\n",
" 'there’s',\n",
" 'really',\n",
" 'no',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'rev',\n",
" 'up',\n",
" 'that',\n",
" 'ol’',\n",
" 'ticker',\n",
" 'of',\n",
" 'yours..',\n",
" 'Oct.',\n",
" '15',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Calling',\n",
" 'all',\n",
" 'serious',\n",
" 'lifters',\n",
" 'and',\n",
" 'gainsters',\n",
" '!',\n",
" 'This',\n",
" 'two-day',\n",
" 'event',\n",
" 'in',\n",
" 'Leander',\n",
" 'is',\n",
" 'inviting',\n",
" 'you',\n",
" 'to',\n",
" 'show',\n",
" 'off',\n",
" 'your',\n",
" 'mad',\n",
" 'lifting',\n",
" 'skills',\n",
" 'while',\n",
" 'you',\n",
" 'compete',\n",
" 'for',\n",
" 'the',\n",
" 'opportunity',\n",
" 'to',\n",
" 'be',\n",
" 'named',\n",
" 'Texas’',\n",
" 'most',\n",
" 'swole',\n",
" '.',\n",
" 'Some',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" 'judges',\n",
" ',',\n",
" 'spotters',\n",
" ',',\n",
" 'and',\n",
" 'loaders',\n",
" 'in',\n",
" 'the',\n",
" 'state',\n",
" 'will',\n",
" 'be',\n",
" 'there',\n",
" 'to',\n",
" 'cheer',\n",
" 'you',\n",
" 'on',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'the',\n",
" 'most',\n",
" 'awesome',\n",
" 'version',\n",
" 'of',\n",
" 'yourself',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'also',\n",
" 'be',\n",
" 'sure',\n",
" 'to',\n",
" 'come',\n",
" 'donning',\n",
" 'your',\n",
" 'finest',\n",
" 'singlet—they’re',\n",
" 'a',\n",
" 'must',\n",
" 'in',\n",
" 'the',\n",
" 'competition',\n",
" '.',\n",
" 'Oct.',\n",
" '15',\n",
" '&',\n",
" '16',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Whole',\n",
" 'Foods',\n",
" ',',\n",
" 'Austin',\n",
" 'Fit',\n",
" 'Magazine',\n",
" ',',\n",
" 'and',\n",
" 'Onnit',\n",
" 'are',\n",
" 'working',\n",
" 'together',\n",
" 'to',\n",
" 'bring',\n",
" 'you',\n",
" 'one',\n",
" 'full',\n",
" 'day',\n",
" 'of',\n",
" 'yoga',\n",
" 'love',\n",
" 'benefitting',\n",
" 'The',\n",
" 'Flatwater',\n",
" 'Foundation',\n",
" '.',\n",
" 'Along',\n",
" 'with',\n",
" 'six',\n",
" 'different',\n",
" 'classes',\n",
" 'hosted',\n",
" 'by',\n",
" 'six',\n",
" 'local',\n",
" 'studios',\n",
" '(',\n",
" 'see',\n",
" ',',\n",
" 'a',\n",
" 'whole',\n",
" 'lotta…',\n",
" ')',\n",
" ',',\n",
" 'there',\n",
" 'will',\n",
" 'be',\n",
" 'local',\n",
" 'vendors',\n",
" ',',\n",
" 'food',\n",
" ',',\n",
" 'drinks',\n",
" ',',\n",
" 'and',\n",
" 'plenty',\n",
" 'of',\n",
" 'mingle',\n",
" 'time',\n",
" '.',\n",
" 'All',\n",
" 'you',\n",
" 'need',\n",
" 'is',\n",
" 'a',\n",
" 'mat',\n",
" ',',\n",
" 'any',\n",
" 'donation',\n",
" 'you',\n",
" 'can',\n",
" 'afford',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'will',\n",
" 'to',\n",
" 'get',\n",
" 'a',\n",
" 'little',\n",
" 'more',\n",
" 'healthy',\n",
" 'and',\n",
" 'bendy',\n",
" '.',\n",
" 'Oct.',\n",
" '15',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Part',\n",
" '5K',\n",
" ',',\n",
" 'part',\n",
" 'fall',\n",
" 'festival',\n",
" ',',\n",
" 'and',\n",
" 'part',\n",
" 'Kids',\n",
" 'K',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'way',\n",
" 'to',\n",
" 'spend',\n",
" 'an',\n",
" 'autumn',\n",
" 'afternoon',\n",
" '.',\n",
" 'Not',\n",
" 'only',\n",
" 'will',\n",
" 'you',\n",
" 'get',\n",
" 'your',\n",
" 'fun',\n",
" 'and',\n",
" 'fitness',\n",
" 'on',\n",
" ',',\n",
" 'but',\n",
" 'you’ll',\n",
" 'also',\n",
" 'be',\n",
" 'supporting',\n",
" 'the',\n",
" 'residents',\n",
" 'of',\n",
" 'the',\n",
" 'Austin',\n",
" 'State',\n",
" 'Supported',\n",
" 'Living',\n",
" 'Center',\n",
" '.',\n",
" 'So',\n",
" 'give',\n",
" 'your',\n",
" 'active',\n",
" 'self',\n",
" 'a',\n",
" 'pat',\n",
" 'on',\n",
" 'the',\n",
" 'back',\n",
" 'for',\n",
" 'that',\n",
" '.',\n",
" 'Even',\n",
" 'better',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'a',\n",
" 'family-friendly',\n",
" 'event',\n",
" ',',\n",
" 'so',\n",
" 'feel',\n",
" 'free',\n",
" 'to',\n",
" 'bring',\n",
" 'along',\n",
" 'the',\n",
" 'little',\n",
" 'ones',\n",
" 'to',\n",
" 'get',\n",
" 'in',\n",
" 'on',\n",
" 'the',\n",
" 'action',\n",
" '.',\n",
" 'Oct.',\n",
" '22',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Cycling',\n",
" 'fiends',\n",
" ',',\n",
" 'this',\n",
" 'one’s',\n",
" 'for',\n",
" 'you',\n",
" '!',\n",
" 'Rain',\n",
" 'or',\n",
" 'shine',\n",
" ',',\n",
" 'you’re',\n",
" 'invited',\n",
" 'to',\n",
" 'Dell',\n",
" 'Diamond',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'this',\n",
" '25-',\n",
" ',',\n",
" '40-',\n",
" ',',\n",
" 'or',\n",
" '60-mile',\n",
" 'road',\n",
" 'race',\n",
" '.',\n",
" 'It’s',\n",
" 'an',\n",
" 'open',\n",
" 'course',\n",
" 'so',\n",
" 'you’ll',\n",
" 'want',\n",
" 'to',\n",
" 'have',\n",
" 'your',\n",
" 'wits',\n",
" 'about',\n",
" 'you',\n",
" ',',\n",
" 'but',\n",
" 'rest',\n",
" 'assured',\n",
" 'that',\n",
" 'there',\n",
" 'are',\n",
" 'fully',\n",
" 'supported',\n",
" 'aid',\n",
" 'stations',\n",
" 'every',\n",
" '10-15',\n",
" 'miles',\n",
" '.',\n",
" 'Oct.',\n",
" '23',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Ever',\n",
" 'wonder',\n",
" 'how',\n",
" 'you’d',\n",
" 'do',\n",
" 'when',\n",
" 'faced',\n",
" 'with',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'the',\n",
" 'world',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'wonder',\n",
" 'no',\n",
" 'more',\n",
" '!',\n",
" 'This',\n",
" 'FREE',\n",
" 'five-hour',\n",
" 'training',\n",
" 'camp',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'all',\n",
" 'of',\n",
" 'the',\n",
" 'skills',\n",
" 'you’ll',\n",
" 'need',\n",
" 'to',\n",
" 'defend',\n",
" 'yourself',\n",
" 'against',\n",
" 'the',\n",
" 'world’s',\n",
" 'end',\n",
" '.',\n",
" 'Zombies',\n",
" ',',\n",
" 'vampires',\n",
" ',',\n",
" 'and',\n",
" 'aliens',\n",
" 'will',\n",
" 'cower',\n",
" 'in',\n",
" 'fright',\n",
" 'as',\n",
" 'you',\n",
" 'equip',\n",
" 'yourself',\n",
" 'with',\n",
" 'a',\n",
" 'series',\n",
" 'of',\n",
" 'Apocalypse',\n",
" 'butt-kicking',\n",
" 'skills',\n",
" '(',\n",
" 'let’s',\n",
" 'see',\n",
" 'how',\n",
" 'the',\n",
" 'walking',\n",
" 'dead',\n",
" 'deal',\n",
" 'with',\n",
" 'our',\n",
" 'Krav',\n",
" 'Maga',\n",
" ')',\n",
" '.',\n",
" 'There',\n",
" 'will',\n",
" 'be',\n",
" 'food',\n",
" ',',\n",
" 'drinks',\n",
" ',',\n",
" 'games',\n",
" ',',\n",
" 'and',\n",
" 'classes',\n",
" 'for',\n",
" 'all',\n",
" 'ages',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'the',\n",
" 'whole',\n",
" 'fam',\n",
" '!',\n",
" 'Oct.',\n",
" '28',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'amazing',\n",
" 'things',\n",
" 'about',\n",
" 'Austin',\n",
" 'is',\n",
" 'its',\n",
" 'unique',\n",
" 'blend',\n",
" 'of',\n",
" 'urban',\n",
" 'and',\n",
" 'outdoor',\n",
" 'activities',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'spend',\n",
" 'the',\n",
" 'day',\n",
" 'at',\n",
" 'the',\n",
" 'office',\n",
" ',',\n",
" 'then',\n",
" 'be',\n",
" '\\\\xa0in',\n",
" 'the',\n",
" 'middle',\n",
" 'of',\n",
" 'nature',\n",
" 'in',\n",
" 'under',\n",
" 'ten',\n",
" 'minutes',\n",
" '.',\n",
" 'It’s',\n",
" 'pretty',\n",
" 'awesome',\n",
" '–',\n",
" 'you',\n",
" 'know',\n",
" 'that',\n",
" 'already',\n",
" '.',\n",
" 'But',\n",
" 'how',\n",
" 'about',\n",
" 'climbing',\n",
" 'for',\n",
" 'a',\n",
" 'better',\n",
" 'view',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'There’s\",\n",
" 'no',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'experience',\n",
" 'this',\n",
" 'than',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'awesome',\n",
" 'climbing',\n",
" 'and',\n",
" 'bouldering',\n",
" 'routes',\n",
" 'within',\n",
" 'minutes',\n",
" 'of',\n",
" 'downtown',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'a',\n",
" 'beginning',\n",
" 'climber',\n",
" 'looking',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'feet',\n",
" 'wet',\n",
" ',',\n",
" 'or',\n",
" 'an',\n",
" 'experienced',\n",
" 'bouldering',\n",
" 'enthusiast',\n",
" 'vying',\n",
" 'for',\n",
" 'a',\n",
" 'challenge',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'options',\n",
" 'for',\n",
" 'everyone',\n",
" 'to',\n",
" 'get',\n",
" 'their',\n",
" 'crag',\n",
" 'on',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'A',\n",
" 'favorite',\n",
" 'for',\n",
" 'hikers',\n",
" ',',\n",
" 'bikers',\n",
" ',',\n",
" 'and',\n",
" 'swimmers',\n",
" ',',\n",
" 'the',\n",
" 'Barton',\n",
" 'Creek',\n",
" 'Greenbelt',\n",
" 'in',\n",
" 'south-central',\n",
" 'Austin',\n",
" 'is',\n",
" 'also',\n",
" 'full',\n",
" 'of',\n",
" 'climbing',\n",
" 'opportunities',\n",
" '.',\n",
" 'Due',\n",
" 'to',\n",
" 'its',\n",
" 'popularity',\n",
" ',',\n",
" 'the',\n",
" 'limestone',\n",
" 'here',\n",
" 'is',\n",
" 'more',\n",
" 'polished',\n",
" 'than',\n",
" 'other',\n",
" 'climbing',\n",
" 'locations',\n",
" ',',\n",
" 'but',\n",
" 'its',\n",
" 'proximity',\n",
" 'to',\n",
" 'almost',\n",
" 'everything',\n",
" 'makes',\n",
" 'it',\n",
" 'great',\n",
" 'for',\n",
" 'a',\n",
" 'quick',\n",
" 'crag',\n",
" '.',\n",
" 'None',\n",
" 'of',\n",
" 'the',\n",
" 'routes',\n",
" 'are',\n",
" 'higher',\n",
" 'than',\n",
" '70',\n",
" 'feet',\n",
" ',',\n",
" 'so',\n",
" 'a',\n",
" '40-meter',\n",
" 'rope',\n",
" 'should',\n",
" 'do',\n",
" 'you',\n",
" 'just',\n",
" 'fine',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Hey',\n",
" ',',\n",
" 'North',\n",
" 'Austin',\n",
" 'bouldering',\n",
" 'enthusiasts',\n",
" '!',\n",
" 'We’re',\n",
" 'looking',\n",
" 'at',\n",
" 'you',\n",
" '.',\n",
" 'With',\n",
" 'over',\n",
" '40',\n",
" 'shady',\n",
" 'bouldering',\n",
" 'routes',\n",
" 'not',\n",
" 'more',\n",
" 'than',\n",
" '15-feet',\n",
" 'tall',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'place',\n",
" 'to',\n",
" 'practice',\n",
" 'and',\n",
" 'perfect',\n",
" 'your',\n",
" 'technique',\n",
" '.',\n",
" 'Problems',\n",
" 'range',\n",
" 'from',\n",
" 'V0-V8',\n",
" ',',\n",
" 'but',\n",
" 'most',\n",
" 'fall',\n",
" 'within',\n",
" 'the',\n",
" 'V0-V3',\n",
" ',',\n",
" 'so',\n",
" 'it’s',\n",
" 'a',\n",
" 'great',\n",
" 'choice',\n",
" 'if',\n",
" 'you’re',\n",
" 'just',\n",
" 'getting',\n",
" 'into',\n",
" 'the',\n",
" 'scene',\n",
" '.',\n",
" 'The',\n",
" 'holds',\n",
" 'here',\n",
" 'are',\n",
" 'pretty',\n",
" 'polished',\n",
" ',',\n",
" 'though',\n",
" ',',\n",
" 'so',\n",
" 'you’ll',\n",
" 'likely',\n",
" 'find',\n",
" 'them',\n",
" 'more',\n",
" 'difficult',\n",
" 'during',\n",
" 'the',\n",
" 'hot',\n",
" 'and',\n",
" 'humid',\n",
" 'months',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'McKinney',\n",
" 'Falls',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" 'is',\n",
" 'a',\n",
" 'an',\n",
" 'awesome',\n",
" 'option',\n",
" 'for',\n",
" 'beginning',\n",
" 'to',\n",
" 'expert',\n",
" 'bouldering',\n",
" '.',\n",
" 'With',\n",
" 'over',\n",
" '75',\n",
" 'routes',\n",
" ',',\n",
" 'folks',\n",
" 'of',\n",
" 'all',\n",
" 'levels',\n",
" 'will',\n",
" 'have',\n",
" 'plenty',\n",
" 'of',\n",
" 'ways',\n",
" 'to',\n",
" 'hone',\n",
" 'their',\n",
" 'skills',\n",
" '.',\n",
" 'But',\n",
" 'this',\n",
" 'location',\n",
" 'especially',\n",
" 'appeals',\n",
" 'to',\n",
" 'experienced',\n",
" 'climbers',\n",
" 'for',\n",
" 'its',\n",
" 'lofty',\n",
" 'overhangs',\n",
" ',',\n",
" 'rating',\n",
" 'as',\n",
" 'high',\n",
" 'as',\n",
" 'V12',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'don’t',\n",
" 'have',\n",
" 'an',\n",
" 'annual',\n",
" 'state',\n",
" 'park',\n",
" 'pass',\n",
" ',',\n",
" 'the',\n",
" 'day',\n",
" 'rate',\n",
" 'is',\n",
" '$',\n",
" '6',\n",
" 'per',\n",
" 'adult',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Right',\n",
" 'around',\n",
" 'the',\n",
" 'corner',\n",
" 'from',\n",
" 'Hamilton',\n",
" 'Pool',\n",
" 'in',\n",
" 'Dripping',\n",
" 'Springs',\n",
" ',',\n",
" 'Reimer’s',\n",
" 'Ranch',\n",
" 'has',\n",
" 'a',\n",
" 'whole',\n",
" 'buffet',\n",
" 'of',\n",
" 'climbing',\n",
" 'options',\n",
" '.',\n",
" 'Climbers',\n",
" 'can',\n",
" 'delight',\n",
" 'in',\n",
" 'over',\n",
" '300',\n",
" 'routes',\n",
" ',',\n",
" 'none',\n",
" 'of',\n",
" 'which',\n",
" 'are',\n",
" 'taller',\n",
" 'than',\n",
" '50',\n",
" 'feet',\n",
" '.',\n",
" 'Choose',\n",
" 'from',\n",
" 'the',\n",
" '185',\n",
" 'routes',\n",
" 'of',\n",
" 'the',\n",
" 'sunnier',\n",
" 'side',\n",
" ',',\n",
" 'Reimer’s',\n",
" 'Proper',\n",
" ',',\n",
" 'or',\n",
" 'opt',\n",
" 'for',\n",
" 'the',\n",
" '120',\n",
" 'routes',\n",
" 'on',\n",
" 'the',\n",
" 'shadier',\n",
" 'side',\n",
" 'at',\n",
" 'North',\n",
" 'Shore',\n",
" '.',\n",
" 'Cool',\n",
" 'off',\n",
" 'from',\n",
" 'your',\n",
" 'climbing',\n",
" 'adventure',\n",
" 'with',\n",
" 'a',\n",
" 'dip',\n",
" 'in',\n",
" 'Lake',\n",
" 'Travis',\n",
" 'or',\n",
" 'the',\n",
" 'nearby',\n",
" 'Hamilton',\n",
" 'Pool',\n",
" '.',\n",
" 'Fitt',\n",
" 'tip',\n",
" ':',\n",
" 'It',\n",
" 'costs',\n",
" '$',\n",
" '10',\n",
" 'per',\n",
" 'car',\n",
" ',',\n",
" 'per',\n",
" 'day',\n",
" ',',\n",
" 'so',\n",
" 'it’s',\n",
" 'best',\n",
" 'to',\n",
" 'carpool',\n",
" 'if',\n",
" 'you',\n",
" 'can',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Fredericksburg’s',\n",
" 'Enchanted',\n",
" 'Rock',\n",
" 'isn’t',\n",
" 'technically',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'close',\n",
" 'and',\n",
" 'beautiful',\n",
" 'enough',\n",
" 'that',\n",
" 'plenty',\n",
" 'of',\n",
" 'Austinites',\n",
" 'happily',\n",
" 'make',\n",
" 'the',\n",
" 'journey',\n",
" '.',\n",
" 'There',\n",
" ',',\n",
" 'the',\n",
" 'ancient',\n",
" 'pink',\n",
" 'granite',\n",
" 'provides',\n",
" 'a',\n",
" 'stellar',\n",
" 'backdrop',\n",
" 'for',\n",
" 'slab',\n",
" 'and',\n",
" 'crack',\n",
" 'climbing',\n",
" '.',\n",
" 'And',\n",
" 'its',\n",
" 'tranquil',\n",
" 'setting',\n",
" 'makes',\n",
" 'it',\n",
" 'perfect',\n",
" 'for',\n",
" 'enjoying',\n",
" 'a',\n",
" 'post-climb',\n",
" 'picnic',\n",
" '.',\n",
" 'All',\n",
" 'levels',\n",
" 'will',\n",
" 'find',\n",
" 'something',\n",
" 'they',\n",
" 'can',\n",
" 'dig',\n",
" 'into',\n",
" 'here',\n",
" ',',\n",
" 'so',\n",
" 'come',\n",
" 'as',\n",
" 'you',\n",
" 'are',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Unique',\n",
" 'in',\n",
" 'that',\n",
" 'it’s',\n",
" 'located',\n",
" 'on',\n",
" 'a',\n",
" 'private',\n",
" 'property',\n",
" 'in',\n",
" 'Spicewood',\n",
" ',',\n",
" 'Monster',\n",
" 'Rock',\n",
" 'is',\n",
" 'a',\n",
" 'no-frills',\n",
" 'destination',\n",
" 'for',\n",
" 'serious',\n",
" 'climbers',\n",
" '.',\n",
" 'This',\n",
" 'mostly',\n",
" 'shady',\n",
" 'spot',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'break',\n",
" 'from',\n",
" 'the',\n",
" 'heat',\n",
" ',',\n",
" 'so',\n",
" 'it’s',\n",
" 'popular',\n",
" 'year-round',\n",
" '.',\n",
" 'And',\n",
" 'while',\n",
" 'it’s',\n",
" 'small',\n",
" ',',\n",
" 'it',\n",
" 'offers',\n",
" 'challenging',\n",
" 'routes',\n",
" 'from',\n",
" '5.7',\n",
" 'to',\n",
" '5.13',\n",
" 'in',\n",
" 'difficulty',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'won’t',\n",
" 'leave',\n",
" 'wanting',\n",
" 'for',\n",
" 'a',\n",
" 'workout',\n",
" '.',\n",
" 'It’s',\n",
" 'open',\n",
" 'seven',\n",
" 'days',\n",
" 'a',\n",
" 'week',\n",
" 'for',\n",
" '$',\n",
" '5',\n",
" 'per',\n",
" 'day',\n",
" ',',\n",
" 'all',\n",
" 'the',\n",
" 'owner',\n",
" 'asks',\n",
" 'is',\n",
" 'that',\n",
" 'you',\n",
" 'shoot',\n",
" 'him',\n",
" 'an',\n",
" 'email',\n",
" 'or',\n",
" 'text',\n",
" 'letting',\n",
" 'him',\n",
" 'know',\n",
" 'you’re',\n",
" 'coming',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'quiet',\n",
" 'day',\n",
" 'of',\n",
" 'relaxed',\n",
" 'climbing',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'where',\n",
" 'you’ll',\n",
" 'find',\n",
" 'it',\n",
" '.',\n",
" 'About',\n",
" '30',\n",
" 'minutes',\n",
" 'north',\n",
" 'of',\n",
" 'downtown',\n",
" ',',\n",
" 'the',\n",
" 'Georgetown',\n",
" 'Hospital',\n",
" 'Riverside',\n",
" 'Sanctuary',\n",
" 'has',\n",
" 'more',\n",
" 'than',\n",
" '15',\n",
" 'easy-to-moderate',\n",
" 'bolted',\n",
" 'sport',\n",
" 'and',\n",
" 'top-rope',\n",
" 'routes',\n",
" '.',\n",
" 'Located',\n",
" 'directly',\n",
" 'behind',\n",
" 'the',\n",
" 'hospital',\n",
" ',',\n",
" 'it’s',\n",
" 'fairly',\n",
" 'secluded',\n",
" ',',\n",
" 'so',\n",
" 'your',\n",
" 'chances',\n",
" 'are',\n",
" 'good',\n",
" 'that',\n",
" 'you’ll',\n",
" 'have',\n",
" 'the',\n",
" 'place',\n",
" 'all',\n",
" 'to',\n",
" 'yourself',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Right',\n",
" 'on',\n",
" 'Lake',\n",
" 'Travis',\n",
" ',',\n",
" 'Pace',\n",
" 'Bend',\n",
" 'Park',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'choice',\n",
" 'for',\n",
" 'a',\n",
" 'hot',\n",
" 'day',\n",
" '.',\n",
" 'The',\n",
" 'limestone',\n",
" 'cliffs',\n",
" 'range',\n",
" 'from',\n",
" '15',\n",
" 'to',\n",
" '40',\n",
" 'feet',\n",
" 'and',\n",
" 'offer',\n",
" 'climbs',\n",
" 'for',\n",
" 'beginners',\n",
" 'and',\n",
" 'experts',\n",
" 'alike',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'go',\n",
" 'for',\n",
" 'a',\n",
" 'standard',\n",
" 'climb',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'real',\n",
" 'fun',\n",
" 'lies',\n",
" 'in',\n",
" 'the',\n",
" 'opportunity',\n",
" 'to',\n",
" 'climb',\n",
" 'yourself',\n",
" 'directly',\n",
" 'out',\n",
" 'of',\n",
" 'the',\n",
" 'water',\n",
" 'down',\n",
" 'below',\n",
" '.',\n",
" 'For',\n",
" 'those',\n",
" 'days',\n",
" 'you',\n",
" 'feel',\n",
" 'suffocated',\n",
" 'by',\n",
" 'the',\n",
" 'summer',\n",
" 'heat',\n",
" ',',\n",
" 'there’s',\n",
" 'really',\n",
" 'no',\n",
" 'better',\n",
" 'option',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Know\",\n",
" 'of',\n",
" 'a',\n",
" 'secret',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'now',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Know\",\n",
" 'of',\n",
" 'a',\n",
" 'secret',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'now',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'an',\n",
" 'ultra-marathoner',\n",
" 'or',\n",
" 'a',\n",
" 'casual',\n",
" 'jogger',\n",
" ',',\n",
" 'running',\n",
" 'is',\n",
" 'always',\n",
" 'better',\n",
" 'with\\\\xa0friends',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'And\",\n",
" 'if',\n",
" 'you’re',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'no',\n",
" 'trouble',\n",
" 'finding',\n",
" 'some',\n",
" 'new',\n",
" 'pals',\n",
" 'to',\n",
" 'sweat',\n",
" 'with',\n",
" '.',\n",
" 'Of',\n",
" 'course',\n",
" ',',\n",
" 'there’s',\n",
" 'no',\n",
" 'shortage',\n",
" 'of',\n",
" 'amazing',\n",
" 'trails',\n",
" 'and',\n",
" 'beautiful',\n",
" 'scenery',\n",
" ',',\n",
" 'like',\n",
" 'the',\n",
" 'iconic',\n",
" 'Town',\n",
" 'Lake',\n",
" 'Trail',\n",
" 'and',\n",
" 'its',\n",
" 'view',\n",
" 'of',\n",
" 'downtown',\n",
" '.',\n",
" 'But',\n",
" 'trust',\n",
" 'us',\n",
" 'when',\n",
" 'we',\n",
" 'tell',\n",
" 'you',\n",
" ',',\n",
" 'every',\n",
" 'run',\n",
" 'is',\n",
" 'better',\n",
" 'when',\n",
" 'you’re',\n",
" 'with',\n",
" 'one',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'best',\n",
" 'run',\n",
" 'clubs',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'So\",\n",
" 'what',\n",
" 'are',\n",
" 'you',\n",
" 'waiting',\n",
" 'for',\n",
" '?',\n",
" 'Join',\n",
" 'one',\n",
" 'of',\n",
" 'these',\n",
" 'local',\n",
" 'crews',\n",
" 'to',\n",
" 'see',\n",
" 'for',\n",
" 'yourself',\n",
" '.',\n",
" 'No',\n",
" 'excuses',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Yes\",\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'EXACTLY',\n",
" 'what',\n",
" 'is',\n",
" 'sounds',\n",
" 'like',\n",
" ':',\n",
" 'beer',\n",
" '+',\n",
" 'running',\n",
" '=',\n",
" 'happy',\n",
" 'runners',\n",
" 'Every',\n",
" 'Wednesday',\n",
" ',',\n",
" 'the',\n",
" 'club',\n",
" 'meets',\n",
" 'at',\n",
" 'Uncle',\n",
" 'Billy’s',\n",
" 'for',\n",
" 'a',\n",
" '5k',\n",
" 'run',\n",
" 'around',\n",
" 'Town',\n",
" 'Lake',\n",
" '.',\n",
" 'There’s',\n",
" 'no',\n",
" 'fee',\n",
" 'to',\n",
" 'join',\n",
" 'ABRC',\n",
" ',',\n",
" 'just',\n",
" 'pay',\n",
" 'your',\n",
" 'tab',\n",
" '.',\n",
" 'And',\n",
" 'get',\n",
" 'this',\n",
" ',',\n",
" 'if',\n",
" 'you',\n",
" 'put',\n",
" 'in',\n",
" 'your',\n",
" 'order',\n",
" 'before',\n",
" 'the',\n",
" 'run',\n",
" ',',\n",
" 'it’ll',\n",
" 'be',\n",
" 'waiting',\n",
" 'for',\n",
" 'you',\n",
" 'after',\n",
" 'on',\n",
" 'a',\n",
" 'silver',\n",
" 'platter',\n",
" '(',\n",
" 'not',\n",
" 'really',\n",
" 'but',\n",
" 'you',\n",
" 'get',\n",
" 'the',\n",
" 'idea',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'popular',\n",
" 'run',\n",
" 'club',\n",
" 'offers',\n",
" 'meets',\n",
" 'throughout',\n",
" 'the',\n",
" 'week',\n",
" 'to',\n",
" 'fit',\n",
" 'everyone’s',\n",
" 'schedule',\n",
" '.',\n",
" 'Each',\n",
" 'day',\n",
" 'varies',\n",
" 'by',\n",
" 'location',\n",
" ',',\n",
" 'time',\n",
" ',',\n",
" 'and',\n",
" 'distances',\n",
" 'varying',\n",
" 'from',\n",
" '1-3',\n",
" 'miles',\n",
" 'sprints',\n",
" 'or',\n",
" '10-mile',\n",
" 'hill',\n",
" 'country',\n",
" 'runs',\n",
" '(',\n",
" 'everyone’s',\n",
" 'favorite…',\n",
" ')',\n",
" '.',\n",
" 'Did',\n",
" 'we',\n",
" 'mention',\n",
" 'that',\n",
" 'the',\n",
" 'Austin',\n",
" 'Runners',\n",
" 'Club',\n",
" 'is',\n",
" 'free',\n",
" '?',\n",
" 'That’s',\n",
" 'right',\n",
" ',',\n",
" 'no',\n",
" 'extra',\n",
" 'charge',\n",
" 'for',\n",
" 'going',\n",
" 'the',\n",
" 'extra',\n",
" 'mile',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Maybe\",\n",
" 'you',\n",
" 'know',\n",
" 'Gilbert',\n",
" '.',\n",
" 'He’s',\n",
" 'the',\n",
" 'founder',\n",
" 'of',\n",
" 'one',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'largest',\n",
" 'training',\n",
" 'groups',\n",
" 'for',\n",
" 'any',\n",
" 'and',\n",
" 'every',\n",
" 'type',\n",
" 'of',\n",
" 'runner',\n",
" '.',\n",
" 'This',\n",
" 'crew',\n",
" 'meets',\n",
" 'at',\n",
" 'Luke’s',\n",
" 'Locker',\n",
" 'downtown',\n",
" 'and',\n",
" 'break',\n",
" 'off',\n",
" 'into',\n",
" 'their',\n",
" 'various',\n",
" 'running',\n",
" 'groups',\n",
" 'from',\n",
" 'there',\n",
" '.',\n",
" 'Along',\n",
" 'with',\n",
" 'gaining',\n",
" 'some',\n",
" 'running',\n",
" 'knowledge',\n",
" 'and',\n",
" 'skills',\n",
" ',',\n",
" 'they',\n",
" 'hold',\n",
" 'a',\n",
" '“Run',\n",
" 'of',\n",
" 'the',\n",
" 'Water”',\n",
" 'fundraiser',\n",
" 'in',\n",
" 'the',\n",
" 'fall',\n",
" 'that',\n",
" 'helps',\n",
" 'build',\n",
" 'water',\n",
" 'projects',\n",
" 'in',\n",
" 'Burundi',\n",
" '(',\n",
" 'where',\n",
" 'Gilbert',\n",
" 'is',\n",
" 'originally',\n",
" 'from',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'More\",\n",
" 'than',\n",
" 'just',\n",
" 'a',\n",
" 'social',\n",
" 'group',\n",
" ',',\n",
" 'Born',\n",
" 'to',\n",
" 'Run',\n",
" 'is',\n",
" 'a',\n",
" 'training',\n",
" 'program',\n",
" 'that',\n",
" 'meets',\n",
" '3',\n",
" 'days',\n",
" 'a',\n",
" 'week',\n",
" 'at',\n",
" 'Ready',\n",
" 'to',\n",
" 'Run',\n",
" 'and',\n",
" 'gives',\n",
" 'runners',\n",
" 'the',\n",
" 'skills',\n",
" 'and',\n",
" 'guidance',\n",
" 'to',\n",
" 'either',\n",
" 'build',\n",
" 'their',\n",
" 'base',\n",
" 'or',\n",
" 'freshen',\n",
" 'up',\n",
" 'their',\n",
" 'techniques',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'they',\n",
" 'have\\\\xa0a',\n",
" 'running',\n",
" 'group',\n",
" 'for',\n",
" 'kids',\n",
" '.',\n",
" 'There’s',\n",
" 'no',\n",
" 'extra',\n",
" 'charge',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'your',\n",
" 'kiddo',\n",
" 'along',\n",
" 'for',\n",
" 'the\\\\xa0workout',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Being\",\n",
" 'a',\n",
" 'Longhorn',\n",
" 'has',\n",
" 'its',\n",
" 'perks',\n",
" ',',\n",
" 'and',\n",
" 'for',\n",
" 'those',\n",
" 'in',\n",
" 'and',\n",
" 'around',\n",
" 'the',\n",
" 'University',\n",
" 'of',\n",
" 'Texas',\n",
" 'campus',\n",
" ',',\n",
" 'Texas',\n",
" 'Running',\n",
" 'Club',\n",
" '(',\n",
" 'TRC',\n",
" ')',\n",
" 'could',\n",
" 'be',\n",
" 'your',\n",
" 'perfect',\n",
" 'fit',\n",
" '.',\n",
" 'They',\n",
" 'meet',\n",
" 'every',\n",
" 'Monday',\n",
" 'through',\n",
" 'Thursday',\n",
" 'for',\n",
" 'runs',\n",
" 'of',\n",
" 'various',\n",
" 'distances',\n",
" '.',\n",
" 'And',\n",
" 'what',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'meet',\n",
" 'some',\n",
" 'of',\n",
" 'your',\n",
" 'peers',\n",
" 'than',\n",
" 'going',\n",
" 'for',\n",
" 'a',\n",
" 'sweaty',\n",
" 'social',\n",
" 'run',\n",
" 'around',\n",
" 'campus',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Team\",\n",
" 'Spiridon',\n",
" 'give',\n",
" 'back',\n",
" ',',\n",
" 'partnering',\n",
" 'with',\n",
" 'the',\n",
" 'Austin',\n",
" 'Half',\n",
" 'and',\n",
" 'Full',\n",
" 'Marathons',\n",
" 'philanthropy',\n",
" 'program',\n",
" '.',\n",
" 'That',\n",
" ',',\n",
" 'plus',\n",
" 'they',\n",
" 'have',\n",
" 'a',\n",
" '“Rufftail',\n",
" 'Runners”',\n",
" 'club',\n",
" ',',\n",
" 'pairing',\n",
" 'runners',\n",
" 'and',\n",
" 'walkers',\n",
" 'with',\n",
" 'shelter',\n",
" 'dogs',\n",
" 'for',\n",
" 'a',\n",
" 'workout',\n",
" 'and',\n",
" 'companionship',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'you',\n",
" 'can',\n",
" 'expect',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'sightseeing',\n",
" 'in',\n",
" 'too',\n",
" 'with',\n",
" 'meeting',\n",
" 'places',\n",
" 'like',\n",
" 'Whole',\n",
" 'Foods',\n",
" ',',\n",
" 'the',\n",
" 'State',\n",
" 'Capitol',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'locations',\n",
" 'in',\n",
" 'the',\n",
" 'downtown',\n",
" 'area',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'On\",\n",
" 'the',\n",
" 'second',\n",
" 'Tuesday',\n",
" 'of',\n",
" 'every',\n",
" 'month',\n",
" ',',\n",
" '\\\\xa0Shake',\n",
" 'Shack',\n",
" 'on',\n",
" 'S.',\n",
" 'Lamar',\n",
" 'hosts',\n",
" 'a',\n",
" 'free',\n",
" 'community',\n",
" 'run',\n",
" '.',\n",
" 'Complete',\n",
" 'the',\n",
" 'three-four-mile',\n",
" 'loop',\n",
" 'around',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'and',\n",
" 'finish',\n",
" 'at',\n",
" 'the',\n",
" 'home',\n",
" 'of',\n",
" 'one',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'best',\n",
" 'burgers',\n",
" '.',\n",
" 'Sure',\n",
" ',',\n",
" 'the',\n",
" 'scenic',\n",
" 'views',\n",
" 'will',\n",
" 'be',\n",
" 'good',\n",
" 'and',\n",
" 'the',\n",
" 'company',\n",
" 'will',\n",
" 'be',\n",
" 'great',\n",
" '.',\n",
" 'But',\n",
" 'here’s',\n",
" 'the',\n",
" 'best',\n",
" 'part',\n",
" ',',\n",
" 'your',\n",
" 'first',\n",
" 'drink',\n",
" 'is',\n",
" 'free',\n",
" '.',\n",
" 'See',\n",
" 'you',\n",
" 'there',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Looking\",\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'little',\n",
" 'one',\n",
" 'into',\n",
" 'running',\n",
" '?',\n",
" 'Young',\n",
" 'Guns',\n",
" 'Youth',\n",
" 'Fitness',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" 'setting',\n",
" 'a',\n",
" 'positive',\n",
" 'example',\n",
" 'and',\n",
" 'forging\\\\xa0lifelong',\n",
" 'runners',\n",
" '.',\n",
" 'They',\n",
" 'also',\n",
" 'have',\n",
" 'groups',\n",
" 'meeting',\n",
" 'Monday',\n",
" 'through',\n",
" 'Friday',\n",
" 'at',\n",
" 'varying',\n",
" 'locations',\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" '.',\n",
" 'That’s',\n",
" 'pretty',\n",
" 'clutch',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'won’t',\n",
" 'have',\n",
" 'to',\n",
" 'miss',\n",
" 'a',\n",
" 'beat',\n",
" 'or',\n",
" 'get',\n",
" 'stuck',\n",
" 'in',\n",
" 'unnecessary',\n",
" 'traffic',\n",
" 'having',\n",
" 'to',\n",
" 'travel',\n",
" 'downtown',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'improve',\n",
" 'your',\n",
" '5K',\n",
" ',',\n",
" '10K',\n",
" ',',\n",
" 'half',\n",
" ',',\n",
" 'or',\n",
" 'full',\n",
" 'marathon',\n",
" 'time',\n",
" ',',\n",
" 'Run',\n",
" 'Austin',\n",
" 'Galloway',\n",
" 'is',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" 'They',\n",
" 'stress',\n",
" 'four',\n",
" 'main',\n",
" 'principles',\n",
" ':',\n",
" 'weekly',\n",
" 'long',\n",
" 'runs',\n",
" ',',\n",
" 'walk',\n",
" 'breaks',\n",
" 'incorporated',\n",
" 'into',\n",
" 'long',\n",
" 'runs',\n",
" ',',\n",
" 'proper',\n",
" 'hydration',\n",
" 'and',\n",
" 'nutrition',\n",
" ',',\n",
" 'and',\n",
" 'experienced',\n",
" 'team',\n",
" 'leaders',\n",
" 'to',\n",
" 'lead',\n",
" 'their',\n",
" 'packs',\n",
" '.',\n",
" 'They’re',\n",
" 'also',\n",
" 'super',\n",
" 'active',\n",
" 'in',\n",
" 'the',\n",
" 'community',\n",
" 'and',\n",
" 'volunteer',\n",
" 'for',\n",
" 'the',\n",
" 'local',\n",
" 'fitness',\n",
" 'events',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'Speedy',\n",
" 'Demons',\n",
" 'don’t',\n",
" 'play',\n",
" 'games',\n",
" 'when',\n",
" 'it',\n",
" 'comes',\n",
" 'to',\n",
" 'fighting',\n",
" 'obesity',\n",
" 'in',\n",
" 'America',\n",
" '.',\n",
" 'They',\n",
" 'focus',\n",
" 'on',\n",
" 'motivating',\n",
" 'everyone',\n",
" 'to',\n",
" 'stay',\n",
" 'physically',\n",
" 'active',\n",
" 'while',\n",
" 'having',\n",
" 'some',\n",
" 'fun',\n",
" '.',\n",
" 'By',\n",
" 'integrating',\n",
" 'strength',\n",
" 'and',\n",
" 'conditioning',\n",
" 'workouts',\n",
" 'along',\n",
" 'with',\n",
" 'social',\n",
" 'runs',\n",
" 'around',\n",
" 'downtown',\n",
" 'or',\n",
" 'Wells',\n",
" 'Branch',\n",
" ',',\n",
" 'they’ll',\n",
" 'help',\n",
" 'you',\n",
" 'improve',\n",
" 'your',\n",
" 'run',\n",
" 'skills',\n",
" ',',\n",
" 'speed',\n",
" ',',\n",
" 'and',\n",
" 'overall',\n",
" 'health',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'See\",\n",
" 'a',\n",
" 'squad',\n",
" 'you’re',\n",
" 'ready',\n",
" 'to',\n",
" 'run',\n",
" 'with',\n",
" '?',\n",
" 'Who',\n",
" 'will',\n",
" 'you',\n",
" 'join',\n",
" 'on',\n",
" 'the',\n",
" 'trails',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'Comment',\n",
" 'Here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'See\",\n",
" 'a',\n",
" 'squad',\n",
" 'you’re',\n",
" 'ready',\n",
" 'to',\n",
" 'run',\n",
" 'with',\n",
" '?',\n",
" 'Who',\n",
" 'will',\n",
" 'you',\n",
" 'join',\n",
" 'on',\n",
" 'the',\n",
" 'trails',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'Comment',\n",
" 'Here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Well\",\n",
" 'folks',\n",
" ',',\n",
" 'the',\n",
" 'bittersweet',\n",
" 'time',\n",
" 'of',\n",
" 'summer’s',\n",
" 'end',\n",
" 'is',\n",
" 'upon',\n",
" 'us',\n",
" ',',\n",
" 'which',\n",
" 'means',\n",
" 'fewer',\n",
" 'days',\n",
" 'on',\n",
" 'the',\n",
" 'lake',\n",
" ',',\n",
" 'the',\n",
" 'fireworks',\n",
" 'are',\n",
" 'packed',\n",
" 'away',\n",
" 'until',\n",
" 'next',\n",
" 'year',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'more',\n",
" 'fast-paced',\n",
" 'vibe',\n",
" 'is',\n",
" 'on',\n",
" 'the',\n",
" 'horizon',\n",
" '.',\n",
" 'BUT',\n",
" ',',\n",
" 'it',\n",
" 'also',\n",
" 'means',\n",
" 'a',\n",
" 'break',\n",
" 'from',\n",
" 'the',\n",
" 'crazy',\n",
" 'heat',\n",
" ',',\n",
" 'tailgating',\n",
" 'aplenty',\n",
" ',',\n",
" 'and',\n",
" 'more',\n",
" 'opportunities',\n",
" 'for',\n",
" 'outdoor',\n",
" 'goodness',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Take\",\n",
" 'advantage',\n",
" 'of',\n",
" 'the',\n",
" 'cooler',\n",
" 'temperatures',\n",
" 'and',\n",
" 'beat',\n",
" 'the',\n",
" 'back-to-school',\n",
" 'blues',\n",
" 'with',\n",
" 'these',\n",
" 'super',\n",
" 'fun',\n",
" 'September',\n",
" 'fitness',\n",
" 'events',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'a',\n",
" 'seasoned',\n",
" 'yogi',\n",
" 'looking',\n",
" 'to',\n",
" 'mix',\n",
" 'up',\n",
" 'your',\n",
" 'practice',\n",
" 'with',\n",
" 'a',\n",
" 'cocktail',\n",
" 'or',\n",
" 'a',\n",
" 'casual',\n",
" 'hiker',\n",
" 'with',\n",
" 'a',\n",
" 'taste',\n",
" 'for',\n",
" 'tacos',\n",
" ',',\n",
" 'you’re',\n",
" 'bound',\n",
" 'to',\n",
" 'find',\n",
" 'something',\n",
" 'here',\n",
" 'that',\n",
" 'fits',\n",
" 'your',\n",
" 'fall',\n",
" 'fitness',\n",
" 'needs',\n",
" 'just',\n",
" 'fine',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'time',\n",
" 'has',\n",
" 'come',\n",
" ',',\n",
" 'friends',\n",
" ',',\n",
" 'for',\n",
" 'the',\n",
" 'annual',\n",
" 'Zilker',\n",
" 'Relays',\n",
" '!',\n",
" 'You',\n",
" 'and',\n",
" 'three',\n",
" 'of',\n",
" 'your',\n",
" 'favorite',\n",
" 'running',\n",
" 'buddies',\n",
" 'can',\n",
" 'team',\n",
" 'up',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'this',\n",
" '10-mile',\n",
" 'relay',\n",
" 'through',\n",
" 'Zilker',\n",
" 'Park',\n",
" 'and',\n",
" 'then',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'the',\n",
" 'post-race',\n",
" 'festival',\n",
" '.',\n",
" 'If',\n",
" '10',\n",
" 'miles',\n",
" 'sounds',\n",
" 'like',\n",
" 'way',\n",
" 'too',\n",
" 'much',\n",
" ',',\n",
" 'you’re',\n",
" 'in',\n",
" 'luck',\n",
" 'because',\n",
" 'each',\n",
" 'person',\n",
" 'is',\n",
" 'only',\n",
" 'expected',\n",
" 'to',\n",
" 'run',\n",
" '2.5',\n",
" 'miles—teamwork',\n",
" 'makes',\n",
" 'the',\n",
" 'dream',\n",
" 'work',\n",
" '!',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'trouble',\n",
" 'finding',\n",
" 'pals',\n",
" 'to',\n",
" 'join',\n",
" 'you',\n",
" 'on',\n",
" 'your',\n",
" 'journey',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'teams',\n",
" 'looking',\n",
" 'to',\n",
" 'add',\n",
" 'new',\n",
" 'people',\n",
" 'to',\n",
" 'theirs',\n",
" ',',\n",
" 'which',\n",
" 'you',\n",
" 'can',\n",
" 'find',\n",
" 'on',\n",
" 'their',\n",
" 'site',\n",
" 'here',\n",
" '.',\n",
" 'September',\n",
" '9th',\n",
" \"'\",\n",
" ',',\n",
" \"'Remember\",\n",
" 'how',\n",
" 'much',\n",
" 'fun',\n",
" 'scavenger',\n",
" 'hunts',\n",
" 'were',\n",
" 'when',\n",
" 'you',\n",
" 'were',\n",
" 'little',\n",
" '?',\n",
" 'The',\n",
" 'mystery',\n",
" ',',\n",
" 'the',\n",
" 'adrenaline',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'team',\n",
" 'bonding',\n",
" 'were',\n",
" 'everything',\n",
" 'a',\n",
" 'kid',\n",
" 'could',\n",
" 'help',\n",
" 'for',\n",
" '.',\n",
" 'Well',\n",
" ',',\n",
" 'it',\n",
" 'turns',\n",
" 'out',\n",
" 'that',\n",
" 'it',\n",
" 'only',\n",
" 'gets',\n",
" 'better',\n",
" 'with',\n",
" 'age',\n",
" '.',\n",
" 'This',\n",
" 'challenge',\n",
" 'is',\n",
" 'an',\n",
" '“Amazing',\n",
" 'Race”-style',\n",
" 'competition',\n",
" 'where',\n",
" 'teams',\n",
" 'of',\n",
" 'two',\n",
" 'or',\n",
" 'more',\n",
" 'scramble',\n",
" 'about',\n",
" 'the',\n",
" 'city',\n",
" 'solving',\n",
" 'clues',\n",
" ',',\n",
" 'strategizing',\n",
" 'the',\n",
" 'best',\n",
" 'routes',\n",
" ',',\n",
" 'and',\n",
" 'exploring',\n",
" 'undiscovered',\n",
" 'corners',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'there',\n",
" 'are',\n",
" 'cash',\n",
" 'prizes',\n",
" '.',\n",
" 'This',\n",
" 'event',\n",
" 'is',\n",
" ',',\n",
" 'in',\n",
" 'a',\n",
" 'word',\n",
" ',',\n",
" 'awesome',\n",
" '.',\n",
" 'September',\n",
" '24th',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’ve',\n",
" 'never',\n",
" 'experienced',\n",
" 'how',\n",
" 'well',\n",
" 'yoga',\n",
" 'and',\n",
" 'mimosas',\n",
" 'go',\n",
" 'together',\n",
" ',',\n",
" 'then',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'event',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" 'CorePower',\n",
" 'Yoga',\n",
" 'and',\n",
" 'Parlor',\n",
" 'and',\n",
" 'Yard',\n",
" 'in',\n",
" 'West',\n",
" '6th',\n",
" 'have',\n",
" 'teamed',\n",
" 'up',\n",
" 'to',\n",
" 'bring',\n",
" 'you',\n",
" 'a',\n",
" 'Sunday',\n",
" 'morning',\n",
" 'full',\n",
" 'of',\n",
" 'mindful',\n",
" 'movement',\n",
" 'and',\n",
" 'booze—the',\n",
" 'winning',\n",
" 'combination',\n",
" 'you',\n",
" 'never',\n",
" 'knew',\n",
" 'you',\n",
" 'needed',\n",
" 'in',\n",
" 'your',\n",
" 'life',\n",
" '.',\n",
" 'The',\n",
" 'class',\n",
" 'runs',\n",
" 'from',\n",
" '10-11am',\n",
" 'and',\n",
" 'includes',\n",
" 'two',\n",
" 'mimosas',\n",
" ',',\n",
" 'so',\n",
" 'you’ll',\n",
" 'be',\n",
" 'primed',\n",
" 'and',\n",
" 'ready',\n",
" 'to',\n",
" 'hit',\n",
" 'brunch',\n",
" 'and',\n",
" 'kick',\n",
" 'off',\n",
" 'your',\n",
" 'Sunday',\n",
" 'Funday',\n",
" 'with',\n",
" 'a',\n",
" 'zen-like',\n",
" 'attitude',\n",
" '.',\n",
" 'September',\n",
" '4th',\n",
" \"'\",\n",
" ',',\n",
" \"'Whether\",\n",
" 'volleyball',\n",
" 'is',\n",
" 'the',\n",
" 'love',\n",
" 'of',\n",
" 'your',\n",
" 'life',\n",
" 'or',\n",
" 'you’re',\n",
" 'brand',\n",
" 'new',\n",
" 'to',\n",
" 'the',\n",
" 'game',\n",
" ',',\n",
" 'you’ve',\n",
" 'every',\n",
" 'reason',\n",
" 'to',\n",
" 'check',\n",
" 'out',\n",
" 'this',\n",
" 'event',\n",
" 'at',\n",
" 'Krieg',\n",
" 'Field',\n",
" '.',\n",
" 'That’s',\n",
" 'because',\n",
" 'this',\n",
" 'tournament',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" 'fitness',\n",
" 'and',\n",
" 'fun',\n",
" 'for',\n",
" 'a',\n",
" 'cause',\n",
" '.',\n",
" '10',\n",
" '%',\n",
" 'of',\n",
" 'tournament',\n",
" 'fees',\n",
" 'and',\n",
" '100',\n",
" '%',\n",
" 'of',\n",
" 'donations',\n",
" 'will',\n",
" 'go',\n",
" 'to',\n",
" 'the',\n",
" 'winning',\n",
" 'team’s',\n",
" 'charity',\n",
" 'of',\n",
" 'choice',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" 'there',\n",
" 'will',\n",
" 'be',\n",
" 'multiple',\n",
" 'nonprofits',\n",
" 'there',\n",
" 'to',\n",
" 'talk',\n",
" 'about',\n",
" 'volunteer',\n",
" 'opportunities',\n",
" 'and',\n",
" 'ways',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'share',\n",
" 'that',\n",
" 'big',\n",
" 'heart',\n",
" 'of',\n",
" 'yours',\n",
" 'with',\n",
" 'your',\n",
" 'community',\n",
" '.',\n",
" 'September',\n",
" '25th',\n",
" \"'\",\n",
" ',',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'a',\n",
" 'burger',\n",
" 'and',\n",
" 'fries',\n",
" 'from',\n",
" 'Shake',\n",
" 'Shack',\n",
" '?',\n",
" 'A',\n",
" 'burger',\n",
" 'and',\n",
" 'fries',\n",
" 'from',\n",
" 'Shake',\n",
" 'Shack',\n",
" 'that',\n",
" 'you’ve',\n",
" 'earned',\n",
" 'after',\n",
" 'a',\n",
" 'three-',\n",
" 'to',\n",
" 'four-mile',\n",
" 'community',\n",
" 'run',\n",
" 'with',\n",
" 'your',\n",
" 'fellow',\n",
" 'burger',\n",
" 'enthusiasts',\n",
" '!',\n",
" 'Runners',\n",
" 'will',\n",
" 'meet',\n",
" 'at',\n",
" 'Shake',\n",
" 'Shack',\n",
" 'on',\n",
" 'Lamar',\n",
" 'and',\n",
" 'trot',\n",
" 'on',\n",
" 'down',\n",
" 'to',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'and',\n",
" 'back',\n",
" 'again',\n",
" 'to',\n",
" 'finish',\n",
" 'the',\n",
" 'loop',\n",
" '.',\n",
" 'There',\n",
" 'you’ll',\n",
" 'find',\n",
" 'a',\n",
" 'free',\n",
" 'drink',\n",
" 'with',\n",
" 'your',\n",
" 'name',\n",
" 'on',\n",
" 'it',\n",
" 'and',\n",
" 'a',\n",
" 'whole',\n",
" 'bunch',\n",
" 'of',\n",
" 'new',\n",
" 'pals',\n",
" 'to',\n",
" 'enjoy',\n",
" 'it',\n",
" 'with',\n",
" '.',\n",
" 'September',\n",
" '13th',\n",
" \"'\",\n",
" ',',\n",
" \"'CrossFitters\",\n",
" ',',\n",
" 'this',\n",
" 'one’s',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" 'BVM',\n",
" 'CrossFit',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" 'is',\n",
" 'hosting',\n",
" 'an',\n",
" 'early',\n",
" 'morning',\n",
" 'challenge',\n",
" 'for',\n",
" 'you',\n",
" 'and',\n",
" 'the',\n",
" 'teammate',\n",
" 'of',\n",
" 'your',\n",
" 'choice',\n",
" 'to',\n",
" 'show',\n",
" 'off',\n",
" 'all',\n",
" 'of',\n",
" 'the',\n",
" 'hard',\n",
" 'work',\n",
" 'you’ve',\n",
" 'put',\n",
" 'in',\n",
" 'at',\n",
" 'the',\n",
" 'box',\n",
" '.',\n",
" 'The',\n",
" 'events',\n",
" 'are',\n",
" 'divided',\n",
" 'up',\n",
" 'into',\n",
" 'divisions',\n",
" ',',\n",
" 'ranging',\n",
" 'from',\n",
" 'highly-experienced',\n",
" 'to',\n",
" 'anyone',\n",
" 'who’s',\n",
" 'relatively',\n",
" 'fit',\n",
" 'and',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'new',\n",
" 'challenge',\n",
" '.',\n",
" 'The',\n",
" 'specific',\n",
" 'events',\n",
" 'will',\n",
" 'remain',\n",
" 'a',\n",
" 'mystery',\n",
" 'until',\n",
" 'one',\n",
" 'week',\n",
" 'before',\n",
" 'the',\n",
" 'competition',\n",
" ',',\n",
" 'but',\n",
" 'they’re',\n",
" 'sure',\n",
" 'to',\n",
" 'be',\n",
" 'equal',\n",
" 'parts',\n",
" 'challenging',\n",
" 'and',\n",
" 'awesome',\n",
" '.',\n",
" 'September',\n",
" '24th',\n",
" \"'\",\n",
" ',',\n",
" \"'Casual\",\n",
" 'runner',\n",
" 'looking',\n",
" 'to',\n",
" 'switch',\n",
" 'things',\n",
" 'up',\n",
" '?',\n",
" 'Serious',\n",
" 'racer',\n",
" 'aiming',\n",
" 'to',\n",
" 'improve',\n",
" 'your',\n",
" 'personal',\n",
" 'best',\n",
" '?',\n",
" 'Then',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" '34th',\n",
" 'Annual',\n",
" '5K',\n",
" 'Bun',\n",
" 'Run',\n",
" '.',\n",
" 'Starting',\n",
" 'and',\n",
" 'finishing',\n",
" 'at',\n",
" 'The',\n",
" 'Domain',\n",
" ',',\n",
" 'all',\n",
" 'donations',\n",
" 'go',\n",
" 'to',\n",
" 'the',\n",
" 'Juvenile',\n",
" 'Diabetes',\n",
" 'Research',\n",
" 'Foundation',\n",
" ',',\n",
" 'so',\n",
" 'you’ll',\n",
" 'be',\n",
" 'treating',\n",
" 'your',\n",
" 'body',\n",
" 'AND',\n",
" 'your',\n",
" 'community',\n",
" '.',\n",
" 'And',\n",
" 'as',\n",
" 'a',\n",
" 'fun',\n",
" ',',\n",
" 'furry',\n",
" 'bonus',\n",
" ',',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'a',\n",
" 'pooch',\n",
" 'who',\n",
" 'you',\n",
" 'think',\n",
" 'has',\n",
" 'the',\n",
" 'snuff',\n",
" 'to',\n",
" 'become',\n",
" 'the',\n",
" 'Fastest',\n",
" 'Dog',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'bring',\n",
" 'him/her',\n",
" 'along',\n",
" 'to',\n",
" 'run',\n",
" 'with',\n",
" 'you',\n",
" 'to',\n",
" 'have',\n",
" 'their',\n",
" 'time',\n",
" 'clocked',\n",
" 'along',\n",
" 'with',\n",
" 'yours',\n",
" '.',\n",
" 'September',\n",
" '25th',\n",
" \"'\",\n",
" ',',\n",
" \"'Calling\",\n",
" 'all',\n",
" 'scuba',\n",
" 'divers',\n",
" '!',\n",
" 'We',\n",
" 'need',\n",
" 'you',\n",
" 'to',\n",
" 'help',\n",
" 'keep',\n",
" 'our',\n",
" 'beloved',\n",
" 'Lake',\n",
" 'Travis',\n",
" 'clean',\n",
" 'and',\n",
" 'beautiful',\n",
" '.',\n",
" 'Pack',\n",
" 'up',\n",
" 'your',\n",
" 'scuba',\n",
" 'gear',\n",
" 'and',\n",
" 'head',\n",
" 'on',\n",
" 'over',\n",
" 'to',\n",
" 'Beachfront',\n",
" 'Rentals',\n",
" 'to',\n",
" 'spend',\n",
" 'the',\n",
" 'morning',\n",
" 'diving',\n",
" 'down',\n",
" 'to',\n",
" 'the',\n",
" 'depths',\n",
" 'of',\n",
" 'Starnes',\n",
" 'Island',\n",
" ',',\n",
" 'picking',\n",
" 'up',\n",
" 'debris',\n",
" 'and',\n",
" 'hunting',\n",
" 'for',\n",
" 'treasure',\n",
" '.',\n",
" 'Then',\n",
" ',',\n",
" 'when',\n",
" 'all',\n",
" 'is',\n",
" 'said',\n",
" 'and',\n",
" 'done',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'pat',\n",
" 'yourself',\n",
" 'on',\n",
" 'the',\n",
" 'back',\n",
" 'while',\n",
" 'you',\n",
" 'take',\n",
" 'in',\n",
" 'the',\n",
" 'gorgeous',\n",
" 'view',\n",
" 'and',\n",
" 'tasty',\n",
" 'grub',\n",
" 'at',\n",
" 'the',\n",
" 'After',\n",
" 'Clean',\n",
" 'Up',\n",
" 'Party',\n",
" 'at',\n",
" 'the',\n",
" 'Oasis',\n",
" '.',\n",
" 'September',\n",
" '11th',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ',',\n",
" \"'Sorry\",\n",
" 'fellas',\n",
" ',',\n",
" 'this',\n",
" 'one’s',\n",
" 'ladies',\n",
" 'only',\n",
" '.',\n",
" 'This',\n",
" 'all-women',\n",
" 'cycling',\n",
" 'group',\n",
" 'will',\n",
" 'meet',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'group',\n",
" 'ride',\n",
" 'and',\n",
" 'mountain',\n",
" 'biking',\n",
" 'skill',\n",
" 'instruction',\n",
" 'at',\n",
" 'Walnut',\n",
" 'Creek',\n",
" 'Metropolitan',\n",
" 'Park',\n",
" '.',\n",
" 'Riders',\n",
" 'will',\n",
" 'break',\n",
" 'into',\n",
" 'small',\n",
" 'groups',\n",
" 'according',\n",
" 'to',\n",
" 'ability',\n",
" 'before',\n",
" 'hitting',\n",
" 'the',\n",
" 'trail',\n",
" ',',\n",
" 'which',\n",
" 'is',\n",
" 'guided',\n",
" 'by',\n",
" 'experienced',\n",
" 'instructors',\n",
" '.',\n",
" 'When',\n",
" 'the',\n",
" 'ride’s',\n",
" 'over',\n",
" ',',\n",
" 'you’ll',\n",
" 'reconvene',\n",
" 'with',\n",
" 'the',\n",
" 'others',\n",
" 'and',\n",
" 'treat',\n",
" 'yourself',\n",
" 'to',\n",
" 'a',\n",
" 'grillin’',\n",
" ',',\n",
" 'rafflin’',\n",
" ',',\n",
" 'and',\n",
" 'bondin’',\n",
" 'session',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'a',\n",
" 'healthy',\n",
" 'side',\n",
" 'item',\n",
" 'to',\n",
" 'share',\n",
" '.',\n",
" 'September',\n",
" '12th',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'the',\n",
" 'words',\n",
" '“Hiking',\n",
" 'for',\n",
" 'Tacos”',\n",
" 'somehow',\n",
" 'aren’t',\n",
" 'compelling',\n",
" 'enough',\n",
" '(',\n",
" 'but',\n",
" 'if',\n",
" 'you’re',\n",
" 'anything',\n",
" 'like',\n",
" 'us',\n",
" ',',\n",
" 'that’s',\n",
" 'all',\n",
" 'you',\n",
" 'need',\n",
" 'to',\n",
" ...],\n",
" ['[',\n",
" \"'Fitt\",\n",
" 'is',\n",
" 'your',\n",
" 'guide',\n",
" 'to',\n",
" 'sweat',\n",
" 'spots',\n",
" ',',\n",
" 'healthy',\n",
" 'eats',\n",
" ',',\n",
" 'and',\n",
" 'upcoming',\n",
" 'races',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'We’re',\n",
" 'here',\n",
" 'to',\n",
" 'showcase',\n",
" 'and',\n",
" 'sweat',\n",
" 'with',\n",
" 'the',\n",
" 'local',\n",
" 'fitness',\n",
" 'community',\n",
" '.',\n",
" 'We’re',\n",
" 'searching',\n",
" 'for',\n",
" 'and',\n",
" 'snacking',\n",
" 'on',\n",
" 'the',\n",
" 'healthiest',\n",
" 'eats',\n",
" 'in',\n",
" 'town',\n",
" '.',\n",
" 'Then',\n",
" 'we',\n",
" 'share\\\\xa0everything',\n",
" 'we',\n",
" 'discover',\n",
" 'with',\n",
" 'you',\n",
" '.',\n",
" 'It',\n",
" 'doesn’t',\n",
" 'matter',\n",
" 'if',\n",
" 'you’re',\n",
" 'a',\n",
" 'runner',\n",
" 'or',\n",
" 'cyclist',\n",
" ',',\n",
" 'a',\n",
" 'yogi',\n",
" 'or',\n",
" 'CrossFitter',\n",
" ',',\n",
" 'if',\n",
" 'you’ve',\n",
" 'gone',\n",
" 'vegan',\n",
" 'or',\n",
" 'paleo',\n",
" ',',\n",
" 'we',\n",
" 'make',\n",
" 'eating',\n",
" 'well',\n",
" 'and',\n",
" 'moving',\n",
" 'more',\n",
" 'a',\n",
" 'whole',\n",
" 'lot',\n",
" 'easier',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'know',\n",
" 'the',\n",
" 'best',\n",
" 'spots',\n",
" 'in',\n",
" 'town\\\\u2028',\n",
" 'for',\n",
" 'every',\n",
" 'kind',\n",
" 'of',\n",
" 'workout',\n",
" '.',\n",
" 'And',\n",
" 'now\\\\u2028',\n",
" 'you',\n",
" 'do',\n",
" 'too',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'From\",\n",
" 'sit',\n",
" 'down',\n",
" 'to',\n",
" 'take',\n",
" 'out',\n",
" 'and',\n",
" 'vegan',\n",
" 'to',\n",
" 'gluten',\n",
" 'free',\n",
" ',',\n",
" 'we',\n",
" 'make',\n",
" 'eating',\n",
" 'well',\n",
" 'in',\n",
" 'Austin',\n",
" 'a',\n",
" 'whole',\n",
" 'lot',\n",
" 'easier',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'races',\n",
" ',',\n",
" 'workouts',\n",
" ',',\n",
" 'and',\n",
" 'healthiest',\n",
" 'happenings',\n",
" 'Austin',\n",
" 'has',\n",
" 'to',\n",
" 'offer',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Running\",\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'fit',\n",
" '.',\n",
" 'But',\n",
" 'nowadays',\n",
" ',',\n",
" 'shaping',\n",
" 'up',\n",
" 'isn’t',\n",
" 'the',\n",
" 'only',\n",
" 'reason',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'These\",\n",
" 'new',\n",
" 'crop',\n",
" 'of',\n",
" 'fun',\n",
" 'runs',\n",
" 'are',\n",
" 'redefining',\n",
" 'running',\n",
" 'and',\n",
" 'racing',\n",
" '.',\n",
" 'Unlike',\n",
" 'the',\n",
" 'typical',\n",
" '5k',\n",
" ',',\n",
" 'keeping',\n",
" 'time',\n",
" 'isn’t',\n",
" 'all',\n",
" 'that',\n",
" 'important',\n",
" ',',\n",
" 'there’s',\n",
" 'not',\n",
" 'always',\n",
" 'a',\n",
" 'winner',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'vibe',\n",
" 'is',\n",
" 'more',\n",
" 'of',\n",
" 'a',\n",
" 'celebration',\n",
" 'than',\n",
" 'a',\n",
" 'competition',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'thinking',\n",
" 'this',\n",
" 'sounds',\n",
" 'too',\n",
" 'good',\n",
" 'to',\n",
" 'be',\n",
" 'true',\n",
" ',',\n",
" 'think',\n",
" 'again',\n",
" '.',\n",
" 'Austin',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'races',\n",
" 'that',\n",
" 'put',\n",
" 'being',\n",
" 'whacky',\n",
" 'over',\n",
" 'winning',\n",
" '.',\n",
" 'And',\n",
" 'we’ve',\n",
" 'rounded',\n",
" 'up',\n",
" 'the',\n",
" 'top',\n",
" 'local',\n",
" 'races',\n",
" 'you’ll',\n",
" 'actually',\n",
" 'want',\n",
" 'to',\n",
" 'run',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Get\",\n",
" 'ready',\n",
" 'for',\n",
" 'the',\n",
" '“slowest',\n",
" '5K',\n",
" 'on',\n",
" 'the',\n",
" 'planet.”',\n",
" 'Here',\n",
" ',',\n",
" 'the',\n",
" 'focus',\n",
" 'is',\n",
" 'on',\n",
" 'being',\n",
" 'weird',\n",
" 'and',\n",
" 'having',\n",
" 'fun',\n",
" '.',\n",
" 'Part',\n",
" '5K',\n",
" ',',\n",
" 'part',\n",
" 'costume',\n",
" 'party',\n",
" ',',\n",
" 'and',\n",
" 'part',\n",
" 'ridiculousness',\n",
" ',',\n",
" 'the',\n",
" 'race',\n",
" 'at',\n",
" 'the',\n",
" 'annual',\n",
" 'Keep',\n",
" 'Austin',\n",
" 'Weird',\n",
" 'Fest',\n",
" 'is',\n",
" ',',\n",
" 'in',\n",
" 'a',\n",
" 'word',\n",
" ',',\n",
" 'awesome',\n",
" '.',\n",
" 'Every',\n",
" 'June',\n",
" ',',\n",
" 'participants',\n",
" 'are',\n",
" 'invited',\n",
" 'to',\n",
" 'put',\n",
" 'on',\n",
" 'their',\n",
" 'strangest',\n",
" 'costumes',\n",
" 'as',\n",
" 'they',\n",
" 'run',\n",
" 'through',\n",
" 'downtown',\n",
" ',',\n",
" 'making',\n",
" '10',\n",
" 'different',\n",
" 'stops',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" '.',\n",
" 'One',\n",
" 'of',\n",
" 'the',\n",
" 'stops',\n",
" 'is',\n",
" 'a',\n",
" 'giant',\n",
" 'slip',\n",
" '’n',\n",
" 'slide…',\n",
" 'need',\n",
" 'we',\n",
" 'say',\n",
" 'more',\n",
" '?',\n",
" 'June',\n",
" \"'\",\n",
" ',',\n",
" \"'Pick\",\n",
" 'out',\n",
" 'a',\n",
" 'costume',\n",
" 'and',\n",
" 'grab',\n",
" 'your',\n",
" 'wine-loving',\n",
" 'friends',\n",
" ',',\n",
" 'this',\n",
" 'fun',\n",
" 'run',\n",
" 'wants',\n",
" 'you',\n",
" 'to',\n",
" 'sweat',\n",
" 'and',\n",
" 'sip',\n",
" 'your',\n",
" 'way',\n",
" 'through',\n",
" 'the',\n",
" 'trails',\n",
" 'of',\n",
" 'Spicewood',\n",
" 'Vineyard',\n",
" '.',\n",
" 'The',\n",
" '5K',\n",
" 'course',\n",
" 'will',\n",
" 'lead',\n",
" 'you',\n",
" 'through',\n",
" 'a',\n",
" 'picturesque',\n",
" 'vineyard',\n",
" '.',\n",
" 'And',\n",
" 'your',\n",
" 'reward',\n",
" '?',\n",
" 'There',\n",
" 'will',\n",
" 'be',\n",
" 'plenty',\n",
" 'of',\n",
" 'wine',\n",
" 'waiting',\n",
" 'for',\n",
" 'you',\n",
" 'at',\n",
" 'the',\n",
" 'finish',\n",
" 'line',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'fancy',\n",
" 'yourself',\n",
" 'more',\n",
" 'oenophile',\n",
" 'than',\n",
" 'fitness',\n",
" 'buff',\n",
" ',',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'the',\n",
" '1K',\n",
" '.',\n",
" 'It’s',\n",
" 'basically',\n",
" 'a',\n",
" 'wine',\n",
" 'tasting',\n",
" 'accompanied',\n",
" 'by',\n",
" 'a',\n",
" 'gentle',\n",
" 'stroll',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Walk\",\n",
" ',',\n",
" 'twirl',\n",
" ',',\n",
" 'dance',\n",
" ',',\n",
" 'and',\n",
" 'play',\n",
" 'your',\n",
" 'way',\n",
" 'through',\n",
" 'the',\n",
" 'Bubble',\n",
" 'Run',\n",
" 'starting',\n",
" 'at',\n",
" 'the',\n",
" 'Travis',\n",
" 'County',\n",
" 'Fairgrounds',\n",
" '.',\n",
" 'Don’t',\n",
" 'worry',\n",
" 'about',\n",
" 'your',\n",
" 'time',\n",
" ',',\n",
" 'no',\n",
" 'one',\n",
" 'is',\n",
" 'keeping',\n",
" 'track',\n",
" '.',\n",
" 'The',\n",
" 'only',\n",
" 'things',\n",
" 'you',\n",
" 'need',\n",
" 'to',\n",
" 'worry',\n",
" 'about',\n",
" 'are',\n",
" 'wearing',\n",
" 'a',\n",
" 'white',\n",
" 't-shirt',\n",
" 'and',\n",
" 'having',\n",
" 'fun',\n",
" '.',\n",
" 'At',\n",
" 'each',\n",
" 'mile',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'Foam',\n",
" 'Bogs',\n",
" 'that',\n",
" 'spray',\n",
" 'colorful',\n",
" '(',\n",
" 'and',\n",
" 'safe',\n",
" ',',\n",
" 'don’t',\n",
" 'worry',\n",
" ')',\n",
" 'foam',\n",
" 'all',\n",
" 'over',\n",
" 'you',\n",
" '.',\n",
" 'And',\n",
" 'yes',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'plenty',\n",
" 'of',\n",
" 'time',\n",
" 'to',\n",
" 'play',\n",
" 'in',\n",
" 'the',\n",
" 'foam',\n",
" '.',\n",
" 'Race',\n",
" 'leaders',\n",
" 'start',\n",
" 'a',\n",
" 'new',\n",
" 'wave',\n",
" 'of',\n",
" 'runners',\n",
" 'every',\n",
" '3-5',\n",
" 'minutes',\n",
" 'so',\n",
" 'everyone',\n",
" 'has',\n",
" 'a',\n",
" 'chance',\n",
" 'to',\n",
" 'get',\n",
" 'colored',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Glow\",\n",
" 'in',\n",
" 'the',\n",
" 'dark',\n",
" 'goodness',\n",
" 'is',\n",
" 'what',\n",
" 'this',\n",
" 'race',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" '.',\n",
" 'Sign',\n",
" 'up',\n",
" 'and',\n",
" 'show',\n",
" 'up',\n",
" 'dressed',\n",
" 'in',\n",
" 'your',\n",
" 'finest',\n",
" ',',\n",
" 'and',\n",
" 'most',\n",
" 'creative',\n",
" ',',\n",
" 'nighttime-friendly',\n",
" 'gear',\n",
" '.',\n",
" 'Basically',\n",
" ',',\n",
" 'your',\n",
" 'goals',\n",
" 'to',\n",
" 'wear',\n",
" 'something',\n",
" 'that',\n",
" 'glows',\n",
" ',',\n",
" 'blinks',\n",
" ',',\n",
" 'or',\n",
" 'glitters',\n",
" '.',\n",
" 'The',\n",
" 'entire',\n",
" 'route',\n",
" ',',\n",
" 'starting',\n",
" 'at',\n",
" 'the',\n",
" 'Hutto',\n",
" 'Performing',\n",
" 'Arts',\n",
" 'Center',\n",
" ',',\n",
" 'is',\n",
" 'illuminated',\n",
" 'by',\n",
" 'lights',\n",
" 'and',\n",
" 'glowsticks',\n",
" ',',\n",
" 'with',\n",
" 'musical',\n",
" 'stops',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" ',',\n",
" 'so',\n",
" 'it’s',\n",
" 'fun',\n",
" 'and',\n",
" 'safe',\n",
" 'for',\n",
" 'all',\n",
" 'ages',\n",
" '.',\n",
" 'So',\n",
" ',',\n",
" 'despite',\n",
" 'the',\n",
" 'name',\n",
" ',',\n",
" 'behave',\n",
" 'yourself',\n",
" ',',\n",
" 'folks',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Ever\",\n",
" 'wanted',\n",
" 'to',\n",
" 'go',\n",
" 'streaking',\n",
" ',',\n",
" 'but',\n",
" 'thought',\n",
" 'better',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'here’s',\n",
" 'your',\n",
" 'chance',\n",
" 'to',\n",
" 'strip',\n",
" 'down',\n",
" 'and',\n",
" 'run',\n",
" 'through',\n",
" 'the',\n",
" 'streets',\n",
" 'of',\n",
" 'Austin',\n",
" 'without',\n",
" 'risking',\n",
" 'arrest',\n",
" '.',\n",
" 'You',\n",
" 'don’t',\n",
" 'have',\n",
" 'to',\n",
" 'worry',\n",
" 'about',\n",
" 'going',\n",
" 'to',\n",
" 'the',\n",
" 'clink',\n",
" 'because',\n",
" 'you’ll',\n",
" 'be',\n",
" 'running',\n",
" 'to',\n",
" 'raise',\n",
" 'money',\n",
" 'for',\n",
" 'charity',\n",
" '.',\n",
" 'Hey',\n",
" ',',\n",
" 'anything',\n",
" 'in',\n",
" 'the',\n",
" 'name',\n",
" 'of',\n",
" 'a',\n",
" 'good',\n",
" 'cause',\n",
" '.',\n",
" 'It’s',\n",
" 'all',\n",
" 'part',\n",
" 'of',\n",
" 'Cupid’s',\n",
" 'Undie',\n",
" 'Run',\n",
" ',',\n",
" 'a',\n",
" 'mile-long',\n",
" 'race',\n",
" 'that',\n",
" 'asks',\n",
" 'participants',\n",
" 'to',\n",
" 'dawn',\n",
" 'their',\n",
" 'finest',\n",
" 'underpants',\n",
" '(',\n",
" 'Valentine-theme',\n",
" '?',\n",
" ')',\n",
" 'as',\n",
" 'they',\n",
" 'race',\n",
" 'through',\n",
" 'downtown',\n",
" 'to',\n",
" 'benefit',\n",
" 'the',\n",
" 'Children’s',\n",
" 'Tumor',\n",
" 'Foundation',\n",
" '.',\n",
" 'February',\n",
" \"'\",\n",
" ',',\n",
" \"'Starting\",\n",
" 'at',\n",
" 'the',\n",
" 'Zilker',\n",
" 'Tree',\n",
" 'and',\n",
" 'ending',\n",
" 'within',\n",
" 'the',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" ',',\n",
" 'runners',\n",
" 'enjoy',\n",
" 'two',\n",
" 'miles',\n",
" 'of',\n",
" 'festive',\n",
" 'fun',\n",
" '.',\n",
" 'Glowsticks',\n",
" 'and',\n",
" 'holiday',\n",
" 'costumes',\n",
" 'are',\n",
" 'encouraged',\n",
" 'as',\n",
" 'race',\n",
" 'participants',\n",
" 'get',\n",
" 'to',\n",
" 'be',\n",
" 'the',\n",
" 'first',\n",
" 'people',\n",
" 'to',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'wonders',\n",
" 'of',\n",
" 'the',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" 'before',\n",
" 'it',\n",
" 'opens',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'also',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'vendors',\n",
" 'before',\n",
" 'and',\n",
" 'after',\n",
" 'the',\n",
" 'race',\n",
" 'offering',\n",
" 'food',\n",
" ',',\n",
" 'drinks',\n",
" ',',\n",
" 'and',\n",
" 'glowing',\n",
" 'enhancements',\n",
" 'for',\n",
" 'your',\n",
" 'costumes',\n",
" '.',\n",
" 'December',\n",
" \"'\",\n",
" ',',\n",
" \"'What’s\",\n",
" 'more',\n",
" 'Austin',\n",
" 'than',\n",
" 'a',\n",
" 'race',\n",
" 'with',\n",
" 'margaritas',\n",
" '?',\n",
" 'The',\n",
" 'answer',\n",
" 'is',\n",
" 'nothing',\n",
" ',',\n",
" 'friends',\n",
" '.',\n",
" 'Every',\n",
" 'summer',\n",
" ',',\n",
" 'the',\n",
" 'Maudie’s',\n",
" 'Moonlight',\n",
" 'Margarita',\n",
" 'Run',\n",
" 'mixes',\n",
" 'two',\n",
" 'Austinite',\n",
" 'favorites',\n",
" '–',\n",
" 'booze',\n",
" 'and',\n",
" 'fitness',\n",
" '–',\n",
" 'for',\n",
" 'an',\n",
" 'annual',\n",
" 'fundraising',\n",
" 'race',\n",
" 'to',\n",
" 'support',\n",
" 'our',\n",
" 'beloved',\n",
" 'Hike-and-Bike',\n",
" 'Trail',\n",
" '.',\n",
" 'Runners',\n",
" 'trot',\n",
" 'along',\n",
" 'the',\n",
" 'streets',\n",
" 'lining',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'for',\n",
" '3.1',\n",
" 'miles\\\\xa0and',\n",
" 'finish',\n",
" 'with',\n",
" 'a',\n",
" 'post-race',\n",
" 'party',\n",
" 'full',\n",
" 'of',\n",
" 'food',\n",
" ',',\n",
" 'dancing',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'margaritas',\n",
" '.',\n",
" 'June',\n",
" \"'\",\n",
" ',',\n",
" \"'Also\",\n",
" 'known',\n",
" 'as',\n",
" 'the',\n",
" '“Happiest',\n",
" '5K',\n",
" 'on',\n",
" 'the',\n",
" 'Planet”',\n",
" ',',\n",
" 'The',\n",
" 'Color',\n",
" 'Run',\n",
" 'is',\n",
" 'the',\n",
" 'original',\n",
" 'paint',\n",
" 'race',\n",
" '.',\n",
" 'Runners',\n",
" 'won’t',\n",
" 'be',\n",
" 'timed',\n",
" 'as',\n",
" 'they',\n",
" 'jog',\n",
" 'through',\n",
" 'downtown',\n",
" 'this',\n",
" 'spring',\n",
" 'and',\n",
" 'are',\n",
" 'doused',\n",
" 'from',\n",
" 'head',\n",
" 'to',\n",
" 'toe',\n",
" 'in',\n",
" 'colorful',\n",
" 'paint',\n",
" 'powder',\n",
" 'at',\n",
" 'each',\n",
" 'kilometer',\n",
" '.',\n",
" 'The',\n",
" 'real',\n",
" 'party',\n",
" 'starts',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'the',\n",
" 'race',\n",
" ',',\n",
" 'though',\n",
" ',',\n",
" 'where',\n",
" 'there’s',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'dancing',\n",
" ',',\n",
" 'and',\n",
" 'massive',\n",
" 'color',\n",
" 'throws',\n",
" '.',\n",
" 'The',\n",
" 'only',\n",
" 'requirement',\n",
" 'is',\n",
" 'a',\n",
" 'white',\n",
" 't-shirt',\n",
" 'and',\n",
" 'a',\n",
" 'willingness',\n",
" 'to',\n",
" 'get',\n",
" 'colorfully',\n",
" 'messy',\n",
" '.',\n",
" 'May',\n",
" \"'\",\n",
" ',',\n",
" \"'Supporting\",\n",
" 'CASA',\n",
" ',',\n",
" 'an',\n",
" 'advocacy',\n",
" 'group',\n",
" 'for',\n",
" 'abused',\n",
" 'children',\n",
" ',',\n",
" 'the',\n",
" 'Superhero',\n",
" 'Run',\n",
" 'is',\n",
" 'a\\\\xa0great',\n",
" 'autumn',\n",
" 'activity',\n",
" 'for',\n",
" 'families',\n",
" '.',\n",
" 'There’s',\n",
" 'a',\n",
" '5K',\n",
" 'and',\n",
" 'a',\n",
" 'kid’s',\n",
" '1K',\n",
" 'fun',\n",
" 'run',\n",
" 'on',\n",
" 'this',\n",
" 'Cedar',\n",
" 'Park',\n",
" 'route',\n",
" ',',\n",
" 'both',\n",
" 'of',\n",
" 'which',\n",
" 'ask',\n",
" 'that',\n",
" 'participants',\n",
" 'dress',\n",
" 'up',\n",
" 'as',\n",
" 'their',\n",
" 'favorite',\n",
" 'superheroes',\n",
" '.',\n",
" 'At',\n",
" 'the',\n",
" 'end',\n",
" ',',\n",
" 'there’s',\n",
" 'a',\n",
" 'costume',\n",
" 'contest',\n",
" 'with',\n",
" 'two',\n",
" 'categories',\n",
" ':',\n",
" 'traditional',\n",
" 'superhero',\n",
" ',',\n",
" 'and',\n",
" 'invented',\n",
" '.',\n",
" 'So',\n",
" 'put',\n",
" 'your',\n",
" 'creative',\n",
" 'pants',\n",
" 'on',\n",
" 'and',\n",
" 'use',\n",
" 'your',\n",
" 'many',\n",
" 'super',\n",
" 'powers',\n",
" 'for',\n",
" 'a',\n",
" 'good',\n",
" 'cause',\n",
" '.',\n",
" 'Bonus',\n",
" 'points',\n",
" 'if',\n",
" 'you',\n",
" 'can',\n",
" 'keep',\n",
" 'your',\n",
" 'cape',\n",
" 'billowing',\n",
" 'the',\n",
" 'whole',\n",
" 'race',\n",
" '.',\n",
" 'September',\n",
" \"'\",\n",
" ',',\n",
" \"'For\",\n",
" 'this',\n",
" 'race',\n",
" ',',\n",
" 'you',\n",
" 'dress',\n",
" 'up',\n",
" 'as',\n",
" 'a',\n",
" 'gorilla…and',\n",
" 'run',\n",
" '.',\n",
" 'So',\n",
" 'it’s',\n",
" 'pretty',\n",
" 'much',\n",
" 'the',\n",
" 'best',\n",
" 'thing',\n",
" 'ever',\n",
" '.',\n",
" 'A',\n",
" 'fundraiser',\n",
" 'to',\n",
" 'benefit',\n",
" 'mountain',\n",
" 'gorillas',\n",
" ',',\n",
" 'runners',\n",
" 'kick',\n",
" 'off',\n",
" 'the',\n",
" 'new',\n",
" 'year',\n",
" 'by',\n",
" 'putting',\n",
" 'on',\n",
" 'their',\n",
" 'finest',\n",
" 'gorilla',\n",
" 'gear',\n",
" '(',\n",
" 'or',\n",
" 'a',\n",
" 'banana',\n",
" 'suit',\n",
" ',',\n",
" 'if',\n",
" 'you’re',\n",
" 'feelin’',\n",
" 'frisky',\n",
" ')',\n",
" 'and',\n",
" 'chase',\n",
" 'one',\n",
" 'another',\n",
" 'through',\n",
" 'the',\n",
" 'heart',\n",
" ...],\n",
" ['[',\n",
" \"'There\",\n",
" 'comes',\n",
" 'a',\n",
" 'time',\n",
" 'in',\n",
" 'every',\n",
" 'fitness',\n",
" 'fiend’s',\n",
" 'journey',\n",
" 'when',\n",
" 'the',\n",
" 'same',\n",
" 'old',\n",
" 'routine',\n",
" 'starts',\n",
" 'to',\n",
" 'feel',\n",
" 'stale',\n",
" 'and',\n",
" 'boring\\\\xa0or',\n",
" 'even',\n",
" 'becomes',\n",
" 'less',\n",
" 'effective',\n",
" 'over',\n",
" 'time',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'last',\n",
" 'thing',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'do',\n",
" 'when',\n",
" 'that',\n",
" 'happens',\n",
" 'is',\n",
" 'to',\n",
" 'call',\n",
" 'it',\n",
" 'quits—you’ve',\n",
" 'worked',\n",
" 'too',\n",
" 'hard',\n",
" 'to',\n",
" 'throw',\n",
" 'in',\n",
" 'the',\n",
" 'towel',\n",
" 'just',\n",
" 'because',\n",
" 'your',\n",
" 'regular',\n",
" 'regimen',\n",
" 'could',\n",
" 'use',\n",
" 'an',\n",
" 'update',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Before\",\n",
" 'you’re',\n",
" 'buried',\n",
" 'in',\n",
" 'boredom',\n",
" ',',\n",
" 'look',\n",
" 'to',\n",
" 'the',\n",
" 'sky',\n",
" 'and',\n",
" 'majorly',\n",
" 'switch',\n",
" 'up',\n",
" 'your',\n",
" 'workout',\n",
" 'game',\n",
" '.',\n",
" 'Austin',\n",
" 'has',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'innovative',\n",
" 'ways',\n",
" 'to',\n",
" 'do',\n",
" 'just',\n",
" 'that',\n",
" ',',\n",
" 'but',\n",
" 'AcroYoga',\n",
" 'and',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" 'classes',\n",
" 'might',\n",
" 'be',\n",
" 'among',\n",
" 'the',\n",
" 'most',\n",
" 'fun',\n",
" 'and',\n",
" 'effective',\n",
" 'ways',\n",
" 'to',\n",
" 'get',\n",
" 'it',\n",
" 'done',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'these',\n",
" 'studios',\n",
" 'to',\n",
" 'fly',\n",
" 'above',\n",
" 'the',\n",
" 'basics',\n",
" 'and',\n",
" 'take',\n",
" 'your',\n",
" 'body',\n",
" 'to',\n",
" 'new',\n",
" ',',\n",
" 'healthy',\n",
" 'heights',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Priding',\n",
" 'themselves',\n",
" 'on',\n",
" 'challenging',\n",
" 'the',\n",
" 'notion',\n",
" 'of',\n",
" 'being',\n",
" 'earthbound',\n",
" ',',\n",
" 'Four',\n",
" 'Elements',\n",
" 'offers',\n",
" 'a',\n",
" 'range',\n",
" 'of',\n",
" 'classes',\n",
" 'in',\n",
" 'the',\n",
" 'aerial',\n",
" 'arts',\n",
" '.',\n",
" 'Opening',\n",
" 'in',\n",
" '2011',\n",
" 'with',\n",
" 'a',\n",
" 'focus',\n",
" 'on',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" ',',\n",
" 'this',\n",
" 'studio',\n",
" 'has',\n",
" 'since',\n",
" 'expanded',\n",
" 'to',\n",
" 'include',\n",
" 'classes',\n",
" 'in',\n",
" 'silks',\n",
" ',',\n",
" 'lyra',\n",
" ',',\n",
" 'pole',\n",
" ',',\n",
" 'and',\n",
" 'trapeze',\n",
" '.',\n",
" 'Located',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'downtown',\n",
" ',',\n",
" 'it’s',\n",
" 'perfect',\n",
" 'for',\n",
" 'an',\n",
" 'after-work',\n",
" ',',\n",
" 'pre-happy',\n",
" 'hour',\n",
" 'fun',\n",
" 'fitness',\n",
" 'stop',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'you’re',\n",
" 'interested',\n",
" 'in',\n",
" 'more',\n",
" 'performance-centered',\n",
" 'aerial',\n",
" 'arts',\n",
" ',',\n",
" 'then',\n",
" 'Sky',\n",
" 'Candy',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'place',\n",
" 'to',\n",
" 'dip',\n",
" 'your',\n",
" 'toes',\n",
" '.',\n",
" 'They',\n",
" 'offer',\n",
" 'over',\n",
" '60',\n",
" 'classes',\n",
" 'per',\n",
" 'week',\n",
" 'in',\n",
" 'the',\n",
" 'aerial',\n",
" 'and',\n",
" 'circus',\n",
" 'arts',\n",
" ',',\n",
" 'as',\n",
" 'well',\n",
" 'as',\n",
" 'open',\n",
" 'studio',\n",
" ',',\n",
" 'private',\n",
" 'lessons',\n",
" ',',\n",
" 'and',\n",
" 'workshops',\n",
" '.',\n",
" 'There’s',\n",
" 'also',\n",
" 'a',\n",
" 'regular',\n",
" 'student',\n",
" 'showcase',\n",
" 'that’ll',\n",
" 'allow',\n",
" 'you',\n",
" 'to',\n",
" 'show',\n",
" 'off',\n",
" 'all',\n",
" 'of',\n",
" 'your',\n",
" 'newfound',\n",
" 'moves',\n",
" 'to',\n",
" 'friends',\n",
" 'and',\n",
" 'family',\n",
" '.',\n",
" 'All',\n",
" 'ages',\n",
" ',',\n",
" 'experiences',\n",
" ',',\n",
" 'and',\n",
" 'aspirations',\n",
" 'are',\n",
" 'welcome',\n",
" 'to',\n",
" 'this',\n",
" 'studio',\n",
" 'tucked',\n",
" 'into',\n",
" 'the',\n",
" 'Eastside',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Yogabatics',\n",
" 'is',\n",
" 'all',\n",
" 'AcroYoga',\n",
" ',',\n",
" 'all',\n",
" 'the',\n",
" 'time',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'brand',\n",
" 'new',\n",
" 'to',\n",
" 'the',\n",
" 'aerial',\n",
" 'game',\n",
" 'or',\n",
" 'you’re',\n",
" 'a',\n",
" 'seasoned',\n",
" 'high-flying',\n",
" 'vet',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'classes',\n",
" 'here',\n",
" 'to',\n",
" 'fit',\n",
" 'your',\n",
" 'fancy',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'a',\n",
" 'newbie',\n",
" 'not',\n",
" 'quite',\n",
" 'ready',\n",
" 'to',\n",
" 'commit',\n",
" ',',\n",
" 'drop-in',\n",
" 'for',\n",
" 'a',\n",
" 'single',\n",
" 'class',\n",
" 'or',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'five-week',\n",
" 'beginner',\n",
" 'series',\n",
" 'to',\n",
" 'see',\n",
" 'what',\n",
" 'it’s',\n",
" 'all',\n",
" 'about',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'experienced',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'more',\n",
" 'advanced',\n",
" 'classes',\n",
" 'that',\n",
" 'will',\n",
" 'meet',\n",
" 'your',\n",
" 'needs',\n",
" ',',\n",
" 'like',\n",
" 'Handstand',\n",
" 'Mentorship',\n",
" 'and',\n",
" 'private',\n",
" ',',\n",
" 'one-on-one',\n",
" 'lessons',\n",
" '.',\n",
" 'Found',\n",
" 'on',\n",
" 'the',\n",
" 'corner',\n",
" 'of',\n",
" 'Research',\n",
" 'Blvd',\n",
" '.',\n",
" 'and',\n",
" 'Burnet',\n",
" ',',\n",
" 'it’s',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" 'for',\n",
" 'North-dwellers',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Mind',\n",
" 'Body',\n",
" 'Yoga',\n",
" 'is',\n",
" 'a',\n",
" 'popular',\n",
" 'go-to',\n",
" 'for',\n",
" 'North',\n",
" 'Austin',\n",
" 'yogis',\n",
" 'for',\n",
" 'its',\n",
" 'convenience',\n",
" ',',\n",
" 'affordability',\n",
" ',',\n",
" 'and',\n",
" 'energizing',\n",
" 'take',\n",
" 'on',\n",
" 'practice',\n",
" '.',\n",
" 'And',\n",
" 'now',\n",
" 'they’ve',\n",
" 'kicked',\n",
" 'their',\n",
" 'game',\n",
" 'up',\n",
" 'a',\n",
" 'notch',\n",
" 'further',\n",
" 'by',\n",
" 'offering',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" 'classes',\n",
" 'for',\n",
" 'beginners',\n",
" 'and',\n",
" 'experienced',\n",
" 'flyers',\n",
" 'alike',\n",
" '.',\n",
" 'With',\n",
" 'classes',\n",
" 'focusing',\n",
" 'on',\n",
" 'strength',\n",
" ',',\n",
" 'power',\n",
" ',',\n",
" 'and',\n",
" 'playfulness',\n",
" ',',\n",
" 'ranging',\n",
" 'from',\n",
" 'single',\n",
" 'intro',\n",
" 'classes',\n",
" 'to',\n",
" 'six-week',\n",
" 'series’',\n",
" ',',\n",
" 'there’s',\n",
" 'something',\n",
" 'for',\n",
" 'everyone',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'Just',\n",
" 'as',\n",
" 'the',\n",
" 'name',\n",
" 'suggests',\n",
" ',',\n",
" 'this',\n",
" 'studio',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" 'utilizing',\n",
" 'the',\n",
" 'therapeutic',\n",
" 'benefits',\n",
" 'of',\n",
" 'the',\n",
" 'aerial',\n",
" 'arts',\n",
" '.',\n",
" 'Setting',\n",
" 'up',\n",
" 'in',\n",
" 'South',\n",
" 'Austin',\n",
" ',',\n",
" 'the',\n",
" 'folks',\n",
" 'here',\n",
" 'are',\n",
" 'unique',\n",
" 'in',\n",
" 'that',\n",
" 'their',\n",
" 'classes',\n",
" 'are',\n",
" 'targeted',\n",
" 'at',\n",
" 'kids',\n",
" 'from',\n",
" 'the',\n",
" 'ages',\n",
" 'of',\n",
" '4-16',\n",
" '.',\n",
" 'Intertwining',\n",
" 'aerial',\n",
" 'yoga',\n",
" 'with',\n",
" 'mindfulness',\n",
" 'and',\n",
" 'sensory',\n",
" 'integration',\n",
" 'therapies',\n",
" ',',\n",
" 'their',\n",
" 'mission',\n",
" 'is',\n",
" 'to',\n",
" 'help',\n",
" 'your',\n",
" 'child',\n",
" 'explore',\n",
" 'his/her',\n",
" 'body',\n",
" ',',\n",
" 'development',\n",
" ',',\n",
" 'and',\n",
" 'abilities',\n",
" 'in',\n",
" 'a',\n",
" 'safe',\n",
" ',',\n",
" 'supportive',\n",
" ',',\n",
" 'and',\n",
" 'super',\n",
" 'fun',\n",
" 'environment',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'This',\n",
" 'studio',\n",
" 'goes',\n",
" 'beyond',\n",
" 'Aerial',\n",
" 'Yoga',\n",
" 'and',\n",
" 'offers',\n",
" 'a',\n",
" 'bevy',\n",
" 'of',\n",
" 'different',\n",
" 'classes',\n",
" 'aimed',\n",
" 'at',\n",
" 'helping',\n",
" 'you',\n",
" 'fly',\n",
" 'high',\n",
" ',',\n",
" 'including',\n",
" 'Aerial',\n",
" 'Silks',\n",
" ',',\n",
" 'Silks',\n",
" 'for',\n",
" 'Kids',\n",
" ',',\n",
" 'Aerial',\n",
" 'Dance',\n",
" ',',\n",
" 'and',\n",
" 'Aerial',\n",
" 'Harness',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'opt',\n",
" 'to',\n",
" 'enroll',\n",
" 'in',\n",
" 'a',\n",
" 'class',\n",
" 'series',\n",
" ',',\n",
" 'you',\n",
" 'also',\n",
" 'get',\n",
" 'an',\n",
" 'unlimited',\n",
" 'pass',\n",
" 'to',\n",
" 'practice',\n",
" 'and',\n",
" 'hone',\n",
" 'your',\n",
" 'skills',\n",
" 'at',\n",
" 'their',\n",
" 'Open',\n",
" 'Studio',\n",
" 'sessions',\n",
" '.',\n",
" 'Find',\n",
" 'them',\n",
" 'every',\n",
" 'day',\n",
" 'of',\n",
" 'the',\n",
" 'week',\n",
" 'nestled',\n",
" 'deep',\n",
" 'into',\n",
" 'South',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'If',\n",
" 'you',\n",
" 'already',\n",
" 'have',\n",
" 'some',\n",
" 'familiarity',\n",
" 'with',\n",
" 'the',\n",
" 'AcroYoga',\n",
" 'scene',\n",
" ',',\n",
" 'then',\n",
" 'the',\n",
" 'Austin',\n",
" 'AcroYoga',\n",
" 'Jam',\n",
" 'is',\n",
" 'an',\n",
" 'awesome',\n",
" 'way',\n",
" 'to',\n",
" 'improve',\n",
" 'your',\n",
" 'practice',\n",
" 'and',\n",
" 'connect',\n",
" 'with',\n",
" 'like-minded',\n",
" 'yogis',\n",
" '.',\n",
" 'Every',\n",
" 'Friday',\n",
" 'night',\n",
" 'from',\n",
" '730pm-230am',\n",
" ',',\n",
" 'any',\n",
" 'and',\n",
" 'everyone',\n",
" 'is',\n",
" 'invited',\n",
" 'to',\n",
" 'head',\n",
" 'to',\n",
" 'South',\n",
" 'Austin',\n",
" 'to',\n",
" '“Jam”—a',\n",
" 'playful',\n",
" ',',\n",
" 'open',\n",
" 'practice',\n",
" 'opportunity',\n",
" 'for',\n",
" 'folks',\n",
" 'to',\n",
" 'gather',\n",
" 'together',\n",
" 'and',\n",
" 'work',\n",
" 'through',\n",
" 'different',\n",
" 'moves',\n",
" '.',\n",
" 'Fly',\n",
" 'high',\n",
" ',',\n",
" 'dear',\n",
" 'yogi',\n",
" '!',\n",
" 'Fly',\n",
" 'high',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Given\",\n",
" 'that',\n",
" 'there’s',\n",
" 'a',\n",
" 'yoga',\n",
" 'studio',\n",
" 'on',\n",
" 'practically',\n",
" 'every',\n",
" 'corner',\n",
" 'and',\n",
" 'the',\n",
" 'river',\n",
" 'is',\n",
" 'never',\n",
" 'without',\n",
" 'its',\n",
" 'paddlers',\n",
" ',',\n",
" 'it’s',\n",
" 'no',\n",
" 'secret',\n",
" 'that',\n",
" 'Austinites',\n",
" 'love',\n",
" 'fitness',\n",
" 'in',\n",
" 'all',\n",
" 'its',\n",
" 'forms',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'figure',\n",
" 'there’s',\n",
" 'no',\n",
" 'better',\n",
" 'way',\n",
" 'to',\n",
" 'celebrate',\n",
" 'our',\n",
" 'culture',\n",
" 'of',\n",
" 'fitness',\n",
" 'than',\n",
" 'with',\n",
" 'a',\n",
" 'rundown',\n",
" 'of',\n",
" 'the',\n",
" 'most',\n",
" 'unique',\n",
" ',',\n",
" 'must-try',\n",
" 'fitness',\n",
" 'events',\n",
" 'in',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'This',\n",
" 'is',\n",
" 'the',\n",
" 'ultimate',\n",
" ',',\n",
" 'the',\n",
" 'annual',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'awesome',\n",
" 'for',\n",
" 'active',\n",
" 'happenings',\n",
" '.',\n",
" 'See',\n",
" 'how',\n",
" 'many',\n",
" 'items',\n",
" 'you',\n",
" 'can',\n",
" 'check',\n",
" 'off',\n",
" 'of',\n",
" 'our',\n",
" 'bucket',\n",
" 'list',\n",
" 'for',\n",
" 'fitness',\n",
" 'fiends',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Hosted\",\n",
" 'by',\n",
" 'the',\n",
" 'Atomic',\n",
" 'Athlete',\n",
" 'on',\n",
" 'the',\n",
" 'Eastside',\n",
" ',',\n",
" 'Night',\n",
" 'Ops',\n",
" 'is',\n",
" 'an',\n",
" 'extreme',\n",
" 'challenge',\n",
" 'for',\n",
" 'the',\n",
" 'mentally',\n",
" 'fit',\n",
" 'and',\n",
" 'physically',\n",
" 'strong',\n",
" '.',\n",
" 'Your',\n",
" 'mission',\n",
" ',',\n",
" 'should',\n",
" 'you',\n",
" 'choose',\n",
" 'to',\n",
" 'accept',\n",
" 'it',\n",
" ',',\n",
" 'will',\n",
" 'involve',\n",
" 'solving',\n",
" 'riddles',\n",
" 'at',\n",
" 'various',\n",
" 'checkpoints',\n",
" 'around',\n",
" 'the',\n",
" 'city',\n",
" 'where',\n",
" 'you’ll',\n",
" 'need',\n",
" 'to',\n",
" 'complete',\n",
" 'difficult',\n",
" 'tasks',\n",
" 'to',\n",
" 'move',\n",
" 'on',\n",
" '.',\n",
" 'The',\n",
" 'tasks',\n",
" 'are',\n",
" 'ever-evolving',\n",
" ',',\n",
" 'ranging',\n",
" 'from',\n",
" 'plunging',\n",
" 'into',\n",
" 'muddy',\n",
" 'water',\n",
" 'for',\n",
" 'a',\n",
" 'fishing',\n",
" 'bobber',\n",
" 'to',\n",
" 'having',\n",
" 'to',\n",
" 'unchain',\n",
" 'and',\n",
" 'carry',\n",
" 'a',\n",
" 'cinderblock',\n",
" 'for',\n",
" 'the',\n",
" 'duration',\n",
" 'of',\n",
" 'the',\n",
" 'race',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'you’ll',\n",
" 'be',\n",
" 'wearing',\n",
" 'a',\n",
" 'weighted',\n",
" 'vest',\n",
" 'the',\n",
" 'whole',\n",
" 'time',\n",
" '.',\n",
" 'Enter',\n",
" 'if',\n",
" 'you',\n",
" 'dare',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Maybe\",\n",
" 'you’d',\n",
" 'like',\n",
" 'your',\n",
" 'nighttime',\n",
" 'fitness',\n",
" 'to',\n",
" 'come',\n",
" 'with',\n",
" 'slightly',\n",
" 'less',\n",
" 'intensity',\n",
" '.',\n",
" 'In',\n",
" 'that',\n",
" 'case',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'Barton',\n",
" 'Springs',\n",
" 'every',\n",
" 'month',\n",
" 'for',\n",
" 'the',\n",
" 'Full',\n",
" 'Moon',\n",
" 'Swim',\n",
" '.',\n",
" 'For',\n",
" 'years',\n",
" ',',\n",
" 'regardless',\n",
" 'of',\n",
" 'the',\n",
" 'season',\n",
" ',',\n",
" 'hundreds',\n",
" 'of',\n",
" 'Austinites',\n",
" 'gather',\n",
" 'at',\n",
" 'Barton',\n",
" 'Springs',\n",
" 'on',\n",
" 'those',\n",
" 'nights',\n",
" 'when',\n",
" 'the',\n",
" 'moon',\n",
" 'is',\n",
" 'full',\n",
" 'and',\n",
" 'bright',\n",
" ',',\n",
" 'and',\n",
" 'howl',\n",
" 'their',\n",
" 'werewolf-wannabe',\n",
" 'lungs',\n",
" 'out',\n",
" 'as',\n",
" 'they',\n",
" 'tread',\n",
" 'in',\n",
" 'the',\n",
" '68-degree',\n",
" 'water',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'No\",\n",
" 'bucket',\n",
" 'list',\n",
" 'is',\n",
" 'complete',\n",
" 'without',\n",
" 'a',\n",
" 'full',\n",
" 'marathon',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'Austin',\n",
" 'Marathon',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'one',\n",
" 'to',\n",
" 'check',\n",
" 'off',\n",
" '.',\n",
" 'Beginning',\n",
" '25',\n",
" 'years',\n",
" 'ago',\n",
" ',',\n",
" 'this',\n",
" 'marathon',\n",
" 'starts',\n",
" 'and',\n",
" 'finishes',\n",
" 'on',\n",
" 'Congress',\n",
" ',',\n",
" 'winding',\n",
" 'through',\n",
" 'the',\n",
" 'city',\n",
" 'streets',\n",
" 'as',\n",
" 'residents',\n",
" 'cheer',\n",
" 'runners',\n",
" 'on',\n",
" 'at',\n",
" 'every',\n",
" 'mile',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’re',\n",
" 'worried',\n",
" 'about',\n",
" 'heat',\n",
" ',',\n",
" 'don’t',\n",
" 'be—the',\n",
" 'marathon',\n",
" 'runs',\n",
" 'every',\n",
" 'winter',\n",
" ',',\n",
" 'when',\n",
" 'it’s',\n",
" 'perfect',\n",
" 'running',\n",
" 'weather',\n",
" 'for',\n",
" 'Austinites',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Fitness\",\n",
" 'is',\n",
" 'always',\n",
" 'more',\n",
" 'fun',\n",
" 'with',\n",
" 'friends',\n",
" ',',\n",
" 'especially',\n",
" 'our',\n",
" 'furry',\n",
" 'ones',\n",
" '.',\n",
" 'The',\n",
" 'Mighty',\n",
" 'Texas',\n",
" 'Dog',\n",
" 'Walk',\n",
" 'takes',\n",
" 'place',\n",
" 'every',\n",
" 'March',\n",
" 'at',\n",
" 'Auditorium',\n",
" 'Shores',\n",
" '.',\n",
" 'Hundreds',\n",
" 'of',\n",
" 'humans',\n",
" 'and',\n",
" 'their',\n",
" 'pups',\n",
" 'gather',\n",
" 'for',\n",
" 'goody',\n",
" 'bags',\n",
" ',',\n",
" 'vet',\n",
" 'advice',\n",
" ',',\n",
" 'dog',\n",
" 'food',\n",
" 'samples',\n",
" ',',\n",
" 'games',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'a',\n",
" 'massive',\n",
" 'dog',\n",
" 'walk',\n",
" '.',\n",
" 'The',\n",
" 'best',\n",
" 'part',\n",
" '?',\n",
" 'All',\n",
" 'proceeds',\n",
" 'go',\n",
" 'to',\n",
" 'Service',\n",
" 'Dogs',\n",
" 'Inc.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'a',\n",
" 'triathlon',\n",
" 'is',\n",
" 'something',\n",
" 'you’d',\n",
" 'like',\n",
" 'to',\n",
" 'check',\n",
" 'off',\n",
" 'your',\n",
" 'bucket',\n",
" 'list',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'thought',\n",
" 'of',\n",
" 'all',\n",
" 'that',\n",
" 'mileage',\n",
" 'is',\n",
" 'a',\n",
" 'little',\n",
" 'intimidating',\n",
" ',',\n",
" 'then',\n",
" 'get',\n",
" 'your',\n",
" 'feet',\n",
" 'wet',\n",
" 'at',\n",
" 'the',\n",
" 'Rookie',\n",
" 'Tri',\n",
" '.',\n",
" 'Featuring',\n",
" 'a',\n",
" '300-meter',\n",
" 'swim',\n",
" 'monitored',\n",
" 'by',\n",
" 'lifeguards',\n",
" 'on',\n",
" 'Decker',\n",
" 'Lake',\n",
" ',',\n",
" 'an',\n",
" '11-mile',\n",
" 'bike',\n",
" 'ride',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" '2-mile',\n",
" 'run',\n",
" 'on',\n",
" 'easy',\n",
" 'paths',\n",
" 'through',\n",
" 'the',\n",
" 'park',\n",
" ',',\n",
" 'it’s',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'a',\n",
" 'triathlon',\n",
" 'under',\n",
" 'your',\n",
" 'belt',\n",
" 'without',\n",
" 'feeling',\n",
" 'like',\n",
" 'you’re',\n",
" 'going',\n",
" 'to',\n",
" 'die',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'and',\n",
" 'three',\n",
" 'friends',\n",
" 'can',\n",
" 'get',\n",
" 'together',\n",
" 'to',\n",
" 'compete',\n",
" 'in',\n",
" 'the',\n",
" 'annual',\n",
" '10-mile',\n",
" 'race',\n",
" 'that',\n",
" 'is',\n",
" 'the',\n",
" 'Zilker',\n",
" 'Relays',\n",
" 'at',\n",
" 'Zilker',\n",
" 'Park',\n",
" '.',\n",
" 'Each',\n",
" 'participant',\n",
" 'will',\n",
" 'run',\n",
" '2.5',\n",
" 'miles',\n",
" 'around',\n",
" 'the',\n",
" 'park',\n",
" 'before',\n",
" 'passing',\n",
" 'the',\n",
" 'baton',\n",
" 'to',\n",
" 'their',\n",
" 'teammate',\n",
" '.',\n",
" 'Come',\n",
" 'for',\n",
" 'the',\n",
" 'race',\n",
" 'and',\n",
" 'stay',\n",
" 'for',\n",
" 'the',\n",
" 'post-race',\n",
" 'festival',\n",
" ',',\n",
" 'which',\n",
" 'includes',\n",
" 'an',\n",
" 'abundance',\n",
" 'of',\n",
" 'drinks',\n",
" 'and',\n",
" 'live',\n",
" 'music',\n",
" 'to',\n",
" 'celebrate',\n",
" 'your',\n",
" 'team’s',\n",
" 'hard',\n",
" 'work',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Our\",\n",
" 'weather',\n",
" 'is',\n",
" 'nice',\n",
" 'nearly',\n",
" 'year-round',\n",
" ',',\n",
" 'but',\n",
" 'that',\n",
" 'doesn’t',\n",
" 'mean',\n",
" 'we',\n",
" 'don’t',\n",
" 'enjoy',\n",
" 'a',\n",
" 'little',\n",
" 'holiday',\n",
" 'chill',\n",
" '.',\n",
" 'Every',\n",
" 'winter',\n",
" ',',\n",
" 'Whole',\n",
" 'Foods',\n",
" 'downtown',\n",
" 'becomes',\n",
" 'a',\n",
" 'full-service',\n",
" 'ice',\n",
" 'rink',\n",
" '.',\n",
" 'The',\n",
" 'rink',\n",
" 'is',\n",
" 'installed',\n",
" 'on',\n",
" 'the',\n",
" 'rooftop',\n",
" 'along',\n",
" 'with',\n",
" 'ice',\n",
" 'skate',\n",
" 'rentals',\n",
" 'and',\n",
" 'generous',\n",
" 'doses',\n",
" 'of',\n",
" 'hot',\n",
" 'cocoa',\n",
" '.',\n",
" 'Add',\n",
" 'tunes',\n",
" 'to',\n",
" 'the',\n",
" 'mix',\n",
" 'and',\n",
" 'you’ll',\n",
" 'feel',\n",
" 'like',\n",
" 'you’re',\n",
" 'in',\n",
" 'a',\n",
" 'winter',\n",
" 'wonderland',\n",
" 'right',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'Texas',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'What’s\",\n",
" 'that',\n",
" '?',\n",
" 'Free',\n",
" 'fitness',\n",
" ',',\n",
" 'you',\n",
" 'say',\n",
" '?',\n",
" 'Sign',\n",
" 'us',\n",
" 'up',\n",
" '!',\n",
" 'Each',\n",
" 'September',\n",
" ',',\n",
" 'loads',\n",
" 'of',\n",
" 'yoga',\n",
" 'studios',\n",
" 'around',\n",
" 'Austin',\n",
" 'offer',\n",
" 'free',\n",
" 'classes',\n",
" 'to',\n",
" 'anyone',\n",
" 'who',\n",
" 'wants',\n",
" 'to',\n",
" 'take',\n",
" 'advantage',\n",
" 'of',\n",
" '‘em',\n",
" '.',\n",
" 'With',\n",
" 'so',\n",
" 'many',\n",
" 'yoga',\n",
" 'studios',\n",
" 'around',\n",
" 'Austin',\n",
" ',',\n",
" 'you’re',\n",
" 'bound',\n",
" 'to',\n",
" 'find',\n",
" 'a',\n",
" 'freebie',\n",
" 'class',\n",
" 'no',\n",
" 'matter',\n",
" 'what',\n",
" 'time',\n",
" 'of',\n",
" 'day',\n",
" 'you',\n",
" 'choose',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'stretch',\n",
" 'on',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Single\",\n",
" '?',\n",
" 'Don’t',\n",
" 'fret',\n",
" '!',\n",
" 'Duos',\n",
" 'of',\n",
" 'all',\n",
" 'kinds',\n",
" 'are',\n",
" 'encouraged',\n",
" 'to',\n",
" 'check',\n",
" 'out',\n",
" 'this',\n",
" 'triathlon',\n",
" '.',\n",
" 'So',\n",
" 'grab',\n",
" 'a',\n",
" 'friend',\n",
" ',',\n",
" 'neighbor',\n",
" ',',\n",
" 'sibling',\n",
" ',',\n",
" 'or',\n",
" 'an',\n",
" 'unsuspecting',\n",
" 'stranger',\n",
" 'off',\n",
" 'the',\n",
" 'street',\n",
" 'to',\n",
" 'join',\n",
" 'you',\n",
" 'for',\n",
" 'this',\n",
" 'triathlon',\n",
" 'sprint',\n",
" '.',\n",
" 'Expect',\n",
" 'a',\n",
" '500-meter',\n",
" 'swim',\n",
" ',',\n",
" 'an',\n",
" '11.2-mile',\n",
" 'bike',\n",
" 'ride',\n",
" ',',\n",
" 'a',\n",
" '3.1-mile',\n",
" 'run',\n",
" 'across',\n",
" 'mixed',\n",
" 'terrain',\n",
" ',',\n",
" 'and',\n",
" 'some',\n",
" 'serious',\n",
" 'bonding',\n",
" 'with',\n",
" 'your',\n",
" 'partner',\n",
" 'of',\n",
" 'choice',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'don’t',\n",
" 'know',\n",
" 'Austin',\n",
" 'until',\n",
" 'you’ve',\n",
" 'seen',\n",
" 'it',\n",
" 'from',\n",
" 'atop',\n",
" 'a',\n",
" 'paddleboard',\n",
" '.',\n",
" 'Open',\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'everyday',\n",
" 'for',\n",
" 'as',\n",
" 'long',\n",
" 'as',\n",
" 'the',\n",
" 'sun',\n",
" 'is',\n",
" 'out',\n",
" ',',\n",
" 'SUP',\n",
" 'ATX',\n",
" 'downtown',\n",
" 'is',\n",
" 'a',\n",
" 'must-try',\n",
" 'for',\n",
" 'Austinites',\n",
" '.',\n",
" 'Right',\n",
" 'off',\n",
" 'of',\n",
" 'the',\n",
" 'hike',\n",
" 'and',\n",
" 'bike',\n",
" 'trail',\n",
" 'on',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'is',\n",
" 'where',\n",
" 'you’ll',\n",
" 'find',\n",
" 'a',\n",
" 'fleet',\n",
" 'of',\n",
" 'paddle',\n",
" 'boards',\n",
" 'ripe',\n",
" 'for',\n",
" 'renting',\n",
" '.',\n",
" 'Rent',\n",
" 'a',\n",
" 'board',\n",
" 'for',\n",
" 'an',\n",
" 'hour',\n",
" 'or',\n",
" 'sign',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'monthly',\n",
" 'membership',\n",
" 'to',\n",
" 'take',\n",
" 'your',\n",
" 'SUP',\n",
" 'to',\n",
" 'the',\n",
" 'next',\n",
" 'level',\n",
" '.',\n",
" 'The',\n",
" 'best',\n",
" 'part',\n",
" '?',\n",
" 'Pets',\n",
" 'are',\n",
" 'welcome',\n",
" ',',\n",
" 'so',\n",
" 'bring',\n",
" 'your',\n",
" 'pooch',\n",
" 'along',\n",
" 'to',\n",
" 'enjoy',\n",
" 'the',\n",
" 'ride',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Closing\",\n",
" 'out',\n",
" 'our',\n",
" 'list',\n",
" 'is',\n",
" 'Austin’s',\n",
" 'oldest',\n",
" 'annual',\n",
" 'race',\n",
" ',',\n",
" 'the',\n",
" 'Statesman',\n",
" 'Capitol',\n",
" '10K',\n",
" '.',\n",
" 'Celebrating',\n",
" 'our',\n",
" 'culture',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'food',\n",
" ',',\n",
" 'and',\n",
" 'festivities',\n",
" ',',\n",
" 'runners',\n",
" 'will',\n",
" 'wind',\n",
" 'through',\n",
" 'central',\n",
" 'Austin',\n",
" 'neighborhoods',\n",
" 'and',\n",
" 'finish',\n",
" 'up',\n",
" 'at',\n",
" 'Auditorium',\n",
" 'Shores',\n",
" 'for',\n",
" 'the',\n",
" 'Finish',\n",
" 'Line',\n",
" 'Festival',\n",
" '.',\n",
" 'You’ll',\n",
" 'be',\n",
" 'treated',\n",
" 'to',\n",
" 'live',\n",
" 'music',\n",
" 'throughout',\n",
" 'the',\n",
" 'route',\n",
" ',',\n",
" 'and',\n",
" 'find',\n",
" 'food',\n",
" 'trucks',\n",
" ',',\n",
" 'a',\n",
" 'beer',\n",
" 'garden',\n",
" ',',\n",
" 'and',\n",
" 'plenty',\n",
" 'of',\n",
" 'vendors',\n",
" 'to',\n",
" 'reward',\n",
" 'you',\n",
" 'at',\n",
" 'the',\n",
" 'finish',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Where\",\n",
" 'do',\n",
" 'you',\n",
" 'head',\n",
" 'to',\n",
" 'challenge',\n",
" 'yourself',\n",
" 'with',\n",
" 'a',\n",
" 'workout',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'must-try',\n",
" 'spot\\\\xa0that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" '\\\\xa0Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Where\",\n",
" 'do',\n",
" 'you',\n",
" 'head',\n",
" 'to',\n",
" 'challenge',\n",
" 'yourself',\n",
" 'with',\n",
" 'a',\n",
" 'workout',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'must-try',\n",
" ...],\n",
" ['[',\n",
" \"'Some\",\n",
" 'of',\n",
" 'us',\n",
" 'work',\n",
" 'on',\n",
" 'our',\n",
" 'fitness',\n",
" 'for',\n",
" 'health',\n",
" ',',\n",
" 'others',\n",
" 'work',\n",
" 'on',\n",
" 'it',\n",
" 'for',\n",
" 'a',\n",
" 'killer',\n",
" 'beach',\n",
" 'bod',\n",
" ',',\n",
" 'and',\n",
" 'still',\n",
" 'more',\n",
" 'do',\n",
" 'it',\n",
" 'so',\n",
" 'they',\n",
" 'can…',\n",
" 'Eat',\n",
" '.',\n",
" 'More',\n",
" '.',\n",
" 'Ice',\n",
" 'cream',\n",
" '!',\n",
" 'We’re',\n",
" 'right',\n",
" 'there',\n",
" 'with',\n",
" 'you',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'list',\n",
" 'is',\n",
" 'for',\n",
" 'the',\n",
" 'group',\n",
" 'that',\n",
" 'huffs',\n",
" 'and',\n",
" 'puffs',\n",
" 'in',\n",
" 'order',\n",
" 'to',\n",
" 'feel',\n",
" 'good',\n",
" 'about',\n",
" 'indulging',\n",
" 'in',\n",
" 'a',\n",
" 'heaping',\n",
" 'pile',\n",
" 'of',\n",
" 'cold',\n",
" ',',\n",
" 'creamy',\n",
" 'goodness',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'the',\n",
" 'best',\n",
" 'ice',\n",
" 'cream',\n",
" 'and',\n",
" 'milkshake',\n",
" 'spots',\n",
" 'Austin',\n",
" 'has',\n",
" 'to',\n",
" 'offer',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'No\",\n",
" 'list',\n",
" 'of',\n",
" 'Austin',\n",
" 'ice',\n",
" 'cream',\n",
" 'would',\n",
" 'be',\n",
" 'right',\n",
" 'nor',\n",
" 'complete',\n",
" 'without',\n",
" 'mentioning',\n",
" 'Lick',\n",
" '.',\n",
" 'Located',\n",
" 'on',\n",
" 'South',\n",
" 'Lamar',\n",
" 'next',\n",
" 'to',\n",
" 'the',\n",
" 'Alamo',\n",
" 'Drafthouse',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'option',\n",
" 'for',\n",
" 'keeping',\n",
" 'cool',\n",
" 'in',\n",
" 'the',\n",
" 'blazing',\n",
" 'heat',\n",
" '.',\n",
" 'What',\n",
" 'sets',\n",
" 'Lick',\n",
" 'apart',\n",
" 'is',\n",
" 'its',\n",
" 'emphasis',\n",
" 'on',\n",
" 'pure',\n",
" ',',\n",
" 'wholesome',\n",
" 'ingredients',\n",
" '.',\n",
" 'Forgoing',\n",
" 'artificial',\n",
" 'colors',\n",
" ',',\n",
" 'flavors',\n",
" ',',\n",
" 'and',\n",
" 'high',\n",
" 'fructose',\n",
" 'corn',\n",
" 'syrup',\n",
" 'altogether',\n",
" ',',\n",
" 'health',\n",
" 'nuts',\n",
" 'fiend',\n",
" 'for',\n",
" 'this',\n",
" 'place',\n",
" '.',\n",
" 'We',\n",
" 'die',\n",
" 'for',\n",
" 'the',\n",
" 'cayenne',\n",
" 'pepper-infused',\n",
" 'Too',\n",
" 'Hot',\n",
" 'Chocolate',\n",
" ',',\n",
" 'but',\n",
" 'you',\n",
" 'really',\n",
" 'can’t',\n",
" 'go',\n",
" 'wrong',\n",
" 'with',\n",
" 'anything',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'several',\n",
" 'locations',\n",
" 'throughout',\n",
" 'Austin',\n",
" ',',\n",
" 'Amy’s',\n",
" 'Ice',\n",
" 'Cream',\n",
" 'is',\n",
" 'a',\n",
" 'city',\n",
" 'staple',\n",
" '–',\n",
" 'and',\n",
" 'for',\n",
" 'very',\n",
" 'good',\n",
" '(',\n",
" 'and',\n",
" 'yummy',\n",
" ')',\n",
" 'reason',\n",
" '.',\n",
" 'In',\n",
" 'addition',\n",
" 'to',\n",
" 'seven',\n",
" 'standard',\n",
" ',',\n",
" 'mouth-watering',\n",
" 'flavors',\n",
" ',',\n",
" 'they',\n",
" 'have',\n",
" 'over',\n",
" '350',\n",
" 'others',\n",
" 'they',\n",
" 'rotate',\n",
" 'throughout',\n",
" 'the',\n",
" 'year',\n",
" '.',\n",
" 'They’re',\n",
" 'best',\n",
" 'known',\n",
" 'for',\n",
" 'the',\n",
" 'deliciousness',\n",
" 'that',\n",
" 'is',\n",
" 'their',\n",
" 'Mexican',\n",
" 'Vanilla',\n",
" 'ice',\n",
" 'cream',\n",
" '.',\n",
" 'But',\n",
" 'pretty',\n",
" 'much',\n",
" 'everything',\n",
" 'is',\n",
" 'awesome',\n",
" 'here',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'in',\n",
" 'for',\n",
" 'a',\n",
" 'healthy',\n",
" 'score',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'very',\n",
" 'worthy',\n",
" 'dairy-free',\n",
" 'fruit',\n",
" 'ices',\n",
" 'and',\n",
" 'frozen',\n",
" 'yogurt',\n",
" 'options',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'keep',\n",
" 'indulgences',\n",
" 'to',\n",
" 'a',\n",
" 'minimum',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'sweet',\n",
" 'treat',\n",
" 'in',\n",
" 'Hyde',\n",
" 'Park',\n",
" 'is',\n",
" 'equally',\n",
" 'perfect',\n",
" 'for',\n",
" 'cooling',\n",
" 'off',\n",
" 'during',\n",
" 'a',\n",
" 'steamy',\n",
" 'summer',\n",
" 'day',\n",
" 'and',\n",
" 'warming',\n",
" 'up',\n",
" 'during',\n",
" 'winter',\n",
" 'months',\n",
" '.',\n",
" 'Made',\n",
" 'of',\n",
" 'fresh',\n",
" 'fruit',\n",
" ',',\n",
" 'the',\n",
" 'house-made',\n",
" 'gelato',\n",
" 'is',\n",
" 'ridiculously',\n",
" 'rich',\n",
" ',',\n",
" 'creamy',\n",
" ',',\n",
" 'and',\n",
" 'sure',\n",
" 'to',\n",
" 'satisfy',\n",
" 'your',\n",
" 'loudest',\n",
" 'craving',\n",
" '.',\n",
" 'But',\n",
" 'the',\n",
" 'real',\n",
" 'treasures',\n",
" 'here',\n",
" 'lie',\n",
" 'in',\n",
" 'this',\n",
" 'place’s',\n",
" 'unique',\n",
" 'concoctions',\n",
" ',',\n",
" 'such',\n",
" 'as',\n",
" 'the',\n",
" 'sorberita—think',\n",
" 'sorbet',\n",
" 'mixed',\n",
" 'with',\n",
" 'the',\n",
" 'best',\n",
" 'margarita',\n",
" 'you’ve',\n",
" 'ever',\n",
" 'had',\n",
" '.',\n",
" 'Um',\n",
" ',',\n",
" 'yes',\n",
" 'please',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'West\",\n",
" 'Campus',\n",
" 'houses',\n",
" 'this',\n",
" 'soft-serve',\n",
" 'ice',\n",
" 'cream',\n",
" 'truck',\n",
" 'of',\n",
" 'silky',\n",
" 'smooth',\n",
" 'goodness',\n",
" '.',\n",
" 'Here',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'go',\n",
" 'for',\n",
" 'the',\n",
" 'plain',\n",
" 'jane',\n",
" ',',\n",
" 'standard',\n",
" 'cone',\n",
" 'of',\n",
" 'ice',\n",
" 'cream…and',\n",
" 'you',\n",
" 'won’t',\n",
" 'be',\n",
" 'disappointed',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you',\n",
" 'really',\n",
" 'want',\n",
" 'to',\n",
" 'experience',\n",
" 'this',\n",
" 'place',\n",
" 'for',\n",
" 'all',\n",
" 'that',\n",
" 'it',\n",
" 'can',\n",
" 'offer',\n",
" ',',\n",
" 'cover',\n",
" 'your',\n",
" 'diet’s',\n",
" 'eyes',\n",
" 'and',\n",
" 'try',\n",
" 'a',\n",
" 'Stacker',\n",
" '–',\n",
" 'a',\n",
" 'glorious',\n",
" 'ice',\n",
" 'cream',\n",
" 'sundae',\n",
" 'done',\n",
" 'parfait-style',\n",
" ',',\n",
" 'stacked',\n",
" 'with',\n",
" 'ingredients',\n",
" 'like',\n",
" 'Dr.',\n",
" 'Pepper',\n",
" 'Chocolate',\n",
" 'sauce',\n",
" 'and',\n",
" 'Southern',\n",
" 'Cracker',\n",
" 'Candy',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Italian-native\",\n",
" 'owned',\n",
" 'Dolce',\n",
" 'Neve',\n",
" 'is',\n",
" 'the',\n",
" 'Bouldin',\n",
" 'Creek',\n",
" 'go-to',\n",
" 'for',\n",
" 'authentic',\n",
" 'gelato',\n",
" '.',\n",
" 'With',\n",
" 'skills',\n",
" 'honed',\n",
" 'at',\n",
" 'the',\n",
" 'Carpigiani',\n",
" 'Gelato',\n",
" 'University',\n",
" '(',\n",
" 'our',\n",
" 'new',\n",
" 'favorite',\n",
" 'school',\n",
" ')',\n",
" 'in',\n",
" 'Bologna',\n",
" ',',\n",
" 'Italy',\n",
" ',',\n",
" 'these',\n",
" 'owners',\n",
" 'aren’t',\n",
" 'messing',\n",
" 'around',\n",
" 'when',\n",
" 'it',\n",
" 'comes',\n",
" 'to',\n",
" 'their',\n",
" 'gelato-making',\n",
" 'efforts',\n",
" '.',\n",
" 'With',\n",
" 'treats',\n",
" 'like',\n",
" 'pecan',\n",
" 'butter',\n",
" 'cookies',\n",
" 'filled',\n",
" 'with',\n",
" 'goat',\n",
" 'cheese',\n",
" 'and',\n",
" 'wild',\n",
" 'blueberry',\n",
" 'jam',\n",
" 'gelato',\n",
" ',',\n",
" 'why',\n",
" 'are',\n",
" 'you',\n",
" 'still',\n",
" 'reading',\n",
" 'this',\n",
" 'when',\n",
" 'you',\n",
" 'could',\n",
" 'be',\n",
" 'on',\n",
" 'your',\n",
" 'way',\n",
" 'to',\n",
" 'getting',\n",
" 'down',\n",
" 'on',\n",
" 'that',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'take',\n",
" 'your',\n",
" 'ice',\n",
" 'cream',\n",
" 'without',\n",
" 'dairy',\n",
" ',',\n",
" 'there’s',\n",
" 'no',\n",
" 'better',\n",
" 'choice',\n",
" 'than',\n",
" 'Sweet',\n",
" 'Ritual',\n",
" '.',\n",
" 'Nestled',\n",
" 'inside',\n",
" 'the',\n",
" 'JuiceLand',\n",
" 'of',\n",
" 'Hyde',\n",
" 'Park',\n",
" ',',\n",
" 'this',\n",
" 'vegan',\n",
" 'favorite',\n",
" 'will',\n",
" 'leave',\n",
" 'you',\n",
" 'satisfied',\n",
" 'without',\n",
" 'the',\n",
" 'side',\n",
" 'of',\n",
" 'guilt',\n",
" '.',\n",
" 'Flavors',\n",
" 'like',\n",
" 'Salted',\n",
" 'Caramel',\n",
" ',',\n",
" 'Chocolate',\n",
" 'Chai',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'quirky',\n",
" '(',\n",
" 'and',\n",
" 'delicious',\n",
" ')',\n",
" 'Cinnamonkey',\n",
" 'Elephantastic',\n",
" 'make',\n",
" 'it',\n",
" 'nearly',\n",
" 'impossible',\n",
" 'to',\n",
" 'remember',\n",
" 'that',\n",
" 'there’s',\n",
" 'no',\n",
" 'dairy',\n",
" 'mixed',\n",
" 'in',\n",
" 'with',\n",
" 'this',\n",
" 'goodness',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’re\",\n",
" 'taking',\n",
" 'a',\n",
" 'slight',\n",
" 'right',\n",
" 'turn',\n",
" 'here',\n",
" 'to',\n",
" 'mention',\n",
" 'ice',\n",
" 'cream’s',\n",
" 'closest',\n",
" 'cousin',\n",
" '–',\n",
" 'the',\n",
" 'milkshake',\n",
" '!',\n",
" 'In',\n",
" 'addition',\n",
" 'to',\n",
" 'amazing',\n",
" 'burgers',\n",
" ',',\n",
" 'Hopdoddy',\n",
" 'offers',\n",
" 'incredible',\n",
" 'and',\n",
" 'impossibly',\n",
" 'scrumptious',\n",
" 'milkshakes',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'SoCo',\n",
" '.',\n",
" 'We’re',\n",
" 'talking',\n",
" 'flavors',\n",
" 'like',\n",
" 'Red',\n",
" 'Velvet',\n",
" 'Cake',\n",
" ',',\n",
" 'Oreo',\n",
" ',',\n",
" 'and',\n",
" '–',\n",
" 'wait',\n",
" 'for',\n",
" 'it',\n",
" '–',\n",
" 'Nutella',\n",
" '&',\n",
" 'Chocolate',\n",
" 'Pretzel…need',\n",
" 'we',\n",
" 'say',\n",
" 'more',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Open\",\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'everyday',\n",
" ',',\n",
" '24',\n",
" 'Diner',\n",
" 'on',\n",
" 'N.',\n",
" 'Lamar',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'spot',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'milkshake',\n",
" 'fix',\n",
" '.',\n",
" 'Okay',\n",
" ',',\n",
" 'not',\n",
" 'just',\n",
" 'great',\n",
" '.',\n",
" 'Awesome',\n",
" 'is',\n",
" 'the',\n",
" 'word',\n",
" 'we',\n",
" 'were',\n",
" 'looking',\n",
" 'for',\n",
" '.',\n",
" 'That’s',\n",
" 'because',\n",
" 'the',\n",
" 'shakes',\n",
" 'are',\n",
" 'made',\n",
" 'with',\n",
" 'local',\n",
" 'fruit',\n",
" ',',\n",
" 'single-origin',\n",
" 'chocolate',\n",
" ',',\n",
" 'and',\n",
" 'fair-trade',\n",
" 'locally',\n",
" 'roasted',\n",
" 'coffee',\n",
" '.',\n",
" 'So',\n",
" 'you',\n",
" 'can',\n",
" 'help',\n",
" 'the',\n",
" 'world',\n",
" 'while',\n",
" 'you',\n",
" 'feed',\n",
" 'your',\n",
" 'spirit',\n",
" 'with',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" 'milkshakes',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Every',\n",
" 'milkshake',\n",
" 'here',\n",
" 'is',\n",
" 'killer',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'Roasted',\n",
" 'Banana',\n",
" 'and',\n",
" 'Brown',\n",
" 'Sugar',\n",
" 'Shake',\n",
" 'is',\n",
" 'truly',\n",
" 'to',\n",
" 'die',\n",
" 'for',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'A\",\n",
" 'few',\n",
" 'extra',\n",
" 'minutes',\n",
" 'in',\n",
" 'the',\n",
" 'car',\n",
" 'is',\n",
" 'worth',\n",
" 'it',\n",
" 'for',\n",
" 'this',\n",
" 'authentic',\n",
" 'Mexican',\n",
" 'treat',\n",
" '.',\n",
" 'Located',\n",
" 'in',\n",
" 'Round',\n",
" 'Rock',\n",
" ',',\n",
" 'Paleteria',\n",
" 'La',\n",
" 'Selva',\n",
" 'ought',\n",
" 'to',\n",
" 'be',\n",
" 'your',\n",
" 'go-to',\n",
" 'for',\n",
" 'all',\n",
" 'things',\n",
" 'Mexican',\n",
" 'ice',\n",
" 'cream',\n",
" '.',\n",
" 'The',\n",
" 'favorites',\n",
" 'here',\n",
" 'are',\n",
" 'definitely',\n",
" 'their',\n",
" 'popsicles',\n",
" ',',\n",
" 'but',\n",
" 'we’re',\n",
" 'not',\n",
" 'talking',\n",
" 'your',\n",
" 'average',\n",
" 'joe',\n",
" ',',\n",
" 'run-of-the-mill',\n",
" 'pops',\n",
" '.',\n",
" 'With',\n",
" 'flavors',\n",
" 'like',\n",
" 'strawberry',\n",
" 'cheesecake',\n",
" 'and',\n",
" 'hot',\n",
" 'chocolate',\n",
" 'dipped',\n",
" 'in',\n",
" 'coconut',\n",
" ',',\n",
" 'you',\n",
" 'might',\n",
" 'never',\n",
" 'be',\n",
" 'able',\n",
" 'to',\n",
" 'eat',\n",
" 'an',\n",
" 'ordinary',\n",
" 'popsicle',\n",
" 'again',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'So\",\n",
" 'you',\n",
" 'just',\n",
" 'finished',\n",
" 'that',\n",
" 'long',\n",
" 'workout',\n",
" 'of',\n",
" 'yours',\n",
" '.',\n",
" 'Yeah',\n",
" ',',\n",
" 'you',\n",
" 'totally',\n",
" 'killed',\n",
" 'it',\n",
" '.',\n",
" '(',\n",
" 'props',\n",
" '!',\n",
" ')',\n",
" 'Now',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'refuel',\n",
" 'before',\n",
" 'crushing',\n",
" 'the',\n",
" 'rest',\n",
" 'of',\n",
" 'your',\n",
" 'day',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'How\",\n",
" 'about',\n",
" 'a',\n",
" 'fresh-squeezed',\n",
" ',',\n",
" 'locally-sourced',\n",
" ',',\n",
" 'organic',\n",
" ',',\n",
" 'made-to-order',\n",
" ',',\n",
" 'juice',\n",
" 'or',\n",
" 'smoothie',\n",
" '?',\n",
" 'We’ll',\n",
" 'take',\n",
" 'that',\n",
" 'drool',\n",
" 'on',\n",
" 'your',\n",
" 'face',\n",
" 'as',\n",
" 'a',\n",
" 'yes',\n",
" 'and',\n",
" 'suggest',\n",
" 'you',\n",
" 'check',\n",
" 'out',\n",
" 'this',\n",
" 'list',\n",
" 'of',\n",
" 'legit',\n",
" 'juice',\n",
" 'bars',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Offering',\n",
" 'delicious',\n",
" 'options',\n",
" 'and',\n",
" 'served',\n",
" 'by',\n",
" 'friendly',\n",
" 'locals',\n",
" ',',\n",
" 'these',\n",
" 'nourishing',\n",
" 'neighborhood',\n",
" 'spots',\n",
" 'are',\n",
" 'just',\n",
" 'too',\n",
" 'good',\n",
" 'to',\n",
" 'pass',\n",
" 'up',\n",
" '.',\n",
" 'So',\n",
" 'what',\n",
" 'are',\n",
" 'you',\n",
" 'waiting',\n",
" 'for',\n",
" '?',\n",
" 'Head',\n",
" 'to',\n",
" 'these',\n",
" 'nine',\n",
" 'juice',\n",
" 'and',\n",
" 'smoothie',\n",
" 'joints',\n",
" 'around',\n",
" 'town',\n",
" ',',\n",
" '\\\\xa0for',\n",
" 'a',\n",
" 'grab-and-go',\n",
" 'snack',\n",
" 'that’s',\n",
" 'actually',\n",
" 'good',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'spot',\n",
" 'might',\n",
" 'be',\n",
" 'Austin’s',\n",
" 'most',\n",
" 'well-known',\n",
" 'juice',\n",
" 'and',\n",
" 'smoothie',\n",
" 'bars',\n",
" '.',\n",
" 'JuiceLand',\n",
" 'offers',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'options',\n",
" 'and',\n",
" 'even',\n",
" 'more',\n",
" 'ways',\n",
" 'to',\n",
" 'customize',\n",
" 'them',\n",
" '.',\n",
" 'And',\n",
" 'with',\n",
" '14',\n",
" 'shops',\n",
" 'around',\n",
" 'the',\n",
" 'city',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'be',\n",
" 'positive',\n",
" 'they’re',\n",
" 'cranking',\n",
" 'out',\n",
" 'a',\n",
" 'lot',\n",
" 'of',\n",
" 'juice',\n",
" '.',\n",
" 'With',\n",
" 'hipster',\n",
" 'vibes',\n",
" 'and',\n",
" 'down',\n",
" 'right',\n",
" 'delicious',\n",
" 'drinks',\n",
" ',',\n",
" 'JuiceLand',\n",
" 'knows',\n",
" 'how',\n",
" 'to',\n",
" 'please',\n",
" 'the',\n",
" 'locals',\n",
" 'and',\n",
" 'keep',\n",
" '‘em',\n",
" 'coming',\n",
" 'back',\n",
" 'for',\n",
" 'more',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Raw\",\n",
" ',',\n",
" 'cold-pressed',\n",
" ',',\n",
" 'and',\n",
" '100',\n",
" '%',\n",
" 'organic',\n",
" ',',\n",
" 'oh',\n",
" 'my',\n",
" '!',\n",
" 'Honestly',\n",
" ',',\n",
" 'what',\n",
" 'more',\n",
" 'could',\n",
" 'you',\n",
" 'want',\n",
" 'in',\n",
" 'a',\n",
" 'juice',\n",
" '?',\n",
" 'Juice',\n",
" 'Society',\n",
" 'officially',\n",
" 'opened',\n",
" 'their',\n",
" 'doors',\n",
" 'in',\n",
" 'April',\n",
" '2016',\n",
" 'and',\n",
" 'it’s',\n",
" 'already',\n",
" 'a',\n",
" 'booming',\n",
" 'success',\n",
" '.',\n",
" 'Their',\n",
" 'juices',\n",
" 'are',\n",
" 'all',\n",
" 'prepackaged',\n",
" 'and',\n",
" 'packed',\n",
" 'full',\n",
" 'of',\n",
" 'clean',\n",
" 'nutrients',\n",
" 'that',\n",
" 'each',\n",
" 'serve',\n",
" 'a',\n",
" 'purpose',\n",
" ',',\n",
" 'meaning',\n",
" 'they',\n",
" 'don’t',\n",
" 'just',\n",
" 'throw',\n",
" 'ingredients',\n",
" 'in',\n",
" 'just',\n",
" 'because',\n",
" '.',\n",
" 'This',\n",
" 'quaint',\n",
" 'little',\n",
" 'space',\n",
" 'serves',\n",
" 'it',\n",
" 'up',\n",
" 'in',\n",
" 'a',\n",
" 'new',\n",
" 'South',\n",
" 'Lamar',\n",
" 'district',\n",
" 'surrounded',\n",
" 'by',\n",
" 'just',\n",
" 'about',\n",
" 'everything',\n",
" 'you',\n",
" 'can',\n",
" 'think',\n",
" 'of',\n",
" 'having',\n",
" 'to',\n",
" 'do',\n",
" 'with',\n",
" 'fitness',\n",
" ',',\n",
" 'food',\n",
" ',',\n",
" 'and',\n",
" 'shopping',\n",
" '!',\n",
" 'It',\n",
" 'makes',\n",
" 'for',\n",
" 'a',\n",
" 'pretty',\n",
" 'clutch',\n",
" 'stop',\n",
" 'on',\n",
" 'a',\n",
" 'beautiful',\n",
" 'outing',\n",
" 'with',\n",
" 'friends',\n",
" 'or',\n",
" 'family',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'From\",\n",
" 'being',\n",
" 'born',\n",
" 'and',\n",
" 'raised',\n",
" 'off',\n",
" 'of',\n",
" 'good',\n",
" 'ol’',\n",
" 'Barton',\n",
" 'Springs',\n",
" 'Road',\n",
" 'back',\n",
" 'in',\n",
" '2003',\n",
" 'to',\n",
" 'expanding',\n",
" 'with',\n",
" '11',\n",
" 'locations',\n",
" 'around',\n",
" 'Austin',\n",
" ',',\n",
" 'Houston',\n",
" ',',\n",
" 'and',\n",
" 'Nashville',\n",
" ',',\n",
" 'these',\n",
" 'guys',\n",
" 'obviously',\n",
" 'know',\n",
" 'a',\n",
" 'thing',\n",
" 'or',\n",
" 'two',\n",
" 'about',\n",
" 'juicing',\n",
" '.',\n",
" 'From',\n",
" 'the',\n",
" 'simplicity',\n",
" 'of',\n",
" 'a',\n",
" 'Pure',\n",
" '&',\n",
" 'Simple',\n",
" 'to',\n",
" 'the',\n",
" 'coconut/kale',\n",
" 'combo',\n",
" 'of',\n",
" 'the',\n",
" 'Depth',\n",
" 'Charge',\n",
" ',',\n",
" 'even',\n",
" 'the',\n",
" 'pickiest',\n",
" 'will',\n",
" 'find',\n",
" 'a',\n",
" 'juice',\n",
" 'to',\n",
" 'guzzle',\n",
" '.',\n",
" 'They',\n",
" 'pride',\n",
" 'themselves',\n",
" '(',\n",
" 'daily',\n",
" ')',\n",
" 'on',\n",
" 'their',\n",
" 'quality',\n",
" 'of',\n",
" 'ingredients',\n",
" 'and',\n",
" 'RAW',\n",
" ',',\n",
" 'cold-pressed',\n",
" '(',\n",
" 'never',\n",
" 'processed',\n",
" ')',\n",
" 'juices',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Parked\",\n",
" 'on',\n",
" 'S.',\n",
" 'Congress',\n",
" ',',\n",
" 'this',\n",
" 'incredibly',\n",
" 'Austin',\n",
" 'trailer',\n",
" 'offers',\n",
" 'ridiculously',\n",
" 'healthy',\n",
" 'and',\n",
" 'refreshing',\n",
" 'vegan',\n",
" 'and',\n",
" 'vegetarian',\n",
" 'option',\n",
" '.',\n",
" 'Although',\n",
" 'S.',\n",
" 'Congress',\n",
" 'is',\n",
" 'their',\n",
" 'main',\n",
" 'squeeze',\n",
" ',',\n",
" 'they',\n",
" 'pack',\n",
" 'up',\n",
" 'shop',\n",
" 'and',\n",
" 'drive',\n",
" 'to',\n",
" 'events',\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" '.',\n",
" 'Bonus',\n",
" ':',\n",
" 'Not',\n",
" 'only',\n",
" 'do',\n",
" 'they',\n",
" 'offer',\n",
" 'freshly',\n",
" 'squeezed',\n",
" 'juices',\n",
" 'but',\n",
" 'also',\n",
" 'menu',\n",
" 'items',\n",
" 'like',\n",
" 'smoothies',\n",
" ',',\n",
" 'granola',\n",
" 'bowls',\n",
" ',',\n",
" 'salads',\n",
" ',',\n",
" 'and',\n",
" 'sandwiches',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Now\",\n",
" ',',\n",
" 'just',\n",
" 'because',\n",
" 'these',\n",
" 'juices',\n",
" 'are',\n",
" 'not',\n",
" 'made-to-order',\n",
" 'doesn’t',\n",
" 'mean',\n",
" 'you',\n",
" 'won’t',\n",
" 'get',\n",
" 'a',\n",
" 'refreshing',\n",
" 'feeling',\n",
" 'and',\n",
" 'an',\n",
" 'easy',\n",
" 'to',\n",
" 'grab-and-go',\n",
" '.',\n",
" 'Snap',\n",
" 'Kitchen',\n",
" 'packs',\n",
" 'these',\n",
" 'incredibly',\n",
" 'flavorful',\n",
" 'juices',\n",
" 'with',\n",
" 'all',\n",
" 'sorts',\n",
" 'of',\n",
" 'crazy',\n",
" 'ingredients',\n",
" 'that',\n",
" 'we',\n",
" 'would',\n",
" 'never',\n",
" 'willingly',\n",
" 'add',\n",
" 'to',\n",
" 'our',\n",
" 'shakes',\n",
" 'at',\n",
" 'home',\n",
" '(',\n",
" 'like',\n",
" 'garlic',\n",
" 'and',\n",
" 'cilantro',\n",
" '.',\n",
" ')',\n",
" 'Sounds',\n",
" 'weird',\n",
" ',',\n",
" 'we',\n",
" 'know',\n",
" ',',\n",
" 'but',\n",
" 'their',\n",
" '“Antioxidant',\n",
" 'Juice”',\n",
" 'pours',\n",
" 'it',\n",
" 'on',\n",
" 'HEAVY',\n",
" 'and',\n",
" 'makes',\n",
" 'the',\n",
" 'immune',\n",
" 'system',\n",
" 'feel',\n",
" 'like',\n",
" 'new',\n",
" 'again',\n",
" '.',\n",
" 'Of',\n",
" 'course',\n",
" ',',\n",
" 'they',\n",
" 'have',\n",
" 'options',\n",
" 'not',\n",
" 'so',\n",
" 'far',\n",
" 'off',\n",
" 'the',\n",
" 'beaten',\n",
" 'path',\n",
" '–',\n",
" 'like',\n",
" 'their',\n",
" '“Energy',\n",
" 'Boost”',\n",
" ',',\n",
" 'a',\n",
" 'is',\n",
" 'watermelon-based',\n",
" 'and',\n",
" '“Carrot',\n",
" 'Ginger',\n",
" 'Elixir”',\n",
" 'which',\n",
" ',',\n",
" 'well',\n",
" ',',\n",
" 'is',\n",
" 'just',\n",
" 'that',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Soup\",\n",
" 'Peddler’s',\n",
" 'owner',\n",
" '(',\n",
" 'David',\n",
" ')',\n",
" 'began',\n",
" 'his',\n",
" 'quest',\n",
" 'by',\n",
" 'delivering',\n",
" 'soups',\n",
" 'to',\n",
" 'the',\n",
" 'South',\n",
" 'Austin',\n",
" 'locals',\n",
" 'on',\n",
" 'his',\n",
" 'bike',\n",
" '(',\n",
" 'go',\n",
" 'figure',\n",
" ')',\n",
" '.',\n",
" 'After',\n",
" 'opening',\n",
" 'his',\n",
" 'first',\n",
" 'brick',\n",
" 'and',\n",
" 'mortar',\n",
" 'in',\n",
" '2010',\n",
" ',',\n",
" 'he',\n",
" 'began',\n",
" 'dabbling',\n",
" 'into',\n",
" 'the',\n",
" 'juice',\n",
" 'and',\n",
" 'smoothie',\n",
" 'business',\n",
" 'alongside',\n",
" 'his',\n",
" 'famed',\n",
" 'soups',\n",
" 'and',\n",
" 'hasn’t',\n",
" 'looked',\n",
" 'back',\n",
" 'since',\n",
" '.',\n",
" 'Now',\n",
" 'self-named',\n",
" '“liquid',\n",
" 'emporium”',\n",
" ',',\n",
" 'The',\n",
" 'Soup',\n",
" 'Peddler',\n",
" 'is',\n",
" 'sure',\n",
" 'to',\n",
" 'be',\n",
" 'your',\n",
" 'one-stop-shop',\n",
" 'for',\n",
" 'soups',\n",
" ',',\n",
" 'smoothies',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'juices',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Oh\",\n",
" ',',\n",
" 'you',\n",
" 'like',\n",
" 'juice',\n",
" ',',\n",
" 'huh',\n",
" '?',\n",
" 'Don’t',\n",
" 'expect',\n",
" '“just',\n",
" 'a',\n",
" 'juice”',\n",
" 'when',\n",
" 'you',\n",
" 'hit',\n",
" 'up',\n",
" 'this',\n",
" 'North',\n",
" 'Austin',\n",
" 'Spot',\n",
" '–',\n",
" 'they',\n",
" 'set',\n",
" 'themselves',\n",
" 'apart',\n",
" 'from',\n",
" 'the',\n",
" 'others',\n",
" 'with',\n",
" 'their',\n",
" 'attention',\n",
" 'to',\n",
" 'detail',\n",
" 'on',\n",
" 'the',\n",
" 'veggie',\n",
" 'and',\n",
" 'fruit',\n",
" 'combos',\n",
" '.',\n",
" 'The',\n",
" 'Juice',\n",
" 'Spot',\n",
" 'focuses',\n",
" 'on',\n",
" 'three',\n",
" 'components',\n",
" 'when',\n",
" 'making',\n",
" 'their',\n",
" 'signature',\n",
" 'juices',\n",
" ':',\n",
" 'Health',\n",
" ',',\n",
" 'Energy',\n",
" ',',\n",
" 'and',\n",
" 'Fun',\n",
" '!',\n",
" 'So',\n",
" 'if',\n",
" 'you’re',\n",
" 'having',\n",
" 'trouble',\n",
" 'deciding',\n",
" ',',\n",
" 'let',\n",
" 'the',\n",
" 'name',\n",
" 'help',\n",
" 'you',\n",
" 'decide',\n",
" '.',\n",
" 'But',\n",
" 'we’re',\n",
" 'going',\n",
" 'to',\n",
" 'be',\n",
" 'honest',\n",
" ',',\n",
" 'gang',\n",
" '.',\n",
" 'There’s',\n",
" 'really',\n",
" 'no',\n",
" 'going',\n",
" 'wrong',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'could',\n",
" 'also',\n",
" 'call',\n",
" 'this',\n",
" 'spot',\n",
" 'straws',\n",
" 'and',\n",
" 'spoons\\\\xa0because',\n",
" 'that’s',\n",
" 'how',\n",
" 'you',\n",
" 'sip',\n",
" 'your',\n",
" 'smoothie',\n",
" 'or',\n",
" 'snack',\n",
" 'on',\n",
" 'your',\n",
" 'acai',\n",
" 'bowl',\n",
" '.',\n",
" 'Each',\n",
" 'menu',\n",
" 'item',\n",
" 'combines',\n",
" 'delicious',\n",
" 'and',\n",
" 'nutritious',\n",
" 'ingredients',\n",
" ',',\n",
" 'like',\n",
" 'fresh',\n",
" 'fruit',\n",
" ',',\n",
" 'nuts',\n",
" ',',\n",
" 'granola',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'superfoods',\n",
" ',',\n",
" 'into',\n",
" 'grab',\n",
" 'and',\n",
" 'go',\n",
" 'concoctions',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'want',\n",
" 'something',\n",
" 'to',\n",
" 'sip',\n",
" ',',\n",
" 'go',\n",
" 'with',\n",
" 'a',\n",
" 'blender',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'spoon',\n",
" ',',\n",
" 'the',\n",
" 'bowl',\n",
" 'is',\n",
" 'your',\n",
" 'best',\n",
" 'bet',\n",
" '.',\n",
" 'Be',\n",
" 'on',\n",
" 'the',\n",
" 'lookout',\n",
" 'for',\n",
" 'Blenders',\n",
" 'and',\n",
" 'Bowls',\n",
" 'locations',\n",
" 'popping',\n",
" 'up',\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'newest',\n",
" 'juice',\n",
" 'bars',\n",
" 'to',\n",
" 'join',\n",
" 'the',\n",
" 'North',\n",
" 'Austin',\n",
" 'neighborhoods',\n",
" ',',\n",
" 'O’',\n",
" 'Joy',\n",
" 'not',\n",
" 'only',\n",
" 'makes',\n",
" 'delicious',\n",
" 'drinks',\n",
" 'but',\n",
" 'know',\n",
" 'giving',\n",
" 'back',\n",
" 'is',\n",
" 'what',\n",
" 'makes',\n",
" 'it',\n",
" 'all',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" 'The',\n",
" 'husband',\n",
" 'and',\n",
" 'wife',\n",
" 'power',\n",
" 'couple',\n",
" ',',\n",
" 'Michael',\n",
" 'and',\n",
" 'Ghena',\n",
" ',',\n",
" 'let',\n",
" 'the',\n",
" 'juice',\n",
" 'flow',\n",
" 'from',\n",
" 'their',\n",
" 'North',\n",
" 'Burnet',\n",
" 'spot',\n",
" '.',\n",
" 'And',\n",
" 'both',\n",
" 'are',\n",
" 'extremely',\n",
" 'passionate',\n",
" 'about',\n",
" 'sustainable',\n",
" 'food',\n",
" 'practices',\n",
" 'and',\n",
" 'healthy',\n",
" 'living',\n",
" '.',\n",
" 'With',\n",
" 'the',\n",
" 'purchase',\n",
" 'of',\n",
" 'any',\n",
" 'menu',\n",
" 'item',\n",
" ',',\n",
" 'a',\n",
" 'meal',\n",
" 'is',\n",
" 'donated',\n",
" 'to',\n",
" 'a',\n",
" 'child',\n",
" 'living',\n",
" 'in',\n",
" 'poverty',\n",
" 'in',\n",
" 'a',\n",
" 'developing',\n",
" 'country',\n",
" '.',\n",
" 'Did',\n",
" 'we',\n",
" 'mention',\n",
" 'they',\n",
" 'use',\n",
" 'local/organic',\n",
" 'products',\n",
" 'whenever',\n",
" 'possible',\n",
" '?',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Have\",\n",
" 'a',\n",
" 'go-to',\n",
" 'Juice',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Have\",\n",
" 'a',\n",
" 'go-to',\n",
" 'Juice',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" ...],\n",
" ['[',\n",
" \"'Long\",\n",
" 'live',\n",
" 'mimosas',\n",
" ',',\n",
" 'syrupy',\n",
" 'french',\n",
" 'toast',\n",
" ',',\n",
" 'and',\n",
" 'greasy',\n",
" 'grits',\n",
" '!',\n",
" 'But',\n",
" 'if',\n",
" 'we',\n",
" 'want',\n",
" 'to',\n",
" 'live',\n",
" 'long',\n",
" 'too',\n",
" ',',\n",
" 'our',\n",
" 'brunch',\n",
" 'indulgences',\n",
" 'can’t',\n",
" 'always',\n",
" 'look',\n",
" 'like',\n",
" 'an',\n",
" 'impending',\n",
" 'heart',\n",
" 'attack',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Thankfully\",\n",
" ',',\n",
" 'Austin',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'healthy',\n",
" 'brunch',\n",
" 'options',\n",
" 'to',\n",
" 'cater',\n",
" 'to',\n",
" 'our',\n",
" 'most',\n",
" 'indulgent',\n",
" 'cravings',\n",
" 'after',\n",
" 'a',\n",
" 'long',\n",
" 'night',\n",
" 'out',\n",
" 'without',\n",
" 'the',\n",
" 'typical',\n",
" 'self-loathing',\n",
" 'that',\n",
" 'comes',\n",
" 'with',\n",
" 'it',\n",
" '.',\n",
" 'Rather',\n",
" 'than',\n",
" 'put',\n",
" 'you',\n",
" 'into',\n",
" 'a',\n",
" 'food',\n",
" 'coma',\n",
" ',',\n",
" 'these',\n",
" 'meals',\n",
" 'will',\n",
" 'leave',\n",
" 'you',\n",
" 'feeling',\n",
" 'satisfied',\n",
" ',',\n",
" 'recharged',\n",
" ',',\n",
" 'and',\n",
" 'ready',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'the',\n",
" 'day',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'East\",\n",
" 'Austin',\n",
" 'is',\n",
" 'more',\n",
" 'than',\n",
" 'dive',\n",
" 'bars',\n",
" 'and',\n",
" 'hipster',\n",
" '‘staches',\n",
" ';',\n",
" 'it’s',\n",
" 'also',\n",
" 'home',\n",
" 'to',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'best',\n",
" 'healthy',\n",
" 'brunch',\n",
" 'spots',\n",
" 'in',\n",
" 'town',\n",
" '.',\n",
" 'With',\n",
" 'its',\n",
" 'sunny',\n",
" 'patio',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'comfortably',\n",
" 'hide',\n",
" 'last',\n",
" 'night’s',\n",
" 'damage',\n",
" 'with',\n",
" 'big',\n",
" 'sunglasses',\n",
" 'while',\n",
" 'you',\n",
" 'enjoy',\n",
" 'any',\n",
" 'number',\n",
" 'of',\n",
" 'Counter',\n",
" 'Culture’s',\n",
" 'vegan',\n",
" 'delights',\n",
" '.',\n",
" 'The',\n",
" 'raw',\n",
" 'oatmeal',\n",
" 'banana',\n",
" 'split',\n",
" 'will',\n",
" 'meet',\n",
" 'all',\n",
" 'of',\n",
" 'your',\n",
" 'gluten-free',\n",
" 'needs',\n",
" ',',\n",
" 'while',\n",
" 'the',\n",
" 'breakfast',\n",
" 'burrito',\n",
" 'with',\n",
" 'its',\n",
" 'tofu',\n",
" 'scramble',\n",
" ',',\n",
" 'seitan',\n",
" 'sausage',\n",
" ',',\n",
" 'and',\n",
" 'cashew',\n",
" 'cheeze',\n",
" 'will',\n",
" 'satisfy',\n",
" 'your',\n",
" 'most',\n",
" 'complex',\n",
" 'craving',\n",
" '.',\n",
" 'Even',\n",
" 'better',\n",
" ',',\n",
" 'no',\n",
" 'brunch',\n",
" 'menu',\n",
" 'item',\n",
" 'is',\n",
" 'more',\n",
" 'than',\n",
" '$',\n",
" '10',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '11-3',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'more',\n",
" 'of',\n",
" 'a',\n",
" 'North',\n",
" 'Austin',\n",
" 'dweller',\n",
" ',',\n",
" 'Mother’s',\n",
" 'Cafe',\n",
" 'and',\n",
" 'Garden',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'spot',\n",
" 'to',\n",
" 'feast',\n",
" 'with',\n",
" 'your',\n",
" 'friends',\n",
" ',',\n",
" 'recounting',\n",
" 'weekend',\n",
" 'tales',\n",
" 'while',\n",
" 'filling',\n",
" 'your',\n",
" 'belly',\n",
" 'with',\n",
" 'non-GMO',\n",
" ',',\n",
" 'socially',\n",
" 'responsible',\n",
" 'eats',\n",
" '.',\n",
" 'No',\n",
" 'matter',\n",
" 'your',\n",
" 'dietary',\n",
" 'needs',\n",
" ',',\n",
" 'there’s',\n",
" 'something',\n",
" 'for',\n",
" 'everyone',\n",
" 'here',\n",
" '.',\n",
" 'The',\n",
" 'gluten-free',\n",
" 'spinach',\n",
" 'omelette',\n",
" 'with',\n",
" 'sauteed',\n",
" 'mushrooms',\n",
" 'and',\n",
" 'white',\n",
" 'wine',\n",
" 'is',\n",
" 'pure',\n",
" 'decadence',\n",
" 'at',\n",
" 'a',\n",
" 'modest',\n",
" 'price',\n",
" ',',\n",
" 'while',\n",
" 'the',\n",
" 'vegan',\n",
" 'banana',\n",
" 'walnut',\n",
" 'pancakes',\n",
" '(',\n",
" 'topped',\n",
" 'with',\n",
" 'vegan',\n",
" 'margarine',\n",
" '!',\n",
" ')',\n",
" 'will',\n",
" 'please',\n",
" 'your',\n",
" 'sweetest',\n",
" 'tooth',\n",
" 'without',\n",
" 'the',\n",
" 'price',\n",
" 'of',\n",
" 'extra',\n",
" 'pounds',\n",
" 'topped',\n",
" 'with',\n",
" 'guilt',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '10-3',\n",
" \"'\",\n",
" ',',\n",
" \"'No\",\n",
" 'list',\n",
" 'of',\n",
" 'healthy',\n",
" 'delights',\n",
" 'is',\n",
" 'complete',\n",
" 'without',\n",
" 'this',\n",
" 'South',\n",
" 'Austin',\n",
" 'staple',\n",
" '.',\n",
" 'Bouldin',\n",
" 'Creek',\n",
" 'Cafe',\n",
" 'is',\n",
" 'a',\n",
" 'vegetarian',\n",
" '(',\n",
" 'and',\n",
" 'mostly',\n",
" 'vegan',\n",
" ')',\n",
" 'treasure',\n",
" 'nestled',\n",
" 'just',\n",
" 'far',\n",
" 'enough',\n",
" 'from',\n",
" 'downtown’s',\n",
" 'congestion',\n",
" 'to',\n",
" 'avoid',\n",
" 'long',\n",
" 'waits',\n",
" ',',\n",
" 'while',\n",
" 'still',\n",
" 'being',\n",
" 'a',\n",
" 'stone’s',\n",
" 'throw',\n",
" 'away',\n",
" 'from',\n",
" 'a',\n",
" 'post-brunch',\n",
" 'paddleboard',\n",
" 'on',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" '.',\n",
" 'Kickstart',\n",
" 'your',\n",
" 'lazy',\n",
" 'day',\n",
" 'with',\n",
" 'the',\n",
" 'Southwestern',\n",
" 'flare',\n",
" 'of',\n",
" 'their',\n",
" 'killer',\n",
" 'zucchini',\n",
" 'migas',\n",
" 'and',\n",
" 'sweet',\n",
" 'potato',\n",
" 'tamales',\n",
" ',',\n",
" 'or',\n",
" 'get',\n",
" 'your',\n",
" 'entire',\n",
" 'day’s',\n",
" 'worth',\n",
" 'of',\n",
" 'vegetables',\n",
" 'in',\n",
" 'by',\n",
" 'ordering',\n",
" 'the',\n",
" 'Veggin’',\n",
" 'Out',\n",
" 'Plate',\n",
" 'with',\n",
" 'steamed',\n",
" 'greens',\n",
" ',',\n",
" 'organic',\n",
" 'brown',\n",
" 'rice',\n",
" ',',\n",
" 'and',\n",
" 'vegan',\n",
" 'cornbread',\n",
" '.',\n",
" 'Brunch',\n",
" 'menu',\n",
" 'served',\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'everyday',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'all',\n",
" 'of',\n",
" 'its',\n",
" 'grains',\n",
" 'unbleached',\n",
" 'and',\n",
" 'all',\n",
" 'of',\n",
" 'its',\n",
" 'fruit',\n",
" 'and',\n",
" 'veggies',\n",
" 'organic',\n",
" ',',\n",
" 'Pacha',\n",
" 'is',\n",
" 'the',\n",
" 'go-to',\n",
" 'spot',\n",
" 'for',\n",
" 'local',\n",
" ',',\n",
" 'healthy',\n",
" 'eats',\n",
" 'near',\n",
" 'Burnet',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'the',\n",
" 'smoked',\n",
" 'wild',\n",
" 'salmon',\n",
" 'plate',\n",
" 'with',\n",
" 'tomato-dill',\n",
" 'pico',\n",
" 'for',\n",
" 'a',\n",
" 'yummy',\n",
" 'protein',\n",
" 'fix',\n",
" ',',\n",
" 'or',\n",
" 'the',\n",
" 'unique',\n",
" 'pear',\n",
" 'and',\n",
" 'scallion',\n",
" 'whole',\n",
" 'wheat',\n",
" 'pancakes',\n",
" 'to',\n",
" 'delight',\n",
" 'your',\n",
" 'savory-sweet',\n",
" 'senses',\n",
" '.',\n",
" 'With',\n",
" 'a',\n",
" 'mission',\n",
" 'to',\n",
" 'serve',\n",
" 'humanely-raised',\n",
" 'meat',\n",
" 'and',\n",
" 'dairy',\n",
" 'products',\n",
" 'from',\n",
" 'sustainable',\n",
" 'local',\n",
" 'farms',\n",
" ',',\n",
" 'you’ll',\n",
" 'leave',\n",
" 'feeling',\n",
" 'good',\n",
" 'about',\n",
" 'your',\n",
" 'body',\n",
" 'AND',\n",
" 'your',\n",
" 'conscience',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '10-3',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'the',\n",
" 'bustle',\n",
" 'of',\n",
" 'downtown',\n",
" 'is',\n",
" 'more',\n",
" 'your',\n",
" 'speed',\n",
" ',',\n",
" 'be',\n",
" 'sure',\n",
" 'to',\n",
" 'check',\n",
" 'out',\n",
" 'Swift’s',\n",
" 'Attic',\n",
" 'for',\n",
" 'fare',\n",
" 'it',\n",
" 'describes',\n",
" 'as',\n",
" '“creative',\n",
" ',',\n",
" 'whimsical',\n",
" ',',\n",
" 'and',\n",
" 'delicious”',\n",
" '.',\n",
" 'Keeping',\n",
" 'true',\n",
" 'to',\n",
" 'its',\n",
" 'description',\n",
" ',',\n",
" 'the',\n",
" 'choices',\n",
" 'on',\n",
" 'Attic’s',\n",
" 'brunch',\n",
" 'menu',\n",
" 'feature',\n",
" 'healthy',\n",
" ',',\n",
" 'protein-packed',\n",
" 'options',\n",
" 'like',\n",
" 'the',\n",
" 'Turkey',\n",
" 'Hash',\n",
" ',',\n",
" 'with',\n",
" 'house-smoked',\n",
" 'turkey',\n",
" ',',\n",
" 'roasted',\n",
" 'tomatoes',\n",
" ',',\n",
" 'and',\n",
" 'eggs',\n",
" ',',\n",
" 'or',\n",
" 'tickle',\n",
" 'your',\n",
" 'more',\n",
" 'adventurous',\n",
" 'tendencies',\n",
" 'with',\n",
" 'the',\n",
" 'yummy',\n",
" 'Shrimp',\n",
" '&',\n",
" 'Polenta',\n",
" 'made',\n",
" 'with',\n",
" 'poached',\n",
" 'Vital',\n",
" 'Farms',\n",
" 'eggs',\n",
" 'and',\n",
" 'grilled',\n",
" 'Gulf',\n",
" 'shrimp',\n",
" '.',\n",
" 'Boasting',\n",
" 'an',\n",
" 'eclectic',\n",
" 'ambiance',\n",
" 'in',\n",
" 'the',\n",
" 'heart',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'spot',\n",
" 'to',\n",
" 'kick',\n",
" 'off',\n",
" 'a',\n",
" 'healthy',\n",
" 'Sunday',\n",
" 'Funday',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '11-3',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'fresh',\n",
" 'produce',\n",
" 'delivered',\n",
" 'daily',\n",
" ',',\n",
" 'and',\n",
" 'only',\n",
" 'hormone-',\n",
" 'and',\n",
" 'antibiotic-free',\n",
" 'eggs',\n",
" 'and',\n",
" 'meat',\n",
" ',',\n",
" 'Galaxy',\n",
" 'Cafe',\n",
" 'is',\n",
" 'the',\n",
" 'perfect',\n",
" 'spot',\n",
" 'for',\n",
" 'a',\n",
" 'light',\n",
" 'and',\n",
" 'healthy',\n",
" 'brunch',\n",
" '.',\n",
" 'Their',\n",
" 'breakfast',\n",
" 'wraps',\n",
" 'are',\n",
" 'particularly',\n",
" 'awesome',\n",
" ',',\n",
" 'with',\n",
" 'a',\n",
" 'ton',\n",
" 'to',\n",
" 'choose',\n",
" 'from',\n",
" ',',\n",
" 'or',\n",
" 'you',\n",
" 'can',\n",
" 'build',\n",
" 'your',\n",
" 'own',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'also',\n",
" 'menu',\n",
" 'options',\n",
" 'from',\n",
" '“Around',\n",
" 'the',\n",
" 'Galaxy”',\n",
" 'featuring',\n",
" 'more',\n",
" 'worldly',\n",
" 'dishes',\n",
" 'like',\n",
" 'the',\n",
" 'Mexican',\n",
" 'Breakfast',\n",
" 'with',\n",
" 'homemade',\n",
" 'migas',\n",
" 'or',\n",
" 'the',\n",
" 'Mediterranean',\n",
" 'Breakfast',\n",
" 'with',\n",
" 'scrambled',\n",
" 'eggs',\n",
" 'and',\n",
" 'feta',\n",
" '.',\n",
" 'Everything',\n",
" 'comes',\n",
" 'in',\n",
" 'under',\n",
" '$',\n",
" '10',\n",
" 'and',\n",
" 'can',\n",
" 'be',\n",
" 'topped',\n",
" 'off',\n",
" 'with',\n",
" 'fresh-squeezed',\n",
" 'OJ',\n",
" 'or',\n",
" 'lemonade',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '7-4',\n",
" \"'\",\n",
" ',',\n",
" \"'Definitely\",\n",
" 'a',\n",
" 'favorite',\n",
" 'of',\n",
" 'northern',\n",
" 'Austinites',\n",
" ',',\n",
" 'The',\n",
" 'Steeping',\n",
" 'Room',\n",
" 'has',\n",
" 'plenty',\n",
" 'of',\n",
" 'gluten-free',\n",
" ',',\n",
" 'vegan',\n",
" 'options',\n",
" '.',\n",
" 'The',\n",
" 'Gravlax',\n",
" 'and',\n",
" 'Latkes',\n",
" 'are',\n",
" 'super',\n",
" 'popular',\n",
" 'and',\n",
" 'for',\n",
" 'good',\n",
" 'reason',\n",
" ':',\n",
" 'jasmine',\n",
" 'tea-cured',\n",
" 'Atlantic',\n",
" 'salmon',\n",
" 'served',\n",
" 'on',\n",
" 'potato',\n",
" 'pancakes',\n",
" '?',\n",
" 'Yes',\n",
" ',',\n",
" 'please',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'craving',\n",
" 'something',\n",
" 'on',\n",
" 'the',\n",
" 'sweet',\n",
" 'side',\n",
" ',',\n",
" 'the',\n",
" 'Organic',\n",
" 'Oatmeal',\n",
" 'and',\n",
" 'Banana',\n",
" 'Brulee',\n",
" 'is',\n",
" 'beyond',\n",
" 'satisfying',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'just',\n",
" 'can’t',\n",
" 'decide',\n",
" 'what',\n",
" 'you’re',\n",
" 'in',\n",
" 'the',\n",
" 'mood',\n",
" 'for',\n",
" ',',\n",
" 'then',\n",
" 'the',\n",
" 'loaded',\n",
" 'Breakfast',\n",
" 'Bowl',\n",
" 'with',\n",
" 'black',\n",
" 'beans',\n",
" ',',\n",
" 'potatoes',\n",
" ',',\n",
" 'and',\n",
" 'vegan',\n",
" 'cashew',\n",
" 'sauce',\n",
" 'will',\n",
" 'surely',\n",
" 'give',\n",
" 'you',\n",
" 'everything',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'And',\n",
" 'of',\n",
" 'course',\n",
" ',',\n",
" 'there’s',\n",
" 'tea',\n",
" 'from',\n",
" 'nearly',\n",
" 'any',\n",
" 'region',\n",
" 'to',\n",
" 'go',\n",
" 'along',\n",
" 'with',\n",
" 'whatever',\n",
" 'you',\n",
" 'choose',\n",
" '.',\n",
" 'Sun',\n",
" '.',\n",
" '10-2',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'feelin’',\n",
" 'fancy',\n",
" 'and',\n",
" 'want',\n",
" 'to',\n",
" 'fuel',\n",
" 'yourself',\n",
" 'before',\n",
" 'a',\n",
" 'day',\n",
" 'of',\n",
" 'exploring',\n",
" 'SoCo',\n",
" ',',\n",
" 'then',\n",
" 'Perla’s',\n",
" 'is',\n",
" 'pretty',\n",
" 'much',\n",
" 'perfect',\n",
" '.',\n",
" 'While',\n",
" 'relaxing',\n",
" 'on',\n",
" 'the',\n",
" 'huge',\n",
" 'outdoor',\n",
" 'patio',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'soak',\n",
" 'up',\n",
" 'the',\n",
" 'sun',\n",
" 'and',\n",
" 'people-watch',\n",
" 'while',\n",
" 'you',\n",
" 'enjoy',\n",
" 'menu',\n",
" 'options',\n",
" 'like',\n",
" 'the',\n",
" 'Lobster',\n",
" '&',\n",
" 'Egg',\n",
" 'White',\n",
" 'Fritatta',\n",
" 'or',\n",
" 'the',\n",
" 'Breakfast',\n",
" 'Bouillabaisse',\n",
" 'with',\n",
" 'crispy',\n",
" 'poached',\n",
" 'eggs',\n",
" 'and',\n",
" 'saffron',\n",
" 'rouille',\n",
" '.',\n",
" 'The',\n",
" 'unique',\n",
" ',',\n",
" 'ever-evolving',\n",
" 'brunch',\n",
" 'menu',\n",
" ',',\n",
" 'along',\n",
" 'with',\n",
" 'its',\n",
" 'location',\n",
" 'and',\n",
" 'relaxed',\n",
" 'Austin',\n",
" 'vibe',\n",
" ',',\n",
" 'makes',\n",
" 'Perla’s',\n",
" 'especially',\n",
" 'great',\n",
" 'for',\n",
" 'taking',\n",
" 'out-of-town',\n",
" 'visitors',\n",
" '.',\n",
" 'Sat',\n",
" '.',\n",
" '&',\n",
" 'Sun',\n",
" '.',\n",
" '10:30-2:30',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'downtown’s',\n",
" 'newest',\n",
" 'arrivals',\n",
" 'for',\n",
" 'good',\n",
" 'eats',\n",
" ',',\n",
" 'Nightcap',\n",
" 'is',\n",
" 'swiftly',\n",
" 'gaining',\n",
" 'popularity',\n",
" 'among',\n",
" 'locals',\n",
" 'and',\n",
" 'tourists',\n",
" 'alike',\n",
" '.',\n",
" 'The',\n",
" 'Salmon',\n",
" 'Rillette',\n",
" 'on',\n",
" 'rye',\n",
" 'toast',\n",
" 'with',\n",
" 'avocado',\n",
" ',',\n",
" 'hard-boiled',\n",
" 'egg',\n",
" ',',\n",
" 'and',\n",
" 'radishes',\n",
" 'is',\n",
" 'unlike',\n",
" 'anything',\n",
" 'you’ve',\n",
" 'ever',\n",
" 'had',\n",
" ',',\n",
" 'but',\n",
" 'in',\n",
" 'the',\n",
" 'very',\n",
" 'best',\n",
" 'possible',\n",
" 'way',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you',\n",
" 'try',\n",
" 'it',\n",
" ',',\n",
" 'you’ll',\n",
" 'no',\n",
" 'doubt',\n",
" ...],\n",
" ['[',\n",
" \"'Let’s\",\n",
" 'be',\n",
" 'honest',\n",
" '–',\n",
" 'there',\n",
" 'are',\n",
" 'days',\n",
" 'we’d',\n",
" 'rather',\n",
" 'stay',\n",
" 'at',\n",
" 'home',\n",
" 'in',\n",
" 'sweatpants',\n",
" 'instead',\n",
" 'of',\n",
" 'venturing',\n",
" 'out',\n",
" 'into',\n",
" 'the',\n",
" 'world',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Enter\",\n",
" ':',\n",
" 'the',\n",
" 'glorious',\n",
" 'world',\n",
" 'of',\n",
" 'takeout',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'is',\n",
" 'you',\n",
" ':',\n",
" '“But',\n",
" 'ordering',\n",
" 'takeout',\n",
" 'means',\n",
" 'I',\n",
" 'have',\n",
" 'to',\n",
" 'eat',\n",
" 'unhealthy.”',\n",
" 'Wrong',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'tons',\n",
" 'of',\n",
" 'healthy',\n",
" 'takeout',\n",
" 'options',\n",
" 'in',\n",
" 'Austin',\n",
" 'that',\n",
" 'will',\n",
" 'satisfy',\n",
" 'your',\n",
" 'comfort',\n",
" 'food',\n",
" 'cravings',\n",
" 'without',\n",
" 'the',\n",
" 'guilt',\n",
" '–',\n",
" 'even',\n",
" 'when',\n",
" 'eaten',\n",
" 'on',\n",
" 'your',\n",
" 'couch',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ve\",\n",
" 'rounded',\n",
" 'up',\n",
" 'our',\n",
" 'some',\n",
" 'of',\n",
" 'our',\n",
" 'favorite',\n",
" 'takeout',\n",
" 'spots',\n",
" 'in',\n",
" 'ATX',\n",
" 'that',\n",
" 'are',\n",
" 'actually',\n",
" 'healthy',\n",
" '.',\n",
" 'And',\n",
" 'surprise',\n",
" 'surprise',\n",
" ',',\n",
" 'some',\n",
" 'of',\n",
" 'them',\n",
" 'are',\n",
" 'food',\n",
" 'trucks',\n",
" '(',\n",
" 'because',\n",
" 'Austin',\n",
" ')',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Leaf\",\n",
" 'might',\n",
" 'be',\n",
" 'the',\n",
" 'only',\n",
" 'reason',\n",
" 'you’d',\n",
" 'head',\n",
" 'to',\n",
" 'W.',\n",
" '6th',\n",
" 'for',\n",
" 'a',\n",
" 'salad',\n",
" 'and',\n",
" 'not',\n",
" 'a',\n",
" 'drink',\n",
" '.',\n",
" 'This',\n",
" 'joint',\n",
" 'is',\n",
" 'living',\n",
" '(',\n",
" 'no',\n",
" 'pun',\n",
" 'intended',\n",
" ')',\n",
" 'proof',\n",
" 'that',\n",
" 'not',\n",
" 'all',\n",
" 'salads',\n",
" 'are',\n",
" 'boring',\n",
" '!',\n",
" 'It’s',\n",
" 'the',\n",
" 'perfect',\n",
" 'option',\n",
" 'for',\n",
" 'those',\n",
" 'who',\n",
" 'are',\n",
" 'starving',\n",
" 'because',\n",
" 'it’s',\n",
" 'nice',\n",
" 'and',\n",
" 'quick',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'create',\n",
" 'your',\n",
" 'own',\n",
" 'salad',\n",
" 'or',\n",
" 'choose',\n",
" 'from',\n",
" 'their',\n",
" 'pre-designed',\n",
" 'classics',\n",
" '.',\n",
" 'The',\n",
" 'best',\n",
" 'part',\n",
" 'is',\n",
" ',',\n",
" 'they’re',\n",
" 'named',\n",
" 'after',\n",
" 'Austin',\n",
" 'staples',\n",
" 'like',\n",
" '“Capitol',\n",
" 'City',\n",
" 'Cobb”',\n",
" 'for',\n",
" 'one',\n",
" '.',\n",
" 'So',\n",
" 'revel',\n",
" 'in',\n",
" 'that',\n",
" 'Austin',\n",
" 'pride',\n",
" 'y’all',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'haven’t',\n",
" 'tried',\n",
" 'Soup',\n",
" 'Peddler’s',\n",
" 'Green',\n",
" 'Goddess',\n",
" 'Soup',\n",
" ',',\n",
" 'you',\n",
" 'haven’t',\n",
" 'lived',\n",
" '.',\n",
" 'Packed',\n",
" 'with',\n",
" 'broccoli',\n",
" ',',\n",
" 'spinach',\n",
" ',',\n",
" 'celery',\n",
" ',',\n",
" 'and',\n",
" 'brown',\n",
" 'rice',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'just',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'mouth-watering',\n",
" ',',\n",
" 'vegetable-packed',\n",
" 'options',\n",
" 'on',\n",
" 'the',\n",
" 'menu',\n",
" 'of',\n",
" 'the',\n",
" 'South',\n",
" 'Lamar',\n",
" 'and',\n",
" 'South',\n",
" 'Austin',\n",
" 'eateries',\n",
" '.',\n",
" 'Pair',\n",
" 'it',\n",
" 'with',\n",
" 'a',\n",
" 'yummy',\n",
" 'sandwich',\n",
" '(',\n",
" 'pepperoni',\n",
" ',',\n",
" 'sundried',\n",
" 'tomato',\n",
" 'pesto',\n",
" ',',\n",
" 'mozzarella',\n",
" '–',\n",
" 'yes',\n",
" 'please',\n",
" '!',\n",
" ')',\n",
" ',',\n",
" 'juice',\n",
" ',',\n",
" 'or',\n",
" 'smoothie',\n",
" 'for',\n",
" 'a',\n",
" 'filling',\n",
" 'meal',\n",
" 'that',\n",
" 'mom',\n",
" 'would',\n",
" 'be',\n",
" 'proud',\n",
" 'of',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'craving',\n",
" 'Asian',\n",
" 'food',\n",
" ',',\n",
" 'Pho',\n",
" 'Please',\n",
" 'is',\n",
" 'where',\n",
" 'it’s',\n",
" 'at',\n",
" '.',\n",
" 'The',\n",
" 'Vietnamese',\n",
" 'haven',\n",
" 'is',\n",
" 'an',\n",
" 'E.',\n",
" 'Riverside',\n",
" 'hidden',\n",
" 'gem…',\n",
" 'boasting',\n",
" 'simple',\n",
" 'and',\n",
" 'clean',\n",
" 'eating',\n",
" 'in',\n",
" 'the',\n",
" 'form',\n",
" 'of',\n",
" 'food',\n",
" 'euphoria',\n",
" '.',\n",
" 'Even',\n",
" 'the',\n",
" 'decor',\n",
" 'is',\n",
" 'simple',\n",
" 'and',\n",
" 'clean',\n",
" '.',\n",
" 'Pho',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Rice',\n",
" 'bowls',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Bahn',\n",
" 'Mi',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Vermicelli',\n",
" 'noodles',\n",
" '?',\n",
" 'Check',\n",
" '.',\n",
" 'Okay',\n",
" '–',\n",
" 'you',\n",
" 'get',\n",
" 'it',\n",
" '.',\n",
" 'It’s',\n",
" 'darn',\n",
" 'good',\n",
" 'and',\n",
" 'tastes',\n",
" 'great',\n",
" 'in',\n",
" 'front',\n",
" 'of',\n",
" 'Netflix',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Picnik\",\n",
" 'uses',\n",
" 'all',\n",
" 'locally',\n",
" 'sourced',\n",
" ',',\n",
" 'organic',\n",
" 'ingredients',\n",
" '.',\n",
" 'But',\n",
" 'don’t',\n",
" 'let',\n",
" 'their',\n",
" '“good',\n",
" 'for',\n",
" 'the',\n",
" 'body”',\n",
" 'food',\n",
" 'deter',\n",
" 'you',\n",
" ';',\n",
" 'it’s',\n",
" 'effing',\n",
" 'delicious',\n",
" '.',\n",
" 'Think',\n",
" 'quinoa',\n",
" 'bowls',\n",
" ',',\n",
" 'tacos',\n",
" ',',\n",
" 'and',\n",
" ',',\n",
" 'really',\n",
" ',',\n",
" 'everything',\n",
" 'in',\n",
" 'between',\n",
" '.',\n",
" 'Oh',\n",
" ',',\n",
" 'and',\n",
" 'they',\n",
" 'have',\n",
" 'the',\n",
" 'BEST',\n",
" 'coffee',\n",
" '(',\n",
" 'often',\n",
" 'mixed',\n",
" 'with',\n",
" 'grass-fed',\n",
" 'butter',\n",
" ')',\n",
" 'in',\n",
" 'town',\n",
" '.',\n",
" 'Visit',\n",
" 'the',\n",
" '“OG”',\n",
" 'food',\n",
" 'truck',\n",
" 'on',\n",
" 'South',\n",
" 'Lamar',\n",
" 'or',\n",
" 'their',\n",
" 'new',\n",
" 'brick-and-mortar',\n",
" 'up',\n",
" 'north',\n",
" '.',\n",
" 'Though',\n",
" ',',\n",
" 'at',\n",
" 'the',\n",
" 'food',\n",
" 'truck',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'score',\n",
" 'some',\n",
" 'vegan',\n",
" 'chocolate',\n",
" 'chip',\n",
" 'cookies',\n",
" 'to',\n",
" 'go',\n",
" '.',\n",
" 'Food',\n",
" 'truck',\n",
" 'it',\n",
" 'is',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Wheatsville\",\n",
" 'is',\n",
" 'a',\n",
" 'full-service',\n",
" ',',\n",
" 'natural',\n",
" 'foods',\n",
" 'grocery',\n",
" 'store',\n",
" 'on',\n",
" 'South',\n",
" 'Lamar',\n",
" 'or',\n",
" 'off',\n",
" 'Guadalupe',\n",
" 'near',\n",
" 'campus.\\\\xa0Think',\n",
" 'Whole',\n",
" 'Foods',\n",
" 'on',\n",
" 'a',\n",
" 'much',\n",
" 'smaller',\n",
" 'scale',\n",
" '.',\n",
" 'And',\n",
" 'they',\n",
" 'have',\n",
" 'the',\n",
" 'best-kept',\n",
" 'secret',\n",
" 'in',\n",
" 'town',\n",
" '–',\n",
" 'BUFFALO',\n",
" 'POPCORN',\n",
" 'TOFU',\n",
" '.',\n",
" 'Seriously',\n",
" ',',\n",
" 'it’s',\n",
" 'like',\n",
" 'crack',\n",
" '(',\n",
" 'but',\n",
" 'legal',\n",
" ')',\n",
" '.',\n",
" 'On',\n",
" 'top',\n",
" 'of',\n",
" 'that',\n",
" ',',\n",
" 'Wheatsville',\n",
" 'has',\n",
" 'a',\n",
" 'ton',\n",
" 'of',\n",
" 'vegan/veggie-friendly',\n",
" 'options',\n",
" ',',\n",
" 'fresh',\n",
" 'sandwiches',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'salad',\n",
" 'bar',\n",
" 'with',\n",
" 'a',\n",
" 'medley',\n",
" 'of',\n",
" 'fresh',\n",
" 'greens',\n",
" 'that',\n",
" 'won’t',\n",
" 'overwhelm',\n",
" 'you',\n",
" 'with',\n",
" 'options',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Let’s\",\n",
" 'face',\n",
" 'it',\n",
" '–',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'we',\n",
" 'love',\n",
" 'our',\n",
" 'Tex',\n",
" 'Mex',\n",
" '.',\n",
" 'So',\n",
" 'if',\n",
" 'you’re',\n",
" 'craving',\n",
" 'Mexican',\n",
" 'food',\n",
" 'but',\n",
" 'don’t',\n",
" 'want',\n",
" 'to',\n",
" 'ruin',\n",
" 'your',\n",
" 'hard',\n",
" 'work',\n",
" 'on',\n",
" 'queso',\n",
" 'and',\n",
" 'refried',\n",
" 'beans',\n",
" ',',\n",
" 'Fresa’s',\n",
" 'is',\n",
" 'your',\n",
" 'answer',\n",
" '.',\n",
" 'With',\n",
" 'a',\n",
" 'modern',\n",
" ',',\n",
" 'fresh',\n",
" 'take',\n",
" 'on',\n",
" 'traditional',\n",
" 'Mexican',\n",
" 'fare',\n",
" ',',\n",
" 'they',\n",
" 'offer',\n",
" 'delicious',\n",
" 'wood-grilled',\n",
" 'meals',\n",
" ',',\n",
" 'power',\n",
" 'bowls',\n",
" ',',\n",
" 'and',\n",
" 'sweet',\n",
" 'potatoes',\n",
" 'you',\n",
" 'really',\n",
" 'have',\n",
" 'to',\n",
" 'taste',\n",
" 'to',\n",
" 'grasp',\n",
" 'their',\n",
" 'amazingness',\n",
" '.',\n",
" 'Grab',\n",
" 'some',\n",
" 'fresh',\n",
" 'guac',\n",
" 'to',\n",
" 'curb',\n",
" 'your',\n",
" 'queso',\n",
" 'craving',\n",
" 'and',\n",
" 'you’ve',\n",
" 'got',\n",
" 'yourself',\n",
" 'a',\n",
" 'delicious',\n",
" 'Mexican-inspired',\n",
" 'meal',\n",
" '.',\n",
" 'Find',\n",
" 'it',\n",
" 'at',\n",
" '9th',\n",
" 'and',\n",
" 'Lamar',\n",
" 'or',\n",
" 'the',\n",
" 'new',\n",
" 'South',\n",
" 'First',\n",
" 'location',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'can’t',\n",
" 'talk',\n",
" 'about',\n",
" 'healthy',\n",
" 'food',\n",
" 'options',\n",
" 'in',\n",
" 'Austin',\n",
" 'without',\n",
" 'mentioning',\n",
" 'Snap',\n",
" 'Kitchen',\n",
" '.',\n",
" 'That’d',\n",
" 'be',\n",
" 'a',\n",
" 'sin',\n",
" '.',\n",
" 'Snap',\n",
" 'Kitchen',\n",
" 'and',\n",
" 'guiltless',\n",
" 'takeout',\n",
" 'go',\n",
" 'together',\n",
" 'like',\n",
" 'peanut',\n",
" 'butter',\n",
" 'and',\n",
" 'jelly',\n",
" '.',\n",
" 'All',\n",
" 'their',\n",
" 'handmade',\n",
" 'meals',\n",
" 'give',\n",
" 'you',\n",
" 'the',\n",
" 'satisfaction',\n",
" 'of',\n",
" 'savory',\n",
" ',',\n",
" 'calorie-filled',\n",
" 'decadence…',\n",
" 'but',\n",
" 'they’re',\n",
" 'actually',\n",
" 'good',\n",
" 'for',\n",
" 'you',\n",
" '!',\n",
" 'All',\n",
" 'over',\n",
" 'Austin',\n",
" ',',\n",
" 'they',\n",
" 'play',\n",
" 'off',\n",
" 'of',\n",
" 'classics',\n",
" 'like',\n",
" 'lasagna',\n",
" ',',\n",
" 'mac',\n",
" 'and',\n",
" 'cheese',\n",
" ',',\n",
" 'sliders',\n",
" ',',\n",
" 'enchiladas',\n",
" '.',\n",
" 'But',\n",
" 'Snap',\n",
" 'makes',\n",
" 'magic',\n",
" 'happen',\n",
" 'in',\n",
" 'their',\n",
" 'kitchen',\n",
" '.',\n",
" 'See',\n",
" 'for',\n",
" 'yourself',\n",
" '.',\n",
" 'Bonus',\n",
" ':',\n",
" 'They',\n",
" 'also',\n",
" 'put',\n",
" 'the',\n",
" 'nutritional',\n",
" 'information',\n",
" 'on',\n",
" 'all',\n",
" 'their',\n",
" 'meals',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'A\",\n",
" 'favorite',\n",
" 'local',\n",
" 'Austin',\n",
" 'joint',\n",
" ',',\n",
" 'Kerbey',\n",
" 'Lane',\n",
" 'Cafe',\n",
" 'is',\n",
" 'open',\n",
" '24',\n",
" 'hours',\n",
" ',',\n",
" 'making',\n",
" 'it',\n",
" 'the',\n",
" 'perfect',\n",
" 'choice',\n",
" 'for',\n",
" 'those',\n",
" 'who',\n",
" 'wake',\n",
" 'up',\n",
" 'from',\n",
" 'a',\n",
" 'nap',\n",
" 'at',\n",
" '10pm',\n",
" 'starving',\n",
" '.',\n",
" 'Kerbey',\n",
" 'knows',\n",
" 'what',\n",
" 'Austinites',\n",
" 'like',\n",
" ':',\n",
" 'Options',\n",
" '.',\n",
" 'They',\n",
" 'have',\n",
" 'an',\n",
" 'entire',\n",
" 'gluten-free',\n",
" 'menu',\n",
" 'and',\n",
" 'tons',\n",
" 'of',\n",
" 'vegan',\n",
" 'entrees',\n",
" 'as',\n",
" 'well',\n",
" '.',\n",
" 'With',\n",
" 'seasonal',\n",
" 'menus',\n",
" 'that',\n",
" 'constantly',\n",
" 'change',\n",
" '(',\n",
" 'with',\n",
" 'the',\n",
" 'season…',\n",
" ')',\n",
" 'and',\n",
" 'all',\n",
" 'day',\n",
" 'breakfast',\n",
" ',',\n",
" 'Kerbey',\n",
" 'Lane',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'choice',\n",
" 'for',\n",
" 'takeout',\n",
" 'at',\n",
" 'any',\n",
" 'time',\n",
" 'of',\n",
" 'day',\n",
" ',',\n",
" 'pretty',\n",
" 'much',\n",
" 'anywhere',\n",
" 'around',\n",
" 'Austin',\n",
" '.',\n",
" 'Opt',\n",
" 'for',\n",
" 'a',\n",
" 'salad',\n",
" 'with',\n",
" 'sweet',\n",
" 'potato',\n",
" 'fries',\n",
" 'or',\n",
" 'delicious',\n",
" 'omelette',\n",
" 'or',\n",
" 'veggie',\n",
" 'burger',\n",
" 'or…',\n",
" 'you',\n",
" 'get',\n",
" 'it',\n",
" '.',\n",
" 'The',\n",
" 'possibilities',\n",
" 'are',\n",
" 'endless',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'Adding\",\n",
" 'another',\n",
" 'food',\n",
" 'truck',\n",
" 'to',\n",
" 'the',\n",
" 'list',\n",
" 'because',\n",
" 'we',\n",
" 'can’t',\n",
" 'help',\n",
" 'it',\n",
" '.',\n",
" 'Conscious',\n",
" 'Cravings',\n",
" 'has',\n",
" 'your',\n",
" 'typical',\n",
" 'salads',\n",
" ',',\n",
" 'wraps',\n",
" ',',\n",
" 'and',\n",
" 'smoothies…',\n",
" 'without',\n",
" 'any',\n",
" 'meat',\n",
" '.',\n",
" 'Don’t',\n",
" 'fret',\n",
" '–',\n",
" 'their',\n",
" '“modern',\n",
" 'plant-based',\n",
" 'cuisine”',\n",
" 'would',\n",
" 'satisfy',\n",
" 'any',\n",
" 'carnivore',\n",
" '.',\n",
" 'And',\n",
" 'this',\n",
" 'time',\n",
" ',',\n",
" 'you',\n",
" 'don’t',\n",
" 'even',\n",
" 'have',\n",
" 'to',\n",
" 'put',\n",
" 'shoes',\n",
" 'on',\n",
" '.',\n",
" 'This',\n",
" 'food',\n",
" 'truck',\n",
" 'actually',\n",
" 'delivers',\n",
" 'to',\n",
" 'the',\n",
" 'South',\n",
" 'Austin',\n",
" 'and',\n",
" 'Mueller',\n",
" 'areas',\n",
" '(',\n",
" 'say',\n",
" 'what',\n",
" '?',\n",
" '!',\n",
" ')',\n",
" '.',\n",
" 'Do',\n",
" 'work',\n",
" 'on',\n",
" 'the',\n",
" 'Chimichurri',\n",
" 'Seitan',\n",
" 'Wrap…',\n",
" 'it',\n",
" 'rocks',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'ever',\n",
" 'your',\n",
" 'french',\n",
" 'fry',\n",
" 'craving',\n",
" 'is',\n",
" 'strong',\n",
" ',',\n",
" 'try',\n",
" 'their',\n",
" 'Baked',\n",
" 'Rosemary',\n",
" 'Fries',\n",
" 'for',\n",
" 'a',\n",
" 'lighter',\n",
" 'option',\n",
" 'that’s',\n",
" 'packed',\n",
" 'with',\n",
" 'flavor',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'name',\n",
" 'gives',\n",
" 'it',\n",
" 'away',\n",
" '.',\n",
" 'It’s',\n",
" 'Thai',\n",
" 'food',\n",
" '.',\n",
" 'It’s',\n",
" 'fresh',\n",
" '.',\n",
" 'And',\n",
" 'we',\n",
" 'mean',\n",
" 'really',\n",
" 'fresh',\n",
" '.',\n",
" 'For',\n",
" 'those',\n",
" 'that',\n",
" 'live',\n",
" 'in',\n",
" ...],\n",
" ['[',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" 'trot',\n",
" 'through',\n",
" 'the',\n",
" 'wilderness',\n",
" '?',\n",
" 'Thanks',\n",
" 'to',\n",
" 'Austin’s',\n",
" 'expansive',\n",
" 'running',\n",
" 'scene',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'places',\n",
" 'to',\n",
" 'log',\n",
" 'as',\n",
" 'many',\n",
" 'miles',\n",
" 'as',\n",
" 'you’d',\n",
" 'like',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'know',\n",
" 'that',\n",
" 'a',\n",
" 'quality',\n",
" 'trail',\n",
" 'can',\n",
" 'make',\n",
" 'all',\n",
" 'the',\n",
" 'difference',\n",
" 'between',\n",
" 'staying',\n",
" 'in',\n",
" 'bed',\n",
" 'and',\n",
" 'hitting',\n",
" 'the',\n",
" 'pavement',\n",
" '.',\n",
" 'So',\n",
" 'we',\n",
" 'put',\n",
" 'together',\n",
" 'this',\n",
" 'list',\n",
" 'of',\n",
" 'running',\n",
" 'routes',\n",
" 'so',\n",
" 'fun',\n",
" 'that',\n",
" 'it’s',\n",
" 'tough',\n",
" 'not',\n",
" 'to',\n",
" 'take',\n",
" 'them',\n",
" 'on',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Kicking\",\n",
" 'off',\n",
" 'our',\n",
" 'list',\n",
" 'is',\n",
" 'one',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'most',\n",
" 'popular',\n",
" 'routes',\n",
" 'for',\n",
" 'runners',\n",
" '–',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" 'Hike',\n",
" 'and',\n",
" 'Bike',\n",
" 'Trail',\n",
" '.',\n",
" 'Beginners',\n",
" 'will',\n",
" 'love',\n",
" 'the',\n",
" 'flat',\n",
" '3.2-mile',\n",
" 'loop',\n",
" 'from',\n",
" 'the',\n",
" 'South',\n",
" 'First',\n",
" 'Bridge',\n",
" 'to',\n",
" 'the',\n",
" 'Mopac',\n",
" 'Bridge',\n",
" '.',\n",
" 'And',\n",
" 'those',\n",
" 'looking',\n",
" 'to',\n",
" 'get',\n",
" 'in',\n",
" 'more',\n",
" 'mileage',\n",
" 'can',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" '7-',\n",
" 'and',\n",
" '10-mile',\n",
" 'loops',\n",
" 'along',\n",
" 'the',\n",
" 'river',\n",
" '.',\n",
" 'No',\n",
" 'matter',\n",
" 'which',\n",
" 'route',\n",
" 'you',\n",
" 'choose',\n",
" ',',\n",
" 'you’ll',\n",
" 'run',\n",
" 'into',\n",
" '(',\n",
" 'pun',\n",
" 'intended',\n",
" ')',\n",
" 'a',\n",
" 'number',\n",
" 'of',\n",
" 'places',\n",
" 'to',\n",
" 'go',\n",
" 'for',\n",
" 'a',\n",
" 'swim',\n",
" ',',\n",
" 'rent',\n",
" 'a',\n",
" 'kayak',\n",
" ',',\n",
" 'or',\n",
" 'rest',\n",
" 'and',\n",
" 'observe',\n",
" 'the',\n",
" 'skyline',\n",
" 'views',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'neighborhood',\n",
" 'running',\n",
" 'is',\n",
" 'more',\n",
" 'your',\n",
" 'speed',\n",
" ',',\n",
" 'Travis',\n",
" 'Heights',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'place',\n",
" 'to',\n",
" 'hit',\n",
" 'the',\n",
" 'pavement',\n",
" '.',\n",
" 'This',\n",
" 'hilly',\n",
" 'neighborhood',\n",
" 'is',\n",
" 'full',\n",
" 'of',\n",
" 'quiet',\n",
" ',',\n",
" 'meandering',\n",
" 'streets',\n",
" 'that',\n",
" 'are',\n",
" 'safe',\n",
" 'for',\n",
" 'all',\n",
" ',',\n",
" 'and',\n",
" 'perfect',\n",
" 'for',\n",
" 'those',\n",
" 'who',\n",
" 'want',\n",
" 'to',\n",
" 'get',\n",
" 'away',\n",
" 'from',\n",
" 'the',\n",
" 'heavy',\n",
" 'foot',\n",
" 'traffic',\n",
" 'of',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" '.',\n",
" 'It’s',\n",
" 'also',\n",
" 'a',\n",
" 'stone’s',\n",
" 'throw',\n",
" 'from',\n",
" 'SoCo',\n",
" ',',\n",
" 'so',\n",
" 'there',\n",
" 'are',\n",
" 'lots',\n",
" 'of',\n",
" 'yummy',\n",
" 'options',\n",
" 'for',\n",
" 'a',\n",
" 'post-run',\n",
" 'refuel',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'challenging',\n",
" 'trek',\n",
" 'atop',\n",
" 'topsy-turvy',\n",
" 'terrain',\n",
" ',',\n",
" 'the',\n",
" 'Greenbelt',\n",
" 'at',\n",
" 'Barton',\n",
" 'Creek',\n",
" 'is',\n",
" 'calling',\n",
" 'your',\n",
" 'name',\n",
" '.',\n",
" 'You’ll',\n",
" 'start',\n",
" 'at',\n",
" 'Zilker',\n",
" 'Park',\n",
" 'and',\n",
" 'take',\n",
" 'off',\n",
" 'on',\n",
" 'a',\n",
" '7-mile',\n",
" 'trail',\n",
" 'through',\n",
" 'the',\n",
" 'woods',\n",
" '.',\n",
" 'While',\n",
" 'this',\n",
" 'route',\n",
" 'ain’t',\n",
" 'easy',\n",
" ',',\n",
" 'it’s',\n",
" 'plenty',\n",
" 'rewarding',\n",
" '–',\n",
" 'with',\n",
" 'limestone',\n",
" 'cliffs',\n",
" ',',\n",
" 'waterfalls',\n",
" ',',\n",
" 'and',\n",
" 'swimming',\n",
" 'holes',\n",
" 'at',\n",
" 'every',\n",
" 'turn',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'lots',\n",
" 'of',\n",
" 'opportunities',\n",
" 'to',\n",
" 'stop',\n",
" 'and',\n",
" 'take',\n",
" 'a',\n",
" 'breather',\n",
" '(',\n",
" 'don’t',\n",
" 'worry',\n",
" ',',\n",
" 'we',\n",
" 'won’t',\n",
" 'tell',\n",
" '.',\n",
" ')',\n",
" \"'\",\n",
" ',',\n",
" \"'Central\",\n",
" 'Austin',\n",
" 'is',\n",
" 'home',\n",
" 'to',\n",
" 'this',\n",
" '3-mile',\n",
" ',',\n",
" 'one-way',\n",
" 'route',\n",
" 'beginning',\n",
" 'on',\n",
" 'N.',\n",
" 'Lamar',\n",
" 'and',\n",
" 'winding',\n",
" 'down',\n",
" 'to',\n",
" 'Lady',\n",
" 'Bird',\n",
" 'Lake',\n",
" '.',\n",
" 'It’s',\n",
" 'not',\n",
" 'as',\n",
" 'well-groomed',\n",
" 'as',\n",
" 'some',\n",
" 'other',\n",
" 'central',\n",
" 'routes',\n",
" '–',\n",
" 'expect',\n",
" 'to',\n",
" 'dodge',\n",
" 'some',\n",
" 'rocky',\n",
" 'debris',\n",
" 'and',\n",
" 'a',\n",
" 'fallen',\n",
" 'branch',\n",
" 'or',\n",
" 'two',\n",
" '–',\n",
" 'but',\n",
" 'what',\n",
" 'it',\n",
" 'lacks',\n",
" 'in',\n",
" 'polish',\n",
" ',',\n",
" 'it',\n",
" 'more',\n",
" 'than',\n",
" 'makes',\n",
" 'up',\n",
" 'for',\n",
" 'in',\n",
" 'peace',\n",
" 'and',\n",
" 'quiet',\n",
" '.',\n",
" 'Despite',\n",
" 'its',\n",
" 'proximity',\n",
" 'to',\n",
" 'Downtown',\n",
" ',',\n",
" 'you’ll',\n",
" 'feel',\n",
" 'like',\n",
" 'you’re',\n",
" 'in',\n",
" 'a',\n",
" 'beautiful',\n",
" ',',\n",
" 'wild',\n",
" 'refuge',\n",
" 'from',\n",
" 'the',\n",
" 'city',\n",
" '.',\n",
" 'Great',\n",
" 'for',\n",
" 'a',\n",
" 'post-work',\n",
" '(',\n",
" 'pre-happy',\n",
" 'hour',\n",
" ')',\n",
" 'jaunt',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Okay\",\n",
" ',',\n",
" 'this',\n",
" 'one',\n",
" 'will',\n",
" 'cost',\n",
" 'you',\n",
" '$',\n",
" '6',\n",
" ',',\n",
" 'but',\n",
" 'anyone',\n",
" 'who',\n",
" 'has',\n",
" 'trotted',\n",
" 'along',\n",
" 'these',\n",
" 'trails',\n",
" 'will',\n",
" 'tell',\n",
" 'you',\n",
" 'the',\n",
" 'price',\n",
" 'is',\n",
" 'well',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" 'This',\n",
" 'state',\n",
" 'park',\n",
" 'in',\n",
" 'Southeast',\n",
" 'Austin',\n",
" 'is',\n",
" 'packed',\n",
" 'full',\n",
" 'of',\n",
" 'breathtaking',\n",
" 'scenery',\n",
" ',',\n",
" 'flowing',\n",
" 'waterfalls',\n",
" ',',\n",
" 'and',\n",
" 'well-maintained',\n",
" 'trails',\n",
" 'for',\n",
" 'runners',\n",
" 'of',\n",
" 'all',\n",
" 'levels',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'keep',\n",
" 'your',\n",
" 'eyes',\n",
" 'open',\n",
" ',',\n",
" 'you',\n",
" 'might',\n",
" 'even',\n",
" 'run',\n",
" 'into',\n",
" '“Old',\n",
" 'Baldy”',\n",
" ',',\n",
" 'a',\n",
" 'historic',\n",
" 'cypress',\n",
" 'tree',\n",
" 'that',\n",
" 'has',\n",
" 'seen',\n",
" 'it',\n",
" 'all',\n",
" 'during',\n",
" 'its',\n",
" '300-year',\n",
" 'residency',\n",
" 'at',\n",
" 'the',\n",
" 'park',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Scenic\",\n",
" 'beauty',\n",
" ',',\n",
" 'majestic',\n",
" 'waterfalls',\n",
" ',',\n",
" 'and',\n",
" 'miles',\n",
" 'of',\n",
" 'hilly',\n",
" 'trails',\n",
" 'make',\n",
" 'this',\n",
" 'North',\n",
" 'Austin',\n",
" 'park',\n",
" 'a',\n",
" 'running',\n",
" 'favorite',\n",
" '.',\n",
" 'Newbies',\n",
" 'and',\n",
" 'experienced',\n",
" 'runners',\n",
" 'alike',\n",
" 'love',\n",
" 'this',\n",
" 'spot',\n",
" 'for',\n",
" 'its',\n",
" 'ample',\n",
" 'shade',\n",
" ',',\n",
" 'various',\n",
" 'routes',\n",
" ',',\n",
" 'and',\n",
" 'creekside',\n",
" 'location',\n",
" '.',\n",
" 'It’s',\n",
" 'also',\n",
" 'very',\n",
" 'dog-friendly',\n",
" ',',\n",
" 'so',\n",
" 'feel',\n",
" 'free',\n",
" 'to',\n",
" 'bring',\n",
" 'along',\n",
" 'your',\n",
" 'furry',\n",
" 'friend',\n",
" '.',\n",
" 'But',\n",
" 'bear',\n",
" 'in',\n",
" 'mind',\n",
" 'that',\n",
" 'the',\n",
" 'beauty',\n",
" 'of',\n",
" 'this',\n",
" 'park',\n",
" 'attracts',\n",
" 'many',\n",
" 'far',\n",
" 'and',\n",
" 'wide',\n",
" '(',\n",
" 'including',\n",
" 'bikers',\n",
" ')',\n",
" ',',\n",
" 'so',\n",
" 'it',\n",
" 'can',\n",
" 'get',\n",
" 'very',\n",
" 'crowded',\n",
" 'at',\n",
" 'peak',\n",
" 'times',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Westlake\",\n",
" 'folks',\n",
" 'are',\n",
" 'neighbors',\n",
" 'to',\n",
" 'this',\n",
" 'rocky',\n",
" 'running',\n",
" 'route',\n",
" '.',\n",
" 'If',\n",
" 'you',\n",
" 'choose',\n",
" 'to',\n",
" 'take',\n",
" 'it',\n",
" 'on',\n",
" ',',\n",
" 'you’ll',\n",
" 'want',\n",
" 'to',\n",
" 'lace',\n",
" 'up',\n",
" 'your',\n",
" 'trail',\n",
" 'sneakers',\n",
" 'tightly',\n",
" 'as',\n",
" 'you',\n",
" 'traverse',\n",
" 'the',\n",
" 'steep',\n",
" 'climbs',\n",
" 'and',\n",
" 'uneven',\n",
" 'terrain',\n",
" '.',\n",
" 'But',\n",
" 'with',\n",
" 'great',\n",
" 'challenges',\n",
" 'come',\n",
" 'great',\n",
" 'rewards',\n",
" '–',\n",
" 'winding',\n",
" 'along',\n",
" 'the',\n",
" '360',\n",
" 'highway',\n",
" ',',\n",
" 'runners',\n",
" 'are',\n",
" 'greeted',\n",
" 'with',\n",
" 'scenic',\n",
" 'overlooks',\n",
" 'of',\n",
" 'the',\n",
" 'Hill',\n",
" 'Country',\n",
" 'around',\n",
" 'every',\n",
" 'turn',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You’ll\",\n",
" 'have',\n",
" 'to',\n",
" 'trek',\n",
" 'a',\n",
" 'little',\n",
" 'further',\n",
" 'for',\n",
" 'this',\n",
" 'gem',\n",
" ',',\n",
" 'which',\n",
" 'is',\n",
" 'technically',\n",
" 'in',\n",
" 'Cedar',\n",
" 'Park',\n",
" '.',\n",
" 'But',\n",
" 'given',\n",
" 'its',\n",
" 'popularity',\n",
" ',',\n",
" 'it’s',\n",
" 'obvious',\n",
" 'that',\n",
" 'the',\n",
" 'distance',\n",
" 'doesn’t',\n",
" 'prevent',\n",
" 'many',\n",
" 'Austinites',\n",
" 'from',\n",
" 'enjoying',\n",
" 'it',\n",
" '–',\n",
" 'and',\n",
" 'we',\n",
" 'can',\n",
" 'certainly',\n",
" 'see',\n",
" 'why',\n",
" '!',\n",
" 'With',\n",
" 'a',\n",
" 'lake',\n",
" 'to',\n",
" 'run',\n",
" 'around',\n",
" ',',\n",
" 'bridges',\n",
" 'to',\n",
" 'bound',\n",
" 'over',\n",
" ',',\n",
" 'and',\n",
" 'pretty',\n",
" 'parks',\n",
" 'along',\n",
" 'the',\n",
" 'way',\n",
" ',',\n",
" 'it’s',\n",
" 'no',\n",
" 'surprise',\n",
" 'to',\n",
" 'us',\n",
" 'why',\n",
" 'so',\n",
" 'many',\n",
" 'love',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'this',\n",
" 'all-level',\n",
" '6.5-mile',\n",
" 'route',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'forgo',\n",
" 'the',\n",
" 'trail',\n",
" 'shoes',\n",
" 'and',\n",
" 'throw',\n",
" 'on',\n",
" 'some',\n",
" 'sneaks',\n",
" 'for',\n",
" 'an',\n",
" 'urban',\n",
" 'adventure',\n",
" ',',\n",
" 'Hyde',\n",
" 'Park',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'option',\n",
" 'for',\n",
" 'North',\n",
" 'Austinites',\n",
" '.',\n",
" 'Similar',\n",
" 'to',\n",
" 'the',\n",
" 'Travis',\n",
" 'Heights',\n",
" 'route',\n",
" 'for',\n",
" 'South',\n",
" 'Austin',\n",
" 'dwellers',\n",
" ',',\n",
" 'here',\n",
" 'you’ll',\n",
" 'find',\n",
" 'quiet',\n",
" ',',\n",
" 'residential',\n",
" 'streets',\n",
" 'perfect',\n",
" 'for',\n",
" 'safe',\n",
" ',',\n",
" 'cityscape',\n",
" 'exploring',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'also',\n",
" 'plenty',\n",
" 'of',\n",
" 'shops',\n",
" 'and',\n",
" 'cafes',\n",
" 'around',\n",
" 'to',\n",
" 'treat',\n",
" 'yourself',\n",
" 'with',\n",
" 'when',\n",
" 'you’re',\n",
" 'finished',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"''\",\n",
" ',',\n",
" \"''\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'an',\n",
" 'ultra-marathoner',\n",
" 'or',\n",
" 'a',\n",
" 'casual',\n",
" 'jogger',\n",
" ',',\n",
" 'running',\n",
" 'is',\n",
" 'always',\n",
" 'better',\n",
" 'with\\\\xa0friends',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’re',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'no',\n",
" 'trouble',\n",
" 'finding',\n",
" 'some',\n",
" 'new…',\n",
" \"'\",\n",
" ',',\n",
" \"'There’s\",\n",
" 'a',\n",
" 'lot',\n",
" 'for',\n",
" 'fitness',\n",
" 'adventures',\n",
" 'to',\n",
" 'get',\n",
" 'excited',\n",
" 'about',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'There',\n",
" 'are',\n",
" 'rock',\n",
" 'climbing',\n",
" 'spots',\n",
" 'a',\n",
" 'stone’s',\n",
" 'throw',\n",
" 'from',\n",
" 'downtown',\n",
" ',',\n",
" 'kayaking',\n",
" 'and',\n",
" 'paddle',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'There\",\n",
" 'comes',\n",
" 'a',\n",
" 'time',\n",
" 'in',\n",
" 'every',\n",
" 'fitness',\n",
" 'fiend’s',\n",
" 'journey',\n",
" 'when',\n",
" 'the',\n",
" 'same',\n",
" 'old',\n",
" 'routine',\n",
" 'starts',\n",
" 'to',\n",
" 'feel',\n",
" 'stale',\n",
" 'and',\n",
" 'boring\\\\xa0or',\n",
" 'even',\n",
" 'becomes',\n",
" 'less',\n",
" 'effective',\n",
" 'over',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'We\",\n",
" 'solemnly',\n",
" 'swear',\n",
" 'that',\n",
" 'we’re',\n",
" 'up',\n",
" 'to…some',\n",
" 'sweaty',\n",
" 'Hatha',\n",
" 'yoga',\n",
" '.',\n",
" 'You',\n",
" 'may',\n",
" 'not',\n",
" 'get',\n",
" 'that',\n",
" 'reference',\n",
" 'if',\n",
" 'you’re',\n",
" 'not',\n",
" 'a',\n",
" 'Harry',\n",
" 'Potter',\n",
" 'fan',\n",
" ',',\n",
" 'but',\n",
" 'that',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'amazing',\n",
" 'things',\n",
" 'about',\n",
" 'Austin',\n",
" 'is',\n",
" 'its',\n",
" 'unique',\n",
" 'blend',\n",
" 'of',\n",
" 'urban',\n",
" 'and',\n",
" 'outdoor',\n",
" 'activities',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'spend',\n",
" 'the',\n",
" 'day',\n",
" 'at',\n",
" 'the',\n",
" 'office',\n",
" ',',\n",
" 'then',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'As\",\n",
" 'the',\n",
" 'sweltering',\n",
" 'heat',\n",
" 'of',\n",
" 'summer',\n",
" 'has',\n",
" 'finally',\n",
" 'behind',\n",
" 'us',\n",
" ',',\n",
" 'we',\n",
" 'now',\n",
" 'have',\n",
" 'months',\n",
" 'of',\n",
" 'sunny',\n",
" ',',\n",
" 'mild',\n",
" 'weather',\n",
" 'to',\n",
" 'look',\n",
" 'forward',\n",
" 'to',\n",
" '.',\n",
" 'Yes',\n",
" ',',\n",
" 'fall',\n",
" 'is',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Austin\",\n",
" 'is',\n",
" 'known',\n",
" 'for',\n",
" 'its',\n",
" 'general',\n",
" 'weirdness',\n",
" ',',\n",
" 'awesome',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'and',\n",
" 'delicious',\n",
" 'grub',\n",
" '–',\n",
" 'but',\n",
" 'what',\n",
" 'really',\n",
" 'makes',\n",
" 'our',\n",
" 'city',\n",
" 'shine',\n",
" 'are',\n",
" 'the',\n",
" 'scenic',\n",
" 'wilderness',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Let’s\",\n",
" 'be',\n",
" 'honest',\n",
" '–',\n",
" 'there',\n",
" 'are',\n",
" 'days',\n",
" 'we’d',\n",
" 'rather',\n",
" 'stay',\n",
" 'at',\n",
" 'home',\n",
" 'in',\n",
" 'sweatpants',\n",
" 'instead',\n",
" 'of',\n",
" 'venturing',\n",
" 'out',\n",
" 'into',\n",
" 'the',\n",
" 'world',\n",
" '.',\n",
" 'Enter',\n",
" ':',\n",
" 'the',\n",
" 'glorious',\n",
" 'world…',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'So\",\n",
" 'you',\n",
" 'just',\n",
" 'finished',\n",
" 'that',\n",
" 'long',\n",
" 'workout',\n",
" 'of',\n",
" 'yours',\n",
" '.',\n",
" 'Yeah',\n",
" ',',\n",
" 'you',\n",
" 'totally',\n",
" 'killed',\n",
" 'it',\n",
" '.',\n",
" '(',\n",
" 'props',\n",
" '!',\n",
" ')',\n",
" 'Now',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'refuel',\n",
" 'before',\n",
" 'crushing',\n",
" 'the',\n",
" 'rest',\n",
" 'of',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Even\",\n",
" 'the',\n",
" 'MOST',\n",
" 'disciplined',\n",
" 'among',\n",
" 'us',\n",
" 'know',\n",
" 'what',\n",
" 'the',\n",
" 'thought',\n",
" 'of',\n",
" 'a',\n",
" 'hot',\n",
" ',',\n",
" 'cheesy',\n",
" 'slice',\n",
" 'of',\n",
" 'pizza',\n",
" 'can',\n",
" 'do',\n",
" 'to',\n",
" 'our',\n",
" 'willpower',\n",
" '.',\n",
" 'But',\n",
" 'come',\n",
" 'on',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Some\",\n",
" 'of',\n",
" 'us',\n",
" 'work',\n",
" 'on',\n",
" 'our',\n",
" 'fitness',\n",
" 'for',\n",
" 'health',\n",
" ',',\n",
" 'others',\n",
" 'work',\n",
" 'on',\n",
" 'it',\n",
" 'for',\n",
" 'a',\n",
" 'killer',\n",
" 'beach',\n",
" 'bod',\n",
" ',',\n",
" 'and',\n",
" 'still',\n",
" 'more',\n",
" 'do',\n",
" 'it',\n",
" 'so',\n",
" 'they',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'You’ve\",\n",
" 'logged',\n",
" 'some',\n",
" 'serious',\n",
" 'mileage',\n",
" ',',\n",
" 'lifted',\n",
" 'all',\n",
" 'of',\n",
" 'the',\n",
" 'weights',\n",
" ',',\n",
" 'and',\n",
" 'fueled',\n",
" 'up',\n",
" 'on',\n",
" 'protein',\n",
" 'and',\n",
" 'greens',\n",
" '(',\n",
" 'right',\n",
" '?',\n",
" ')',\n",
" '.',\n",
" 'Now',\n",
" 'it’s',\n",
" 'time',\n",
" 'to',\n",
" 'treat',\n",
" 'yourself',\n",
" '.',\n",
" 'Calories',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'warm',\n",
" 'temps',\n",
" 'and',\n",
" 'sunny',\n",
" 'days',\n",
" 'make',\n",
" 'it',\n",
" 'tough',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'get',\n",
" 'into',\n",
" 'the',\n",
" 'holiday',\n",
" 'spirit',\n",
" ',',\n",
" 'then',\n",
" 'it’s',\n",
" 'time',\n",
" 'to',\n",
" 'rejoice',\n",
" '!',\n",
" 'We',\n",
" 'found',\n",
" 'a',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Ah\",\n",
" ',',\n",
" 'November',\n",
" 'is',\n",
" 'upon',\n",
" 'us',\n",
" ',',\n",
" 'which',\n",
" 'means',\n",
" 'fall',\n",
" 'in',\n",
" 'Austin',\n",
" 'is',\n",
" 'in',\n",
" 'full',\n",
" 'force',\n",
" '.',\n",
" 'Outside',\n",
" 'is',\n",
" 'no',\n",
" 'longer',\n",
" 'sweltering',\n",
" ',',\n",
" 'UT',\n",
" 'football',\n",
" 'is',\n",
" 'going',\n",
" 'strong',\n",
" ',',\n",
" 'and',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'October\",\n",
" 'in',\n",
" 'Austin',\n",
" 'is',\n",
" 'a',\n",
" 'beautiful',\n",
" 'thing',\n",
" '.',\n",
" 'The',\n",
" 'blazing',\n",
" 'hot',\n",
" 'temperatures',\n",
" 'have',\n",
" 'subsided',\n",
" ',',\n",
" 'so',\n",
" 'outdoor',\n",
" 'workouts',\n",
" 'are',\n",
" 'a',\n",
" 'breeze',\n",
" ';',\n",
" 'Austin',\n",
" 'City',\n",
" 'Limits',\n",
" 'is',\n",
" 'temporarily',\n",
" 'taking',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Well\",\n",
" 'folks',\n",
" ',',\n",
" 'the',\n",
" 'bittersweet',\n",
" 'time',\n",
" 'of',\n",
" 'summer’s',\n",
" 'end',\n",
" 'is',\n",
" 'upon',\n",
" 'us',\n",
" ',',\n",
" 'which',\n",
" 'means',\n",
" 'fewer',\n",
" 'days',\n",
" 'on',\n",
" 'the',\n",
" 'lake',\n",
" ',',\n",
" 'the',\n",
" 'fireworks',\n",
" 'are',\n",
" 'packed',\n",
" 'away',\n",
" 'until',\n",
" 'next',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'amazing',\n",
" 'things',\n",
" 'about',\n",
" 'Austin',\n",
" 'is',\n",
" 'its',\n",
" 'unique',\n",
" 'blend',\n",
" 'of',\n",
" 'urban',\n",
" 'and',\n",
" 'outdoor',\n",
" 'activities',\n",
" '.',\n",
" 'You',\n",
" 'can',\n",
" 'spend',\n",
" 'the',\n",
" 'day',\n",
" 'at',\n",
" 'the',\n",
" 'office',\n",
" ',',\n",
" 'then',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Austin\",\n",
" 'is',\n",
" 'known',\n",
" 'for',\n",
" 'its',\n",
" 'general',\n",
" 'weirdness',\n",
" ',',\n",
" 'awesome',\n",
" 'live',\n",
" 'music',\n",
" ',',\n",
" 'and',\n",
" 'delicious',\n",
" 'grub',\n",
" '–',\n",
" 'but',\n",
" 'what',\n",
" 'really',\n",
" 'makes',\n",
" 'our',\n",
" 'city',\n",
" 'shine',\n",
" 'are',\n",
" 'the',\n",
" 'scenic',\n",
" 'wilderness',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Let’s\",\n",
" 'be',\n",
" 'honest',\n",
" '–',\n",
" 'there',\n",
" 'are',\n",
" 'days',\n",
" 'we’d',\n",
" 'rather',\n",
" 'stay',\n",
" 'at',\n",
" 'home',\n",
" 'in',\n",
" 'sweatpants',\n",
" 'instead',\n",
" 'of',\n",
" 'venturing',\n",
" 'out',\n",
" 'into',\n",
" 'the',\n",
" 'world',\n",
" '.',\n",
" 'Enter',\n",
" ':',\n",
" 'the',\n",
" 'glorious',\n",
" 'world…',\n",
" \"'\",\n",
" ',',\n",
" \"'Eating\",\n",
" 'healthy',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you',\n",
" 'have',\n",
" 'dietary',\n",
" 'restrictions',\n",
" 'on',\n",
" 'top',\n",
" 'of',\n",
" 'it',\n",
" '?',\n",
" 'Forget',\n",
" 'it',\n",
" ';',\n",
" 'that',\n",
" 'struggle',\n",
" 'is',\n",
" 'taken',\n",
" 'to',\n",
" 'a',\n",
" 'whole',\n",
" 'new',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'So\",\n",
" 'you',\n",
" 'just',\n",
" 'finished',\n",
" 'that',\n",
" 'long',\n",
" 'workout',\n",
" 'of',\n",
" 'yours',\n",
" '.',\n",
" 'Yeah',\n",
" ',',\n",
" 'you',\n",
" 'totally',\n",
" 'killed',\n",
" 'it',\n",
" '.',\n",
" '(',\n",
" 'props',\n",
" '!',\n",
" ')',\n",
" 'Now',\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'refuel',\n",
" 'before',\n",
" 'crushing',\n",
" 'the',\n",
" 'rest',\n",
" 'of',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Even\",\n",
" 'the',\n",
" 'MOST',\n",
" 'disciplined',\n",
" 'among',\n",
" 'us',\n",
" 'know',\n",
" 'what',\n",
" 'the',\n",
" 'thought',\n",
" 'of',\n",
" 'a',\n",
" 'hot',\n",
" ',',\n",
" 'cheesy',\n",
" 'slice',\n",
" 'of',\n",
" 'pizza',\n",
" 'can',\n",
" 'do',\n",
" 'to',\n",
" 'our',\n",
" 'willpower',\n",
" '.',\n",
" 'But',\n",
" 'come',\n",
" 'on',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'into',\n",
" 'eating',\n",
" 'well',\n",
" ',',\n",
" 'grocery',\n",
" 'shopping',\n",
" 'can',\n",
" 'be',\n",
" 'nightmare',\n",
" '.',\n",
" 'Honestly',\n",
" ',',\n",
" 'we’re',\n",
" 'trying',\n",
" 'to',\n",
" 'be',\n",
" 'healthy',\n",
" 'here',\n",
" ',',\n",
" 'but',\n",
" 'it’s',\n",
" 'tough',\n",
" 'to',\n",
" 'know',\n",
" 'where',\n",
" 'to',\n",
" 'shop',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Long\",\n",
" 'live',\n",
" 'mimosas',\n",
" ',',\n",
" 'syrupy',\n",
" 'french',\n",
" 'toast',\n",
" ',',\n",
" 'and',\n",
" 'greasy',\n",
" 'grits',\n",
" '!',\n",
" 'But',\n",
" 'if',\n",
" 'we',\n",
" 'want',\n",
" 'to',\n",
" 'live',\n",
" 'long',\n",
" 'too',\n",
" ',',\n",
" 'our',\n",
" 'brunch',\n",
" 'indulgences',\n",
" 'can’t',\n",
" 'always',\n",
" 'look',\n",
" 'like',\n",
" 'an',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'you’re',\n",
" 'an',\n",
" 'active',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'for',\n",
" 'romance',\n",
" 'with',\n",
" 'a',\n",
" 'side',\n",
" 'of',\n",
" 'fitness',\n",
" ',',\n",
" 'then',\n",
" 'we’ve',\n",
" 'got',\n",
" 'just',\n",
" 'what',\n",
" 'you',\n",
" 'need',\n",
" '.',\n",
" 'Think',\n",
" 'healthy',\n",
" 'happenings',\n",
" 'for',\n",
" 'guys',\n",
" ',',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'an',\n",
" 'ultra-marathoner',\n",
" 'or',\n",
" 'a',\n",
" 'casual',\n",
" 'jogger',\n",
" ',',\n",
" 'running',\n",
" 'is',\n",
" 'always',\n",
" 'better',\n",
" 'with\\\\xa0friends',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’re',\n",
" 'in',\n",
" 'Austin',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'no',\n",
" 'trouble',\n",
" 'finding',\n",
" 'some',\n",
" 'new…',\n",
" \"'\",\n",
" ',',\n",
" \"'Love\",\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'a',\n",
" 'scenic',\n",
" 'run',\n",
" 'along',\n",
" 'a',\n",
" 'river',\n",
" 'with',\n",
" 'skyline',\n",
" 'views',\n",
" '?',\n",
" 'Or',\n",
" 'maybe',\n",
" 'you',\n",
" 'long',\n",
" 'to',\n",
" 'lace',\n",
" 'your',\n",
" 'sneakers',\n",
" 'up',\n",
" 'for',\n",
" 'a',\n",
" 'trail',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ve\",\n",
" 'got',\n",
" 'it',\n",
" 'made',\n",
" '.',\n",
" 'Austin’s',\n",
" 'climate',\n",
" 'means',\n",
" 'year-round',\n",
" 'patio',\n",
" 'brunches',\n",
" ',',\n",
" 'all-season',\n",
" 'swimming',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'yearlong',\n",
" 'calendar',\n",
" 'of',\n",
" 'fun',\n",
" 'races',\n",
" 'to',\n",
" 'run',\n",
" 'your',\n",
" 'butt',\n",
" 'off',\n",
" 'in',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Running\",\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'fit',\n",
" '.',\n",
" 'But',\n",
" 'nowadays',\n",
" ',',\n",
" 'shaping',\n",
" 'up',\n",
" 'isn’t',\n",
" 'the',\n",
" 'only',\n",
" 'reason',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" '.',\n",
" 'These',\n",
" 'new',\n",
" 'crop',\n",
" 'of',\n",
" 'fun',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'There\",\n",
" 'comes',\n",
" 'a',\n",
" 'time',\n",
" 'in',\n",
" 'every',\n",
" 'fitness',\n",
" 'fiend’s',\n",
" 'journey',\n",
" 'when',\n",
" 'the',\n",
" 'same',\n",
" 'old',\n",
" 'routine',\n",
" 'starts',\n",
" 'to',\n",
" 'feel',\n",
" 'stale',\n",
" 'and',\n",
" 'boring\\\\xa0or',\n",
" 'even',\n",
" 'becomes',\n",
" 'less',\n",
" 'effective',\n",
" 'over',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'What’s\",\n",
" 'better',\n",
" 'than',\n",
" 'making',\n",
" 'new',\n",
" 'friends',\n",
" ',',\n",
" 'workin’',\n",
" 'that',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'trying',\n",
" 'something',\n",
" 'new',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'nothing',\n",
" '!',\n",
" 'That',\n",
" 'is',\n",
" 'unless',\n",
" 'you',\n",
" 'can',\n",
" 'do',\n",
" 'all',\n",
" 'of',\n",
" 'that',\n",
" 'for',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Picking\",\n",
" 'the',\n",
" 'right',\n",
" 'yoga',\n",
" 'studio',\n",
" 'can',\n",
" 'be',\n",
" 'tough',\n",
" '–',\n",
" 'sometimes',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'channel',\n",
" 'your',\n",
" 'spiritual',\n",
" 'side',\n",
" 'and',\n",
" 'other',\n",
" 'times',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'sweat',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" '...',\n",
" \"'\",\n",
" ',',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'training',\n",
" 'for',\n",
" 'Regionals',\n",
" 'or',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'tackle',\n",
" 'everyday',\n",
" 'activities',\n",
" 'with',\n",
" 'more',\n",
" 'energy',\n",
" ',',\n",
" 'CrossFit',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'it',\n",
" 'done',\n",
" '...',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'training',\n",
" 'for',\n",
" 'Regionals',\n",
" 'or',\n",
" 'you',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'tackle',\n",
" 'everyday',\n",
" 'activities',\n",
" 'with',\n",
" 'more',\n",
" 'energy',\n",
" ',',\n",
" 'CrossFit',\n",
" 'is',\n",
" 'a',\n",
" 'great',\n",
" 'way',\n",
" 'to',\n",
" 'get',\n",
" 'it',\n",
" 'done',\n",
" '.',\n",
" 'Any',\n",
" 'doubts',\n",
" 'about',\n",
" 'its',\n",
" 'effectiveness',\n",
" 'are',\n",
" 'dispelled',\n",
" 'by',\n",
" 'all',\n",
" 'of',\n",
" 'the',\n",
" 'outrageously',\n",
" 'fit',\n",
" 'crew',\n",
" 'at',\n",
" 'your',\n",
" 'local',\n",
" 'CrossFit',\n",
" 'box',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'And\",\n",
" 'if',\n",
" 'you’re',\n",
" 'thinking',\n",
" 'about',\n",
" 'getting',\n",
" 'in',\n",
" 'on',\n",
" 'the',\n",
" 'action',\n",
" ',',\n",
" 'you’re',\n",
" 'probably',\n",
" 'wondering',\n",
" 'where',\n",
" 'to',\n",
" 'start',\n",
" '.',\n",
" 'Well',\n",
" ',',\n",
" 'we',\n",
" 'scanned',\n",
" 'the',\n",
" 'city',\n",
" 'to',\n",
" 'bring',\n",
" 'you',\n",
" 'the',\n",
" 'cream',\n",
" 'of',\n",
" 'the',\n",
" 'CrossFit',\n",
" 'crop',\n",
" '.',\n",
" 'The',\n",
" 'coaches',\n",
" 'are',\n",
" 'supportive',\n",
" ',',\n",
" 'the',\n",
" 'communities',\n",
" 'are',\n",
" 'incredible',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'locations',\n",
" 'are',\n",
" 'everywhere',\n",
" '.',\n",
" 'So',\n",
" 'all',\n",
" 'of',\n",
" 'you',\n",
" 'Austinites',\n",
" ',',\n",
" 'no',\n",
" 'matter',\n",
" 'which',\n",
" 'part',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'you',\n",
" 'call',\n",
" 'home',\n",
" ',',\n",
" 'can',\n",
" 'find',\n",
" 'the',\n",
" 'right',\n",
" 'CrossFit',\n",
" 'family',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'As\",\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'first',\n",
" '50',\n",
" 'CrossFit',\n",
" 'affiliates',\n",
" 'in',\n",
" 'the',\n",
" 'world',\n",
" ',',\n",
" 'CrossFit',\n",
" 'Central',\n",
" 'is',\n",
" 'an',\n",
" 'authority',\n",
" 'here',\n",
" 'in',\n",
" 'the',\n",
" 'Austin',\n",
" 'workout',\n",
" 'scene',\n",
" '.',\n",
" 'This',\n",
" 'family-operated',\n",
" 'business',\n",
" 'has',\n",
" 'three',\n",
" 'different',\n",
" 'locations',\n",
" ',',\n",
" 'so',\n",
" 'all',\n",
" 'Austinites',\n",
" 'can',\n",
" 'easily',\n",
" 'jump',\n",
" 'in',\n",
" 'and',\n",
" 'master',\n",
" 'their',\n",
" 'skills',\n",
" 'in',\n",
" 'strength',\n",
" 'and',\n",
" 'endurance',\n",
" '.',\n",
" 'With',\n",
" 'exclusive',\n",
" 'competitions',\n",
" 'for',\n",
" 'members',\n",
" ',',\n",
" 'monthly',\n",
" 'nutrition',\n",
" 'meetings',\n",
" ',',\n",
" 'and',\n",
" 'free',\n",
" 'body',\n",
" 'composition',\n",
" 'assessments',\n",
" ',',\n",
" 'there’s',\n",
" 'no',\n",
" 'shortage',\n",
" 'of',\n",
" 'incentives',\n",
" 'to',\n",
" 'become',\n",
" 'a',\n",
" 'part',\n",
" 'of',\n",
" 'this',\n",
" 'tight-knit',\n",
" 'community',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Westlake\",\n",
" 'is',\n",
" 'home',\n",
" 'to',\n",
" 'beautiful',\n",
" 'estates',\n",
" ',',\n",
" 'eye-catching',\n",
" 'scenery',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'great',\n",
" 'place',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'workout',\n",
" 'on',\n",
" '.',\n",
" 'Offering',\n",
" 'small',\n",
" 'group',\n",
" 'classes',\n",
" ',',\n",
" 'private',\n",
" 'training',\n",
" ',',\n",
" 'and',\n",
" 'nutrition',\n",
" 'counseling',\n",
" ',',\n",
" 'Westlake',\n",
" 'CrossFit',\n",
" 'has',\n",
" 'it',\n",
" 'all',\n",
" '.',\n",
" 'And',\n",
" 'with',\n",
" 'teen',\n",
" 'strength',\n",
" 'and',\n",
" 'conditioning',\n",
" 'classes',\n",
" 'every',\n",
" 'Tuesday',\n",
" 'and',\n",
" 'Thursday',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'even',\n",
" 'make',\n",
" 'it',\n",
" 'a',\n",
" 'family',\n",
" 'affair',\n",
" '.',\n",
" 'Still',\n",
" 'unsure',\n",
" '?',\n",
" 'No',\n",
" 'problem',\n",
" '.',\n",
" 'The',\n",
" 'people',\n",
" 'here',\n",
" 'are',\n",
" 'so',\n",
" 'confident',\n",
" 'you’ll',\n",
" 'fall',\n",
" 'in',\n",
" 'love',\n",
" 'that',\n",
" 'they',\n",
" 'offer',\n",
" 'free',\n",
" 'weekly',\n",
" 'classes',\n",
" 'so',\n",
" 'you',\n",
" 'can',\n",
" 'test',\n",
" 'the',\n",
" 'waters',\n",
" 'without',\n",
" 'commitment',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Calling\",\n",
" 'all',\n",
" 'SoCo',\n",
" 'dwellers',\n",
" '!',\n",
" 'We',\n",
" 'found',\n",
" 'your',\n",
" 'home',\n",
" 'gym',\n",
" '.',\n",
" 'CrossFit',\n",
" 'Austin',\n",
" 'makes',\n",
" 'a',\n",
" 'point',\n",
" 'of',\n",
" 'being',\n",
" 'well-rounded',\n",
" '–',\n",
" 'in',\n",
" 'addition',\n",
" 'to',\n",
" 'honing',\n",
" 'your',\n",
" 'body',\n",
" ',',\n",
" 'they',\n",
" 'want',\n",
" 'your',\n",
" 'mind',\n",
" 'and',\n",
" 'spirit',\n",
" 'to',\n",
" 'get',\n",
" 'fit',\n",
" ',',\n",
" 'too',\n",
" '.',\n",
" 'Their',\n",
" 'coaches',\n",
" 'are',\n",
" 'friendly',\n",
" ',',\n",
" 'knowledgeable',\n",
" ',',\n",
" 'and',\n",
" 'well-equipped',\n",
" 'to',\n",
" 'meet',\n",
" 'you',\n",
" 'where',\n",
" 'you',\n",
" 'are',\n",
" '.',\n",
" 'So',\n",
" 'whether',\n",
" 'you’ve',\n",
" 'been',\n",
" 'doing',\n",
" 'WODs',\n",
" 'for',\n",
" 'years',\n",
" ',',\n",
" 'or',\n",
" 'have',\n",
" 'no',\n",
" 'idea',\n",
" 'what',\n",
" 'that',\n",
" 'means',\n",
" ',',\n",
" 'this',\n",
" 'gym',\n",
" 'has',\n",
" 'you',\n",
" 'covered',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'folks',\n",
" 'here',\n",
" 'know',\n",
" 'that',\n",
" 'with',\n",
" 'tough',\n",
" 'workouts',\n",
" 'can',\n",
" 'come',\n",
" 'even',\n",
" 'tougher',\n",
" 'injuries',\n",
" ',',\n",
" 'so',\n",
" 'Fortitude',\n",
" 'Fitness',\n",
" 'makes',\n",
" 'safety',\n",
" 'their',\n",
" 'number',\n",
" 'one',\n",
" 'priority',\n",
" '.',\n",
" 'Coming',\n",
" 'into',\n",
" 'a',\n",
" 'clean',\n",
" '+',\n",
" 'jerk',\n",
" 'or',\n",
" 'box',\n",
" 'jump',\n",
" 'cold',\n",
" 'can',\n",
" 'be',\n",
" 'frightening',\n",
" '.',\n",
" 'That’s',\n",
" 'why',\n",
" 'they',\n",
" 'have',\n",
" 'a',\n",
" 'leveling',\n",
" 'system',\n",
" 'designed',\n",
" 'to',\n",
" 'make',\n",
" 'sure',\n",
" 'no',\n",
" 'one',\n",
" 'is',\n",
" 'asked',\n",
" 'to',\n",
" 'perform',\n",
" 'exercises',\n",
" 'beyond',\n",
" 'their',\n",
" 'body’s',\n",
" 'capability',\n",
" ';',\n",
" 'you',\n",
" 'can',\n",
" 'be',\n",
" 'confident',\n",
" 'that',\n",
" 'you’re',\n",
" 'in',\n",
" 'safe',\n",
" 'hands',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'a',\n",
" 'northeast',\n",
" 'Austinite',\n",
" 'looking',\n",
" 'to',\n",
" 'see',\n",
" 'if',\n",
" 'CrossFit',\n",
" 'is',\n",
" 'the',\n",
" 'right',\n",
" 'workout',\n",
" 'for',\n",
" 'you',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'explore',\n",
" 'it',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Having\",\n",
" 'a',\n",
" 'rough',\n",
" 'day',\n",
" '?',\n",
" 'Overwhelmed',\n",
" '?',\n",
" 'Live',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" '?',\n",
" 'Voodoo',\n",
" 'CrossFit',\n",
" '512',\n",
" 'is',\n",
" 'just',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'forget',\n",
" 'about',\n",
" 'the',\n",
" 'day’s',\n",
" 'troubles',\n",
" 'while',\n",
" 'getting',\n",
" 'in',\n",
" 'a',\n",
" 'super',\n",
" 'powerful',\n",
" 'workout',\n",
" '.',\n",
" 'When',\n",
" 'you',\n",
" 'enter',\n",
" 'the',\n",
" 'magical',\n",
" 'Voodoo',\n",
" 'Box',\n",
" ',',\n",
" 'you',\n",
" 'enter',\n",
" 'a',\n",
" 'special',\n",
" 'kind',\n",
" 'of',\n",
" 'sanctuary',\n",
" 'with',\n",
" 'a',\n",
" 'full-on',\n",
" 'party',\n",
" 'atmosphere',\n",
" 'where',\n",
" 'everyone',\n",
" 'knows',\n",
" 'your',\n",
" 'name',\n",
" '.',\n",
" 'Folks',\n",
" 'here',\n",
" 'want',\n",
" 'to',\n",
" 'know',\n",
" 'you',\n",
" ',',\n",
" 'and',\n",
" 'they',\n",
" 'want',\n",
" 'to',\n",
" 'help',\n",
" 'you',\n",
" 'be',\n",
" 'the',\n",
" 'best',\n",
" 'version',\n",
" 'of',\n",
" 'yourself',\n",
" 'you',\n",
" 'can',\n",
" 'be',\n",
" '.',\n",
" 'So',\n",
" 'if',\n",
" 'you’re',\n",
" 'looking',\n",
" 'for',\n",
" 'a',\n",
" 'family',\n",
" 'that',\n",
" 'emphasizes',\n",
" 'fun',\n",
" ',',\n",
" 'it',\n",
" 'doesn’t',\n",
" 'get',\n",
" 'much',\n",
" 'better',\n",
" 'than',\n",
" 'this',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Powerlift\",\n",
" 'your',\n",
" 'way',\n",
" 'to',\n",
" 'an',\n",
" 'enviable',\n",
" 'bod',\n",
" 'at',\n",
" 'this',\n",
" 'North',\n",
" 'Lamar',\n",
" 'studio',\n",
" '.',\n",
" 'Proclaiming',\n",
" 'itself',\n",
" '“the',\n",
" 'most',\n",
" 'social',\n",
" 'gym”',\n",
" 'in',\n",
" 'Austin',\n",
" '(',\n",
" 'tell',\n",
" 'that',\n",
" 'to',\n",
" 'Voodoo',\n",
" ')',\n",
" ',',\n",
" 'community',\n",
" 'is',\n",
" 'king',\n",
" 'at',\n",
" 'CrossFit',\n",
" 'City',\n",
" 'Limits',\n",
" '.',\n",
" 'Not',\n",
" 'only',\n",
" 'will',\n",
" 'you',\n",
" 'satisfy',\n",
" 'your',\n",
" 'most',\n",
" 'intense',\n",
" 'workout',\n",
" 'craving',\n",
" ',',\n",
" 'but',\n",
" 'becoming',\n",
" 'a',\n",
" 'member',\n",
" 'also',\n",
" 'means',\n",
" 'happy',\n",
" 'hours',\n",
" ',',\n",
" 'community',\n",
" 'service',\n",
" 'events',\n",
" ',',\n",
" 'and',\n",
" 'intra-gym',\n",
" 'competitions',\n",
" '.',\n",
" 'So',\n",
" 'if',\n",
" 'you',\n",
" 'want',\n",
" 'to',\n",
" 'adopt',\n",
" 'a',\n",
" 'group',\n",
" 'of',\n",
" 'like-minded',\n",
" 'friends',\n",
" 'along',\n",
" 'with',\n",
" 'your',\n",
" 'healthy',\n",
" 'lifestyle',\n",
" ',',\n",
" 'this',\n",
" 'is',\n",
" 'the',\n",
" 'place',\n",
" 'to',\n",
" 'do',\n",
" 'it',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Eastsiders\",\n",
" ',',\n",
" 'we',\n",
" 'haven’t',\n",
" 'forgotten',\n",
" 'about',\n",
" 'you',\n",
" '!',\n",
" 'This',\n",
" 'Eastside',\n",
" 'studio',\n",
" 'is',\n",
" 'all',\n",
" 'about',\n",
" 'pushing',\n",
" 'further',\n",
" 'than',\n",
" 'you',\n",
" 'thought',\n",
" 'you',\n",
" 'could',\n",
" 'go',\n",
" '.',\n",
" 'Their',\n",
" 'tough',\n",
" 'love',\n",
" 'approach',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'unlimited',\n",
" 'support',\n",
" 'all',\n",
" 'the',\n",
" 'while',\n",
" 'holding',\n",
" 'you',\n",
" 'accountable',\n",
" 'and',\n",
" 'ensuring',\n",
" 'you',\n",
" 'meet',\n",
" 'your',\n",
" 'goals',\n",
" '.',\n",
" 'Kicking',\n",
" 'routine',\n",
" 'to',\n",
" 'the',\n",
" 'curb',\n",
" ',',\n",
" 'the',\n",
" 'CrossFit',\n",
" 'workouts',\n",
" 'here',\n",
" 'are',\n",
" 'intense',\n",
" ',',\n",
" 'variable',\n",
" ',',\n",
" 'and',\n",
" 'designed',\n",
" 'to',\n",
" 'take',\n",
" 'you',\n",
" 'to',\n",
" 'the',\n",
" 'next',\n",
" 'level',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Lots\",\n",
" 'of',\n",
" 'folks',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" 'choose',\n",
" 'to',\n",
" 'get',\n",
" 'their',\n",
" 'WOD',\n",
" 'in',\n",
" 'here',\n",
" ',',\n",
" 'which',\n",
" 'is',\n",
" 'no',\n",
" 'surprise',\n",
" '.',\n",
" 'Coaches',\n",
" 'at',\n",
" 'TexFit',\n",
" 'specialize',\n",
" 'in',\n",
" 'functional',\n",
" ',',\n",
" 'efficient',\n",
" ',',\n",
" 'and',\n",
" 'results-oriented',\n",
" 'fitness',\n",
" '.',\n",
" 'What',\n",
" 'you’ll',\n",
" 'see',\n",
" 'when',\n",
" 'you',\n",
" 'walk',\n",
" 'in',\n",
" 'is',\n",
" 'mostly',\n",
" 'just',\n",
" 'a',\n",
" 'whole',\n",
" 'lot',\n",
" 'of',\n",
" 'space',\n",
" '.',\n",
" 'That’s',\n",
" 'because',\n",
" 'they',\n",
" 'don’t',\n",
" 'want',\n",
" 'machines',\n",
" 'to',\n",
" 'do',\n",
" 'the',\n",
" 'work',\n",
" 'for',\n",
" 'you',\n",
" '–',\n",
" 'they',\n",
" 'want',\n",
" 'your',\n",
" 'body',\n",
" 'to',\n",
" 'be',\n",
" 'the',\n",
" 'machine',\n",
" '.',\n",
" 'With',\n",
" 'an',\n",
" 'ever-changing',\n",
" 'series',\n",
" 'of',\n",
" 'workouts',\n",
" 'around',\n",
" 'gymnastics',\n",
" ',',\n",
" 'weightlifting',\n",
" ',',\n",
" 'cardio',\n",
" ',',\n",
" 'or',\n",
" 'a',\n",
" 'combination',\n",
" 'of',\n",
" 'all',\n",
" 'three',\n",
" ',',\n",
" 'you’ll',\n",
" 'leave',\n",
" 'here',\n",
" 'stronger',\n",
" 'and',\n",
" 'more',\n",
" 'equipped',\n",
" 'to',\n",
" 'take',\n",
" 'on',\n",
" 'any',\n",
" 'challenge',\n",
" 'life',\n",
" 'throws',\n",
" 'your',\n",
" 'way',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'guys',\n",
" 'and',\n",
" 'gals',\n",
" 'at',\n",
" 'CrossFit',\n",
" 'and',\n",
" 'Fearless',\n",
" 'want',\n",
" 'you',\n",
" 'to',\n",
" 'be',\n",
" 'better',\n",
" '.',\n",
" 'And',\n",
" ',',\n",
" 'well',\n",
" ',',\n",
" 'fearless',\n",
" '!',\n",
" 'They',\n",
" 'want',\n",
" 'you',\n",
" 'to',\n",
" 'aim',\n",
" 'high',\n",
" 'and',\n",
" 'jump',\n",
" 'even',\n",
" 'higher',\n",
" '.',\n",
" 'Emphasizing',\n",
" 'physical',\n",
" 'and',\n",
" 'mental',\n",
" 'strength',\n",
" ',',\n",
" 'community',\n",
" ',',\n",
" 'and',\n",
" 'teamwork',\n",
" ',',\n",
" 'the',\n",
" 'four',\n",
" 'coaches',\n",
" 'at',\n",
" 'this',\n",
" 'South',\n",
" 'Austin',\n",
" 'box',\n",
" 'are',\n",
" 'committed',\n",
" 'to',\n",
" 'supporting',\n",
" 'you',\n",
" 'during',\n",
" 'every',\n",
" 'step',\n",
" 'of',\n",
" 'your',\n",
" 'fitness',\n",
" 'journey',\n",
" '.',\n",
" 'They',\n",
" 'have',\n",
" 'classes',\n",
" 'all',\n",
" 'day',\n",
" 'and',\n",
" 'drop-ins',\n",
" 'are',\n",
" 'welcome',\n",
" ',',\n",
" 'so',\n",
" 'you',\n",
" 'have',\n",
" 'every',\n",
" 'opportunity',\n",
" 'to',\n",
" 'fit',\n",
" 'it',\n",
" 'into',\n",
" 'your',\n",
" 'schedule',\n",
" '–',\n",
" 'no',\n",
" 'excuses',\n",
" 'allowed',\n",
" '!',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'coaches',\n",
" 'at',\n",
" 'CrossFit',\n",
" 'South',\n",
" 'Lamar',\n",
" 'design',\n",
" 'their',\n",
" 'workouts',\n",
" 'to',\n",
" 'be',\n",
" 'broad',\n",
" ',',\n",
" 'general',\n",
" ',',\n",
" 'and',\n",
" 'all-inclusive',\n",
" '.',\n",
" 'They',\n",
" 'believe',\n",
" 'that',\n",
" 'specialization',\n",
" 'is',\n",
" 'the',\n",
" 'enemy',\n",
" ',',\n",
" 'and',\n",
" 'instead',\n",
" 'want',\n",
" 'to',\n",
" 'prepare',\n",
" 'you',\n",
" 'for',\n",
" 'any',\n",
" 'and',\n",
" 'all',\n",
" 'obstacles',\n",
" 'that',\n",
" 'might',\n",
" 'get',\n",
" 'in',\n",
" 'your',\n",
" 'way',\n",
" '.',\n",
" 'So',\n",
" 'whether',\n",
" 'you’re',\n",
" 'a',\n",
" 'cage',\n",
" 'fighter',\n",
" 'who',\n",
" 'wants',\n",
" 'to',\n",
" 'perfect',\n",
" 'your',\n",
" 'moves',\n",
" ...],\n",
" ['[',\n",
" \"'Sometimes\",\n",
" 'you',\n",
" 'need',\n",
" 'a',\n",
" 'little',\n",
" 'extra',\n",
" 'motivation',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'heart',\n",
" 'pumping',\n",
" '.',\n",
" 'Or',\n",
" ',',\n",
" 'maybe',\n",
" 'a',\n",
" 'lot',\n",
" '.',\n",
" 'Either',\n",
" 'way',\n",
" ',',\n",
" 'the',\n",
" 'classes',\n",
" 'at',\n",
" 'these',\n",
" 'cycling',\n",
" 'studios',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'a',\n",
" 'killer',\n",
" 'workout',\n",
" 'in',\n",
" 'an',\n",
" 'environment',\n",
" 'designed',\n",
" 'to',\n",
" 'motivate',\n",
" 'and',\n",
" 'inspire',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'And\",\n",
" 'all',\n",
" 'over',\n",
" 'Austin',\n",
" ',',\n",
" 'people',\n",
" 'like',\n",
" 'you',\n",
" 'are',\n",
" 'saddlin’',\n",
" 'up',\n",
" 'and',\n",
" 'getting',\n",
" 'those',\n",
" 'wheels',\n",
" 'turning',\n",
" '.',\n",
" 'Whether',\n",
" 'you’re',\n",
" 'a',\n",
" 'cycling',\n",
" 'newbie',\n",
" 'or',\n",
" 'a',\n",
" 'seasoned',\n",
" 'vet',\n",
" ',',\n",
" 'you’ll',\n",
" 'find',\n",
" 'plenty',\n",
" 'of',\n",
" 'places',\n",
" 'around',\n",
" 'town',\n",
" 'to',\n",
" 'sprint',\n",
" ',',\n",
" 'climb',\n",
" ',',\n",
" 'pedal',\n",
" ',',\n",
" 'and',\n",
" 'power',\n",
" 'your',\n",
" 'way',\n",
" 'into',\n",
" 'tip',\n",
" 'top',\n",
" 'shape',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Map\",\n",
" 'The',\n",
" 'time',\n",
" 'has',\n",
" 'come',\n",
" ',',\n",
" 'gang',\n",
" '.',\n",
" 'SoulCycle',\n",
" 'has',\n",
" 'arrived',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" 'Head',\n",
" 'over',\n",
" 'to',\n",
" 'The',\n",
" 'Domain\\\\xa0for',\n",
" 'a',\n",
" 'heart-racing',\n",
" ',',\n",
" 'adrenalin',\n",
" 'pumping',\n",
" 'workout',\n",
" '.',\n",
" 'Like',\n",
" 'many',\n",
" 'riders',\n",
" 'who’ve',\n",
" 'come',\n",
" 'before',\n",
" 'you',\n",
" ',',\n",
" 'you’ll',\n",
" 'be',\n",
" 'addicted',\n",
" 'in',\n",
" 'no',\n",
" 'time',\n",
" '.',\n",
" 'The',\n",
" 'community',\n",
" 'vibe',\n",
" 'and',\n",
" 'energetic',\n",
" 'instructors',\n",
" 'all',\n",
" 'but',\n",
" 'guarantee',\n",
" 'it',\n",
" '.',\n",
" 'Your',\n",
" 'sweat-drenched',\n",
" 'clothes',\n",
" 'and',\n",
" 'post-workout',\n",
" 'high',\n",
" 'put',\n",
" 'your',\n",
" 'SoulCycle',\n",
" 'experience',\n",
" 'over',\n",
" 'the',\n",
" 'top',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'With\",\n",
" 'a',\n",
" 'commitment',\n",
" 'to',\n",
" 'moving',\n",
" 'you',\n",
" 'musically',\n",
" ',',\n",
" 'physically',\n",
" ',',\n",
" 'emotionally',\n",
" ',',\n",
" 'and',\n",
" 'spiritually',\n",
" ',',\n",
" 'the',\n",
" 'folks',\n",
" 'at',\n",
" 'LOVE',\n",
" 'Cycling',\n",
" 'Studio',\n",
" 'downtown',\n",
" 'make',\n",
" 'every',\n",
" 'workout',\n",
" 'fun',\n",
" '.',\n",
" 'If',\n",
" 'you’re',\n",
" 'brand',\n",
" 'new',\n",
" 'to',\n",
" 'the',\n",
" 'cycling',\n",
" 'scene',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'their',\n",
" 'LOVE',\n",
" '101',\n",
" 'class',\n",
" 'where',\n",
" 'you',\n",
" 'can',\n",
" 'learn',\n",
" 'the',\n",
" 'basics',\n",
" 'in',\n",
" 'a',\n",
" 'playful',\n",
" '45-minute',\n",
" 'class',\n",
" '.',\n",
" 'And',\n",
" 'if',\n",
" 'you’ve',\n",
" 'been',\n",
" 'in',\n",
" 'the',\n",
" 'cycling',\n",
" 'game',\n",
" 'for',\n",
" 'a',\n",
" 'while',\n",
" ',',\n",
" 'challenge',\n",
" 'yourself',\n",
" 'with',\n",
" 'Power',\n",
" 'of',\n",
" 'Love',\n",
" '–',\n",
" 'a',\n",
" 'one-hour',\n",
" 'high-intensity',\n",
" 'class',\n",
" 'simulating',\n",
" 'an',\n",
" 'outdoor',\n",
" 'ride',\n",
" 'and',\n",
" 'designed',\n",
" 'to',\n",
" 'be',\n",
" 'extra',\n",
" 'challenging',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'This\",\n",
" 'downtown',\n",
" 'cycling',\n",
" 'studio',\n",
" 'has',\n",
" 'your',\n",
" 'enjoyment',\n",
" 'at',\n",
" 'the',\n",
" 'top',\n",
" 'of',\n",
" 'their',\n",
" 'priority',\n",
" 'list',\n",
" '.',\n",
" 'They',\n",
" 'deliver',\n",
" 'a',\n",
" '“workout',\n",
" 'that',\n",
" 'loves',\n",
" 'you',\n",
" 'back”',\n",
" 'with',\n",
" 'intense',\n",
" '45-minute',\n",
" 'rides',\n",
" 'set',\n",
" 'to',\n",
" 'tunes',\n",
" 'that',\n",
" 'will',\n",
" 'motivate',\n",
" 'you',\n",
" 'to',\n",
" 'ride',\n",
" 'faster',\n",
" 'and',\n",
" 'farther',\n",
" '.',\n",
" 'Check',\n",
" 'out',\n",
" 'any',\n",
" 'one',\n",
" 'of',\n",
" 'the',\n",
" 'classes',\n",
" 'they',\n",
" 'have',\n",
" 'all',\n",
" 'day',\n",
" ',',\n",
" 'every',\n",
" 'day',\n",
" '.',\n",
" 'But',\n",
" 'we',\n",
" 'especially',\n",
" 'recommend',\n",
" 'the',\n",
" 'Beyoncé',\n",
" 'vs.',\n",
" 'Jay-Z',\n",
" 'RIDE',\n",
" 'for',\n",
" 'some',\n",
" 'music-bumping',\n",
" ',',\n",
" 'heart-pounding',\n",
" 'fun',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'North\",\n",
" 'Austinites',\n",
" 'love',\n",
" 'this',\n",
" 'studio',\n",
" 'for',\n",
" 'its',\n",
" 'focus',\n",
" 'on',\n",
" 'community',\n",
" 'and',\n",
" 'full-body',\n",
" 'cycling',\n",
" 'workouts',\n",
" '.',\n",
" 'All',\n",
" 'cycle',\n",
" 'sessions',\n",
" 'are',\n",
" 'done',\n",
" 'to',\n",
" 'the',\n",
" 'beats',\n",
" 'of',\n",
" 'songs',\n",
" 'from',\n",
" 'a',\n",
" 'carefully',\n",
" 'crafted',\n",
" 'playlist',\n",
" ',',\n",
" 'so',\n",
" 'you’ll',\n",
" 'stay',\n",
" 'rhythmically',\n",
" 'engaged',\n",
" 'from',\n",
" 'start',\n",
" 'to',\n",
" 'finish',\n",
" '(',\n",
" 'you',\n",
" 'might',\n",
" 'even',\n",
" 'catch',\n",
" 'yourself',\n",
" 'singing',\n",
" 'if',\n",
" 'you',\n",
" 'can',\n",
" 'catch',\n",
" 'your',\n",
" 'breath',\n",
" ')',\n",
" '.',\n",
" 'Incorporating',\n",
" 'endurance',\n",
" 'intervals',\n",
" 'and',\n",
" 'free',\n",
" 'weights',\n",
" ',',\n",
" 'every',\n",
" 'body',\n",
" 'part',\n",
" 'will',\n",
" 'get',\n",
" 'a',\n",
" 'lot',\n",
" 'of',\n",
" 'love',\n",
" 'by',\n",
" 'the',\n",
" 'time',\n",
" 'you’re',\n",
" 'done',\n",
" 'with',\n",
" 'these',\n",
" '45-minute',\n",
" 'rides',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Whether\",\n",
" 'you’re',\n",
" 'looking',\n",
" 'to',\n",
" 'enhance',\n",
" 'your',\n",
" 'strength',\n",
" ',',\n",
" 'up',\n",
" 'your',\n",
" 'cardio',\n",
" ',',\n",
" 'or',\n",
" 'learn',\n",
" 'the',\n",
" 'basics',\n",
" ',',\n",
" 'there’s',\n",
" 'a',\n",
" 'class',\n",
" 'at',\n",
" 'RIZE',\n",
" 'Urban',\n",
" 'Cycling',\n",
" 'for',\n",
" 'you',\n",
" '.',\n",
" 'Calling',\n",
" 'North',\n",
" 'Austin',\n",
" 'home',\n",
" ',',\n",
" 'the',\n",
" 'studio',\n",
" 'doesn’t',\n",
" 'stop',\n",
" 'at',\n",
" 'cycling',\n",
" '–',\n",
" 'they',\n",
" 'also',\n",
" 'have',\n",
" 'weekly',\n",
" 'meditation',\n",
" 'classes',\n",
" 'and',\n",
" 'yoga',\n",
" 'designed',\n",
" 'especially',\n",
" 'for',\n",
" 'cyclists',\n",
" ',',\n",
" 'so',\n",
" 'your',\n",
" 'mind',\n",
" ',',\n",
" 'body',\n",
" ',',\n",
" 'and',\n",
" 'soul',\n",
" 'are',\n",
" 'all',\n",
" 'covered',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'South\",\n",
" 'Austinites',\n",
" ',',\n",
" 'we',\n",
" 'haven’t',\n",
" 'forgotten',\n",
" 'about',\n",
" 'you',\n",
" '!',\n",
" 'Resolute',\n",
" 'Fitness',\n",
" 'is',\n",
" 'your',\n",
" 'new',\n",
" 'go-to',\n",
" 'for',\n",
" 'yoga-cycling',\n",
" 'fusion',\n",
" '.',\n",
" 'Didn’t',\n",
" 'know',\n",
" 'this',\n",
" 'was',\n",
" 'a',\n",
" 'thing',\n",
" '?',\n",
" 'Well',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'choose',\n",
" 'from',\n",
" 'all',\n",
" 'yoga',\n",
" 'or',\n",
" 'all',\n",
" 'cycling',\n",
" 'classes',\n",
" ',',\n",
" 'but',\n",
" 'the',\n",
" 'fusion',\n",
" 'classes',\n",
" 'are',\n",
" 'what',\n",
" 'really',\n",
" 'shine',\n",
" 'here',\n",
" '–',\n",
" 'starting',\n",
" 'with',\n",
" '30-minute',\n",
" 'interval',\n",
" 'training',\n",
" 'on',\n",
" 'the',\n",
" 'bike',\n",
" 'and',\n",
" 'finishing',\n",
" 'with',\n",
" '30',\n",
" 'minutes',\n",
" 'of',\n",
" 'strength-building',\n",
" 'yoga',\n",
" ',',\n",
" 'no',\n",
" 'fitness',\n",
" 'stone',\n",
" 'is',\n",
" 'left',\n",
" 'unturned',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'If\",\n",
" 'you',\n",
" 'like',\n",
" 'the',\n",
" 'idea',\n",
" 'of',\n",
" 'fitness',\n",
" 'fusion',\n",
" 'and',\n",
" 'you',\n",
" 'live',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" ',',\n",
" 'check',\n",
" 'out',\n",
" 'the',\n",
" 'folks',\n",
" 'at',\n",
" 'Kor180',\n",
" '.',\n",
" 'They',\n",
" 'combine',\n",
" 'Pilates',\n",
" 'reformers',\n",
" 'and',\n",
" 'state-of-the-art',\n",
" 'bikes',\n",
" 'for',\n",
" 'the',\n",
" 'ultimate',\n",
" 'in',\n",
" 'full-body',\n",
" 'workouts',\n",
" '.',\n",
" 'Be',\n",
" 'ready',\n",
" 'to',\n",
" 'cover',\n",
" 'all',\n",
" 'your',\n",
" 'bases',\n",
" 'here',\n",
" '.',\n",
" 'With',\n",
" 'strength',\n",
" 'training',\n",
" ',',\n",
" 'cardio',\n",
" ',',\n",
" 'and',\n",
" 'functional',\n",
" 'stretching',\n",
" ',',\n",
" 'it’s',\n",
" 'like',\n",
" 'an',\n",
" 'all-you-can-eat',\n",
" 'fitness',\n",
" 'buffet',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Hey\",\n",
" ',',\n",
" 'Westlakers',\n",
" ',',\n",
" 'how',\n",
" 'lucky',\n",
" 'you',\n",
" 'are',\n",
" 'to',\n",
" 'have',\n",
" 'CycleFit',\n",
" 'in',\n",
" 'your',\n",
" 'backyard',\n",
" '?',\n",
" '!',\n",
" 'Very',\n",
" '.',\n",
" 'The',\n",
" 'cycling',\n",
" 'classes',\n",
" 'at',\n",
" 'this',\n",
" 'studio',\n",
" 'are',\n",
" 'very',\n",
" 'detail-oriented',\n",
" 'when',\n",
" 'it',\n",
" 'comes',\n",
" 'to',\n",
" 'entertainment',\n",
" '.',\n",
" 'The',\n",
" 'lights',\n",
" 'are',\n",
" 'low',\n",
" ',',\n",
" 'the',\n",
" 'music',\n",
" 'is',\n",
" 'loud',\n",
" ',',\n",
" 'and',\n",
" 'a',\n",
" 'big',\n",
" 'screen',\n",
" 'at',\n",
" 'the',\n",
" 'front',\n",
" 'tells',\n",
" 'you',\n",
" 'how',\n",
" 'far',\n",
" 'you’ve',\n",
" 'come',\n",
" '.',\n",
" 'The',\n",
" 'boutique-feel',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'a',\n",
" 'strong',\n",
" 'sense',\n",
" 'of',\n",
" 'community',\n",
" 'while',\n",
" 'the',\n",
" 'workouts',\n",
" 'will',\n",
" 'give',\n",
" 'you',\n",
" 'a',\n",
" 'stronger',\n",
" 'self',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Save\",\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'studio',\n",
" 'is',\n",
" 'your',\n",
" 'favorite',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" 'at',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'cycling',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'Which\",\n",
" 'studio',\n",
" 'is',\n",
" 'your',\n",
" 'favorite',\n",
" 'to',\n",
" 'break',\n",
" 'a',\n",
" 'sweat',\n",
" 'at',\n",
" '?',\n",
" 'Know',\n",
" 'of',\n",
" 'a',\n",
" 'cycling',\n",
" 'spot',\n",
" 'that',\n",
" 'we',\n",
" 'missed',\n",
" '?',\n",
" 'Let',\n",
" 'us',\n",
" 'know',\n",
" 'with',\n",
" 'a',\n",
" 'comment',\n",
" 'here',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'©\",\n",
" '2017',\n",
" 'Fitt',\n",
" 'Nation',\n",
" '.',\n",
" 'All',\n",
" 'rights',\n",
" 'reserved',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'We’ll\",\n",
" 'keep',\n",
" 'you',\n",
" 'up',\n",
" 'to',\n",
" 'date',\n",
" 'on',\n",
" 'all',\n",
" 'things',\n",
" 'health',\n",
" ',',\n",
" 'fitness',\n",
" 'and',\n",
" 'local',\n",
" 'food',\n",
" 'in',\n",
" 'Austin',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"''\",\n",
" ']'],\n",
" ['[',\n",
" \"'If\",\n",
" 'warm',\n",
" 'temps',\n",
" 'and',\n",
" 'sunny',\n",
" 'days',\n",
" 'make',\n",
" 'it',\n",
" 'tough',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'get',\n",
" 'into',\n",
" 'the',\n",
" 'holiday',\n",
" 'spirit',\n",
" ',',\n",
" 'then',\n",
" 'it’s',\n",
" 'time',\n",
" 'to',\n",
" 'rejoice',\n",
" '!',\n",
" 'We',\n",
" 'found',\n",
" 'a',\n",
" 'whole',\n",
" 'bunch',\n",
" 'of',\n",
" 'festive',\n",
" 'fitness',\n",
" 'events',\n",
" 'to',\n",
" 'make',\n",
" 'your',\n",
" 'month',\n",
" 'a',\n",
" 'little\\\\xa0more',\n",
" 'merry',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You\",\n",
" 'can',\n",
" 'escape',\n",
" 'to',\n",
" 'a',\n",
" 'rooftop',\n",
" 'winter',\n",
" 'wonderland',\n",
" 'for',\n",
" 'ice',\n",
" 'skating',\n",
" ',',\n",
" 'go',\n",
" 'for',\n",
" 'a',\n",
" 'jingle',\n",
" 'bell',\n",
" 'jog',\n",
" ',',\n",
" 'or',\n",
" 'take',\n",
" 'on',\n",
" 'a',\n",
" 'workout',\n",
" 'circuit',\n",
" 'through',\n",
" 'the',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" '.',\n",
" 'But',\n",
" 'if',\n",
" 'you’d',\n",
" 'prefer',\n",
" 'to',\n",
" 'take',\n",
" 'a',\n",
" 'break',\n",
" 'from',\n",
" 'the',\n",
" 'holiday',\n",
" 'mayhem',\n",
" 'and',\n",
" 'just',\n",
" 'want',\n",
" 'to',\n",
" 'get',\n",
" 'your',\n",
" 'sweat',\n",
" 'on–well',\n",
" ',',\n",
" 'there’s',\n",
" 'rock',\n",
" 'climbing',\n",
" ',',\n",
" 'yoga',\n",
" ',',\n",
" 'and',\n",
" 'boxing',\n",
" 'events',\n",
" 'just',\n",
" 'waiting',\n",
" 'for',\n",
" 'you',\n",
" 'to',\n",
" 'come',\n",
" 'out',\n",
" 'and',\n",
" 'show',\n",
" 'your',\n",
" 'stuff',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'The\",\n",
" 'point',\n",
" 'is',\n",
" ',',\n",
" 'there',\n",
" 'are',\n",
" 'plenty',\n",
" 'of',\n",
" 'fitness',\n",
" 'events',\n",
" 'happening',\n",
" 'this',\n",
" 'month',\n",
" ',',\n",
" 'no',\n",
" 'matter',\n",
" 'your',\n",
" 'holiday',\n",
" 'sensibilities',\n",
" '.',\n",
" \"'\",\n",
" ',',\n",
" \"'You’ll\",\n",
" 'have',\n",
" 'to',\n",
" 'make',\n",
" 'a',\n",
" 'trek',\n",
" 'out',\n",
" 'to',\n",
" 'nearby',\n",
" 'Kyle',\n",
" 'to',\n",
" 'take',\n",
" 'advantage',\n",
" 'of',\n",
" 'this',\n",
" 'event',\n",
" ',',\n",
" 'but',\n",
" 'if',\n",
" 'you’re',\n",
" 'a',\n",
" 'dedicated',\n",
" 'CrossFitter',\n",
" 'with',\n",
" 'a',\n",
" 'taste',\n",
" 'for',\n",
" 'competition',\n",
" ',',\n",
" 'it’s',\n",
" 'well',\n",
" 'worth',\n",
" 'it',\n",
" '.',\n",
" 'All',\n",
" 'skill-levels',\n",
" 'are',\n",
" 'invited',\n",
" 'to',\n",
" 'compete',\n",
" 'in',\n",
" 'these',\n",
" 'holiday-themed',\n",
" 'WODs',\n",
" ',',\n",
" 'and',\n",
" 'the',\n",
" 'top',\n",
" 'three',\n",
" 'teams',\n",
" 'in',\n",
" 'each',\n",
" 'division',\n",
" 'will',\n",
" 'win',\n",
" 'some',\n",
" 'fabulous',\n",
" 'prizes',\n",
" '.',\n",
" 'So',\n",
" 'grab',\n",
" 'your',\n",
" 'favorite',\n",
" 'workout',\n",
" 'partner',\n",
" 'and',\n",
" 'head',\n",
" 'on',\n",
" 'out',\n",
" '!',\n",
" 'And',\n",
" 'with',\n",
" 'WOD',\n",
" 'names',\n",
" 'like',\n",
" 'Sleigh',\n",
" 'Ride',\n",
" 'and',\n",
" 'Oh',\n",
" 'Holy',\n",
" 'Squats',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'satisfy',\n",
" 'both',\n",
" 'your',\n",
" 'fitness',\n",
" 'and',\n",
" 'your',\n",
" 'festive',\n",
" 'fix',\n",
" '.',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'Sure\",\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'participate',\n",
" 'in',\n",
" 'a',\n",
" 'regular',\n",
" 'old',\n",
" 'pub',\n",
" 'crawl',\n",
" '.',\n",
" 'OR',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'get',\n",
" 'delighted',\n",
" 'in',\n",
" 'a',\n",
" 'sparkling',\n",
" ',',\n",
" 'magical',\n",
" ',',\n",
" 'holiday',\n",
" 'Fit',\n",
" 'Crawl',\n",
" 'from',\n",
" 'inside',\n",
" 'of',\n",
" 'the',\n",
" 'oh-so-wonderful',\n",
" 'Trail',\n",
" 'of',\n",
" 'Lights',\n",
" 'in',\n",
" 'Zilker',\n",
" 'Park',\n",
" '!',\n",
" 'You’ll',\n",
" 'be',\n",
" 'able',\n",
" 'to',\n",
" 'see',\n",
" 'the',\n",
" 'lights',\n",
" 'before',\n",
" 'they’re',\n",
" 'open',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'while',\n",
" 'you',\n",
" 'go',\n",
" 'through',\n",
" 'a',\n",
" 'series',\n",
" 'of',\n",
" 'quick',\n",
" 'workouts',\n",
" 'under',\n",
" 'their',\n",
" 'glow',\n",
" '.',\n",
" 'All',\n",
" 'levels',\n",
" 'and',\n",
" 'experiences',\n",
" 'are',\n",
" 'welcome',\n",
" 'to',\n",
" 'enjoy',\n",
" 'this',\n",
" 'casual',\n",
" 'event',\n",
" '.',\n",
" 'Just',\n",
" 'be',\n",
" 'sure',\n",
" 'you’re',\n",
" 'okay',\n",
" 'with',\n",
" 'light',\n",
" 'running',\n",
" 'and',\n",
" 'three',\n",
" '15-minute',\n",
" 'workouts',\n",
" '.',\n",
" 'This',\n",
" 'event',\n",
" 'fills',\n",
" 'up',\n",
" 'fast',\n",
" ',',\n",
" 'so',\n",
" 'get',\n",
" 'your',\n",
" 'tickets',\n",
" 'soon',\n",
" '!',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'North\",\n",
" 'Austin',\n",
" 'Rock',\n",
" 'Gym',\n",
" 'and',\n",
" 'Texas',\n",
" 'Rock',\n",
" 'Climbing',\n",
" 'have',\n",
" 'teamed',\n",
" 'up',\n",
" 'to',\n",
" 'deliver',\n",
" 'an',\n",
" 'awesome',\n",
" 'climbing',\n",
" 'event',\n",
" 'benefitting',\n",
" 'the',\n",
" 'greater',\n",
" 'good',\n",
" 'of',\n",
" 'the',\n",
" 'climbing',\n",
" 'community',\n",
" '.',\n",
" 'From',\n",
" 'their',\n",
" 'gym',\n",
" 'in',\n",
" 'North',\n",
" 'Austin',\n",
" ',',\n",
" 'you’ll',\n",
" 'have',\n",
" 'the',\n",
" 'opportunity',\n",
" 'to',\n",
" 'get',\n",
" 'down',\n",
" 'on',\n",
" 'a',\n",
" 'night',\n",
" 'of',\n",
" 'fun',\n",
" 'climbs',\n",
" ',',\n",
" 'nosh',\n",
" 'on',\n",
" 'delicious',\n",
" 'pizza',\n",
" 'and',\n",
" 'beer',\n",
" 'from',\n",
" 'Pizza',\n",
" 'Pinthouse',\n",
" ',',\n",
" 'and',\n",
" 'chat',\n",
" 'with',\n",
" 'a',\n",
" 'whole',\n",
" 'bunch',\n",
" 'of',\n",
" 'fellow',\n",
" 'climbing',\n",
" 'enthusiasts',\n",
" '.',\n",
" 'Plus',\n",
" ',',\n",
" '50',\n",
" '%',\n",
" 'of',\n",
" 'your',\n",
" 'registration',\n",
" 'fee',\n",
" 'will',\n",
" 'go',\n",
" 'to',\n",
" 'Texas',\n",
" 'Rock',\n",
" 'Climbing',\n",
" 'to',\n",
" 'ensure',\n",
" 'Austin',\n",
" 'keeps',\n",
" 'cultivating',\n",
" 'its',\n",
" 'community',\n",
" 'crags',\n",
" ',',\n",
" 'so',\n",
" 'everybody',\n",
" 'wins',\n",
" '!',\n",
" 'December',\n",
" '3',\n",
" \"'\",\n",
" ',',\n",
" \"'It\",\n",
" 'simply',\n",
" 'isn’t',\n",
" 'the',\n",
" 'holidays',\n",
" 'without',\n",
" 'a',\n",
" 'good',\n",
" 'ol’',\n",
" 'fashioned',\n",
" 'Jingle',\n",
" 'Bell',\n",
" 'run',\n",
" '.',\n",
" 'For',\n",
" '20',\n",
" 'years',\n",
" 'Austinites',\n",
" 'have',\n",
" 'been',\n",
" 'running',\n",
" 'this',\n",
" 'fun',\n",
" 'family',\n",
" '5K',\n",
" 'to',\n",
" 'get',\n",
" 'into',\n",
" 'the',\n",
" 'festive',\n",
" 'spirit',\n",
" ',',\n",
" 'and',\n",
" 'this',\n",
" 'year',\n",
" 'is',\n",
" 'no',\n",
" 'exception',\n",
" '.',\n",
" 'To',\n",
" 'get',\n",
" 'in',\n",
" 'on',\n",
" 'the',\n",
" 'action',\n",
" ',',\n",
" 'head',\n",
" 'to',\n",
" 'The',\n",
" 'Domain',\n",
" ',',\n",
" 'rain',\n",
" 'or',\n",
" 'shine',\n",
" ',',\n",
" 'while',\n",
" 'donning',\n",
" 'your',\n",
" 'finest',\n",
" 'holiday',\n",
" 'garb',\n",
" '–',\n",
" 'think',\n",
" 'Santa',\n",
" 'hats',\n",
" ',',\n",
" 'jingle',\n",
" 'bells',\n",
" ',',\n",
" 'elf',\n",
" 'ears',\n",
" ',',\n",
" 'and',\n",
" 'anything',\n",
" 'else',\n",
" 'your',\n",
" 'seasonal',\n",
" 'spirit',\n",
" 'deems',\n",
" 'fit',\n",
" '.',\n",
" 'From',\n",
" 'there',\n",
" ',',\n",
" 'you',\n",
" 'can',\n",
" 'run',\n",
" 'the',\n",
" 'route',\n",
" 'at',\n",
" 'your',\n",
" 'own',\n",
" 'pace',\n",
" 'and',\n",
" 'end',\n",
" 'it',\n",
" 'with',\n",
" 'a',\n",
" 'meal',\n",
" 'at',\n",
" 'any',\n",
" 'number',\n",
" 'of',\n",
" 'the',\n",
" 'surrounding',\n",
" 'tasty',\n",
" 'grub',\n",
" 'spots',\n",
" '.',\n",
" 'December',\n",
" '11',\n",
" \"'\",\n",
" ',',\n",
" \"'One\",\n",
" 'of',\n",
" 'the',\n",
" 'very',\n",
" 'few',\n",
" 'shortcomings',\n",
" 'of',\n",
" 'Austin’s',\n",
" 'climate',\n",
" 'is',\n",
" 'that',\n",
" 'we',\n",
" 'don’t',\n",
" 'get',\n",
" 'many',\n",
" 'opportunities',\n",
" 'to',\n",
" 'have',\n",
" 'a',\n",
" 'wintery-white',\n",
" 'holiday',\n",
" 'season',\n",
" '.',\n",
" 'Thankfully',\n",
" ',',\n",
" 'each',\n",
" 'year',\n",
" 'Whole',\n",
" 'Foods',\n",
" 'throws',\n",
" 'us',\n",
" 'a',\n",
" 'seasonal',\n",
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment