diff --git a/.gitignore b/.gitignore index 0d20b64..286b890 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ *.pyc +.env +.DS_Store +**.orig diff --git a/README.md b/README.md index 3eb5338..4cd4e9a 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,13 @@ Then set some variables in your `.env` file: echo "SECRET_KEY=[ Secret Key goes here ]" > .env echo "GOOGLE_MAPS_API_KEY=[ Google API Key goes here ]" > .env echo "REDIS_URL=[ Redis URL goes here ]" > .env + + +## Commands + +`python manage.py load_meetup data/meetup-urls.txt` - Grab all meetup data from Progressive meetup groups. + +`python manage.py load_bnc` - Grab all BNC data. (Will refactor to allow all NationBuilder events to be taken) + +`python manage.py load_coloradocare data/a69init.json` - Stores Colorado Care data. +`python manage.py load_coloradocare` - periodic pull of data from ColoradoCare calendar diff --git a/core/management/__init__.py b/core/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/core/management/commands/__init__.py b/core/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/core/management/commands/load_bnc.py b/core/management/commands/load_bnc.py new file mode 100644 index 0000000..2aab2fe --- /dev/null +++ b/core/management/commands/load_bnc.py @@ -0,0 +1,140 @@ +from django.core.management.base import BaseCommand +from core.models import Venue,Organization,Event +from pprint import pprint +from dateutil.tz import tzoffset +from dateutil.parser import parse +import recurrence +import json +from datetime import timedelta, datetime +import urllib2 +import time +from django.contrib.gis.geos import Point +import os + +# Focused on adding BNC data only +class Command(BaseCommand): + + def handle(self, *args, **options): + # now do the things that you want with your models here + date_start= datetime.now().strftime("%Y-%m-%d") + date_end = (datetime.now() + timedelta(days=28)).strftime("%Y-%m-%d") + token = os.environ.get('BNC_TOKEN', None) + url = "https://brandnewcongress.nationbuilder.com/api/v1/sites/brandnewcongress/pages/events?access_token={}&limit=3000&starting={}&ending={}"\ + .format(token, date_start, date_end) + + print "[URL] Reading: " + url + request = urllib2.Request(url) + request.add_header('Content-Type', 'application/json') + request.add_header('Accept', 'application/json') + pprint(request) + response = urllib2.urlopen(request) + + data = json.loads(response.read()) + for event in data['results']: + # Adding venue attributes + print "Reading... ", event['title'] + + # TEst event... + if event['slug'] == 'event': + continue + + if 'venue' in event: + venue = self.store_venue(event['venue']) + if venue != None: + organization = self.store_organization() + self.store_event(event, venue, organization) + + time.sleep(5) + + def store_event(self, event, venue, org): + title=event['name'] + url=event['path'] + description=event['intro'] if 'intro' in event else '' + event_date=parse(event['start_time']) + start=event_date.time() + end=parse(event['end_time']).time() + event_type='volunteer' + recurrences=recurrence.Recurrence( + rdates=[event_date] + ) + + result = Event.objects.filter(url=url) + if len(result) == 0: + new_event = Event( + title=title, + url=url, + description=description, + start=event_date, + recurrences=recurrences, + event_type=event_type, + host=org, + venue=venue + ) + new_event.save() + print "[EVENT] Saving: " + new_event.title + return new_event + else: + update_event = result[0] + update_event.title = title + update_event.url = url + update_event.description = description + update_event.start = event_date + update_event.recurrences=recurrences + update_event.event_type=event_type + update_event.host=org + update_event.venue=venue + update_event.save() + return update_event + + def store_organization(self): + url = 'http://www.brandnewcongress.org' + organization_type='progressive' + title = 'Brand New Congress' + + result = Organization.objects.filter(url=url) + if len(result) == 0: + organization = Organization( + title=title, + url=url, + organization_type=organization_type + ) + organization.save() + print "[ORGANIZATION] Saving: ", organization.title + return organization + else: + return result[0] + + def store_venue(self, venue): + title=venue['name'] + if 'address' not in venue or venue['address'] == None: + return None + + city=venue['address']['city'] if 'city' in venue['address'] else '' + address=venue['address']['address_1'] if 'address_1' in venue['address'] else '' + state=venue['address']['state'] if 'state' in venue['address'] else '' + zipcode=venue['address']['zip'] if 'zip' in venue['address'] else '' + point = None + + + if 'lon' in venue and 'lat' in venue['address']: + point=Point(venue['address']['lng'],venue['address']['lat']) + + result = Venue.objects.filter( + title=title, + city=city, + address=address, + state=state + ) + if len(result) == 0: + venue = Venue(title=title, + city=city, + address=address, + state=state, + zipcode=zipcode, + point=point + ) + venue.save() + print "[VENUE] Saving: ", venue.title + return venue + else: + return result[0] diff --git a/core/management/commands/load_coloradocare.py b/core/management/commands/load_coloradocare.py new file mode 100644 index 0000000..0fa44b8 --- /dev/null +++ b/core/management/commands/load_coloradocare.py @@ -0,0 +1,221 @@ +from django.core.management.base import BaseCommand +from core.models import Venue,Organization,Event +from pprint import pprint +from dateutil.tz import tzoffset +import pytz +import recurrence +import json +import datetime +import urllib +import time +import pprint +import re +from django.contrib.gis.geos import Point +from dateutil import parser +import requests +from django.conf import settings +from django.contrib.gis.geos import GEOSGeometry + +from core.utils import get_venue + +class Command(BaseCommand): + + def add_arguments(self, parser): + parser.add_argument('filename', nargs='*', default=False, type=str) + + def handle(self, *args, **options): + ''' + handle: If `filename` is specified, this reads through a file set by the user OR + this takes in data from the ColoradoCare calendar automatically. + ''' + filename = options['filename'][0] if options['filename'] else None + + # Load Data + org = self.store_organization() + data = None + if filename: + with open(filename, 'rb') as data_file: + data = json.loads(data_file.read()) + else: + request = requests.get(settings.COLORADO_CARE_URL) + data = request.json() + + for item in data['items']: + + #PARSING + url = item['htmlLink'] + title = item['summary'] if 'summary' in item else '' + description = item['description'] if 'description' in item else '' + location = item['location'] if 'location' in item else None + + # start date + start_tz = None + start_dt = None + if 'start' in item: + if 'dateTime' in item['start']: + start_dt = item['start']['dateTime'] + elif 'date' in item['start']: + start_dt = item['start']['date'] + + if 'timeZone' in item['start']: + start_tz = item['start']['timeZone'] + + # end date + end_tz = None + end_dt = None + if 'end' in item: + if 'dateTime' in item['end']: + end_dt = item['end']['dateTime'] + elif 'date' in item['end']: + end_dt = item['end']['date'] + + if 'timeZone' in item['end']: + end_tz = item['end']['timeZone'] + + + # Extract VENUE + venue = None + if location is None or start_dt is None: + next + else: + venue = self.parse_venue(location) + + if venue is None: + next + + # Extract datetime + if start_dt is None: + next + else: + e_start = self.parse_datetime(start_dt, start_tz) + + if end_dt is not None: + e_end = self.parse_datetime(end_dt, end_tz) + + self.store_event(venue, org, title, description, url, e_start, e_start, e_end) + + def parse_venue(self, raw_venue): + geocoded = get_venue(raw_venue) + + if geocoded is None: + return None + + point = 'POINT (%f %f)' % (geocoded['point']['lat'], geocoded['point']['lng']) + address = '%s %s' % (geocoded['street_number'] if 'street_number' in geocoded else '', geocoded['route'] if 'route' in geocoded else '') + city = None + if 'locality' in geocoded: + city = geocoded['locality'] + elif 'neighborhood' in geocoded: + city = geocoded['neighborhood'] + else: + city = None + + state = geocoded['state'] + zipcode = geocoded['zipcode'] if 'zipcode' in geocoded else '' + + venue = self.store_venue(raw_venue, address, city, state, zipcode, point = GEOSGeometry(point)) + return venue + + def extract_address(self, address): + title = None + complete_address = None + city = None + + address_array = [i.encode("utf-8").strip() for i in address] + state_zip = address_array.pop() + m = re.match('(\w{2})\s+(\d{5})', state_zip) + + if m == None: + zipcode = None + state = None + + else: + zipcode = m.group(2) + state = m.group(1) + + if len(address_array) > 0: + city = address_array.pop() + if len(address_array) > 0: + complete_address = address_array.pop() + if len(address_array) > 0: + title = address_array.pop() + + return (title, complete_address, city, state, zipcode) + + def parse_datetime(self, date_time, time_zone): + ''' + Grab the date time aspect of the event line, and parse out the time and timezone + Afterwhich, convert it to Denver time + ''' + co_time = None + + dt = parser.parse(date_time).replace(tzinfo=pytz.timezone(time_zone)) if time_zone is not None else parser.parse(date_time) + co_time = dt.astimezone(pytz.timezone("America/Denver")).replace(minute=dt.minute) if time_zone is not None else dt + + return co_time + + def store_event(self,venue, org, name, description, url, event_date, start, end): + title=name + event_type='volunteer' + recurrences=recurrence.Recurrence( + rdates=[event_date] + ) + + result = Event.objects.filter(url=url) + if len(result) == 0: + new_event = Event( + title=title, + url=url, + description=description, + end=end, + start=start, + recurrences=recurrences, + event_type=event_type, + host=org, + venue=venue + ) + new_event.save() + return new_event + else: + return result[0] + + def store_organization(self): + url = "http://www.coloradocare.org" + organization_type='progressive' + title = "ColoradoCare" + + result = Organization.objects.filter(url=url) + if len(result) == 0: + organization = Organization( + title=title, + url=url, + slug=url, + organization_type=organization_type + ) + organization.save() + return organization + else: + return result[0] + + def store_venue(self, title, address, city, state, zipcode, point = None): + venue = None + point = None + + result = Venue.objects.filter( + title=title if title != None else '', + city=city, + address=address, + state=state + ) + if len(result) == 0: + venue = Venue(title=title if title != None else '', + city=city, + address=address, + state=state, + zipcode=zipcode, + point=point + ) + venue.save() + return venue + else: + return result[0] diff --git a/core/management/commands/load_manhattan_dems.py b/core/management/commands/load_manhattan_dems.py new file mode 100644 index 0000000..87b7870 --- /dev/null +++ b/core/management/commands/load_manhattan_dems.py @@ -0,0 +1,224 @@ +from django.core.management.base import BaseCommand +from core.models import Venue,Organization,Event +from pprint import pprint +from dateutil.tz import tzoffset +import pytz +import recurrence +import json +import datetime +import urllib +import time +import pprint +import re +from django.contrib.gis.geos import Point +from dateutil import parser +import requests +from django.conf import settings +from django.contrib.gis.geos import GEOSGeometry + +from core.utils import get_venue + +class Command(BaseCommand): + + def add_arguments(self, parser): + parser.add_argument('filename', nargs='*', default=False, type=str) + + def handle(self, *args, **options): + ''' + handle: If `filename` is specified, this reads through a file set by the user OR + this takes in data from the ColoradoCare calendar automatically. + ''' + filename = options['filename'][0] if options['filename'] else None + + # Load Data + org = self.store_organization() + data = None + if filename: + with open(filename, 'rb') as data_file: + data = json.loads(data_file.read()) + else: + request = requests.get(settings.MANHATTAN_DEMOCRATS_URL) + data = request.json() + + for item in data['items']: + + #PARSING + url = item['htmlLink'] + title = item['summary'] if 'summary' in item else '' + description = item['description'] if 'description' in item else '' + location = item['location'] if 'location' in item else None + + # start date + start_tz = None + start_dt = None + if 'start' in item: + if 'dateTime' in item['start']: + start_dt = item['start']['dateTime'] + elif 'date' in item['start']: + start_dt = item['start']['date'] + + if 'timeZone' in item['start']: + start_tz = item['start']['timeZone'] + + # end date + end_tz = None + end_dt = None + if 'end' in item: + if 'dateTime' in item['end']: + end_dt = item['end']['dateTime'] + elif 'date' in item['end']: + end_dt = item['end']['date'] + + if 'timeZone' in item['end']: + end_tz = item['end']['timeZone'] + + + # Extract VENUE + venue = None + if location is None or start_dt is None: + next + else: + venue = self.parse_venue(location) + + if venue is None: + next + + # Extract datetime + if start_dt is None: + next + else: + e_start = self.parse_datetime(start_dt, start_tz) + + if end_dt is not None: + e_end = self.parse_datetime(end_dt, end_tz) + + self.store_event(venue, org, title, description, url, e_start, e_start, e_end) + + def parse_venue(self, raw_venue): + geocoded = get_venue(raw_venue) + + if geocoded is None: + return None + + point = 'POINT (%f %f)' % (geocoded['point']['lat'], geocoded['point']['lng']) + address = '%s %s' % (geocoded['street_number'] if 'street_number' in geocoded else '', geocoded['route'] if 'route' in geocoded else '') + city = None + if 'locality' in geocoded: + city = geocoded['locality'] + elif 'neighborhood' in geocoded: + city = geocoded['neighborhood'] + else: + city = None + + state = geocoded['state'] + zipcode = geocoded['zipcode'] if 'zipcode' in geocoded else '' + + venue = self.store_venue(raw_venue, address, city, state, zipcode, point = GEOSGeometry(point)) + return venue + + def extract_address(self, address): + title = None + complete_address = None + city = None + + address_array = [i.encode("utf-8").strip() for i in address] + state_zip = address_array.pop() + m = re.match('(\w{2})\s+(\d{5})', state_zip) + + if m == None: + zipcode = None + state = None + + else: + zipcode = m.group(2) + state = m.group(1) + + if len(address_array) > 0: + city = address_array.pop() + if len(address_array) > 0: + complete_address = address_array.pop() + if len(address_array) > 0: + title = address_array.pop() + + return (title, complete_address, city, state, zipcode) + + def parse_datetime(self, date_time, time_zone): + ''' + Grab the date time aspect of the event line, and parse out the time and timezone + Afterwhich, convert it to New York + ''' + co_time = None + + dt = parser.parse(date_time).replace(tzinfo=pytz.timezone(time_zone)) if time_zone is not None else parser.parse(date_time) + co_time = dt.astimezone(pytz.timezone("America/New_York")).replace(minute=dt.minute) if time_zone is not None else dt + + return co_time + + def store_event(self,venue, org, name, description, url, event_date, start, end): + title=name + event_type='volunteer' + recurrences=recurrence.Recurrence( + rdates=[event_date] + ) + + result = Event.objects.filter(url=url) + if len(result) == 0: + new_event = Event( + title=title, + url=url, + description=description, + end=end, + start=start, + recurrences=recurrences, + event_type=event_type, + host=org, + venue=venue + ) + new_event.save() + return new_event + else: + return result[0] + + def store_organization(self): + url = "http://www.manhattandemocrats.org" + organization_type='democratic' + title = "Manhattan Democrats" + + result = Organization.objects.filter(url=url) + if len(result) == 0: + organization = Organization( + title=title, + url=url, + slug=url, + organization_type=organization_type + ) + organization.save() + return organization + else: + return result[0] + + def store_venue(self, title, address, city, state, zipcode, point = None): + venue = None + point = None + + if (len(state) != 2): + return None + + result = Venue.objects.filter( + title=title if title != None else '', + city=city, + address=address, + state=state + ) + if len(result) == 0: + venue = Venue(title=title if title != None else '', + city=city, + address=address, + state=state, + zipcode=zipcode, + point=point + ) + venue.save() + return venue + else: + return result[0] diff --git a/core/management/commands/load_meetup.py b/core/management/commands/load_meetup.py new file mode 100644 index 0000000..f1867f7 --- /dev/null +++ b/core/management/commands/load_meetup.py @@ -0,0 +1,117 @@ +from django.core.management.base import BaseCommand +from core.models import Venue,Organization,Event +from pprint import pprint +from dateutil.tz import tzoffset +import recurrence +import json +import datetime +import urllib +import time +from django.contrib.gis.geos import Point + +class Command(BaseCommand): + + def add_arguments(self, parser): + parser.add_argument('filename', nargs='+', type=str) + + def handle(self, *args, **options): + # now do the things that you want with your models here + filename = options['filename'][0] + print "%s -- filename" % filename + with open(filename, 'rb') as url_file: + lines = [line.rstrip('\n') for line in url_file] + for line in lines: + # each line is a url group + url = "https://api.meetup.com/2/events?offset=0&format=json&limited_events=False&group_urlname=" + line + "&photo-host=public&page=50&fields=&order=time&desc=false&status=upcoming" + + print "[URL] Reading: " + url + response = urllib.urlopen(url) + data = json.loads(response.read()) + for event in data['results']: + # Adding venue attributes + if 'venue' in event: + venue = self.store_venue(event['venue']) + organization = self.store_organization(event['group']) + self.store_event(event, venue, organization) + + time.sleep(10) + + def store_event(self, event, venue, org): + title=event['name'] + url=event['event_url'] + description=event['description'] if 'description' in event else '' + event_date=datetime.datetime.fromtimestamp(event['time']/1000, tzoffset(None, event['utc_offset']/1000)) + start=event_date.time() + event_type='volunteer' + recurrences=recurrence.Recurrence( + rdates=[event_date] + ) + + result = Event.objects.filter(url=url) + if len(result) == 0: + new_event = Event( + title=title, + url=url, + description=description, + start=event_date, + recurrences=recurrences, + event_type=event_type, + host=org, + venue=venue + ) + new_event.save() + print "[EVENT] Saving: " + new_event.title + return new_event + else: + return result[0] + + def store_organization(self, org): + url = "http://www.meetup.com/" + org['urlname'] + organization_type='progressive' + title = org['name'] + + result = Organization.objects.filter(url=url) + if len(result) == 0: + organization = Organization( + title=title, + url=url, + slug=org['urlname'], + organization_type=organization_type + ) + organization.save() + print "[ORGANIZATION] Saving: ", organization.title + return organization + else: + return result[0] + + def store_venue(self, venue): + title=venue['name'] + city=venue['city'] + address=venue['address_1'] + state=venue['state'] if 'state' in venue else '' + zipcode=venue['zipcode'] if 'zipcode' in venue else '' + point = None + + + if 'lon' in venue and 'lat' in venue: + point=Point(venue['lon'],venue['lat']) + + result = Venue.objects.filter( + title=title, + city=city, + address=address, + state=state + ) + if len(result) == 0: + venue = Venue(title=title, + city=city, + address=address, + state=state, + zipcode=zipcode, + point=point + ) + venue.save() + print "[VENUE] Saving: ", venue.title + return venue + else: + return result[0] diff --git a/core/models.py b/core/models.py index 46d8310..d260139 100644 --- a/core/models.py +++ b/core/models.py @@ -46,7 +46,11 @@ def save(self, *args, **kwargs): self.slug = candidate_slug if self.address and not self.point: - self.point = Point(**get_point(', '.join([self.address, self.city, self.state, self.zipcode]))) + if self.zipcode: + self.point = Point(**get_point(', '.join([self.address, self.city, self.state, self.zipcode]))) + else: + self.point = Point(**get_point(', '.join([self.address, self.city, self.state]))) + return super(Venue, self).save(*args, **kwargs) def __unicode__(self): @@ -147,4 +151,4 @@ def dates(self, *args, **kwargs): kwargs = {'days': 60} today = datetime.now().replace(hour=0,minute=0,second=0,microsecond=0) future_date = today + timedelta(**kwargs) - return [i for i in self.recurrences.between(after=today, before=future_date, inc=True)] \ No newline at end of file + return [i for i in self.recurrences.between(after=today, before=future_date, inc=True)] diff --git a/core/static/css/progressive-events.css b/core/static/css/progressive-events.css index ef8e8d0..5dd092b 100644 --- a/core/static/css/progressive-events.css +++ b/core/static/css/progressive-events.css @@ -5,6 +5,7 @@ } .event-item{ padding: 1em 0; border-bottom: 1px #ccc solid; } .event-item:target{ background: #cceeff; } +.event-item .col-sm-7 p img { display: none} [contenteditable]{ cursor: pointer; padding: 1px 5px; border-color: #99ccff; border-width: 1px; border-style: solid; border-radius: 4px; } [contenteditable]:focus{ cursor: text; outline: none; background: #cceeff; border-color: #0099ff; } [contenteditable].invalid{ border-color: #ff9900; background: #ffeecc; } @@ -29,4 +30,4 @@ .autocomplete-list li:hover{ background: #cceeff; } -footer{ margin: 5em 0 2em; padding: 2em 0; } \ No newline at end of file +footer{ margin: 5em 0 2em; padding: 2em 0; } diff --git a/core/templates/event_detail.html b/core/templates/event_detail.html index 66030ae..3e56fa4 100644 --- a/core/templates/event_detail.html +++ b/core/templates/event_detail.html @@ -25,7 +25,7 @@

{{ event.title }}

{% if event.host %}

hosted by {% if event.host.url %}{% endif %}{{ event.host.title }}{% if event.host.url %}{% endif %}

{% endif %} {% if event.description %} -

{{ event.description | linebreaksbr | urlize }}

+ {{ event.description | safe }} {% endif %} {% if event.venue.address %} @@ -108,4 +108,4 @@
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/core/utils.py b/core/utils.py index e5e512b..6aa0971 100644 --- a/core/utils.py +++ b/core/utils.py @@ -19,3 +19,61 @@ def get_point(address): except: pass return {'x': location['lng'], 'y': location['lat']} + +def get_venue(raw_venue): + ''' + Returns a venue item from a raw venue. Contains the following information: + { + "title" : "Name of the place if any", + "address" : "street address" + "city" : "City of the area" + "state": "State of the location" + "zipcode": "Zipcode of place if any", + "lat": "latitude of the venue", + "lon": "longitude of the venue" + } + ''' + location = None + geolocator = googlemaps.Client(key=settings.GOOGLE_MAPS_API_KEY) + try: + r = redis.from_url(os.environ.get("REDIS_URL", "localhost:6379")) + location = json.loads(r.get(address)) + except: + print raw_venue + + result = None + try: + result = geolocator.geocode(raw_venue) + except: + return None + + location = {} + + if len(result) == 0: + return None + + for i in result[0]['address_components']: + if 'street_number' in i['types']: + location['street_number'] = i['short_name'] + if 'route' in i['types']: + location['route'] = i['short_name'] + if 'subpremise' in i['types']: + location['subpremise'] = i['short_name'] + if 'neighborhood' in i['types']: + location['neighborhood'] = i['short_name'] + if 'locality' in i['types']: + location['locality'] = i['short_name'] + if 'administrative_area_level_1' in i['types']: + location['state'] = i['short_name'] + if 'postal_code' in i['types']: + location['zipcode'] = i['short_name'] + + if 'geometry' in result[0]: + location['point'] = result[0]['geometry']['location'] + + try: + r.setex(raw_venue, json.dumps(location), 2592000) + except: + pass + + return location diff --git a/data/a69init.json b/data/a69init.json new file mode 100644 index 0000000..fb35782 --- /dev/null +++ b/data/a69init.json @@ -0,0 +1,5301 @@ +{ + "kind": "calendar#events", + "etag": "\"p338cp3fsk30su0g\"", + "summary": "Public Events--ColoradoCareYES", + "description": "This is a public calendar that anyone can see through our website. It is to post public events sponsored by or of interest to the ColoradoCareYES campaign. If you are posting events for other entities, please title it \"Voter Outreach\" or something similar, rather than a title referring to a campaign other than ColoradoCareYES.", + "updated": "2016-10-04T13:30:14.418Z", + "timeZone": "America/Denver", + "accessRole": "reader", + "defaultReminders": [], + "nextSyncToken": "CNDMjfygwc8CEAAYAQ==", + "items": [ + { + "kind": "calendar#event", + "etag": "\"2934261815460000\"", + "id": "ssqe98k334eoif6a3is4o96jg8_20160901T010000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=c3NxZTk4azMzNGVvaWY2YTNpczRvOTZqZzhfMjAxNjA5MDFUMDEwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-03-10T04:21:46.000Z", + "updated": "2016-06-28T16:21:47.730Z", + "summary": "Community Call-In on ColoradoCare", + "description": "Join us every Wednesday at 7:00pm for an introduction to ColoradoCare, information on upcoming events, and an open Q&A session.\n\nCall 302-202-1110 and key in 941687 when prompted for the access code.\n\n", + "location": "Call 302-202-1110 and key in 941687 when prompted.", + "creator": { + "email": "owenperk@aol.com", + "displayName": "Owen Perkins" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-31T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "end": { + "dateTime": "2016-08-31T19:45:00-06:00", + "timeZone": "America/Denver" + }, + "recurringEventId": "ssqe98k334eoif6a3is4o96jg8", + "originalStartTime": { + "dateTime": "2016-08-31T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "iCalUID": "ssqe98k334eoif6a3is4o96jg8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2934261815460000\"", + "id": "ssqe98k334eoif6a3is4o96jg8_20160908T010000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=c3NxZTk4azMzNGVvaWY2YTNpczRvOTZqZzhfMjAxNjA5MDhUMDEwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-03-10T04:21:46.000Z", + "updated": "2016-06-28T16:21:47.730Z", + "summary": "Community Call-In on ColoradoCare", + "description": "Join us every Wednesday at 7:00pm for an introduction to ColoradoCare, information on upcoming events, and an open Q&A session.\n\nCall 302-202-1110 and key in 941687 when prompted for the access code.\n\n", + "location": "", + "creator": { + "email": "owenperk@aol.com", + "displayName": "Owen Perkins" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-07T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "end": { + "dateTime": "2016-09-07T19:45:00-06:00", + "timeZone": "America/Denver" + }, + "recurringEventId": "ssqe98k334eoif6a3is4o96jg8", + "originalStartTime": { + "dateTime": "2016-09-07T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "iCalUID": "ssqe98k334eoif6a3is4o96jg8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2934261815460000\"", + "id": "ssqe98k334eoif6a3is4o96jg8_20160915T010000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=c3NxZTk4azMzNGVvaWY2YTNpczRvOTZqZzhfMjAxNjA5MTVUMDEwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-03-10T04:21:46.000Z", + "updated": "2016-06-28T16:21:47.730Z", + "summary": "Community Call-In on ColoradoCare", + "description": "Join us every Wednesday at 7:00pm for an introduction to ColoradoCare, information on upcoming events, and an open Q&A session.\n\nCall 302-202-1110 and key in 941687 when prompted for the access code.\n\n", + "location": "", + "creator": { + "email": "owenperk@aol.com", + "displayName": "Owen Perkins" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-14T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "end": { + "dateTime": "2016-09-14T19:45:00-06:00", + "timeZone": "America/Denver" + }, + "recurringEventId": "ssqe98k334eoif6a3is4o96jg8", + "originalStartTime": { + "dateTime": "2016-09-14T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "iCalUID": "ssqe98k334eoif6a3is4o96jg8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2934261815460000\"", + "id": "ssqe98k334eoif6a3is4o96jg8_20160922T010000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=c3NxZTk4azMzNGVvaWY2YTNpczRvOTZqZzhfMjAxNjA5MjJUMDEwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-03-10T04:21:46.000Z", + "updated": "2016-06-28T16:21:47.730Z", + "summary": "Community Call-In on ColoradoCare", + "description": "Join us every Wednesday at 7:00pm for an introduction to ColoradoCare, information on upcoming events, and an open Q&A session.\n\nCall 302-202-1110 and key in 941687 when prompted for the access code.\n\n", + "location": "", + "creator": { + "email": "owenperk@aol.com", + "displayName": "Owen Perkins" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-21T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "end": { + "dateTime": "2016-09-21T19:45:00-06:00", + "timeZone": "America/Denver" + }, + "recurringEventId": "ssqe98k334eoif6a3is4o96jg8", + "originalStartTime": { + "dateTime": "2016-09-21T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "iCalUID": "ssqe98k334eoif6a3is4o96jg8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2934261815460000\"", + "id": "ssqe98k334eoif6a3is4o96jg8_20160929T010000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=c3NxZTk4azMzNGVvaWY2YTNpczRvOTZqZzhfMjAxNjA5MjlUMDEwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-03-10T04:21:46.000Z", + "updated": "2016-06-28T16:21:47.730Z", + "summary": "Community Call-In on ColoradoCare", + "description": "Join us every Wednesday at 7:00pm for an introduction to ColoradoCare, information on upcoming events, and an open Q&A session.\n\nCall 302-202-1110 and key in 941687 when prompted for the access code.\n\n", + "location": "", + "creator": { + "email": "owenperk@aol.com", + "displayName": "Owen Perkins" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-28T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "end": { + "dateTime": "2016-09-28T19:45:00-06:00", + "timeZone": "America/Denver" + }, + "recurringEventId": "ssqe98k334eoif6a3is4o96jg8", + "originalStartTime": { + "dateTime": "2016-09-28T19:00:00-06:00", + "timeZone": "America/Denver" + }, + "iCalUID": "ssqe98k334eoif6a3is4o96jg8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2941947402780000\"", + "id": "3p1lfdi312cff6904mn8mghlv4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=M3AxbGZkaTMxMmNmZjY5MDRtbjhtZ2hsdjQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-11T20:18:38.000Z", + "updated": "2016-08-12T03:48:21.390Z", + "summary": "Denver: Mile-High Rotary Club (with T.R. Reid)", + "description": "Oxford-style debate with T.R. Reid. Charge for breakfast (approx. $25).", + "location": "University Club 17th and Grant (1673 Sherman St.)", + "creator": { + "email": "rickihadow@gmail.com" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-21T07:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-21T08:30:00-06:00" + }, + "iCalUID": "3p1lfdi312cff6904mn8mghlv4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2942267012474000\"", + "id": "oa6s7hhi6fvqh0l9jam0s9httk", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=b2E2czdoaGk2ZnZxaDBsOWphbTBzOWh0dGsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-07-10T15:39:34.000Z", + "updated": "2016-08-14T00:11:46.237Z", + "summary": "Boulder Symposium and Meet-up Talk: Amendment 69", + "description": "Join your Meet-up friends to hear a talk on Amendment 69", + "location": "Boulder Public Library - Meadows Branch, Baseline Road - Conference Room", + "creator": { + "email": "rickihadow@gmail.com" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-29T17:15:00-06:00" + }, + "end": { + "dateTime": "2016-08-29T18:45:00-06:00" + }, + "iCalUID": "oa6s7hhi6fvqh0l9jam0s9httk@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2942267029960000\"", + "id": "jcfn6utj9fnpu7739k1ceog5q4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=amNmbjZ1dGo5Zm5wdTc3MzlrMWNlb2c1cTQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-07-10T15:40:48.000Z", + "updated": "2016-08-14T00:11:54.980Z", + "summary": "Boulder Symposium and Meet-up Talk: Amendment 69", + "description": "Join your Meet-up friends to hear a talk on Amendment 69", + "location": "Boulder Public Library - Meadows Branch, Baseline Road - Conference Room", + "creator": { + "email": "rickihadow@gmail.com" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-29T18:45:00-06:00" + }, + "end": { + "dateTime": "2016-08-29T20:15:00-06:00" + }, + "iCalUID": "jcfn6utj9fnpu7739k1ceog5q4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2942809451610000\"", + "id": "9kr7b5ucb9jv8umnivcb65kgvk", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OWtyN2I1dWNiOWp2OHVtbml2Y2I2NWtndmsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-17T03:32:05.000Z", + "updated": "2016-08-17T03:32:05.805Z", + "summary": "Longmont Area Dems", + "description": "Ron Vejrostek will present on ColoradoCare", + "location": "Front Range Community College - Boulder County Campus, 2121 Miller Drive, Longmont, CO, United States", + "creator": { + "email": "bluehouse1800@yahoo.com", + "displayName": "William Semple" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-07T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-07T19:00:00-06:00" + }, + "iCalUID": "9kr7b5ucb9jv8umnivcb65kgvk@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2943334647286000\"", + "id": "2vad24cca519ot1o0hvcl7jg84", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MnZhZDI0Y2NhNTE5b3QxbzBodmNsN2pnODQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-20T04:28:09.000Z", + "updated": "2016-08-20T04:28:43.643Z", + "summary": "canvass for success", + "description": "Another week another supporter, we need to find them all. Join us for a successful canvass.", + "location": "Beau Jo's Arvada, 7525 W 53rd Ave, Arvada, CO 80002, USA", + "creator": { + "email": "akazdi@gmail.com", + "displayName": "Aleta Kazadi" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T00:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-17T02:00:00-06:00" + }, + "iCalUID": "2vad24cca519ot1o0hvcl7jg84@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2943769747700000\"", + "id": "t5oeg9007m582ejj0tckn88jl4", + "status": "tentative", + "htmlLink": "https://www.google.com/calendar/event?eid=dDVvZWc5MDA3bTU4MmVqajB0Y2tuODhqbDQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-22T16:54:33.000Z", + "updated": "2016-08-22T16:54:33.850Z", + "summary": "Non fiction writers meeting ", + "creator": { + "email": "akazdi@gmail.com", + "displayName": "Aleta Kazadi" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-21T18:30:00-06:00", + "timeZone": "America/Denver" + }, + "end": { + "dateTime": "2016-09-21T20:30:00-06:00", + "timeZone": "America/Denver" + }, + "iCalUID": "t5oeg9007m582ejj0tckn88jl4@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2944031083240000\"", + "id": "p84blrm3lql1p8f4lmh5iqplho", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cDg0YmxybTNscWwxcDhmNGxtaDVpcXBsaG8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-20T04:30:50.000Z", + "updated": "2016-08-24T05:12:21.620Z", + "summary": "Arvada: Learn about Colorado Care at Arvada Public Library", + "description": "Come learn about Colorado Care, what it is and what it isn't. Something you need to do before you vote.", + "location": "Arvada Public Library, 7525 W 57th Ave, Arvada, CO 80002", + "creator": { + "email": "akazdi@gmail.com", + "displayName": "Aleta Kazadi" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-27T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-27T19:45:00-06:00" + }, + "iCalUID": "p84blrm3lql1p8f4lmh5iqplho@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944031395280000\"", + "id": "e15sl4tipne6781c3rsgvd7ldc", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZTE1c2w0dGlwbmU2NzgxYzNyc2d2ZDdsZGMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-20T04:18:34.000Z", + "updated": "2016-08-24T05:14:57.640Z", + "summary": "Evergreen: Learn about ColoradoCare at Evergreen Public Library", + "description": "This is your opportunity to learn about how ColoradoCare will be very good for your family. Understand what it is and what it isn't before you vote.", + "location": "Evergreen Public Library, 5000 Co Rd 73, Evergreen, CO 80439, USA", + "creator": { + "email": "akazdi@gmail.com", + "displayName": "Aleta Kazadi" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-22T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-22T19:45:00-06:00" + }, + "visibility": "public", + "iCalUID": "e15sl4tipne6781c3rsgvd7ldc@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944549933246000\"", + "id": "1outgqg6srmjgg3q30gghg04m8", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MW91dGdxZzZzcm1qZ2czcTMwZ2doZzA0bTggMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-27T05:16:06.000Z", + "updated": "2016-08-27T05:16:06.623Z", + "summary": "Gunnison: Sen. Aguilar's presentation on ColoradoCare", + "description": "Public presentation at Western State Colorado University. Mountaineer Center, South Conference Room. Sponsored by WSCU Political Science Club. Contact Shelly Higgins 970-209-8949", + "location": "Western State Colorado University, 600 North Adams Street, Gunnison, CO 81231", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-30T19:00:00-06:00" + }, + "end": { + "dateTime": "2016-08-30T21:00:00-06:00" + }, + "iCalUID": "1outgqg6srmjgg3q30gghg04m8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944550264862000\"", + "id": "bipkk6lmvfk5ifdv53u4lmrcj8", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=Ymlwa2s2bG12Zms1aWZkdjUzdTRsbXJjajggMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-27T05:18:52.000Z", + "updated": "2016-08-27T05:18:52.431Z", + "summary": "Montrose: Sen. Aguilar's presentation on ColoradoCare", + "description": "Public presentation at Apex Conference Room, Holiday Inn Express. Sponsored by Montrose County League of Women Voters. Contact Tim Conner 970-417-0660", + "location": "Holiday Inn Express & Suites Montrose, 1391 S Townsend Ave, Montrose, CO 81401", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-31T17:30:00-06:00" + }, + "end": { + "dateTime": "2016-08-31T19:30:00-06:00" + }, + "iCalUID": "bipkk6lmvfk5ifdv53u4lmrcj8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944550568808000\"", + "id": "vd0okb4s17u1kcg4g7h7ot3fl0", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dmQwb2tiNHMxN3Uxa2NnNGc3aDdvdDNmbDAgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-27T05:21:24.000Z", + "updated": "2016-08-27T05:21:24.404Z", + "summary": "Durango: Sen. Aguilar's presentation on ColoradoCare", + "description": "Public presentation at Durango Public Library. 6:30PM. Contact Guinn Unger 936-727-1957", + "location": "Durango Public Library & Durango Botanic Gardens, East 3rd Avenue, Durango, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-01T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-01T20:30:00-06:00" + }, + "iCalUID": "vd0okb4s17u1kcg4g7h7ot3fl0@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944550911984000\"", + "id": "mquth1ebmujiu640evrjgvik6g", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bXF1dGgxZWJtdWppdTY0MGV2cmpndmlrNmcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-27T05:24:15.000Z", + "updated": "2016-08-27T05:24:15.992Z", + "summary": "Salida: A Conversation with Senator Irene Aguilar, MD", + "location": "Cafe Dawn, 203 West 1st St., Salida", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-30T08:00:00-06:00" + }, + "end": { + "dateTime": "2016-08-30T09:30:00-06:00" + }, + "iCalUID": "mquth1ebmujiu640evrjgvik6g@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944550986996000\"", + "id": "gsgh7ndj0p0da41ach7nkt74ag", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=Z3NnaDduZGowcDBkYTQxYWNoN25rdDc0YWcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-27T05:22:58.000Z", + "updated": "2016-08-27T05:24:53.498Z", + "summary": "Buena Vista: A Conversation with Senator Irene Aguilar, MD", + "location": "House Rock Kitchen, 421 E Main St, Buena Vista, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-29T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-08-29T20:00:00-06:00" + }, + "iCalUID": "gsgh7ndj0p0da41ach7nkt74ag@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944722192160000\"", + "id": "8fc1sbo1ovpcuslljp9v9rjak0_20160831T000000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OGZjMXNibzFvdnBjdXNsbGpwOXY5cmphazBfMjAxNjA4MzFUMDAwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:11:36.000Z", + "updated": "2016-08-28T05:11:36.080Z", + "summary": "Denver Canvass", + "description": "RSVP. Please contact Judy at 303.377.8367", + "location": "2455 N Race St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-30T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-08-30T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "8fc1sbo1ovpcuslljp9v9rjak0", + "originalStartTime": { + "dateTime": "2016-08-30T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "8fc1sbo1ovpcuslljp9v9rjak0@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944722192160000\"", + "id": "8fc1sbo1ovpcuslljp9v9rjak0_20160901T000000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OGZjMXNibzFvdnBjdXNsbGpwOXY5cmphazBfMjAxNjA5MDFUMDAwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:11:36.000Z", + "updated": "2016-08-28T05:11:36.080Z", + "summary": "Denver Canvass", + "description": "RSVP. Please contact Judy at 303.377.8367", + "location": "2455 N Race St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-31T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-08-31T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "8fc1sbo1ovpcuslljp9v9rjak0", + "originalStartTime": { + "dateTime": "2016-08-31T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "8fc1sbo1ovpcuslljp9v9rjak0@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944722503884000\"", + "id": "qeahkiuuq0888gh00oeuqgv10s_20160907T000000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWVhaGtpdXVxMDg4OGdoMDBvZXVxZ3YxMHNfMjAxNjA5MDdUMDAwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:14:11.000Z", + "updated": "2016-08-28T05:14:11.942Z", + "summary": "Denver Canvass", + "description": "RSVP. Please contact Judy at 303.377.8367", + "location": "2455 N Race St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-06T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-06T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "qeahkiuuq0888gh00oeuqgv10s", + "originalStartTime": { + "dateTime": "2016-09-06T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "qeahkiuuq0888gh00oeuqgv10s@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944722503884000\"", + "id": "qeahkiuuq0888gh00oeuqgv10s_20160908T000000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWVhaGtpdXVxMDg4OGdoMDBvZXVxZ3YxMHNfMjAxNjA5MDhUMDAwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:14:11.000Z", + "updated": "2016-08-28T05:14:11.942Z", + "summary": "Denver Canvass", + "description": "RSVP. Please contact Judy at 303.377.8367", + "location": "2455 N Race St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-07T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-07T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "qeahkiuuq0888gh00oeuqgv10s", + "originalStartTime": { + "dateTime": "2016-09-07T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "qeahkiuuq0888gh00oeuqgv10s@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944722665172000\"", + "id": "8atapo490n9md244lpb121p6t4_20160913T000000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OGF0YXBvNDkwbjltZDI0NGxwYjEyMXA2dDRfMjAxNjA5MTNUMDAwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:15:32.000Z", + "updated": "2016-08-28T05:15:32.586Z", + "summary": "Denver Canvass", + "description": "RSVP. Please contact Judy at 303.377.8367", + "location": "2455 N Race St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-12T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-12T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "8atapo490n9md244lpb121p6t4", + "originalStartTime": { + "dateTime": "2016-09-12T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "8atapo490n9md244lpb121p6t4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944722665172000\"", + "id": "8atapo490n9md244lpb121p6t4_20160914T000000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OGF0YXBvNDkwbjltZDI0NGxwYjEyMXA2dDRfMjAxNjA5MTRUMDAwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:15:32.000Z", + "updated": "2016-08-28T05:15:32.586Z", + "summary": "Denver Canvass", + "description": "RSVP. Please contact Judy at 303.377.8367", + "location": "2455 N Race St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-13T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-13T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "8atapo490n9md244lpb121p6t4", + "originalStartTime": { + "dateTime": "2016-09-13T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "8atapo490n9md244lpb121p6t4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944723419780000\"", + "id": "ddhvqtkvliq7sic8in0id5loa8_20160903T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZGRodnF0a3ZsaXE3c2ljOGluMGlkNWxvYThfMjAxNjA5MDNUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:21:49.000Z", + "updated": "2016-08-28T05:21:49.890Z", + "summary": "Arapahoe Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-03T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-03T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ddhvqtkvliq7sic8in0id5loa8", + "originalStartTime": { + "dateTime": "2016-09-03T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ddhvqtkvliq7sic8in0id5loa8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944723419780000\"", + "id": "ddhvqtkvliq7sic8in0id5loa8_20160910T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZGRodnF0a3ZsaXE3c2ljOGluMGlkNWxvYThfMjAxNjA5MTBUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:21:49.000Z", + "updated": "2016-08-28T05:21:49.890Z", + "summary": "Arapahoe Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-10T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ddhvqtkvliq7sic8in0id5loa8", + "originalStartTime": { + "dateTime": "2016-09-10T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ddhvqtkvliq7sic8in0id5loa8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944723419780000\"", + "id": "ddhvqtkvliq7sic8in0id5loa8_20160917T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZGRodnF0a3ZsaXE3c2ljOGluMGlkNWxvYThfMjAxNjA5MTdUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:21:49.000Z", + "updated": "2016-08-28T05:21:49.890Z", + "summary": "Arapahoe Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-17T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ddhvqtkvliq7sic8in0id5loa8", + "originalStartTime": { + "dateTime": "2016-09-17T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ddhvqtkvliq7sic8in0id5loa8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944723419780000\"", + "id": "ddhvqtkvliq7sic8in0id5loa8_20160924T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZGRodnF0a3ZsaXE3c2ljOGluMGlkNWxvYThfMjAxNjA5MjRUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:21:49.000Z", + "updated": "2016-08-28T05:21:49.890Z", + "summary": "Arapahoe Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ddhvqtkvliq7sic8in0id5loa8", + "originalStartTime": { + "dateTime": "2016-09-24T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ddhvqtkvliq7sic8in0id5loa8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944723419780000\"", + "id": "ddhvqtkvliq7sic8in0id5loa8_20161001T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZGRodnF0a3ZsaXE3c2ljOGluMGlkNWxvYThfMjAxNjEwMDFUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:21:49.000Z", + "updated": "2016-08-28T05:21:49.890Z", + "summary": "Arapahoe Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ddhvqtkvliq7sic8in0id5loa8", + "originalStartTime": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ddhvqtkvliq7sic8in0id5loa8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944723613124000\"", + "id": "m0fomchrvf38ser9lekbi71blg_20160903T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTBmb21jaHJ2ZjM4c2VyOWxla2JpNzFibGdfMjAxNjA5MDNUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:22:02.000Z", + "updated": "2016-08-28T05:23:26.562Z", + "summary": "Arapahoe Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-03T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-03T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m0fomchrvf38ser9lekbi71blg", + "originalStartTime": { + "dateTime": "2016-09-03T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m0fomchrvf38ser9lekbi71blg@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2944723613124000\"", + "id": "m0fomchrvf38ser9lekbi71blg_20160910T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTBmb21jaHJ2ZjM4c2VyOWxla2JpNzFibGdfMjAxNjA5MTBUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:22:02.000Z", + "updated": "2016-08-28T05:23:26.562Z", + "summary": "Arapahoe Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-10T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m0fomchrvf38ser9lekbi71blg", + "originalStartTime": { + "dateTime": "2016-09-10T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m0fomchrvf38ser9lekbi71blg@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2944723613124000\"", + "id": "m0fomchrvf38ser9lekbi71blg_20160917T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTBmb21jaHJ2ZjM4c2VyOWxla2JpNzFibGdfMjAxNjA5MTdUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:22:02.000Z", + "updated": "2016-08-28T05:23:26.562Z", + "summary": "Arapahoe Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-17T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m0fomchrvf38ser9lekbi71blg", + "originalStartTime": { + "dateTime": "2016-09-17T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m0fomchrvf38ser9lekbi71blg@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2944723613124000\"", + "id": "m0fomchrvf38ser9lekbi71blg_20160924T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTBmb21jaHJ2ZjM4c2VyOWxla2JpNzFibGdfMjAxNjA5MjRUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:22:02.000Z", + "updated": "2016-08-28T05:23:26.562Z", + "summary": "Arapahoe Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m0fomchrvf38ser9lekbi71blg", + "originalStartTime": { + "dateTime": "2016-09-24T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m0fomchrvf38ser9lekbi71blg@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2944723613124000\"", + "id": "m0fomchrvf38ser9lekbi71blg_20161001T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTBmb21jaHJ2ZjM4c2VyOWxla2JpNzFibGdfMjAxNjEwMDFUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:22:02.000Z", + "updated": "2016-08-28T05:23:26.562Z", + "summary": "Arapahoe Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m0fomchrvf38ser9lekbi71blg", + "originalStartTime": { + "dateTime": "2016-10-01T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m0fomchrvf38ser9lekbi71blg@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2944724031354000\"", + "id": "ql166v0esq1fhp54irrhh37ca4_20160903T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWwxNjZ2MGVzcTFmaHA1NGlycmhoMzdjYTRfMjAxNjA5MDNUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:26:55.000Z", + "updated": "2016-08-28T05:26:55.677Z", + "summary": "Douglas Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-03T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-03T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ql166v0esq1fhp54irrhh37ca4", + "originalStartTime": { + "dateTime": "2016-09-03T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ql166v0esq1fhp54irrhh37ca4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724031354000\"", + "id": "ql166v0esq1fhp54irrhh37ca4_20160910T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWwxNjZ2MGVzcTFmaHA1NGlycmhoMzdjYTRfMjAxNjA5MTBUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:26:55.000Z", + "updated": "2016-08-28T05:26:55.677Z", + "summary": "Douglas Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-10T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ql166v0esq1fhp54irrhh37ca4", + "originalStartTime": { + "dateTime": "2016-09-10T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ql166v0esq1fhp54irrhh37ca4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724031354000\"", + "id": "ql166v0esq1fhp54irrhh37ca4_20160917T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWwxNjZ2MGVzcTFmaHA1NGlycmhoMzdjYTRfMjAxNjA5MTdUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:26:55.000Z", + "updated": "2016-08-28T05:26:55.677Z", + "summary": "Douglas Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-17T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ql166v0esq1fhp54irrhh37ca4", + "originalStartTime": { + "dateTime": "2016-09-17T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ql166v0esq1fhp54irrhh37ca4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724031354000\"", + "id": "ql166v0esq1fhp54irrhh37ca4_20160924T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWwxNjZ2MGVzcTFmaHA1NGlycmhoMzdjYTRfMjAxNjA5MjRUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:26:55.000Z", + "updated": "2016-08-28T05:26:55.677Z", + "summary": "Douglas Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ql166v0esq1fhp54irrhh37ca4", + "originalStartTime": { + "dateTime": "2016-09-24T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ql166v0esq1fhp54irrhh37ca4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724031354000\"", + "id": "ql166v0esq1fhp54irrhh37ca4_20161001T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWwxNjZ2MGVzcTFmaHA1NGlycmhoMzdjYTRfMjAxNjEwMDFUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:26:55.000Z", + "updated": "2016-08-28T05:26:55.677Z", + "summary": "Douglas Canvass: Every Saturday morning", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ql166v0esq1fhp54irrhh37ca4", + "originalStartTime": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ql166v0esq1fhp54irrhh37ca4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724224368000\"", + "id": "uhngu0rgion5nb2j1hf7dt2fvg_20160903T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dWhuZ3Uwcmdpb241bmIyajFoZjdkdDJmdmdfMjAxNjA5MDNUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:28:32.000Z", + "updated": "2016-08-28T05:28:32.184Z", + "summary": "Douglas Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-03T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-03T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "uhngu0rgion5nb2j1hf7dt2fvg", + "originalStartTime": { + "dateTime": "2016-09-03T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "uhngu0rgion5nb2j1hf7dt2fvg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724224368000\"", + "id": "uhngu0rgion5nb2j1hf7dt2fvg_20160910T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dWhuZ3Uwcmdpb241bmIyajFoZjdkdDJmdmdfMjAxNjA5MTBUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:28:32.000Z", + "updated": "2016-08-28T05:28:32.184Z", + "summary": "Douglas Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-10T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "uhngu0rgion5nb2j1hf7dt2fvg", + "originalStartTime": { + "dateTime": "2016-09-10T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "uhngu0rgion5nb2j1hf7dt2fvg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724224368000\"", + "id": "uhngu0rgion5nb2j1hf7dt2fvg_20160917T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dWhuZ3Uwcmdpb241bmIyajFoZjdkdDJmdmdfMjAxNjA5MTdUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:28:32.000Z", + "updated": "2016-08-28T05:28:32.184Z", + "summary": "Douglas Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-17T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "uhngu0rgion5nb2j1hf7dt2fvg", + "originalStartTime": { + "dateTime": "2016-09-17T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "uhngu0rgion5nb2j1hf7dt2fvg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724224368000\"", + "id": "uhngu0rgion5nb2j1hf7dt2fvg_20160924T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dWhuZ3Uwcmdpb241bmIyajFoZjdkdDJmdmdfMjAxNjA5MjRUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:28:32.000Z", + "updated": "2016-08-28T05:28:32.184Z", + "summary": "Douglas Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "uhngu0rgion5nb2j1hf7dt2fvg", + "originalStartTime": { + "dateTime": "2016-09-24T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "uhngu0rgion5nb2j1hf7dt2fvg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944724224368000\"", + "id": "uhngu0rgion5nb2j1hf7dt2fvg_20161001T190000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dWhuZ3Uwcmdpb241bmIyajFoZjdkdDJmdmdfMjAxNjEwMDFUMTkwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:28:32.000Z", + "updated": "2016-08-28T05:28:32.184Z", + "summary": "Douglas Canvass: Every Saturday afternoon", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "uhngu0rgion5nb2j1hf7dt2fvg", + "originalStartTime": { + "dateTime": "2016-10-01T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "uhngu0rgion5nb2j1hf7dt2fvg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944726033008000\"", + "id": "ghlsq9hkr5nfqa51nl88ehl6ug", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=Z2hsc3E5aGtyNW5mcWE1MW5sODhlaGw2dWcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-28T05:43:36.000Z", + "updated": "2016-08-28T05:43:36.504Z", + "summary": "Broomfield: Public discussion of ColoradoCare", + "description": "Present general information about ColoradoCare, including advantages for Coloradans, financing, and governance.", + "location": "Broomfield Public Library, 3 Community Park Rd, Broomfield, CO 80020", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-01T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-01T20:30:00-06:00" + }, + "iCalUID": "ghlsq9hkr5nfqa51nl88ehl6ug@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2944726355174000\"", + "id": "4t23csn10cjhranv345qn6rbrc", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=NHQyM2NzbjEwY2pocmFudjM0NXFuNnJicmMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-28T05:46:17.000Z", + "updated": "2016-08-28T05:46:17.587Z", + "summary": "Broomfield: Public discussion of ColoradoCare", + "description": "The discussion will focus on the self-employed and ColoradoCare. Other ColoradoCare issues may be discussed as pertinent. ", + "location": "Broomfield Public Library, 3 Community Park Rd, Broomfield, CO 80020", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-26T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-26T20:30:00-06:00" + }, + "iCalUID": "4t23csn10cjhranv345qn6rbrc@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2945056938520000\"", + "id": "mil2v0ep3h14gvgdhp38r0jo78", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bWlsMnYwZXAzaDE0Z3ZnZGhwMzhyMGpvNzggMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-30T03:41:09.000Z", + "updated": "2016-08-30T03:41:09.260Z", + "summary": "Denver: “Healthcare in our lives: Stories of Horror and Hope” ", + "description": "How has the healthcare system impacted your life, or those of people you love? \n\nDrop by Denver Open Media from 6-8pm on Friday, Sept 2, to learn about ColoradoCare (Amendment 69), the universal healthcare system on the ballot this November. Share your story and hopes for change in an interactive video project. Highlights will be submitted to Denver Open Media for broadcast and shared online through ColoradoCare.\n\nWhen: Sept. 2, 6 - 8 pm\nWhere: Denver Open Media, 700 Kalamath St, Denver, CO 80204\nContact: Alan August, alantaugust@gmail.com", + "location": "Denver Open Media, 700 Kalamath St, Denver, CO 80204", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-02T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-02T20:00:00-06:00" + }, + "iCalUID": "mil2v0ep3h14gvgdhp38r0jo78@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2945059936308000\"", + "id": "026m96ets0tnhsv3mfn6khsj4o", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MDI2bTk2ZXRzMHRuaHN2M21mbjZraHNqNG8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-30T04:06:06.000Z", + "updated": "2016-08-30T04:06:08.154Z", + "summary": "Arvada: Phone banking", + "description": "For detailed info, contact Aleta at 916-254-3854 or akazdi@gmail.com ", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-30T17:30:00-06:00" + }, + "end": { + "dateTime": "2016-08-30T19:45:00-06:00" + }, + "iCalUID": "026m96ets0tnhsv3mfn6khsj4o@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2945502279754000\"", + "id": "vd215drhodfvasmag5ar3rjiog_20160828T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dmQyMTVkcmhvZGZ2YXNtYWc1YXIzcmppb2dfMjAxNjA4MjhUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:20:48.000Z", + "updated": "2016-09-01T17:32:19.877Z", + "summary": "Jefferson Canvass: Every Sunday at Westminster", + "description": "RSVP. Please contact Sara at 303.548.6973", + "location": "Lemars Donuts at 9940 Wadsworth Pkwy, Westminster, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-28T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-08-28T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vd215drhodfvasmag5ar3rjiog", + "originalStartTime": { + "dateTime": "2016-08-28T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vd215drhodfvasmag5ar3rjiog@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946446081526000\"", + "id": "huvr1ga9tteq15o9hra4ea0tu0", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aHV2cjFnYTl0dGVxMTVvOWhyYTRlYTB0dTAgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-07T04:33:18.000Z", + "updated": "2016-09-07T04:37:20.763Z", + "summary": "Facebook live with Sen. Irene Aguilar", + "description": "On Thursday, Sep. 8, 10 a.m., we're having a Facebook Live event with Sen. Irene Aguilar and we need your help.\nIn order to spread the event as far as possible on social media, we are asking you to go to our page at 10 a.m. and 'share' the live event with your friends on Facebook. \nMore than that, you can stay and listen to Irene speak about ColoradoCare and ask those questions (via written comments) you've been dying to ask! \nOur FB page is at: https://www.facebook.com/CooperateColorado/\nThank you all for your incredible work on behalf of ColoradoCare. ", + "location": "Online", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-08T10:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-08T11:00:00-06:00" + }, + "transparency": "transparent", + "iCalUID": "huvr1ga9tteq15o9hra4ea0tu0@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2946448360600000\"", + "id": "i1uqopbrs5ulgs90mf0fevaq9k", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aTF1cW9wYnJzNXVsZ3M5MG1mMGZldmFxOWsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-07T04:51:41.000Z", + "updated": "2016-09-07T04:56:20.300Z", + "summary": "Broomfield: Democrats debate with pro & con speakers", + "description": "The Broomfield Democrats will sponsor a moderated forum today. BOTH Pro and ConA69 representatives are present to answer questions from citizens. Both ColoradoCare and ColoradoansForColoradoans will have a representative on stage.", + "location": "Broomfield Community Center, 280 Spader Way, Broomfield, CO 80020, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-08T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-08T19:30:00-06:00" + }, + "transparency": "transparent", + "iCalUID": "i1uqopbrs5ulgs90mf0fevaq9k@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2946452395078000\"", + "id": "rc98ef5cp9j39uuvtqa1d99mis", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cmM5OGVmNWNwOWozOXV1dnRxYTFkOTltaXMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-07T05:27:19.000Z", + "updated": "2016-09-07T05:29:57.539Z", + "summary": "Longmont: Learn about ColoradoCare from Longmont Democrats", + "description": "Come to learn about ColoradoCare from our speaker Mr. Ron Verjorstek, what it is and what it isn't, and what you need to know before you vote.", + "location": "Longmont Democrats,1108 Main St., Longmont, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-07T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-07T19:30:00-06:00" + }, + "iCalUID": "rc98ef5cp9j39uuvtqa1d99mis@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946452458638000\"", + "id": "jl7ldqqjjce204ieism3t8qf6o", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=amw3bGRxcWpqY2UyMDRpZWlzbTN0OHFmNm8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-07T05:29:23.000Z", + "updated": "2016-09-07T05:30:29.319Z", + "summary": "Firesone: Learn about ColoradoCare at Carbon Valley Library", + "description": "Come to learn about ColoradoCare from our speaker Mr. Geoff Dolman, what it is and what it isn't, and what you need to know before you vote.", + "location": "Carbon Valley Library, 7 Park Ave, Firestone, CO 80504", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T11:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-10T12:00:00-06:00" + }, + "iCalUID": "jl7ldqqjjce204ieism3t8qf6o@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946452609020000\"", + "id": "r0hv9j623eko8nseaujtjq8bdo", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cjBodjlqNjIzZWtvOG5zZWF1anRqcThiZG8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-20T04:21:24.000Z", + "updated": "2016-09-07T05:31:44.510Z", + "summary": "Belmar: Learn about ColoradoCare at Belmar Public Library", + "description": "Come to learn about ColoradoCare from our speaker Noel Guardi, JD, what it is and what it isn't, and what you need to know before you vote.", + "location": "Belmar Public Library, 555 S Allison Pkwy, Lakewood, CO 80226", + "creator": { + "email": "akazdi@gmail.com", + "displayName": "Aleta Kazadi" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T10:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-17T12:00:00-06:00" + }, + "iCalUID": "r0hv9j623eko8nseaujtjq8bdo@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2946453479696000\"", + "id": "8guk3k4tck5898ec4smj3it2jg", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OGd1azNrNHRjazU4OThlYzRzbWozaXQyamcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-07T05:38:59.000Z", + "updated": "2016-09-07T05:38:59.848Z", + "summary": "Black Hawk: Learn about ColoradoCare at Gilpin County Library", + "description": "Come to learn about ColoradoCare from our speaker Noel Guardi, JD, what it is and what it isn't, and what you need to know before you vote.", + "location": "Gilpin County Library, 15131 CO-119, Black Hawk, CO 80422, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T10:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-24T11:00:00-06:00" + }, + "iCalUID": "8guk3k4tck5898ec4smj3it2jg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946454605464000\"", + "id": "ohh4fh6l3ap22dqbo905491fg8", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=b2hoNGZoNmwzYXAyMmRxYm85MDU0OTFmZzggMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-07T05:48:22.000Z", + "updated": "2016-09-07T05:48:22.732Z", + "summary": "Arvada: Debate about ColoradoCare", + "location": "Lamar Street Center, 5889 Lamar St, Arvada, CO 80003, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-07T11:15:00-06:00" + }, + "end": { + "dateTime": "2016-09-08T01:00:00-06:00" + }, + "iCalUID": "ohh4fh6l3ap22dqbo905491fg8@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946560028002000\"", + "id": "9smm64gjcrlf8fojc59utt42qc", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OXNtbTY0Z2pjcmxmOGZvamM1OXV0dDQycWMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-07T05:12:08.000Z", + "updated": "2016-09-07T20:26:54.001Z", + "summary": "PBS Channel 12: T.R. Reid speak about ColoradoCare", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-09T21:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-09T22:00:00-06:00" + }, + "iCalUID": "9smm64gjcrlf8fojc59utt42qc@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2946693384328000\"", + "id": "gmr5psmqg9600nc5raropn6mb0", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=Z21yNXBzbXFnOTYwMG5jNXJhcm9wbjZtYjAgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-08T14:56:24.000Z", + "updated": "2016-09-08T14:58:12.164Z", + "summary": "Boulder: Learn about ColoradoCare at Boulder Public Library", + "description": "Come to learn about ColoradoCare from our speaker Noel Guardi, JD, what it is and what it isn't. Something you need to do before you vote.", + "location": "Boulder Public Library - Main Library, 1001 Arapahoe Ave, Boulder, CO 80302, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-20T12:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-20T13:00:00-06:00" + }, + "transparency": "transparent", + "iCalUID": "gmr5psmqg9600nc5raropn6mb0@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2946739751668000\"", + "id": "gfk2h1fn0fflmqsf3edvmobbjs", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=Z2ZrMmgxZm4wZmZsbXFzZjNlZHZtb2JianMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-05-01T04:56:37.000Z", + "updated": "2016-09-08T21:24:35.834Z", + "summary": "Alamosa-Informational Meeting & Discussion-Jeanne Nicholson,RN,MSN", + "description": "Amendment 69-Colorado Care\nJoin the informational meeting and discussion\n\nPresenters:\nFOR Amendment 69-COLORADOCARE - former State Sen. Jeanne Nicholson, RN, MSN\nwww.coloradocare.org\n\nAGAINST\nKatherine Mulready\nVice President of Legislation Policy and Chief Strategy Officer\nColorado Hospital Association\nhttp://cha.com/Policy-Advocacy/2016-Ballot-Issues-Amendment-69-(ColoradoCare).aspx\n\nFor more information visit the above websites. \nFor local information call Randy Wright, Alamosa Chamber at randyw@gojade.org Snacks will be available.\nOrganized by Sue Foster, Charlotte Ledonne, Helen Lester and Donna Wehe \n", + "location": "First United Methodist Church, 2005 Mullins Ave, Alamosa, CO 81101, USA", + "creator": { + "email": "slvbarb498@gmail.com", + "displayName": "Barbara Tidd" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-27T17:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-27T19:00:00-06:00" + }, + "transparency": "transparent", + "iCalUID": "gfk2h1fn0fflmqsf3edvmobbjs@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2946740167792000\"", + "id": "82ke2trhrj27o3nal9seuig82c", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ODJrZTJ0cmhyajI3bzNuYWw5c2V1aWc4MmMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-05-01T04:57:15.000Z", + "updated": "2016-09-08T21:28:03.896Z", + "summary": "Salida-PRO/CON presentation with Jeanne Nicholson", + "description": "Join an informational presentation and Q&A about Amendment 69 - ColoradoCare -"medicare-for-all" type health care system for ALL Coloradans \n\nPresenters:\nFOR Amendment 69:\nJeanne Nicholson, RN, MSN\nFormer Colorado State Senator, Dist. 16 (2011 – 2015)\nwww.coloradocare.org\n\nAGAINST Amendment 69:\nSteve VanderWerf, El Paso County Commissioner Candidate\n\nFor more information, visit coloradocare.org. For local information contact Marilyn Bouldin 719.239.1031.\n", + "location": "First Presbyterian Church, 7 Poncha Boulevard, Salida, CO, United States", + "creator": { + "email": "slvbarb498@gmail.com", + "displayName": "Barbara Tidd" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-26T19:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-26T20:30:00-06:00" + }, + "iCalUID": "82ke2trhrj27o3nal9seuig82c@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946754835512000\"", + "id": "lr7nkqjcb5jtla55cae8j7hi08", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bHI3bmtxamNiNWp0bGE1NWNhZThqN2hpMDggMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-07-10T15:43:27.000Z", + "updated": "2016-09-08T23:30:17.756Z", + "summary": "Boulder Symposium and Meet-up - TR Reid: Amendment 69", + "description": "Friends,\n\nWe have a big campaign evening in Boulder on Monday September 12th brought to you by ColoradoCare Yes, Amendment #69: Coloradocare, a meetup.com group, and the facebook group Musicians for 69.\n\n1.\tSpecial engagement with Award Winning Journalist, Best Selling Author and Producer T.R. REID. He will give two one hour public symposiums, one at 5pm and one at 7pm at the Boulder Library, 1001 Arapahoe. Admission is free, parking is free (although you must enter your license plate # at the kiosk to get free parking). Please refer to flyer at the end of this message.\n\n2.\tBook signing with free time to speak with T.R. REID about our campaign for the future of Colorado’s health care at 6 pm.\n\n3.\tMeeting of the Boulder Speaker’s Bureau to collaborate on future speaking engagements and other events at 6 pm. Volunteers and Public Welcome!\n\nThe event is filling up quickly, so to insure a seat R.S.V.P. (at meetup.com Amendment #69: ColoradoCare if possible). Frankly, I am wondering why we don’t already have people hanging from the rafters!\n\nPlease “Five it forward” - tell five of your friends, family, neighbors and coworkers about this event and ColoradoCare. And ask them to do the same.", + "location": "Boulder Public Library - Main Library, Arapahoe Avenue - Boulder Creek Room", + "creator": { + "email": "rickihadow@gmail.com" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-12T17:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-12T21:00:00-06:00" + }, + "iCalUID": "lr7nkqjcb5jtla55cae8j7hi08@google.com", + "sequence": 1, + "attachments": [ + { + "fileUrl": "https://drive.google.com/file/d/0B5KsxPTT8ZESdjNXM01Ua2h0Rkk/view?usp=drive_web", + "title": "TR Reid Boulder speak.jpeg", + "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png", + "fileId": "0B5KsxPTT8ZESdjNXM01Ua2h0Rkk" + } + ] + }, + { + "kind": "calendar#event", + "etag": "\"2946761245766000\"", + "id": "n4fe229oql9bhp6fo1i75mu300", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bjRmZTIyOW9xbDliaHA2Zm8xaTc1bXUzMDAgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-08T23:59:33.000Z", + "updated": "2016-09-09T00:23:42.883Z", + "summary": "Boulder: Learn about ColoradoCare at Reynolds Branch Library", + "description": "Come to learn about ColoradoCare, what it is and what it isn't, and what you need to know before you vote.", + "location": "Boulder Public Library - George Reynolds Branch 3595 Table Mesa Dr, Boulder, CO 80305", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-19T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-19T20:00:00-06:00" + }, + "transparency": "transparent", + "iCalUID": "n4fe229oql9bhp6fo1i75mu300@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2946789551022000\"", + "id": "v7alhgdljt190j6d6pun15098s", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=djdhbGhnZGxqdDE5MGo2ZDZwdW4xNTA5OHMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:19:35.000Z", + "updated": "2016-09-09T04:19:35.511Z", + "summary": "Boulder: Debate about ColoradoCare with T.R. Reid", + "description": "Join the debate about ColoradoCare with our speaker T.R. Reid!", + "location": "Boulder Rotary Club, Avalon Ballroom 6185 Arapahoe Ave Boulder, CO 80303", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-09T12:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-09T13:45:00-06:00" + }, + "iCalUID": "v7alhgdljt190j6d6pun15098s@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946790032100000\"", + "id": "slcj013k98aphhb05d5nhsruho", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=c2xjajAxM2s5OGFwaGhiMDVkNW5oc3J1aG8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:23:36.000Z", + "updated": "2016-09-09T04:23:36.050Z", + "summary": "Lakewood: Church presentation on ColoradoCare ", + "location": "Green Mountain Presbyterian, 12900 W Alameda Pkwy, Lakewood, CO 80228, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T09:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-10T11:30:00-06:00" + }, + "iCalUID": "slcj013k98aphhb05d5nhsruho@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946790276810000\"", + "id": "7qrkv82rq0ghdb8skuvnmbe584", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=N3Fya3Y4MnJxMGdoZGI4c2t1dm5tYmU1ODQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-23T04:59:05.000Z", + "updated": "2016-09-09T04:25:38.405Z", + "summary": "Breckenridge: Health Care in Crisis: Is ColoradoCare answer? ", + "description": "Summit Interfaith Council will feature movie clips to stimulate and inform a discussion entitled \"Health Care in Crisis: Is ColoradoCare answer?\" Join our speakers T.R. Reid and Dr. Kristine Hembre!", + "location": "South Branch Library (former CMC), 103 S Harris St, Breckenridge, CO 80424", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-11T19:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-11T21:30:00-06:00" + }, + "iCalUID": "7qrkv82rq0ghdb8skuvnmbe584@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946791626620000\"", + "id": "4qpihtsllap8lir948rmq426pc", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=NHFwaWh0c2xsYXA4bGlyOTQ4cm1xNDI2cGMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:36:53.000Z", + "updated": "2016-09-09T04:36:53.310Z", + "summary": "Littleton: Information on ColoradoCare at Mary Parker's townhall", + "location": "Columbine Library, 7706 W Bowles Ave, Littleton, CO 80123, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-12T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-12T20:00:00-06:00" + }, + "iCalUID": "4qpihtsllap8lir948rmq426pc@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946791779196000\"", + "id": "qehpi8dpp9esinv629e6klan44", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cWVocGk4ZHBwOWVzaW52NjI5ZTZrbGFuNDQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:30:16.000Z", + "updated": "2016-09-09T04:38:09.598Z", + "summary": "Boulder: Information on ColoradoCare", + "description": "Join our information session to the Ayurveda Association and the general public!", + "location": "Solstice Center, LLC, 302 Pearl St, Boulder, CO 80302, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-11T19:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-11T21:00:00-06:00" + }, + "iCalUID": "qehpi8dpp9esinv629e6klan44@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946791996378000\"", + "id": "nltor9lq71kgsotba6trmllpsk", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bmx0b3I5bHE3MWtnc290YmE2dHJtbGxwc2sgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:39:58.000Z", + "updated": "2016-09-09T04:39:58.189Z", + "summary": "Aurora: Coffee meeting over ColoradoCare with Sen. Aguilar", + "location": "9801 E Colfax Ave, Ste 250, Aurora", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-13T10:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-13T11:30:00-06:00" + }, + "iCalUID": "nltor9lq71kgsotba6trmllpsk@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946792540682000\"", + "id": "2oshkj9nqved7lc4sj08t4cp7g", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=Mm9zaGtqOW5xdmVkN2xjNHNqMDh0NGNwN2cgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:44:30.000Z", + "updated": "2016-09-09T04:44:30.341Z", + "summary": "Denver: T.R. Reid on ColoradoCare at Denver Rotary Club", + "location": "Denver Athletic Club, 4th floor 1325 Glenarm Pl, Denver, CO 80204", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-15T11:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-15T13:00:00-06:00" + }, + "iCalUID": "2oshkj9nqved7lc4sj08t4cp7g@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946792912920000\"", + "id": "p56itjufvea6ce8hv7j35m00s4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cDU2aXRqdWZ2ZWE2Y2U4aHY3ajM1bTAwczQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:47:36.000Z", + "updated": "2016-09-09T04:47:36.460Z", + "summary": "Aurora: ColoradoCare presentation at Fall Legislative Forum", + "location": "DoubleTree Hotel, 13696 East Iliff Place, Aurora, CO 80014, United States", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-15T10:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-15T12:00:00-06:00" + }, + "iCalUID": "p56itjufvea6ce8hv7j35m00s4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946793282596000\"", + "id": "0vc5ancf1777r4574c75748elo", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MHZjNWFuY2YxNzc3cjQ1NzRjNzU3NDhlbG8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:50:41.000Z", + "updated": "2016-09-09T04:50:41.298Z", + "summary": "Denver: Mountain View Friends Meeting ", + "location": "Mountain View Friends Meeting House, 2280 S. Columbine, Denver", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-18T12:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-18T13:30:00-06:00" + }, + "iCalUID": "0vc5ancf1777r4574c75748elo@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946795589798000\"", + "id": "d4tobibanf6n1u2t16fodd8ud4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZDR0b2JpYmFuZjZuMXUydDE2Zm9kZDh1ZDQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T04:55:51.000Z", + "updated": "2016-09-09T05:09:54.899Z", + "summary": "Denver: Sen. Aguilar on ColoradoCare", + "description": "Join our ColoradoCare presentation by Sen. Irene Aguilar!", + "location": "DICP at College View Recreation Center, 2525 S Decatur St, Denver, CO, United States", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-20T19:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-20T21:00:00-06:00" + }, + "iCalUID": "d4tobibanf6n1u2t16fodd8ud4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946796141006000\"", + "id": "2cj3edlc23rg402601nare3peg", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MmNqM2VkbGMyM3JnNDAyNjAxbmFyZTNwZWcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T05:14:30.000Z", + "updated": "2016-09-09T05:14:30.503Z", + "summary": "Aurora: ColoradoCare presentation at Aurora Southlands Rotary Club", + "description": "Join our presentation at Aurora Southlands Rotary Club! The event is upstairs. ", + "location": "McCabe's Tavern and Bistro, 6100 S Main Street, Aurora", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-20T17:45:00-06:00" + }, + "end": { + "dateTime": "2016-09-20T18:45:00-06:00" + }, + "iCalUID": "2cj3edlc23rg402601nare3peg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946796495692000\"", + "id": "p8fdghd2d0bifrn0ujlls8qltg", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cDhmZGdoZDJkMGJpZnJuMHVqbGxzOHFsdGcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T05:17:27.000Z", + "updated": "2016-09-09T05:17:27.846Z", + "summary": "Aurora: HD40 Democrats meeting", + "location": "Arapahoe County Democratic Party, 10730 E Bethany Drive, Suite 240, Aurora, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-20T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-20T20:00:00-06:00" + }, + "iCalUID": "p8fdghd2d0bifrn0ujlls8qltg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946796837560000\"", + "id": "a5qssgi8d10lsa9dr6s1tq0i60", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=YTVxc3NnaThkMTBsc2E5ZHI2czF0cTBpNjAgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T05:20:18.000Z", + "updated": "2016-09-09T05:20:18.780Z", + "summary": "Denver: ColoradoCare presentation to Cook Park Neighborhood Association", + "location": "Cook Park Recreation Center, 7100 Cherry Creek S Dr, Denver, CO 80224, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-20T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-20T19:00:00-06:00" + }, + "iCalUID": "a5qssgi8d10lsa9dr6s1tq0i60@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946797274302000\"", + "id": "iv93erb0pm40hlag93o7c5i0go", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aXY5M2VyYjBwbTQwaGxhZzkzbzdjNWkwZ28gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-09T05:23:57.000Z", + "updated": "2016-09-09T05:23:57.151Z", + "summary": "Denver: \"Drinking Liberally\" with Sen. Aguilar", + "location": "The Irish Snug, 1201 E Colfax Ave #100, Denver, CO 80218, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-21T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-21T20:30:00-06:00" + }, + "iCalUID": "iv93erb0pm40hlag93o7c5i0go@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946873625676000\"", + "id": "jb69jeeo5e56qnb1ub5hsuodkc", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=amI2OWplZW81ZTU2cW5iMXViNWhzdW9ka2MgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-04-06T12:04:58.000Z", + "updated": "2016-09-09T16:00:12.838Z", + "summary": "Grand Junction Voter Outreach -- U.S. Senate Debate, Club 20", + "description": "Location and time TBA.", + "location": "Club 20 at 131 N 6th St #305, Grand Junction, CO 81501", + "creator": { + "email": "owenperk@aol.com", + "displayName": "Owen Perkins" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "date": "2016-09-10" + }, + "end": { + "date": "2016-09-11" + }, + "transparency": "transparent", + "iCalUID": "jb69jeeo5e56qnb1ub5hsuodkc@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2946965058858000\"", + "id": "i855rbaes521lfmlcletok5bqk", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aTg1NXJiYWVzNTIxbGZtbGNsZXRvazVicWsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-10T04:42:09.000Z", + "updated": "2016-09-10T04:42:09.429Z", + "summary": "Broomfield: Diane Dunn on Amendment 69", + "description": "Diane Dunn, a Health IT Consultant, started her career as a Social Worker in Boulder County. In 1985 moved to the State Department of Health Care Policy and Financing (HCPF). Over her 25 years there, she worked on health care policy, budget, data, and information systems. Her last ten years at HCPF saw her managing the technical side of the claims processing system. \nAfter leaving the State in 2010, she was a Health IT Consultant with projects in Arkansas, Illinois, and Missouri. Most recently, Diane worked on the Health Insurance Marketplace design, development, and implementation for Connect for Health Colorado.", + "location": "MDE Broomfield Library, Eisenhower Room, One DesCombes Dr, Broomfield", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-29T19:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-29T20:30:00-06:00" + }, + "iCalUID": "i855rbaes521lfmlcletok5bqk@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2947302052568000\"", + "id": "fu8ib2fltr8r4f3vl2uounrk70", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZnU4aWIyZmx0cjhyNGYzdmwydW91bnJrNzAgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-12T03:30:26.000Z", + "updated": "2016-09-12T03:30:26.284Z", + "summary": "Broomfield: Phone banking", + "description": "Food and refreshments will be served.", + "location": "1320 Stonehaven Ave, Broomfield, CO 80020", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-13T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-13T20:00:00-06:00" + }, + "iCalUID": "fu8ib2fltr8r4f3vl2uounrk70@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2947302149330000\"", + "id": "h4fo3465s34pm43std1psd4a7s", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aDRmbzM0NjVzMzRwbTQzc3RkMXBzZDRhN3MgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-12T03:31:14.000Z", + "updated": "2016-09-12T03:31:14.665Z", + "summary": "Broomfield: Phone banking", + "description": "Food and refreshments will be served.", + "location": "1320 Stonehaven Ave. Broomfield, CO 80020", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-21T18:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-21T20:00:00-06:00" + }, + "iCalUID": "h4fo3465s34pm43std1psd4a7s@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2947302380478000\"", + "id": "dom2f3km9ecfuj379u0puho7t4_20160929T000000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZG9tMmYza205ZWNmdWozNzl1MHB1aG83dDRfMjAxNjA5MjlUMDAwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-12T03:32:11.000Z", + "updated": "2016-09-12T03:33:10.239Z", + "summary": "Broomfield: Phone banking", + "description": "Food and refreshments will be served.", + "location": "1320 Stonehaven Ave, Broomfield, CO 80020, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-28T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-28T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "dom2f3km9ecfuj379u0puho7t4", + "originalStartTime": { + "dateTime": "2016-09-28T18:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "dom2f3km9ecfuj379u0puho7t4@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2947303266484000\"", + "id": "ejn7nomlhtsj3cncelfrlgrltg", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZWpuN25vbWxodHNqM2NuY2VsZnJsZ3JsdGcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-20T04:34:04.000Z", + "updated": "2016-09-12T03:40:33.242Z", + "summary": "Arvada: Let's canvass", + "description": "Let's keep it up, gain more supporters, canvass for success and victory. We need all of our supporters, let's do it again and get them all out. ", + "location": "Beau Jo's Arvada, 7525 W 53rd Ave, Arvada, CO 80002, USA", + "creator": { + "email": "akazdi@gmail.com", + "displayName": "Aleta Kazadi" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T12:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-24T14:00:00-06:00" + }, + "iCalUID": "ejn7nomlhtsj3cncelfrlgrltg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2947486580394000\"", + "id": "1lguducq72cnhfp9ntkhsnj8mc", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MWxndWR1Y3E3MmNuaGZwOW50a2hzbmo4bWMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-13T04:46:38.000Z", + "updated": "2016-09-13T05:08:10.197Z", + "summary": "Broomfield: Parade at Broomfield Days", + "description": "Join our parade at Broomfield Days on September 17th! We will be meeting at the park at 280 Spader Way. (The meeting time and location might be slightly tweaked. Stay in tuned!)", + "location": "280 Spader Way, Broomfield", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T09:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-17T11:00:00-06:00" + }, + "iCalUID": "1lguducq72cnhfp9ntkhsnj8mc@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2947488083100000\"", + "id": "q3nq54dbnkpt3nkoibvba78nsc_20160910T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cTNucTU0ZGJua3B0M25rb2lidmJhNzhuc2NfMjAxNjA5MTBUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-10T04:23:29.000Z", + "updated": "2016-09-13T05:20:41.550Z", + "summary": "Golden Canvass: Saturday morning", + "description": "RSVP. Please contact Aleta at 916.254.3854, or Margaret at 303.423.6531", + "location": "5320 Ulysses St, Golden, CO 80403, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-10T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "q3nq54dbnkpt3nkoibvba78nsc", + "originalStartTime": { + "dateTime": "2016-09-10T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "q3nq54dbnkpt3nkoibvba78nsc@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2947488083100000\"", + "id": "q3nq54dbnkpt3nkoibvba78nsc_20160917T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cTNucTU0ZGJua3B0M25rb2lidmJhNzhuc2NfMjAxNjA5MTdUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-10T04:23:29.000Z", + "updated": "2016-09-13T05:20:41.550Z", + "summary": "Golden Canvass: Saturday morning", + "description": "RSVP. Please contact Aleta at 916.254.3854, or Margaret at 303.423.6531", + "location": "5320 Ulysses St, Golden, CO 80403, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-17T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "q3nq54dbnkpt3nkoibvba78nsc", + "originalStartTime": { + "dateTime": "2016-09-17T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "q3nq54dbnkpt3nkoibvba78nsc@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2947488083100000\"", + "id": "q3nq54dbnkpt3nkoibvba78nsc_20160924T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cTNucTU0ZGJua3B0M25rb2lidmJhNzhuc2NfMjAxNjA5MjRUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-10T04:23:29.000Z", + "updated": "2016-09-13T05:20:41.550Z", + "summary": "Golden Canvass: Saturday morning", + "description": "RSVP. Please contact Aleta at 916.254.3854, or Margaret at 303.423.6531", + "location": "5320 Ulysses St, Golden, CO 80403, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "q3nq54dbnkpt3nkoibvba78nsc", + "originalStartTime": { + "dateTime": "2016-09-24T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "q3nq54dbnkpt3nkoibvba78nsc@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2947659285918000\"", + "id": "9nd9uqc7fu3sgbs0m848s2le00", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OW5kOXVxYzdmdTNzZ2JzMG04NDhzMmxlMDAgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-14T05:07:22.000Z", + "updated": "2016-09-14T05:07:22.959Z", + "summary": "Yuma: Understanding Amendment 69, ColoradoCare", + "description": "Topic: Understanding Amendment 69, ColoradoCare\nPresenter: Rich Shannon\nDate: 9/27/2016\nTime: 6:30 PM- 8:00PM Informal discussion until 8:30PM\nPlace: First Presbyterian Church. 100 W. 4th Avenue, Yuma, Colorado\n\nLearn about Amendment 69, ColoradoCare, at an informational presentation followed by a period of Questions & Answers. ", + "location": "First Presbyterian Church, 100 W. 4th Avenue, Yuma, Colorado", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-27T18:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-27T20:30:00-06:00" + }, + "iCalUID": "9nd9uqc7fu3sgbs0m848s2le00@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2947761494490000\"", + "id": "bfvv44kc6m0p4v1haf0so4c4fk_20160914T003000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=YmZ2djQ0a2M2bTBwNHYxaGFmMHNvNGM0ZmtfMjAxNjA5MTRUMDAzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-13T05:19:45.000Z", + "updated": "2016-09-14T19:19:07.245Z", + "summary": "Arvada: phone bank", + "description": "Please contact Joan at 303-910-0465 for more information.", + "location": "6504 W 69th Pl, Arvada, CO 80003, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-13T18:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-13T20:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "bfvv44kc6m0p4v1haf0so4c4fk", + "originalStartTime": { + "dateTime": "2016-09-13T18:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "bfvv44kc6m0p4v1haf0so4c4fk@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2947761494490000\"", + "id": "bfvv44kc6m0p4v1haf0so4c4fk_20160921T003000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=YmZ2djQ0a2M2bTBwNHYxaGFmMHNvNGM0ZmtfMjAxNjA5MjFUMDAzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-13T05:19:45.000Z", + "updated": "2016-09-14T19:19:07.245Z", + "summary": "Arvada: phone bank", + "description": "Please contact Joan at 303-910-0465 for more information.", + "location": "6504 W 69th Pl, Arvada, CO 80003, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-20T18:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-20T20:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "bfvv44kc6m0p4v1haf0so4c4fk", + "originalStartTime": { + "dateTime": "2016-09-20T18:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "bfvv44kc6m0p4v1haf0so4c4fk@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2947761494490000\"", + "id": "bfvv44kc6m0p4v1haf0so4c4fk_20160928T003000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=YmZ2djQ0a2M2bTBwNHYxaGFmMHNvNGM0ZmtfMjAxNjA5MjhUMDAzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-13T05:19:45.000Z", + "updated": "2016-09-14T19:19:07.245Z", + "summary": "Arvada: phone bank", + "description": "Please contact Joan at 303-910-0465 for more information.", + "location": "6504 W 69th Pl, Arvada, CO 80003, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-27T18:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-27T20:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "bfvv44kc6m0p4v1haf0so4c4fk", + "originalStartTime": { + "dateTime": "2016-09-27T18:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "bfvv44kc6m0p4v1haf0so4c4fk@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2948691244472000\"", + "id": "vm3bevjhke17b68u5un8egs198_20160903T163000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dm0zYmV2amhrZTE3YjY4dTV1bjhlZ3MxOThfMjAxNjA5MDNUMTYzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:02:31.000Z", + "updated": "2016-09-20T04:27:02.236Z", + "summary": "Denver Canvass: Every Saturday morning", + "description": "RSVP. Please contact Greg at 720.338.2598", + "location": "Starbucks at 200 Quebec St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-03T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-03T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vm3bevjhke17b68u5un8egs198", + "originalStartTime": { + "dateTime": "2016-09-03T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vm3bevjhke17b68u5un8egs198@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2948691244472000\"", + "id": "vm3bevjhke17b68u5un8egs198_20160910T163000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dm0zYmV2amhrZTE3YjY4dTV1bjhlZ3MxOThfMjAxNjA5MTBUMTYzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:02:31.000Z", + "updated": "2016-09-20T04:27:02.236Z", + "summary": "Denver Canvass: Every Saturday morning", + "description": "RSVP. Please contact Greg at 720.338.2598", + "location": "Starbucks at 200 Quebec St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-10T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vm3bevjhke17b68u5un8egs198", + "originalStartTime": { + "dateTime": "2016-09-10T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vm3bevjhke17b68u5un8egs198@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2948691244472000\"", + "id": "vm3bevjhke17b68u5un8egs198_20160917T163000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dm0zYmV2amhrZTE3YjY4dTV1bjhlZ3MxOThfMjAxNjA5MTdUMTYzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:02:31.000Z", + "updated": "2016-09-20T04:27:02.236Z", + "summary": "Denver Canvass: Every Saturday morning", + "description": "RSVP. Please contact Greg at 720.338.2598", + "location": "Starbucks at 200 Quebec St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-17T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vm3bevjhke17b68u5un8egs198", + "originalStartTime": { + "dateTime": "2016-09-17T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vm3bevjhke17b68u5un8egs198@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2948691244472000\"", + "id": "vm3bevjhke17b68u5un8egs198_20160924T163000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dm0zYmV2amhrZTE3YjY4dTV1bjhlZ3MxOThfMjAxNjA5MjRUMTYzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:02:31.000Z", + "updated": "2016-09-20T04:27:02.236Z", + "summary": "Denver Canvass: Every Saturday morning", + "description": "RSVP. Please contact Greg at 720.338.2598", + "location": "Starbucks at 200 Quebec St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vm3bevjhke17b68u5un8egs198", + "originalStartTime": { + "dateTime": "2016-09-24T10:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vm3bevjhke17b68u5un8egs198@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2948691566182000\"", + "id": "prnsak6q8fpjht1s3v3h8to834", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cHJuc2FrNnE4ZnBqaHQxczN2M2g4dG84MzQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-08-28T05:05:18.000Z", + "updated": "2016-09-20T04:29:43.091Z", + "summary": "Denver Canvass: Thursday afternoon", + "description": "RSVP. Please contact Derrick at 720.982.9104", + "location": "2635 Columbine St. Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-22T14:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-22T16:00:00-06:00" + }, + "iCalUID": "prnsak6q8fpjht1s3v3h8to834@google.com", + "sequence": 3 + }, + { + "kind": "calendar#event", + "etag": "\"2948691680442000\"", + "id": "94u7kfi7aeh38005sinqc8ovo4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OTR1N2tmaTdhZWgzODAwNXNpbnFjOG92bzQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-20T04:30:40.000Z", + "updated": "2016-09-20T04:30:40.221Z", + "summary": "Denver Canvass: Friday afternoon", + "description": "RSVP. Please contact Derrick at 720.982.9104", + "location": "Cake Crumbs LLC, 2216 Kearney St, Denver, CO 80207, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-23T15:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-23T18:00:00-06:00" + }, + "iCalUID": "94u7kfi7aeh38005sinqc8ovo4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2948692018402000\"", + "id": "o3o7rdbfisbup7btgo4c6olmvk", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bzNvN3JkYmZpc2J1cDdidGdvNGM2b2xtdmsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-20T04:31:59.000Z", + "updated": "2016-09-20T04:33:29.201Z", + "summary": "Denver: Canvass for ColoradoCare", + "description": "RSVP. Please contact Claire at 505.350.8224", + "location": "Cafe Europa, 76 S Pennsylvania St, Denver, CO 80209, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T11:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-24T14:00:00-06:00" + }, + "transparency": "transparent", + "iCalUID": "o3o7rdbfisbup7btgo4c6olmvk@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2948692517948000\"", + "id": "19v6qehtng9stdcp582rl6cogs", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MTl2NnFlaHRuZzlzdGRjcDU4MnJsNmNvZ3MgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-20T04:37:38.000Z", + "updated": "2016-09-20T04:37:38.974Z", + "summary": "Denver: Phone banking", + "description": "Phone Banking in Montbello at the home of Ashely Eastman. You can contact her at AshleyforBernie@gmail.com.", + "location": "5119 Chandler Way, Montbello, Denver, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-22T16:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-22T19:00:00-06:00" + }, + "iCalUID": "19v6qehtng9stdcp582rl6cogs@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949046208128000\"", + "id": "47vq7289v86u9frbam170d1cts", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=NDd2cTcyODl2ODZ1OWZyYmFtMTcwZDFjdHMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-22T05:40:29.000Z", + "updated": "2016-09-22T05:45:04.064Z", + "summary": "Boulder: Learn about ColoradoCare at Boulder Public Library", + "description": "Come learn about ColoradoCare, what it is and what it isn't. Something you need to do before you vote.", + "location": "Boulder Public Library - Main Library, 1001 Arapahoe Ave, Boulder, CO 80302", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T12:00:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T13:00:00-06:00" + }, + "iCalUID": "47vq7289v86u9frbam170d1cts@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949556780438000\"", + "id": "fuqqd0gu0han51119cj2i0i0pk_20160831T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZnVxcWQwZ3UwaGFuNTExMTljajJpMGkwcGtfMjAxNjA4MzFUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:16:42.000Z", + "updated": "2016-09-25T04:39:50.219Z", + "summary": "Arapahoe Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-31T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-08-31T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "fuqqd0gu0han51119cj2i0i0pk", + "originalStartTime": { + "dateTime": "2016-08-31T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "fuqqd0gu0han51119cj2i0i0pk@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2949556780438000\"", + "id": "fuqqd0gu0han51119cj2i0i0pk_20160907T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZnVxcWQwZ3UwaGFuNTExMTljajJpMGkwcGtfMjAxNjA5MDdUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:16:42.000Z", + "updated": "2016-09-25T04:39:50.219Z", + "summary": "Arapahoe Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-07T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-07T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "fuqqd0gu0han51119cj2i0i0pk", + "originalStartTime": { + "dateTime": "2016-09-07T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "fuqqd0gu0han51119cj2i0i0pk@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2949556780438000\"", + "id": "fuqqd0gu0han51119cj2i0i0pk_20160914T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZnVxcWQwZ3UwaGFuNTExMTljajJpMGkwcGtfMjAxNjA5MTRUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:16:42.000Z", + "updated": "2016-09-25T04:39:50.219Z", + "summary": "Arapahoe Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-14T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-14T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "fuqqd0gu0han51119cj2i0i0pk", + "originalStartTime": { + "dateTime": "2016-09-14T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "fuqqd0gu0han51119cj2i0i0pk@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2949556780438000\"", + "id": "fuqqd0gu0han51119cj2i0i0pk_20160921T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZnVxcWQwZ3UwaGFuNTExMTljajJpMGkwcGtfMjAxNjA5MjFUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:16:42.000Z", + "updated": "2016-09-25T04:39:50.219Z", + "summary": "Arapahoe Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-21T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-21T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "fuqqd0gu0han51119cj2i0i0pk", + "originalStartTime": { + "dateTime": "2016-09-21T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "fuqqd0gu0han51119cj2i0i0pk@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2949556780438000\"", + "id": "fuqqd0gu0han51119cj2i0i0pk_20160928T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZnVxcWQwZ3UwaGFuNTExMTljajJpMGkwcGtfMjAxNjA5MjhUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:16:42.000Z", + "updated": "2016-09-25T04:39:50.219Z", + "summary": "Arapahoe Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-28T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-28T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "fuqqd0gu0han51119cj2i0i0pk", + "originalStartTime": { + "dateTime": "2016-09-28T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "fuqqd0gu0han51119cj2i0i0pk@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2949556804848000\"", + "id": "ogd68s3mb832s3v73v2rtuhl1c_20160831T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=b2dkNjhzM21iODMyczN2NzN2MnJ0dWhsMWNfMjAxNjA4MzFUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:25:17.000Z", + "updated": "2016-09-25T04:40:02.424Z", + "summary": "Douglas Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-31T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-08-31T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ogd68s3mb832s3v73v2rtuhl1c", + "originalStartTime": { + "dateTime": "2016-08-31T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ogd68s3mb832s3v73v2rtuhl1c@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2949556804848000\"", + "id": "ogd68s3mb832s3v73v2rtuhl1c_20160907T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=b2dkNjhzM21iODMyczN2NzN2MnJ0dWhsMWNfMjAxNjA5MDdUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:25:17.000Z", + "updated": "2016-09-25T04:40:02.424Z", + "summary": "Douglas Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-07T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-07T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ogd68s3mb832s3v73v2rtuhl1c", + "originalStartTime": { + "dateTime": "2016-09-07T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ogd68s3mb832s3v73v2rtuhl1c@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2949556804848000\"", + "id": "ogd68s3mb832s3v73v2rtuhl1c_20160914T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=b2dkNjhzM21iODMyczN2NzN2MnJ0dWhsMWNfMjAxNjA5MTRUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:25:17.000Z", + "updated": "2016-09-25T04:40:02.424Z", + "summary": "Douglas Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-14T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-14T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ogd68s3mb832s3v73v2rtuhl1c", + "originalStartTime": { + "dateTime": "2016-09-14T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ogd68s3mb832s3v73v2rtuhl1c@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2949556804848000\"", + "id": "ogd68s3mb832s3v73v2rtuhl1c_20160921T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=b2dkNjhzM21iODMyczN2NzN2MnJ0dWhsMWNfMjAxNjA5MjFUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:25:17.000Z", + "updated": "2016-09-25T04:40:02.424Z", + "summary": "Douglas Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-21T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-21T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ogd68s3mb832s3v73v2rtuhl1c", + "originalStartTime": { + "dateTime": "2016-09-21T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ogd68s3mb832s3v73v2rtuhl1c@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2949556804848000\"", + "id": "ogd68s3mb832s3v73v2rtuhl1c_20160928T220000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=b2dkNjhzM21iODMyczN2NzN2MnJ0dWhsMWNfMjAxNjA5MjhUMjIwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:25:17.000Z", + "updated": "2016-09-25T04:40:02.424Z", + "summary": "Douglas Canvass: Every Wednesday evening", + "description": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "location": "3011 W. Long Court Unit D. Littleton, Arapahoe, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-28T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-28T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ogd68s3mb832s3v73v2rtuhl1c", + "originalStartTime": { + "dateTime": "2016-09-28T16:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ogd68s3mb832s3v73v2rtuhl1c@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2949896570534000\"", + "id": "3en385sq2921nis9irsl6m981o_20161001T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=M2VuMzg1c3EyOTIxbmlzOWlyc2w2bTk4MW9fMjAxNjEwMDFUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-27T03:43:08.000Z", + "updated": "2016-09-27T03:51:25.267Z", + "summary": "Boulder: Now is the time movie", + "description": "COMING TO YOUR COMMUNITY as we prepare to vote on Amendment 69, ColoradoCare: \n\nThe newly released documentary film by Laurie Simons and Terry Sterrenberg, follows their previously acclaimed “The Healthcare Movie” with Kiefer Sutherland. Music for “Now is the Time” was composed by Clifford J. Tasner, orchestrater for the last two Harry Potter films, the Life of Pi, and many other films, as well as writer and producer of the songs for THE BILLIONAIRES political street theater collective. (http://nowisthetimemovie.com/)\n\nWe’re excited to have you meet Laurie and Terry and look forward to seeing you at a screening!\n\n\nAbout:\nColoradoCare, Amendment 69, going to the voters in November, will provide health care for every Coloradan, and save billions of dollars and hours of aggravation in the process. No deductibles, no narrow networks—doing a Colorado version of what all the modern countries in the world do (except the U.S.). Now is certainly the time. \n\nFilmmakers Laurie Simons and Terry Sterrenberg have experienced the healthcare systems in both Canada and in the United States. In making their first documentary, The Healthcare Movie, they learned about the deliberate media attempts that have been taking place since before the 1940’s to dissuade Americans from considering a national healthcare program. Since the Affordable Care Act has been implemented, Laurie & Terry have experienced firsthand how the rising costs and narrowing networks are strengthening the grip on Americans’ ability to afford healthcare. NOW IS THE TIME: Healthcare for Everybody tells their story in the context of what is happening in America’s political system, and shows what it will take for us to break through the fog of misperception.\n", + "location": "Historic Highland Building and City Club, 885 Arapahoe Ave, Boulder, CO 80302, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "3en385sq2921nis9irsl6m981o", + "originalStartTime": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "3en385sq2921nis9irsl6m981o@google.com", + "sequence": 3, + "attachments": [ + { + "fileUrl": "https://drive.google.com/file/d/0B5KsxPTT8ZESLXd6MnotUWxvV00/view?usp=drive_web", + "title": "Eblast for Now is the Time.pdf", + "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png", + "fileId": "0B5KsxPTT8ZESLXd6MnotUWxvV00" + } + ] + }, + { + "kind": "calendar#event", + "etag": "\"2949896688434000\"", + "id": "3en385sq2921nis9irsl6m981o_20160927T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=M2VuMzg1c3EyOTIxbmlzOWlyc2w2bTk4MW9fMjAxNjA5MjdUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-27T03:43:08.000Z", + "updated": "2016-09-27T03:52:24.217Z", + "summary": "Pueblo: Now is the time movie", + "description": "COMING TO YOUR COMMUNITY as we prepare to vote on Amendment 69, ColoradoCare: \n\nThe newly released documentary film by Laurie Simons and Terry Sterrenberg, follows their previously acclaimed “The Healthcare Movie” with Kiefer Sutherland. Music for “Now is the Time” was composed by Clifford J. Tasner, orchestrater for the last two Harry Potter films, the Life of Pi, and many other films, as well as writer and producer of the songs for THE BILLIONAIRES political street theater collective. (http://nowisthetimemovie.com/)\n\nWe’re excited to have you meet Laurie and Terry and look forward to seeing you at a screening!\n\n\nAbout:\nColoradoCare, Amendment 69, going to the voters in November, will provide health care for every Coloradan, and save billions of dollars and hours of aggravation in the process. No deductibles, no narrow networks—doing a Colorado version of what all the modern countries in the world do (except the U.S.). Now is certainly the time. \n\nFilmmakers Laurie Simons and Terry Sterrenberg have experienced the healthcare systems in both Canada and in the United States. In making their first documentary, The Healthcare Movie, they learned about the deliberate media attempts that have been taking place since before the 1940’s to dissuade Americans from considering a national healthcare program. Since the Affordable Care Act has been implemented, Laurie & Terry have experienced firsthand how the rising costs and narrowing networks are strengthening the grip on Americans’ ability to afford healthcare. NOW IS THE TIME: Healthcare for Everybody tells their story in the context of what is happening in America’s political system, and shows what it will take for us to break through the fog of misperception.\n", + "location": "Rawlings Library, 100 E Abriendo Ave, Pueblo, CO 81004", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-27T18:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-27T20:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "3en385sq2921nis9irsl6m981o", + "originalStartTime": { + "dateTime": "2016-09-27T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "3en385sq2921nis9irsl6m981o@google.com", + "sequence": 4, + "attachments": [ + { + "fileUrl": "https://drive.google.com/file/d/0B5KsxPTT8ZESLXd6MnotUWxvV00/view?usp=drive_web", + "title": "Eblast for Now is the Time.pdf", + "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png", + "fileId": "0B5KsxPTT8ZESLXd6MnotUWxvV00" + } + ] + }, + { + "kind": "calendar#event", + "etag": "\"2949896900422000\"", + "id": "3en385sq2921nis9irsl6m981o_20160929T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=M2VuMzg1c3EyOTIxbmlzOWlyc2w2bTk4MW9fMjAxNjA5MjlUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-27T03:43:08.000Z", + "updated": "2016-09-27T03:54:10.211Z", + "summary": "Denver: Now is the time movie", + "description": "COMING TO YOUR COMMUNITY as we prepare to vote on Amendment 69, ColoradoCare: \n\nThe newly released documentary film by Laurie Simons and Terry Sterrenberg, follows their previously acclaimed “The Healthcare Movie” with Kiefer Sutherland. Music for “Now is the Time” was composed by Clifford J. Tasner, orchestrater for the last two Harry Potter films, the Life of Pi, and many other films, as well as writer and producer of the songs for THE BILLIONAIRES political street theater collective. (http://nowisthetimemovie.com/)\n\nWe’re excited to have you meet Laurie and Terry and look forward to seeing you at a screening!\n\n\nAbout:\nColoradoCare, Amendment 69, going to the voters in November, will provide health care for every Coloradan, and save billions of dollars and hours of aggravation in the process. No deductibles, no narrow networks—doing a Colorado version of what all the modern countries in the world do (except the U.S.). Now is certainly the time. \n\nFilmmakers Laurie Simons and Terry Sterrenberg have experienced the healthcare systems in both Canada and in the United States. In making their first documentary, The Healthcare Movie, they learned about the deliberate media attempts that have been taking place since before the 1940’s to dissuade Americans from considering a national healthcare program. Since the Affordable Care Act has been implemented, Laurie & Terry have experienced firsthand how the rising costs and narrowing networks are strengthening the grip on Americans’ ability to afford healthcare. NOW IS THE TIME: Healthcare for Everybody tells their story in the context of what is happening in America’s political system, and shows what it will take for us to break through the fog of misperception.\n", + "location": "Kirk of Bonnie Brae Church, 1201 S Steele St, Denver, CO 80210, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-29T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-29T21:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "3en385sq2921nis9irsl6m981o", + "originalStartTime": { + "dateTime": "2016-09-29T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "3en385sq2921nis9irsl6m981o@google.com", + "sequence": 4, + "attachments": [ + { + "fileUrl": "https://drive.google.com/file/d/0B5KsxPTT8ZESLXd6MnotUWxvV00/view?usp=drive_web", + "title": "Eblast for Now is the Time.pdf", + "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png", + "fileId": "0B5KsxPTT8ZESLXd6MnotUWxvV00" + } + ] + }, + { + "kind": "calendar#event", + "etag": "\"2949897345484000\"", + "id": "ejrf4j5il7rskd1satpn0omuuo", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZWpyZjRqNWlsN3Jza2Qxc2F0cG4wb211dW8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T03:57:52.000Z", + "updated": "2016-09-27T03:57:52.742Z", + "summary": "Northglenn: Now is the time movie", + "description": "COMING TO YOUR COMMUNITY as we prepare to vote on Amendment 69, ColoradoCare: \n\nThe newly released documentary film by Laurie Simons and Terry Sterrenberg, follows their previously acclaimed “The Healthcare Movie” with Kiefer Sutherland. Music for “Now is the Time” was composed by Clifford J. Tasner, orchestrater for the last two Harry Potter films, the Life of Pi, and many other films, as well as writer and producer of the songs for THE BILLIONAIRES political street theater collective. (http://nowisthetimemovie.com/)\n\nWe’re excited to have you meet Laurie and Terry and look forward to seeing you at a screening!\n\n\nAbout:\nColoradoCare, Amendment 69, going to the voters in November, will provide health care for every Coloradan, and save billions of dollars and hours of aggravation in the process. No deductibles, no narrow networks—doing a Colorado version of what all the modern countries in the world do (except the U.S.). Now is certainly the time. \n\nFilmmakers Laurie Simons and Terry Sterrenberg have experienced the healthcare systems in both Canada and in the United States. In making their first documentary, The Healthcare Movie, they learned about the deliberate media attempts that have been taking place since before the 1940’s to dissuade Americans from considering a national healthcare program. Since the Affordable Care Act has been implemented, Laurie & Terry have experienced firsthand how the rising costs and narrowing networks are strengthening the grip on Americans’ ability to afford healthcare. NOW IS THE TIME: Healthcare for Everybody tells their story in the context of what is happening in America’s political system, and shows what it will take for us to break through the fog of misperception.", + "location": "D.L. Parsons Theatre, 11801 Community Center Dr, Northglenn, CO 80233, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T17:00:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T19:00:00-06:00" + }, + "iCalUID": "ejrf4j5il7rskd1satpn0omuuo@google.com", + "sequence": 0, + "attachments": [ + { + "fileUrl": "https://drive.google.com/file/d/0B5KsxPTT8ZESTkpTaERFMWVQZ0E/view?usp=drive_web", + "title": "Eblast for Now is the Time.pdf", + "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png", + "fileId": "0B5KsxPTT8ZESTkpTaERFMWVQZ0E" + } + ] + }, + { + "kind": "calendar#event", + "etag": "\"2949900601754000\"", + "id": "q3nq54dbnkpt3nkoibvba78nsc_20161001T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cTNucTU0ZGJua3B0M25rb2lidmJhNzhuc2NfMjAxNjEwMDFUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-10T04:23:29.000Z", + "updated": "2016-09-27T04:25:00.877Z", + "summary": "Golden Canvass: Saturday morning", + "description": "RSVP. Please contact Aleta at 916.254.3854, or Margaret at 303.423.6531", + "location": "1301 Washington Ave, Golden, CO 80401, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "q3nq54dbnkpt3nkoibvba78nsc", + "originalStartTime": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "q3nq54dbnkpt3nkoibvba78nsc@google.com", + "sequence": 2 + }, + { + "kind": "calendar#event", + "etag": "\"2949901373396000\"", + "id": "adk552llpsfomlt1q99u3ovuig_20160929T210000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=YWRrNTUybGxwc2ZvbWx0MXE5OXUzb3Z1aWdfMjAxNjA5MjlUMjEwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-27T04:30:26.000Z", + "updated": "2016-09-27T04:31:26.698Z", + "summary": "Wheat Ridge Canvass: Every Thursday", + "location": "4713 Dover St, Wheat Ridge, CO 80033, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-29T15:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-29T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "adk552llpsfomlt1q99u3ovuig", + "originalStartTime": { + "dateTime": "2016-09-29T15:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "adk552llpsfomlt1q99u3ovuig@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2949903416304000\"", + "id": "urdej2jbkbu0j6a1pphjqb6p1k", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dXJkZWoyamJrYnUwajZhMXBwaGpxYjZwMWsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T04:48:28.000Z", + "updated": "2016-09-27T04:48:28.152Z", + "summary": "Denver: Let's canvass for ColoradoCare", + "description": "Contact Pawel for more information at fraczekp@gmail.com.", + "location": "850 Galapago St, Denver, CO 80204, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-27T17:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-27T19:00:00-06:00" + }, + "iCalUID": "urdej2jbkbu0j6a1pphjqb6p1k@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949904689818000\"", + "id": "kb4hmou0r3cuksrnq9a7q2foqk", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=a2I0aG1vdTByM2N1a3NybnE5YTdxMmZvcWsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T04:58:34.000Z", + "updated": "2016-09-27T04:59:04.909Z", + "summary": "Revolution Phone Bank", + "description": "Supporters can join volunteers from all across the country in calling Colorado voters at https://go.ourrevolution.com/page/content/phonebank/", + "location": "All across the country", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-28T17:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-28T21:00:00-06:00" + }, + "iCalUID": "kb4hmou0r3cuksrnq9a7q2foqk@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949904783074000\"", + "id": "3apvbk3ivbvlj2k6ugr2731ehs", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=M2FwdmJrM2l2YnZsajJrNnVncjI3MzFlaHMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T04:59:51.000Z", + "updated": "2016-09-27T04:59:51.537Z", + "summary": "Revolution Phone Bank", + "description": "Our Revolution Phone Bank 5-9pm. Supporters can join volunteers from all across the country in calling Colorado voters at https://go.ourrevolution.com/page/content/phonebank/", + "location": "All across the country", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-30T17:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-30T21:00:00-06:00" + }, + "iCalUID": "3apvbk3ivbvlj2k6ugr2731ehs@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949905012652000\"", + "id": "fhdepp5la1edf8b3f3rkhl7ub4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZmhkZXBwNWxhMWVkZjhiM2YzcmtobDd1YjQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T05:01:46.000Z", + "updated": "2016-09-27T05:01:46.326Z", + "summary": "Denver: Let's canvass for ColoradoCare", + "description": "Call Derrick at 720-982-9104 or email at djb12030@gmail.com for more info.", + "location": "Cake Crumbs LLC, 2216 Kearney St, Denver, CO 80207, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-30T15:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-30T18:00:00-06:00" + }, + "iCalUID": "fhdepp5la1edf8b3f3rkhl7ub4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949905072520000\"", + "id": "roc32an2cabcvf91qc5frgf3sg", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cm9jMzJhbjJjYWJjdmY5MXFjNWZyZ2Yzc2cgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T04:56:37.000Z", + "updated": "2016-09-27T05:02:16.260Z", + "summary": "Denver: Phone banking at Ashley's", + "description": "Contact Ashley at AshleyforBernie@gmail.com for more info. ", + "location": "5119 Chandler Way, Denver, CO 80239, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-29T16:30:00-06:00" + }, + "end": { + "dateTime": "2016-09-29T19:00:00-06:00" + }, + "iCalUID": "roc32an2cabcvf91qc5frgf3sg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949905249220000\"", + "id": "udu2njlf0l43295vbrfuflp7ag", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dWR1Mm5qbGYwbDQzMjk1dmJyZnVmbHA3YWcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T05:03:44.000Z", + "updated": "2016-09-27T05:03:44.610Z", + "summary": "Denver: Let's canvass for ColoradoCare", + "description": "Contact Pawel for more information at fraczekp@gmail.com.", + "location": "850 Galapago St, Denver, CO 80204, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-30T17:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-30T19:00:00-06:00" + }, + "iCalUID": "udu2njlf0l43295vbrfuflp7ag@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949905690902000\"", + "id": "p914i3hebvkkfol8dc6sj0jr8s", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cDkxNGkzaGVidmtrZm9sOGRjNnNqMGpyOHMgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T05:07:25.000Z", + "updated": "2016-09-27T05:07:25.451Z", + "summary": "Denver: Let's canvass for ColoradoCare", + "description": "Contact Greg Wright 720-338-2598 for more info. ", + "location": "Starbucks, 200 Quebec St, Denver, CO 80230, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:30:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T12:30:00-06:00" + }, + "iCalUID": "p914i3hebvkkfol8dc6sj0jr8s@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949905838424000\"", + "id": "qtknehs3s3ue2atjlmcshssd1o", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cXRrbmVoczNzM3VlMmF0amxtY3Noc3NkMW8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T05:08:39.000Z", + "updated": "2016-09-27T05:08:39.212Z", + "summary": "Denver: Let's canvass for ColoradoCare", + "description": "Contact Clair Sava at 505-350-8224 for more info. ", + "location": "Cafe Europa, 76 S Pennsylvania St, Denver, CO 80209, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T11:00:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T14:00:00-06:00" + }, + "iCalUID": "qtknehs3s3ue2atjlmcshssd1o@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949906120398000\"", + "id": "vusp1mfrkshfd5kru0h71d9ihg", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dnVzcDFtZnJrc2hmZDVrcnUwaDcxZDlpaGcgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T05:11:00.000Z", + "updated": "2016-09-27T05:11:00.199Z", + "summary": "Denver: Nurses Day of Action", + "description": "Join our nurses for a 1pm canvass. Come early for lunch (self-pay) at 11:30am to meet everyone. ", + "location": "The Hornet restaurant, 76 Broadway Street, Denver, CO.", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T11:30:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T15:30:00-06:00" + }, + "iCalUID": "vusp1mfrkshfd5kru0h71d9ihg@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949906326626000\"", + "id": "8tk8s7oap0tsb7ro99mav3ngo4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=OHRrOHM3b2FwMHRzYjdybzk5bWF2M25nbzQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T05:12:43.000Z", + "updated": "2016-09-27T05:12:43.313Z", + "summary": "Denver: Let's canvass for ColoradoCare", + "description": "Contact Pawel for more information at fraczekp@gmail.com.", + "location": "850 Galapago St, Denver, CO 80204, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:00:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T14:00:00-06:00" + }, + "iCalUID": "8tk8s7oap0tsb7ro99mav3ngo4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949985555856000\"", + "id": "3en385sq2921nis9irsl6m981o_20160928T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=M2VuMzg1c3EyOTIxbmlzOWlyc2w2bTk4MW9fMjAxNjA5MjhUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-27T03:43:08.000Z", + "updated": "2016-09-27T16:12:57.928Z", + "summary": "Colorado Springs: Now is the time movie", + "description": "COMING TO YOUR COMMUNITY as we prepare to vote on Amendment 69, ColoradoCare: \n\nThe newly released documentary film by Laurie Simons and Terry Sterrenberg, follows their previously acclaimed “The Healthcare Movie” with Kiefer Sutherland. Music for “Now is the Time” was composed by Clifford J. Tasner, orchestrater for the last two Harry Potter films, the Life of Pi, and many other films, as well as writer and producer of the songs for THE BILLIONAIRES political street theater collective. (http://nowisthetimemovie.com/)\n\nWe’re excited to have you meet Laurie and Terry and look forward to seeing you at a screening!\n\n\nAbout:\nColoradoCare, Amendment 69, going to the voters in November, will provide health care for every Coloradan, and save billions of dollars and hours of aggravation in the process. No deductibles, no narrow networks—doing a Colorado version of what all the modern countries in the world do (except the U.S.). Now is certainly the time. \n\nFilmmakers Laurie Simons and Terry Sterrenberg have experienced the healthcare systems in both Canada and in the United States. In making their first documentary, The Healthcare Movie, they learned about the deliberate media attempts that have been taking place since before the 1940’s to dissuade Americans from considering a national healthcare program. Since the Affordable Care Act has been implemented, Laurie & Terry have experienced firsthand how the rising costs and narrowing networks are strengthening the grip on Americans’ ability to afford healthcare. NOW IS THE TIME: Healthcare for Everybody tells their story in the context of what is happening in America’s political system, and shows what it will take for us to break through the fog of misperception.\n", + "location": "Pikes Peak Library District - Library 21c, 1175 Chapel Hills Dr, Colorado Springs, CO 80920, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-28T19:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-28T20:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "3en385sq2921nis9irsl6m981o", + "originalStartTime": { + "dateTime": "2016-09-28T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "3en385sq2921nis9irsl6m981o@google.com", + "sequence": 5, + "attachments": [ + { + "fileUrl": "https://drive.google.com/file/d/0B5KsxPTT8ZESLXd6MnotUWxvV00/view?usp=drive_web", + "title": "Eblast for Now is the Time.pdf", + "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_10_generic_list.png", + "fileId": "0B5KsxPTT8ZESLXd6MnotUWxvV00" + } + ] + }, + { + "kind": "calendar#event", + "etag": "\"2949987787488000\"", + "id": "hivdvb1dod1lctjtdntu5soa6o", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aGl2ZHZiMWRvZDFsY3RqdGRudHU1c29hNm8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T16:31:33.000Z", + "updated": "2016-09-27T16:31:33.744Z", + "summary": "Denver: HCAC & PDA Day of Action for ColoradoCare", + "description": "Mark your calendars and save the date -- Saturday, October 1, 2016. Health Care for All Colorado and Progressive Democrats of America are teaming up to co-sponsor a day of action in support of ColoradoCare, Amendment #69.\n\nFrom 10 am to 1pm, Health Care for All Colorado will be canvassing to spread the word about ColoradoCare. After canvassing, they are hosting an action at 3pm outside the Anthem Blue Cross-Blue Shield Building at 700 Broadway in Denver. They will work together with Progressive Democrats of America to promote ColoradoCare. PDA endorsed Amendment #69 well before any other national ally, and PDA has been hard at work on phone-banking and online effort on behalf of ColoradoCare for weeks. \n\nSo, bring a friend or the kids and join us. We need your help and your support! Together, we can make a difference.\n\nCheck out http://www.healthcareforallcolorado.org/ for more info. ", + "location": "Panera Bread, 6385 E Hampden Ave, Denver, CO 80222, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:00:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T17:00:00-06:00" + }, + "iCalUID": "hivdvb1dod1lctjtdntu5soa6o@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2949991621852000\"", + "id": "edgrh4a6330jk15o7hbq2b9hbo", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ZWRncmg0YTYzMzBqazE1bzdoYnEyYjloYm8gMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-27T17:03:30.000Z", + "updated": "2016-09-27T17:03:30.926Z", + "summary": "Littleton: Now is the time movie", + "description": "COMING TO YOUR COMMUNITY as we prepare to vote on Amendment 69, ColoradoCare: \n\nThe newly released documentary film by Laurie Simons and Terry Sterrenberg, follows their previously acclaimed “The Healthcare Movie” with Kiefer Sutherland. Music for “Now is the Time” was composed by Clifford J. Tasner, orchestrater for the last two Harry Potter films, the Life of Pi, and many other films, as well as writer and producer of the songs for THE BILLIONAIRES political street theater collective. (http://nowisthetimemovie.com/)\n\nWe’re excited to have you meet Laurie and Terry and look forward to seeing you at a screening!\n\n\nAbout:\nColoradoCare, Amendment 69, going to the voters in November, will provide health care for every Coloradan, and save billions of dollars and hours of aggravation in the process. No deductibles, no narrow networks—doing a Colorado version of what all the modern countries in the world do (except the U.S.). Now is certainly the time. \n\nFilmmakers Laurie Simons and Terry Sterrenberg have experienced the healthcare systems in both Canada and in the United States. In making their first documentary, The Healthcare Movie, they learned about the deliberate media attempts that have been taking place since before the 1940’s to dissuade Americans from considering a national healthcare program. Since the Affordable Care Act has been implemented, Laurie & Terry have experienced firsthand how the rising costs and narrowing networks are strengthening the grip on Americans’ ability to afford healthcare. NOW IS THE TIME: Healthcare for Everybody tells their story in the context of what is happening in America’s political system, and shows what it will take for us to break through the fog of misperception.", + "location": "Community Room, 2850 W Long Ave, Littleton, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-30T19:00:00-06:00" + }, + "end": { + "dateTime": "2016-09-30T21:00:00-06:00" + }, + "iCalUID": "edgrh4a6330jk15o7hbq2b9hbo@google.com", + "sequence": 0, + "attachments": [ + { + "fileUrl": "https://drive.google.com/file/d/0B5KsxPTT8ZESLXd6MnotUWxvV00/view?usp=drive_web", + "title": "Eblast for Now is the Time.pdf", + "mimeType": "application/pdf", + "iconLink": "https://ssl.gstatic.com/docs/doclist/images/icon_12_pdf_list.png", + "fileId": "0B5KsxPTT8ZESLXd6MnotUWxvV00" + } + ] + }, + { + "kind": "calendar#event", + "etag": "\"2950165720230000\"", + "id": "itcg9js14rag975dhbi8845foc_20160928T230000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aXRjZzlqczE0cmFnOTc1ZGhiaTg4NDVmb2NfMjAxNjA5MjhUMjMwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-27T04:22:39.000Z", + "updated": "2016-09-28T17:14:20.115Z", + "summary": "Thornton: Phone bank every Wednesday & Friday", + "description": "Recurring Phone Bank Event every Wednesday & Friday at the Villager Lounge in the Villager Building. Contact Sonayt at 720-621-7566.", + "location": "Villager Lounge, Villager Building, 2511 E 104th Ave, Thornton CO 80233", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-28T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-28T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "itcg9js14rag975dhbi8845foc", + "originalStartTime": { + "dateTime": "2016-09-28T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "itcg9js14rag975dhbi8845foc@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2950165720230000\"", + "id": "itcg9js14rag975dhbi8845foc_20160930T230000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aXRjZzlqczE0cmFnOTc1ZGhiaTg4NDVmb2NfMjAxNjA5MzBUMjMwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-27T04:22:39.000Z", + "updated": "2016-09-28T17:14:20.115Z", + "summary": "Thornton: Phone bank every Wednesday & Friday", + "description": "Recurring Phone Bank Event every Wednesday & Friday at the Villager Lounge in the Villager Building. Contact Sonayt at 720-621-7566.", + "location": "Villager Lounge, Villager Building, 2511 E 104th Ave, Thornton CO 80233", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-30T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-30T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "itcg9js14rag975dhbi8845foc", + "originalStartTime": { + "dateTime": "2016-09-30T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "itcg9js14rag975dhbi8845foc@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2950166471224000\"", + "id": "ig7n867imqvjlgcnc6fl2853fs_20161001T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aWc3bjg2N2ltcXZqbGdjbmM2ZmwyODUzZnNfMjAxNjEwMDFUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-28T17:20:35.000Z", + "updated": "2016-09-28T17:20:35.612Z", + "summary": "Fort Collins: Canvass & Phone Bank every Saturday", + "description": "Every Saturday 10:00am - Canvass / 11:00am Phone Bank.\nContact Elaine at (970) 682-2727 for more info. ", + "location": "4720 Prairie Vista Dr, Fort Collins, CO 80526, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T13:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "ig7n867imqvjlgcnc6fl2853fs", + "originalStartTime": { + "dateTime": "2016-10-01T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "ig7n867imqvjlgcnc6fl2853fs@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2950167422918000\"", + "id": "r1b0qprsf5lqiq3ihhlq128en4", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=cjFiMHFwcnNmNWxxaXEzaWhobHExMjhlbjQgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-28T17:28:31.000Z", + "updated": "2016-09-28T17:28:31.459Z", + "summary": "Lakewood: Let's canvass for ColoradoCare", + "description": "Contact Richard at 720-515-9388 for more info.", + "location": "8317 W. Floyd Ave, Apt 2108, Denver, CO 80227", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T12:00:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T14:30:00-06:00" + }, + "iCalUID": "r1b0qprsf5lqiq3ihhlq128en4@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2950167750838000\"", + "id": "j01pqtfgvj7vi7m09cm8q81210_20160902T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ajAxcHF0Zmd2ajd2aTdtMDljbThxODEyMTBfMjAxNjA5MDJUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-29T00:53:42.000Z", + "updated": "2016-09-28T17:31:15.419Z", + "summary": "Arvada: Phone banking ", + "description": "Contact Alex at 720-379-4491 for more info. \nPlease bring a computer and phone and chargers as needed.\nPizza and refreshments provided.", + "location": "5826 Urban Street, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-02T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-02T21:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "j01pqtfgvj7vi7m09cm8q81210", + "originalStartTime": { + "dateTime": "2016-09-02T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "j01pqtfgvj7vi7m09cm8q81210@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950167750838000\"", + "id": "j01pqtfgvj7vi7m09cm8q81210_20160909T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ajAxcHF0Zmd2ajd2aTdtMDljbThxODEyMTBfMjAxNjA5MDlUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-29T00:53:42.000Z", + "updated": "2016-09-28T17:31:15.419Z", + "summary": "Arvada: Phone banking ", + "description": "Contact Alex at 720-379-4491 for more info. \nPlease bring a computer and phone and chargers as needed.\nPizza and refreshments provided.", + "location": "5826 Urban Street, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-09T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-09T21:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "j01pqtfgvj7vi7m09cm8q81210", + "originalStartTime": { + "dateTime": "2016-09-09T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "j01pqtfgvj7vi7m09cm8q81210@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950167750838000\"", + "id": "j01pqtfgvj7vi7m09cm8q81210_20160916T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ajAxcHF0Zmd2ajd2aTdtMDljbThxODEyMTBfMjAxNjA5MTZUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-29T00:53:42.000Z", + "updated": "2016-09-28T17:31:15.419Z", + "summary": "Arvada: Phone banking ", + "description": "Contact Alex at 720-379-4491 for more info. \nPlease bring a computer and phone and chargers as needed.\nPizza and refreshments provided.", + "location": "5826 Urban Street, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-16T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-16T21:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "j01pqtfgvj7vi7m09cm8q81210", + "originalStartTime": { + "dateTime": "2016-09-16T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "j01pqtfgvj7vi7m09cm8q81210@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950167750838000\"", + "id": "j01pqtfgvj7vi7m09cm8q81210_20160923T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ajAxcHF0Zmd2ajd2aTdtMDljbThxODEyMTBfMjAxNjA5MjNUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-29T00:53:42.000Z", + "updated": "2016-09-28T17:31:15.419Z", + "summary": "Arvada: Phone banking ", + "description": "Contact Alex at 720-379-4491 for more info. \nPlease bring a computer and phone and chargers as needed.\nPizza and refreshments provided.", + "location": "5826 Urban Street, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-23T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-23T21:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "j01pqtfgvj7vi7m09cm8q81210", + "originalStartTime": { + "dateTime": "2016-09-23T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "j01pqtfgvj7vi7m09cm8q81210@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950167750838000\"", + "id": "j01pqtfgvj7vi7m09cm8q81210_20160930T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=ajAxcHF0Zmd2ajd2aTdtMDljbThxODEyMTBfMjAxNjA5MzBUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-29T00:53:42.000Z", + "updated": "2016-09-28T17:31:15.419Z", + "summary": "Arvada: Phone banking ", + "description": "Contact Alex at 720-379-4491 for more info. \nPlease bring a computer and phone and chargers as needed.\nPizza and refreshments provided.", + "location": "5826 Urban Street, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-30T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-30T21:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "j01pqtfgvj7vi7m09cm8q81210", + "originalStartTime": { + "dateTime": "2016-09-30T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "j01pqtfgvj7vi7m09cm8q81210@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950383239552000\"", + "id": "0gcn9cqneq9qkgvb2h8daa8i0k", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=MGdjbjljcW5lcTlxa2d2YjJoOGRhYThpMGsgMDBvZHBnODdsZzJvNDNla2k2Z2kwc2t0Z2tAZw&ctz=America/Denver", + "created": "2016-09-29T23:26:59.000Z", + "updated": "2016-09-29T23:26:59.776Z", + "summary": "Boulder: Learn about ColoradoCare at Boulder Public Library", + "description": "Come learn about ColoradoCare, what it is and what it isn't. Something you need to do before you vote.", + "location": "Boulder Public Library - Main Library, 1001 Arapahoe Ave, Boulder, CO 80302", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T10:30:00-06:00" + }, + "end": { + "dateTime": "2016-10-01T11:30:00-06:00" + }, + "iCalUID": "0gcn9cqneq9qkgvb2h8daa8i0k@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2950425024082000\"", + "id": "m6alu56bpsfc043bj6vbr98rg8_20160903T180000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTZhbHU1NmJwc2ZjMDQzYmo2dmJyOThyZzhfMjAxNjA5MDNUMTgwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:16:09.000Z", + "updated": "2016-09-30T05:15:12.041Z", + "summary": "Arvada Canvass: Every Saturday", + "description": "RSVP. Please contact Bruce at 303.881.0257", + "location": "BeauJo’s Pizza at 7525 W 53rd Ave, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-03T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-03T14:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m6alu56bpsfc043bj6vbr98rg8", + "originalStartTime": { + "dateTime": "2016-09-03T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m6alu56bpsfc043bj6vbr98rg8@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950425024082000\"", + "id": "m6alu56bpsfc043bj6vbr98rg8_20160910T180000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTZhbHU1NmJwc2ZjMDQzYmo2dmJyOThyZzhfMjAxNjA5MTBUMTgwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:16:09.000Z", + "updated": "2016-09-30T05:15:12.041Z", + "summary": "Arvada Canvass: Every Saturday", + "description": "RSVP. Please contact Bruce at 303.881.0257", + "location": "BeauJo’s Pizza at 7525 W 53rd Ave, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-10T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-10T14:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m6alu56bpsfc043bj6vbr98rg8", + "originalStartTime": { + "dateTime": "2016-09-10T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m6alu56bpsfc043bj6vbr98rg8@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950425024082000\"", + "id": "m6alu56bpsfc043bj6vbr98rg8_20160917T180000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTZhbHU1NmJwc2ZjMDQzYmo2dmJyOThyZzhfMjAxNjA5MTdUMTgwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:16:09.000Z", + "updated": "2016-09-30T05:15:12.041Z", + "summary": "Arvada Canvass: Every Saturday", + "description": "RSVP. Please contact Bruce at 303.881.0257", + "location": "BeauJo’s Pizza at 7525 W 53rd Ave, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-17T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-17T14:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m6alu56bpsfc043bj6vbr98rg8", + "originalStartTime": { + "dateTime": "2016-09-17T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m6alu56bpsfc043bj6vbr98rg8@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950425024082000\"", + "id": "m6alu56bpsfc043bj6vbr98rg8_20160924T180000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTZhbHU1NmJwc2ZjMDQzYmo2dmJyOThyZzhfMjAxNjA5MjRUMTgwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:16:09.000Z", + "updated": "2016-09-30T05:15:12.041Z", + "summary": "Arvada Canvass: Every Saturday", + "description": "RSVP. Please contact Bruce at 303.881.0257", + "location": "BeauJo’s Pizza at 7525 W 53rd Ave, Arvada, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T14:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m6alu56bpsfc043bj6vbr98rg8", + "originalStartTime": { + "dateTime": "2016-09-24T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m6alu56bpsfc043bj6vbr98rg8@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950425024082000\"", + "id": "m6alu56bpsfc043bj6vbr98rg8_20161001T180000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bTZhbHU1NmJwc2ZjMDQzYmo2dmJyOThyZzhfMjAxNjEwMDFUMTgwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:16:09.000Z", + "updated": "2016-09-30T05:15:12.041Z", + "summary": "Arvada Canvass: Every Saturday", + "description": "RSVP. Please contact Bruce at 303.881.0257", + "location": "6521 W 69th Way, Arvada, CO 80003, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T14:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "m6alu56bpsfc043bj6vbr98rg8_R20161001T180000", + "originalStartTime": { + "dateTime": "2016-10-01T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "transparency": "transparent", + "iCalUID": "m6alu56bpsfc043bj6vbr98rg8_R20161001T180000@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950597267482000\"", + "id": "_6kpj6ha488s38b9m8h1k8b9k6gr3gba1650j2b9g8p344d1l84p3ggpj6k_20161001T153000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=XzZrcGo2aGE0ODhzMzhiOW04aDFrOGI5azZncjNnYmExNjUwajJiOWc4cDM0NGQxbDg0cDNnZ3BqNmtfMjAxNjEwMDFUMTUzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn", + "created": "2016-10-01T05:10:33.000Z", + "updated": "2016-10-01T05:10:33.741Z", + "summary": "Broomfield canvass: Saturday morning", + "description": "Come to join our Broomfield canvass! We will gather at 1320 Stonehaven Ave. Broomfield, CO 80020", + "location": "1320 Stonehaven Ave, Broomfield, CO 80020, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-10-01T09:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-10-01T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "_6kpj6ha488s38b9m8h1k8b9k6gr3gba1650j2b9g8p344d1l84p3ggpj6k", + "originalStartTime": { + "dateTime": "2016-10-01T09:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "533EDB84-6DCD-4468-A1A1-0FFB45A28C35", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2950597268722000\"", + "id": "hp7o3bjv4srni49vqj4nbd6d00_20160924T153000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=aHA3bzNianY0c3JuaTQ5dnFqNG5iZDZkMDBfMjAxNjA5MjRUMTUzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-09-12T03:38:04.000Z", + "updated": "2016-10-01T05:10:34.361Z", + "summary": "Broomfield canvass: Saturday morning", + "description": "Come to join our Broomfield canvass! We will gather at 1320 Stonehaven Ave. Broomfield, CO 80020", + "location": "1320 Stonehaven Ave, Broomfield, CO 80020, USA", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-24T09:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-24T12:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "hp7o3bjv4srni49vqj4nbd6d00", + "originalStartTime": { + "dateTime": "2016-09-24T09:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "hp7o3bjv4srni49vqj4nbd6d00@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2950899162096000\"", + "id": "o5g095j5omkuk2isld5o9imhas_20160828T230000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bzVnMDk1ajVvbWt1azJpc2xkNW85aW1oYXNfMjAxNjA4MjhUMjMwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-27T21:11:37.000Z", + "updated": "2016-10-02T23:06:21.048Z", + "summary": "Adams Canvassing", + "description": "SUNDAY*** For Adams County \"ColoradoCare\" Leaders, Neighbors and Volunteers: \"A \"Just-Drop-In Open House\", \"Meet n Greet,\" and ColoradoCare \"Phone Banking\" Event\n\n***Especially for our \"friends who already like ColoradoCareYES\" but also including \"the very curious, the spontaneous, and those who simply have to know more about our \"Adams County Insiders' Game Plan\" for a BIG, some say \"juuuge,\" YES!Vote electoral win on CC A-69 in Adams County on November 8 . . . Please stop by and say Hi . . . \n\nHello To Our \"Friends Who Like ColoradoCareYES,\"\nWe will be gathering from 5-8 pm at the Villas at Sunny Acres where we've held earlier CC phone banks (Please come to The Villager Lounge, on the basement floor level -- inside and to the left -- of The Villager Building Entrance (with its adjoining guest parking) at 2511 E. 104th Ave., Thornton, CO 80233-6168 (My cell is 720-275-4399 for directions, questions, etc.) . . . \n\n(A) FOR THIS \"Open House\" and \"Meet n Greet\" . . . Just show up; bring refreshments to share if you can, or not; Be prepared, or not, to ask questions about how we are moving forward to pass ColoradoCare in Adams County: Get ready to do whatever you can to help us achieve our \"Adams County Path to Victory for ColoradoCare Amendment 69 on November 8, 2016\" . . . Have fun; Meet some keen people; Have fun! Ken Connell will be your Host! (My cell is 720-275-4399) . . .\n\n(B) FOR A VERY POSITIVE EXPERIENCE WITH \"ColoradoCare Phone Banking\" . . . Please Try It Before You Decide Not To Like It (as Many Of Our Volunteer Callers Actually like It As We Are Doing It) . . . \n\nHere are the details for Sunday's calling . . . \nKen Connell will be your Host and Trainer for this calling event . . . His cell no. is 720-275-4399 . . . Ken has great call lists of ColoradoCare \"friendlies\" . . . You'll work from a dynamic, highly motivating script for talking with those who may still be learning about ColoradoCare Amendment 69, those who are very much in the know, many CC active supporters and prior donors, and just about anyone and everyone your calls may actually reach in person . . . All call results have simple codes for reporting so future call lists will be current and updated within the VAN data base . . . We are very successful in thanking our supporters, gauging the strength of their support, engaging them as volunteers, and securing additional financial donations from those who are ready, willing and able to do more at the time of our calls . . . \nWe will meet from 5 pm, to start the brief training of our phone bank callers so can begin making calls before 5:30 pm . . . We're requesting a minimum calling shift of 2 hours from the end of the training, but we have the space reserved until 9:00 pm, for any who can commit to more than two hours of calling . . . Callers will need to provide cell phones (and should bring a charger) to make calls . . . Callers are also encouraged to bring refreshments to share, as they can, or not . . . \n\nAdditional Location and Directions Detail): The phone banking address is at 2511 E. 104th Ave in The Villager Building Lounge (on the ground floor of the building where I live) on the campus of The Villas At Sunny Acres (VASA) in Thornton CO 80233-6168 . . . This is a 64-acre campus so one will need to follow the campus signs that specifically identify \"The Villager\" . . . (Do not go to \"The Villa\" building) . . . Please look for ColoradoCare on signs near those pointing the way to The Villager Building -- starting at the preferred front entrance next to the five-story Ambassador building at the Eastern-most entrance . . . (NOTE: There are actually two different entrances onto the campus from East 104th Ave by car (both to the north side just east of York St) . . . Either will lead into \"The Villager\" (a 4-story building on the northeast end of the campus) at the most northerly end of the paved roads by either entrance) . . . \n\nPlease map the \"The Villager\" address so you can see the basic location of \"The Villager\" on the Villas at Sunny Acres campus . . . Thanks very much for calling to help pass ColoradoCare Amendment 69 . . . \n\nHope to see you this Sunday . . .\n720-275-4399", + "location": "The Villager Building, 2511 E. 104th Ave., Thornton, CO 80233-6168", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-28T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-08-28T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "o5g095j5omkuk2isld5o9imhas", + "originalStartTime": { + "dateTime": "2016-08-28T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "o5g095j5omkuk2isld5o9imhas@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950899162096000\"", + "id": "o5g095j5omkuk2isld5o9imhas_20160904T230000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bzVnMDk1ajVvbWt1azJpc2xkNW85aW1oYXNfMjAxNjA5MDRUMjMwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-27T21:11:37.000Z", + "updated": "2016-10-02T23:06:21.048Z", + "summary": "Adams Canvassing", + "description": "SUNDAY*** For Adams County \"ColoradoCare\" Leaders, Neighbors and Volunteers: \"A \"Just-Drop-In Open House\", \"Meet n Greet,\" and ColoradoCare \"Phone Banking\" Event\n\n***Especially for our \"friends who already like ColoradoCareYES\" but also including \"the very curious, the spontaneous, and those who simply have to know more about our \"Adams County Insiders' Game Plan\" for a BIG, some say \"juuuge,\" YES!Vote electoral win on CC A-69 in Adams County on November 8 . . . Please stop by and say Hi . . . \n\nHello To Our \"Friends Who Like ColoradoCareYES,\"\nWe will be gathering from 5-8 pm at the Villas at Sunny Acres where we've held earlier CC phone banks (Please come to The Villager Lounge, on the basement floor level -- inside and to the left -- of The Villager Building Entrance (with its adjoining guest parking) at 2511 E. 104th Ave., Thornton, CO 80233-6168 (My cell is 720-275-4399 for directions, questions, etc.) . . . \n\n(A) FOR THIS \"Open House\" and \"Meet n Greet\" . . . Just show up; bring refreshments to share if you can, or not; Be prepared, or not, to ask questions about how we are moving forward to pass ColoradoCare in Adams County: Get ready to do whatever you can to help us achieve our \"Adams County Path to Victory for ColoradoCare Amendment 69 on November 8, 2016\" . . . Have fun; Meet some keen people; Have fun! Ken Connell will be your Host! (My cell is 720-275-4399) . . .\n\n(B) FOR A VERY POSITIVE EXPERIENCE WITH \"ColoradoCare Phone Banking\" . . . Please Try It Before You Decide Not To Like It (as Many Of Our Volunteer Callers Actually like It As We Are Doing It) . . . \n\nHere are the details for Sunday's calling . . . \nKen Connell will be your Host and Trainer for this calling event . . . His cell no. is 720-275-4399 . . . Ken has great call lists of ColoradoCare \"friendlies\" . . . You'll work from a dynamic, highly motivating script for talking with those who may still be learning about ColoradoCare Amendment 69, those who are very much in the know, many CC active supporters and prior donors, and just about anyone and everyone your calls may actually reach in person . . . All call results have simple codes for reporting so future call lists will be current and updated within the VAN data base . . . We are very successful in thanking our supporters, gauging the strength of their support, engaging them as volunteers, and securing additional financial donations from those who are ready, willing and able to do more at the time of our calls . . . \nWe will meet from 5 pm, to start the brief training of our phone bank callers so can begin making calls before 5:30 pm . . . We're requesting a minimum calling shift of 2 hours from the end of the training, but we have the space reserved until 9:00 pm, for any who can commit to more than two hours of calling . . . Callers will need to provide cell phones (and should bring a charger) to make calls . . . Callers are also encouraged to bring refreshments to share, as they can, or not . . . \n\nAdditional Location and Directions Detail): The phone banking address is at 2511 E. 104th Ave in The Villager Building Lounge (on the ground floor of the building where I live) on the campus of The Villas At Sunny Acres (VASA) in Thornton CO 80233-6168 . . . This is a 64-acre campus so one will need to follow the campus signs that specifically identify \"The Villager\" . . . (Do not go to \"The Villa\" building) . . . Please look for ColoradoCare on signs near those pointing the way to The Villager Building -- starting at the preferred front entrance next to the five-story Ambassador building at the Eastern-most entrance . . . (NOTE: There are actually two different entrances onto the campus from East 104th Ave by car (both to the north side just east of York St) . . . Either will lead into \"The Villager\" (a 4-story building on the northeast end of the campus) at the most northerly end of the paved roads by either entrance) . . . \n\nPlease map the \"The Villager\" address so you can see the basic location of \"The Villager\" on the Villas at Sunny Acres campus . . . Thanks very much for calling to help pass ColoradoCare Amendment 69 . . . \n\nHope to see you this Sunday . . .\n720-275-4399", + "location": "The Villager Building, 2511 E. 104th Ave., Thornton, CO 80233-6168", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-04T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-04T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "o5g095j5omkuk2isld5o9imhas", + "originalStartTime": { + "dateTime": "2016-09-04T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "o5g095j5omkuk2isld5o9imhas@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950899162096000\"", + "id": "o5g095j5omkuk2isld5o9imhas_20160911T230000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bzVnMDk1ajVvbWt1azJpc2xkNW85aW1oYXNfMjAxNjA5MTFUMjMwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-27T21:11:37.000Z", + "updated": "2016-10-02T23:06:21.048Z", + "summary": "Adams Canvassing", + "description": "SUNDAY*** For Adams County \"ColoradoCare\" Leaders, Neighbors and Volunteers: \"A \"Just-Drop-In Open House\", \"Meet n Greet,\" and ColoradoCare \"Phone Banking\" Event\n\n***Especially for our \"friends who already like ColoradoCareYES\" but also including \"the very curious, the spontaneous, and those who simply have to know more about our \"Adams County Insiders' Game Plan\" for a BIG, some say \"juuuge,\" YES!Vote electoral win on CC A-69 in Adams County on November 8 . . . Please stop by and say Hi . . . \n\nHello To Our \"Friends Who Like ColoradoCareYES,\"\nWe will be gathering from 5-8 pm at the Villas at Sunny Acres where we've held earlier CC phone banks (Please come to The Villager Lounge, on the basement floor level -- inside and to the left -- of The Villager Building Entrance (with its adjoining guest parking) at 2511 E. 104th Ave., Thornton, CO 80233-6168 (My cell is 720-275-4399 for directions, questions, etc.) . . . \n\n(A) FOR THIS \"Open House\" and \"Meet n Greet\" . . . Just show up; bring refreshments to share if you can, or not; Be prepared, or not, to ask questions about how we are moving forward to pass ColoradoCare in Adams County: Get ready to do whatever you can to help us achieve our \"Adams County Path to Victory for ColoradoCare Amendment 69 on November 8, 2016\" . . . Have fun; Meet some keen people; Have fun! Ken Connell will be your Host! (My cell is 720-275-4399) . . .\n\n(B) FOR A VERY POSITIVE EXPERIENCE WITH \"ColoradoCare Phone Banking\" . . . Please Try It Before You Decide Not To Like It (as Many Of Our Volunteer Callers Actually like It As We Are Doing It) . . . \n\nHere are the details for Sunday's calling . . . \nKen Connell will be your Host and Trainer for this calling event . . . His cell no. is 720-275-4399 . . . Ken has great call lists of ColoradoCare \"friendlies\" . . . You'll work from a dynamic, highly motivating script for talking with those who may still be learning about ColoradoCare Amendment 69, those who are very much in the know, many CC active supporters and prior donors, and just about anyone and everyone your calls may actually reach in person . . . All call results have simple codes for reporting so future call lists will be current and updated within the VAN data base . . . We are very successful in thanking our supporters, gauging the strength of their support, engaging them as volunteers, and securing additional financial donations from those who are ready, willing and able to do more at the time of our calls . . . \nWe will meet from 5 pm, to start the brief training of our phone bank callers so can begin making calls before 5:30 pm . . . We're requesting a minimum calling shift of 2 hours from the end of the training, but we have the space reserved until 9:00 pm, for any who can commit to more than two hours of calling . . . Callers will need to provide cell phones (and should bring a charger) to make calls . . . Callers are also encouraged to bring refreshments to share, as they can, or not . . . \n\nAdditional Location and Directions Detail): The phone banking address is at 2511 E. 104th Ave in The Villager Building Lounge (on the ground floor of the building where I live) on the campus of The Villas At Sunny Acres (VASA) in Thornton CO 80233-6168 . . . This is a 64-acre campus so one will need to follow the campus signs that specifically identify \"The Villager\" . . . (Do not go to \"The Villa\" building) . . . Please look for ColoradoCare on signs near those pointing the way to The Villager Building -- starting at the preferred front entrance next to the five-story Ambassador building at the Eastern-most entrance . . . (NOTE: There are actually two different entrances onto the campus from East 104th Ave by car (both to the north side just east of York St) . . . Either will lead into \"The Villager\" (a 4-story building on the northeast end of the campus) at the most northerly end of the paved roads by either entrance) . . . \n\nPlease map the \"The Villager\" address so you can see the basic location of \"The Villager\" on the Villas at Sunny Acres campus . . . Thanks very much for calling to help pass ColoradoCare Amendment 69 . . . \n\nHope to see you this Sunday . . .\n720-275-4399", + "location": "The Villager Building, 2511 E. 104th Ave., Thornton, CO 80233-6168", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-11T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-11T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "o5g095j5omkuk2isld5o9imhas", + "originalStartTime": { + "dateTime": "2016-09-11T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "o5g095j5omkuk2isld5o9imhas@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950899162096000\"", + "id": "o5g095j5omkuk2isld5o9imhas_20160918T230000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bzVnMDk1ajVvbWt1azJpc2xkNW85aW1oYXNfMjAxNjA5MThUMjMwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-27T21:11:37.000Z", + "updated": "2016-10-02T23:06:21.048Z", + "summary": "Adams Canvassing", + "description": "SUNDAY*** For Adams County \"ColoradoCare\" Leaders, Neighbors and Volunteers: \"A \"Just-Drop-In Open House\", \"Meet n Greet,\" and ColoradoCare \"Phone Banking\" Event\n\n***Especially for our \"friends who already like ColoradoCareYES\" but also including \"the very curious, the spontaneous, and those who simply have to know more about our \"Adams County Insiders' Game Plan\" for a BIG, some say \"juuuge,\" YES!Vote electoral win on CC A-69 in Adams County on November 8 . . . Please stop by and say Hi . . . \n\nHello To Our \"Friends Who Like ColoradoCareYES,\"\nWe will be gathering from 5-8 pm at the Villas at Sunny Acres where we've held earlier CC phone banks (Please come to The Villager Lounge, on the basement floor level -- inside and to the left -- of The Villager Building Entrance (with its adjoining guest parking) at 2511 E. 104th Ave., Thornton, CO 80233-6168 (My cell is 720-275-4399 for directions, questions, etc.) . . . \n\n(A) FOR THIS \"Open House\" and \"Meet n Greet\" . . . Just show up; bring refreshments to share if you can, or not; Be prepared, or not, to ask questions about how we are moving forward to pass ColoradoCare in Adams County: Get ready to do whatever you can to help us achieve our \"Adams County Path to Victory for ColoradoCare Amendment 69 on November 8, 2016\" . . . Have fun; Meet some keen people; Have fun! Ken Connell will be your Host! (My cell is 720-275-4399) . . .\n\n(B) FOR A VERY POSITIVE EXPERIENCE WITH \"ColoradoCare Phone Banking\" . . . Please Try It Before You Decide Not To Like It (as Many Of Our Volunteer Callers Actually like It As We Are Doing It) . . . \n\nHere are the details for Sunday's calling . . . \nKen Connell will be your Host and Trainer for this calling event . . . His cell no. is 720-275-4399 . . . Ken has great call lists of ColoradoCare \"friendlies\" . . . You'll work from a dynamic, highly motivating script for talking with those who may still be learning about ColoradoCare Amendment 69, those who are very much in the know, many CC active supporters and prior donors, and just about anyone and everyone your calls may actually reach in person . . . All call results have simple codes for reporting so future call lists will be current and updated within the VAN data base . . . We are very successful in thanking our supporters, gauging the strength of their support, engaging them as volunteers, and securing additional financial donations from those who are ready, willing and able to do more at the time of our calls . . . \nWe will meet from 5 pm, to start the brief training of our phone bank callers so can begin making calls before 5:30 pm . . . We're requesting a minimum calling shift of 2 hours from the end of the training, but we have the space reserved until 9:00 pm, for any who can commit to more than two hours of calling . . . Callers will need to provide cell phones (and should bring a charger) to make calls . . . Callers are also encouraged to bring refreshments to share, as they can, or not . . . \n\nAdditional Location and Directions Detail): The phone banking address is at 2511 E. 104th Ave in The Villager Building Lounge (on the ground floor of the building where I live) on the campus of The Villas At Sunny Acres (VASA) in Thornton CO 80233-6168 . . . This is a 64-acre campus so one will need to follow the campus signs that specifically identify \"The Villager\" . . . (Do not go to \"The Villa\" building) . . . Please look for ColoradoCare on signs near those pointing the way to The Villager Building -- starting at the preferred front entrance next to the five-story Ambassador building at the Eastern-most entrance . . . (NOTE: There are actually two different entrances onto the campus from East 104th Ave by car (both to the north side just east of York St) . . . Either will lead into \"The Villager\" (a 4-story building on the northeast end of the campus) at the most northerly end of the paved roads by either entrance) . . . \n\nPlease map the \"The Villager\" address so you can see the basic location of \"The Villager\" on the Villas at Sunny Acres campus . . . Thanks very much for calling to help pass ColoradoCare Amendment 69 . . . \n\nHope to see you this Sunday . . .\n720-275-4399", + "location": "The Villager Building, 2511 E. 104th Ave., Thornton, CO 80233-6168", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-18T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-18T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "o5g095j5omkuk2isld5o9imhas", + "originalStartTime": { + "dateTime": "2016-09-18T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "o5g095j5omkuk2isld5o9imhas@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2950899162096000\"", + "id": "o5g095j5omkuk2isld5o9imhas_20160925T230000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=bzVnMDk1ajVvbWt1azJpc2xkNW85aW1oYXNfMjAxNjA5MjVUMjMwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-07-27T21:11:37.000Z", + "updated": "2016-10-02T23:06:21.048Z", + "summary": "Adams Canvassing", + "description": "SUNDAY*** For Adams County \"ColoradoCare\" Leaders, Neighbors and Volunteers: \"A \"Just-Drop-In Open House\", \"Meet n Greet,\" and ColoradoCare \"Phone Banking\" Event\n\n***Especially for our \"friends who already like ColoradoCareYES\" but also including \"the very curious, the spontaneous, and those who simply have to know more about our \"Adams County Insiders' Game Plan\" for a BIG, some say \"juuuge,\" YES!Vote electoral win on CC A-69 in Adams County on November 8 . . . Please stop by and say Hi . . . \n\nHello To Our \"Friends Who Like ColoradoCareYES,\"\nWe will be gathering from 5-8 pm at the Villas at Sunny Acres where we've held earlier CC phone banks (Please come to The Villager Lounge, on the basement floor level -- inside and to the left -- of The Villager Building Entrance (with its adjoining guest parking) at 2511 E. 104th Ave., Thornton, CO 80233-6168 (My cell is 720-275-4399 for directions, questions, etc.) . . . \n\n(A) FOR THIS \"Open House\" and \"Meet n Greet\" . . . Just show up; bring refreshments to share if you can, or not; Be prepared, or not, to ask questions about how we are moving forward to pass ColoradoCare in Adams County: Get ready to do whatever you can to help us achieve our \"Adams County Path to Victory for ColoradoCare Amendment 69 on November 8, 2016\" . . . Have fun; Meet some keen people; Have fun! Ken Connell will be your Host! (My cell is 720-275-4399) . . .\n\n(B) FOR A VERY POSITIVE EXPERIENCE WITH \"ColoradoCare Phone Banking\" . . . Please Try It Before You Decide Not To Like It (as Many Of Our Volunteer Callers Actually like It As We Are Doing It) . . . \n\nHere are the details for Sunday's calling . . . \nKen Connell will be your Host and Trainer for this calling event . . . His cell no. is 720-275-4399 . . . Ken has great call lists of ColoradoCare \"friendlies\" . . . You'll work from a dynamic, highly motivating script for talking with those who may still be learning about ColoradoCare Amendment 69, those who are very much in the know, many CC active supporters and prior donors, and just about anyone and everyone your calls may actually reach in person . . . All call results have simple codes for reporting so future call lists will be current and updated within the VAN data base . . . We are very successful in thanking our supporters, gauging the strength of their support, engaging them as volunteers, and securing additional financial donations from those who are ready, willing and able to do more at the time of our calls . . . \nWe will meet from 5 pm, to start the brief training of our phone bank callers so can begin making calls before 5:30 pm . . . We're requesting a minimum calling shift of 2 hours from the end of the training, but we have the space reserved until 9:00 pm, for any who can commit to more than two hours of calling . . . Callers will need to provide cell phones (and should bring a charger) to make calls . . . Callers are also encouraged to bring refreshments to share, as they can, or not . . . \n\nAdditional Location and Directions Detail): The phone banking address is at 2511 E. 104th Ave in The Villager Building Lounge (on the ground floor of the building where I live) on the campus of The Villas At Sunny Acres (VASA) in Thornton CO 80233-6168 . . . This is a 64-acre campus so one will need to follow the campus signs that specifically identify \"The Villager\" . . . (Do not go to \"The Villa\" building) . . . Please look for ColoradoCare on signs near those pointing the way to The Villager Building -- starting at the preferred front entrance next to the five-story Ambassador building at the Eastern-most entrance . . . (NOTE: There are actually two different entrances onto the campus from East 104th Ave by car (both to the north side just east of York St) . . . Either will lead into \"The Villager\" (a 4-story building on the northeast end of the campus) at the most northerly end of the paved roads by either entrance) . . . \n\nPlease map the \"The Villager\" address so you can see the basic location of \"The Villager\" on the Villas at Sunny Acres campus . . . Thanks very much for calling to help pass ColoradoCare Amendment 69 . . . \n\nHope to see you this Sunday . . .\n720-275-4399", + "location": "The Villager Building, 2511 E. 104th Ave., Thornton, CO 80233-6168", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-25T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-25T20:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "o5g095j5omkuk2isld5o9imhas", + "originalStartTime": { + "dateTime": "2016-09-25T17:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "o5g095j5omkuk2isld5o9imhas@google.com", + "sequence": 1 + }, + { + "kind": "calendar#event", + "etag": "\"2951031737832000\"", + "id": "tsqbqk9sk9jruk81ncjt5cf67g_20160829T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dHNxYnFrOXNrOWpydWs4MW5janQ1Y2Y2N2dfMjAxNjA4MjlUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:10:03.000Z", + "updated": "2016-10-03T17:31:08.916Z", + "summary": "Denver Canvass: Every Tuesday evening", + "description": "Please contact organizers for location.\nRSVP. Please contact Megan at megan.rin@gmail.com", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-08-29T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-08-29T19:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "tsqbqk9sk9jruk81ncjt5cf67g", + "originalStartTime": { + "dateTime": "2016-08-29T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "tsqbqk9sk9jruk81ncjt5cf67g@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951031737832000\"", + "id": "tsqbqk9sk9jruk81ncjt5cf67g_20160905T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dHNxYnFrOXNrOWpydWs4MW5janQ1Y2Y2N2dfMjAxNjA5MDVUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:10:03.000Z", + "updated": "2016-10-03T17:31:08.916Z", + "summary": "Denver Canvass: Every Tuesday evening", + "description": "Please contact organizers for location.\nRSVP. Please contact Megan at megan.rin@gmail.com", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-05T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-05T19:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "tsqbqk9sk9jruk81ncjt5cf67g", + "originalStartTime": { + "dateTime": "2016-09-05T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "tsqbqk9sk9jruk81ncjt5cf67g@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951031737832000\"", + "id": "tsqbqk9sk9jruk81ncjt5cf67g_20160912T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dHNxYnFrOXNrOWpydWs4MW5janQ1Y2Y2N2dfMjAxNjA5MTJUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:10:03.000Z", + "updated": "2016-10-03T17:31:08.916Z", + "summary": "Denver Canvass: Every Tuesday evening", + "description": "Please contact organizers for location.\nRSVP. Please contact Megan at megan.rin@gmail.com", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-12T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-12T19:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "tsqbqk9sk9jruk81ncjt5cf67g", + "originalStartTime": { + "dateTime": "2016-09-12T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "tsqbqk9sk9jruk81ncjt5cf67g@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951031737832000\"", + "id": "tsqbqk9sk9jruk81ncjt5cf67g_20160919T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dHNxYnFrOXNrOWpydWs4MW5janQ1Y2Y2N2dfMjAxNjA5MTlUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:10:03.000Z", + "updated": "2016-10-03T17:31:08.916Z", + "summary": "Denver Canvass: Every Tuesday evening", + "description": "Please contact organizers for location.\nRSVP. Please contact Megan at megan.rin@gmail.com", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-19T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-19T19:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "tsqbqk9sk9jruk81ncjt5cf67g", + "originalStartTime": { + "dateTime": "2016-09-19T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "tsqbqk9sk9jruk81ncjt5cf67g@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951031737832000\"", + "id": "tsqbqk9sk9jruk81ncjt5cf67g_20160926T233000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dHNxYnFrOXNrOWpydWs4MW5janQ1Y2Y2N2dfMjAxNjA5MjZUMjMzMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-28T05:10:03.000Z", + "updated": "2016-10-03T17:31:08.916Z", + "summary": "Denver Canvass: Every Tuesday evening", + "description": "Please contact organizers for location.\nRSVP. Please contact Megan at megan.rin@gmail.com", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-26T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-26T19:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "tsqbqk9sk9jruk81ncjt5cf67g", + "originalStartTime": { + "dateTime": "2016-09-26T17:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "tsqbqk9sk9jruk81ncjt5cf67g@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951033151252000\"", + "id": "vd215drhodfvasmag5ar3rjiog_20160904T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dmQyMTVkcmhvZGZ2YXNtYWc1YXIzcmppb2dfMjAxNjA5MDRUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:20:48.000Z", + "updated": "2016-10-03T17:42:55.626Z", + "summary": "Jefferson Canvass: Every Sunday at Westminster", + "description": "RSVP. Please contact Sara at 303.548.6937", + "location": "Lemars Donuts at 9940 Wadsworth Pkwy, Westminster, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-04T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-04T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vd215drhodfvasmag5ar3rjiog_R20160904T160000", + "originalStartTime": { + "dateTime": "2016-09-04T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vd215drhodfvasmag5ar3rjiog_R20160904T160000@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951033151252000\"", + "id": "vd215drhodfvasmag5ar3rjiog_20160911T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dmQyMTVkcmhvZGZ2YXNtYWc1YXIzcmppb2dfMjAxNjA5MTFUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:20:48.000Z", + "updated": "2016-10-03T17:42:55.626Z", + "summary": "Jefferson Canvass: Every Sunday at Westminster", + "description": "RSVP. Please contact Sara at 303.548.6937", + "location": "Lemars Donuts at 9940 Wadsworth Pkwy, Westminster, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-11T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-11T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vd215drhodfvasmag5ar3rjiog_R20160904T160000", + "originalStartTime": { + "dateTime": "2016-09-11T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vd215drhodfvasmag5ar3rjiog_R20160904T160000@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951033151252000\"", + "id": "vd215drhodfvasmag5ar3rjiog_20160918T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dmQyMTVkcmhvZGZ2YXNtYWc1YXIzcmppb2dfMjAxNjA5MThUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:20:48.000Z", + "updated": "2016-10-03T17:42:55.626Z", + "summary": "Jefferson Canvass: Every Sunday at Westminster", + "description": "RSVP. Please contact Sara at 303.548.6937", + "location": "Lemars Donuts at 9940 Wadsworth Pkwy, Westminster, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-18T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-18T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vd215drhodfvasmag5ar3rjiog_R20160904T160000", + "originalStartTime": { + "dateTime": "2016-09-18T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vd215drhodfvasmag5ar3rjiog_R20160904T160000@google.com", + "sequence": 0 + }, + { + "kind": "calendar#event", + "etag": "\"2951033151252000\"", + "id": "vd215drhodfvasmag5ar3rjiog_20160925T160000Z", + "status": "confirmed", + "htmlLink": "https://www.google.com/calendar/event?eid=dmQyMTVkcmhvZGZ2YXNtYWc1YXIzcmppb2dfMjAxNjA5MjVUMTYwMDAwWiAwMG9kcGc4N2xnMm80M2VraTZnaTBza3Rna0Bn&ctz=America/Denver", + "created": "2016-08-24T05:20:48.000Z", + "updated": "2016-10-03T17:42:55.626Z", + "summary": "Jefferson Canvass: Every Sunday at Westminster", + "description": "RSVP. Please contact Sara at 303.548.6937", + "location": "Lemars Donuts at 9940 Wadsworth Pkwy, Westminster, CO", + "creator": { + "email": "wenzhuo.lena@gmail.com", + "displayName": "Lena Feng" + }, + "organizer": { + "email": "00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "displayName": "Public Events--ColoradoCareYES", + "self": true + }, + "start": { + "dateTime": "2016-09-25T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "end": { + "dateTime": "2016-09-25T12:30:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "recurringEventId": "vd215drhodfvasmag5ar3rjiog_R20160904T160000", + "originalStartTime": { + "dateTime": "2016-09-25T10:00:00-06:00", + "timeZone": "America/Los_Angeles" + }, + "iCalUID": "vd215drhodfvasmag5ar3rjiog_R20160904T160000@google.com", + "sequence": 0 + } + ] +} diff --git a/data/colorado_care.json b/data/colorado_care.json new file mode 100644 index 0000000..65d8634 --- /dev/null +++ b/data/colorado_care.json @@ -0,0 +1,2790 @@ +{ + "VCALENDAR": [ + { + "PRODID": "-//Google Inc//Google Calendar 70.9054//EN", + "VERSION": "2.0", + "CALSCALE": "GREGORIAN", + "METHOD": "PUBLISH", + "X-WR-CALNAME": "Public Events--ColoradoCareYES", + "X-WR-TIMEZONE": "America/Denver", + "X-WR-CALDESC": "This is a public calendar that anyone can see through our website. It is to post public events sponsored by or of interest to the ColoradoCareYES campaign. If you are posting events for other entities\\, please title it \"Voter Outreach\" or something similar\\, rather than a title referring to a campaign other than ColoradoCareYES.", + "VTIMEZONE": [ + { + "TZID": "America/Denver", + "X-LIC-LOCATION": "America/Denver", + "DAYLIGHT": [ + { + "TZOFFSETFROM": "-0700", + "TZOFFSETTO": "-0600", + "TZNAME": "MDT", + "DTSTART": "19700308T020000", + "RRULE": "FREQ=YEARLY;BYMONTH=3;BYDAY=2SU" + } + ], + "STANDARD": [ + { + "TZOFFSETFROM": "-0600", + "TZOFFSETTO": "-0700", + "TZNAME": "MST", + "DTSTART": "19701101T020000", + "RRULE": "FREQ=YEARLY;BYMONTH=11;BYDAY=1SU" + } + ] + } + ], + "VEVENT": [ + { + "DTSTART;TZID=America/Los_Angeles": "20160731T160000", + "DTEND;TZID=America/Los_Angeles": "20160731T190000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161030T230000Z;BYDAY=SU", + "DTSTAMP": "20160926T041125Z", + "UID": "o5g095j5omkuk2isld5o9imhas@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160727T211137Z", + "DESCRIPTION": "SUNDAY*** For Adams County \"ColoradoCare\" Leaders\\, Neighbors and Volunteers: \"A \"Just-Drop-In Open House\"\\, \"Meet n Greet\\,\" and ColoradoCare \"Phone Banking\" Event\\n\\n***Especially for our \"friends who already like ColoradoCareYES\" but also including \"the very curious\\, the spontaneous\\, and those who simply have to know more about our \"Adams County Insiders' Game Plan\" for a BIG\\, some say \"juuuge\\,\" YES!Vote electoral win on CC A-69 in Adams County on November 8 . . . Please stop by and say Hi . . . \\n\\nHello To Our \"Friends Who Like ColoradoCareYES\\,\"\\nWe will be gathering from 5-8 pm at the Villas at Sunny Acres where we've held earlier CC phone banks (Please come to The Villager Lounge\\, on the basement floor level -- inside and to the left -- of The Villager Building Entrance (with its adjoining guest parking) at 2511 E. 104th Ave.\\, Thornton\\, CO 80233-6168 (My cell is 720-275-4399 for directions\\, questions\\, etc.) . . . \\n\\n(A) FOR THIS \"Open House\" and \"Meet n Greet\" . . . Just show up\\; bring refreshments to share if you can\\, or not\\; Be prepared\\, or not\\, to ask questions about how we are moving forward to pass ColoradoCare in Adams County: Get ready to do whatever you can to help us achieve our \"Adams County Path to Victory for ColoradoCare Amendment 69 on November 8\\, 2016\" . . . Have fun\\; Meet some keen people\\; Have fun! Ken Connell will be your Host! (My cell is 720-275-4399) . . .\\n\\n(B) FOR A VERY POSITIVE EXPERIENCE WITH \"ColoradoCare Phone Banking\" . . . Please Try It Before You Decide Not To Like It (as Many Of Our Volunteer Callers Actually like It As We Are Doing It) . . . \\n\\nHere are the details for Sunday's calling . . . \\nKen Connell will be your Host and Trainer for this calling event . . . His cell no. is 720-275-4399 . . . Ken has great call lists of ColoradoCare \"friendlies\" . . . You'll work from a dynamic\\, highly motivating script for talking with those who may still be learning about ColoradoCare Amendment 69\\, those who are very much in the know\\, many CC active supporters and prior donors\\, and just about anyone and everyone your calls may actually reach in person . . . All call results have simple codes for reporting so future call lists will be current and updated within the VAN data base . . . We are very successful in thanking our supporters\\, gauging the strength of their support\\, engaging them as volunteers\\, and securing additional financial donations from those who are ready\\, willing and able to do more at the time of our calls . . . \\nWe will meet from 5 pm\\, to start the brief training of our phone bank callers so can begin making calls before 5:30 pm . . . We're requesting a minimum calling shift of 2 hours from the end of the training\\, but we have the space reserved until 9:00 pm\\, for any who can commit to more than two hours of calling . . . Callers will need to provide cell phones (and should bring a charger) to make calls . . . Callers are also encouraged to bring refreshments to share\\, as they can\\, or not . . . \\n\\nAdditional Location and Directions Detail): The phone banking address is at 2511 E. 104th Ave in The Villager Building Lounge (on the ground floor of the building where I live) on the campus of The Villas At Sunny Acres (VASA) in Thornton CO 80233-6168 . . . This is a 64-acre campus so one will need to follow the campus signs that specifically identify \"The Villager\" . . . (Do not go to \"The Villa\" building) . . . Please look for ColoradoCare on signs near those pointing the way to The Villager Building -- starting at the preferred front entrance next to the five-story Ambassador building at the Eastern-most entrance . . . (NOTE: There are actually two different entrances onto the campus from East 104th Ave by car (both to the north side just east of York St) . . . Either will lead into \"The Villager\" (a 4-story building on the northeast end of the campus) at the most northerly end of the paved roads by either entrance) . . . \\n\\nPlease map the \"The Villager\" address so you can see the basic location of \"The Villager\" on the Villas at Sunny Acres campus . . . Thanks very much for calling to help pass ColoradoCare Amendment 69 . . . \\n\\nHope to see you this Sunday . . .\\n720-275-4399", + "LAST-MODIFIED": "20160925T220858Z", + "LOCATION": "The Villager Building\\, 2511 E. 104th Ave.\\, Thornton\\, CO 80233", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Adams Canvassing", + "TRANSP": "OPAQUE", + "X-APPLE-TRAVEL-ADVISORY-BEHAVIOR": "AUTOMATIC", + "VALARM": [ + { + "ACTION": "NONE", + "TRIGGER;VALUE=DATE-TIME": "19760401T005545Z", + "X-WR-ALARMUID": "96AA3A51-0453-4C49-B6A0-3C75FC9B2CAA", + "UID": "96AA3A51-0453-4C49-B6A0-3C75FC9B2CAA", + "ACKNOWLEDGED": "20160925T220858Z" + } + ] + }, + { + "DTSTART": "20160922T003000Z", + "DTEND": "20160922T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "iv93erb0pm40hlag93o7c5i0go@google.com", + "CREATED": "20160909T052357Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T052357Z", + "LOCATION": "The Irish Snug\\, 1201 E Colfax Ave #100\\, Denver\\, CO 80218", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: \"Drinking Liberally\" with Sen. Aguilar", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160921T000000Z", + "DTEND": "20160921T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "a5qssgi8d10lsa9dr6s1tq0i60@google.com", + "CREATED": "20160909T052018Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T052018Z", + "LOCATION": "Cook Park Recreation Center\\, 7100 Cherry Creek S Dr\\, Denver\\, CO 80224", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: ColoradoCare presentation to Cook Park Neighborhood Association", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160921T003000Z", + "DTEND": "20160921T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "p8fdghd2d0bifrn0ujlls8qltg@google.com", + "CREATED": "20160909T051727Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T051727Z", + "LOCATION": "Suite 240 Arapahoe County Democratic Party\\, 10730 E Bethany Drive\\, Aurora\\, CO 80014", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora: HD40 Democrats meeting", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160920T234500Z", + "DTEND": "20160921T004500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "2cj3edlc23rg402601nare3peg@google.com", + "CREATED": "20160909T051430Z", + "DESCRIPTION": "Join our presentation at Aurora Southlands Rotary Club! The event is upstairs. ", + "LAST-MODIFIED": "20160909T051430Z", + "LOCATION": "McCabe's Tavern and Bistro\\, 6100 S Main Street\\, Aurora\\, CO 80016", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora: ColoradoCare presentation at Aurora Southlands Rotary Club", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160921T010000Z", + "DTEND": "20160921T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "d4tobibanf6n1u2t16fodd8ud4@google.com", + "CREATED": "20160909T045551Z", + "DESCRIPTION": "Join our ColoradoCare presentation by Sen. Irene Aguilar!", + "LAST-MODIFIED": "20160909T050954Z", + "LOCATION": "DICP at College View Recreation Center\\, 2525 S Decatur St\\, Denver\\, CO 80219", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Sen. Aguilar on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160918T180000Z", + "DTEND": "20160918T193000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "0vc5ancf1777r4574c75748elo@google.com", + "CREATED": "20160909T045041Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T045041Z", + "LOCATION": "Mountain View Friends Meeting House\\, 2280 S. Columbine\\, Denver\\, CO 80210", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Mountain View Friends Meeting ", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160915T163000Z", + "DTEND": "20160915T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "p56itjufvea6ce8hv7j35m00s4@google.com", + "CREATED": "20160909T044736Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T044736Z", + "LOCATION": "DoubleTree Hotel\\, 13696 East Iliff Place\\, Aurora\\, CO 80014", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora: ColoradoCare presentation at Fall Legislative Forum", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160915T173000Z", + "DTEND": "20160915T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "2oshkj9nqved7lc4sj08t4cp7g@google.com", + "CREATED": "20160909T044430Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T044430Z", + "LOCATION": "Denver Athletic Club\\, 4th floor 1325 Glenarm Pl\\, Denver\\, CO 80204", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: T.R. Reid on ColoradoCare at Denver Rotary Club", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160913T160000Z", + "DTEND": "20160913T173000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "nltor9lq71kgsotba6trmllpsk@google.com", + "CREATED": "20160909T043958Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T043958Z", + "LOCATION": "9801 E Colfax Ave\\, Ste 250\\, Aurora\\, CO 80010", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora: Coffee meeting over ColoradoCare with Sen. Aguilar", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160912T010000Z", + "DTEND": "20160912T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "qehpi8dpp9esinv629e6klan44@google.com", + "CREATED": "20160909T043016Z", + "DESCRIPTION": "Join our information session to the Ayurveda Association and the general public!", + "LAST-MODIFIED": "20160909T043809Z", + "LOCATION": "Solstice Center LLC\\, 302 Pearl St\\, Boulder\\, CO 80302", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder: Information on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160913T003000Z", + "DTEND": "20160913T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "4qpihtsllap8lir948rmq426pc@google.com", + "CREATED": "20160909T043653Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T043653Z", + "LOCATION": "Columbine Library\\, 7706 W Bowles Ave\\, Littleton\\, CO 80123", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Littleton: Information on ColoradoCare at Mary Parker's townhall", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160912T010000Z", + "DTEND": "20160912T033000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "7qrkv82rq0ghdb8skuvnmbe584@google.com", + "CREATED": "20160823T045905Z", + "DESCRIPTION": "Summit Interfaith Council will feature movie clips to stimulate and inform a discussion entitled \"Health Care in Crisis: Is ColoradoCare answer?\" Join our speakers T.R. Reid and Dr. Kristine Hembre!", + "LAST-MODIFIED": "20160909T042538Z", + "LOCATION": "South Branch Library (former CMC)\\, 103 S Harris St\\, Breckenridge\\, CO 80424", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Breckenridge: Health Care in Crisis: Is ColoradoCare answer? ", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160910T153000Z", + "DTEND": "20160910T173000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "slcj013k98aphhb05d5nhsruho@google.com", + "CREATED": "20160909T042336Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160909T042336Z", + "LOCATION": "Green Mountain Presbyterian\\, 12900 W Alameda Pkwy\\, Lakewood\\, CO 80228", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Lakewood: Church presentation on ColoradoCare ", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160909T180000Z", + "DTEND": "20160909T194500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "v7alhgdljt190j6d6pun15098s@google.com", + "CREATED": "20160909T041935Z", + "DESCRIPTION": "Join the debate about ColoradoCare with our speaker T.R. Reid!", + "LAST-MODIFIED": "20160909T041935Z", + "LOCATION": "Boulder Rotary Club\\, Avalon Ballroom 6185 Arapahoe Ave\\, Boulder\\, CO 80303", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder: Debate about ColoradoCare with T.R. Reid", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20161021T000000Z", + "DTEND": "20161021T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "3160uefc63f2omt1f443ah016s@google.com", + "CREATED": "20160909T002552Z", + "DESCRIPTION": "Come learn about ColoradoCare from our speaker Mr. Bart Windrum\\, what it is and what it isn't and what you need to know before you vote.", + "LAST-MODIFIED": "20160909T002552Z", + "LOCATION": "Golden Library - Jefferson County Public Library\\, 1019 10th St\\, Golden\\, CO 80401", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Golden: Learn about ColoradoCare at Golden Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160920T000000Z", + "DTEND": "20160920T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "n4fe229oql9bhp6fo1i75mu300@google.com", + "CREATED": "20160908T235933Z", + "DESCRIPTION": "Come to learn about ColoradoCare\\, what it is and what it isn't\\, and what you need to know before you vote.", + "LAST-MODIFIED": "20160909T002342Z", + "LOCATION": "Boulder Public Library - George Reynolds Branch\\, 3595 Table Mesa Dr\\, Boulder\\, CO 80305", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder: Learn about ColoradoCare at Reynolds Branch Library", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160912T230000Z", + "DTEND": "20160913T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "lr7nkqjcb5jtla55cae8j7hi08@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160710T154327Z", + "DESCRIPTION": "Friends\\,\\n\\nWe have a big campaign evening in Boulder on Monday September 12th brought to you by ColoradoCare Yes\\, Amendment #69: Coloradocare\\, a meetup.com group\\, and the facebook group Musicians for 69.\\n\\n1.Special engagement with Award Winning Journalist\\, Best Selling Author and Producer T.R. REID. He will give two one hour public symposiums\\, one at 5pm and one at 7pm at the Boulder Library\\, 1001 Arapahoe. Admission is free\\, parking is free (although you must enter your license plate # at the kiosk to get free parking). Please refer to flyer at the end of this message.\\n\\n2.Book signing with free time to speak with T.R. REID about our campaign for the future of Colorado’s health care at 6 pm.\\n\\n3.Meeting of the Boulder Speaker’s Bureau to collaborate on future speaking engagements and other events at 6 pm. Volunteers and Public Welcome!\\n\\nThe event is filling up quickly\\, so to insure a seat R.S.V.P. (at meetup.com Amendment #69: ColoradoCare if possible). Frankly\\, I am wondering why we don’t already have people hanging from the rafters!\\n\\nPlease “Five it forward” - tell five of your friends\\, family\\, neighbors and coworkers about this event and ColoradoCare. And ask them to do the same.", + "LAST-MODIFIED": "20160908T233017Z", + "LOCATION": "Boulder Public Library - Main Library\\, 1001 Arapahoe Ave \\, Boulder \\, CO 80302", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Symposium and Meet-up - TR Reid: Amendment 69", + "TRANSP": "OPAQUE", + "ATTACH;FILENAME=TR Reid Boulder speak.jpeg": "https://drive.google.com/file/d/0B5KsxPTT8ZESdjNXM01Ua2h0Rkk/view?usp=drive_web" + }, + { + "DTSTART": "20160927T010000Z", + "DTEND": "20160927T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "82ke2trhrj27o3nal9seuig82c@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160501T045715Z", + "DESCRIPTION": "Join an informational presentation and Q&A about Amendment 69 - ColoradoCare -\"medicare-for-all\" type health care system for ALL Coloradans \\n\\nPresenters:\\nFOR Amendment 69:\\nJeanne Nicholson\\, RN\\, MSN\\nFormer Colorado State Senator\\, Dist. 16 (2011 – 2015)\\nwww.coloradocare.org\\n\\nAGAINST Amendment 69:\\nSteve VanderWerf\\, El Paso County Commissioner Candidate\\n\\nFor more information\\, visit coloradocare.org. For local information contact Marilyn Bouldin 719.239.1031.\\n", + "LAST-MODIFIED": "20160908T212803Z", + "LOCATION": "First Presbyterian Church\\, 7 Poncha Boulevard\\, Salida\\, CO 81201", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Salida-PRO/CON presentation with Jeanne Nicholson", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160927T233000Z", + "DTEND": "20160928T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "gfk2h1fn0fflmqsf3edvmobbjs@google.com", + "CREATED": "20160501T045637Z", + "DESCRIPTION": "Amendment 69-Colorado Care\\nJoin the informational meeting and discussion\\n\\nPresenters:\\nFOR Amendment 69-COLORADOCARE - former State Sen. Jeanne Nicholson\\, RN\\, MSN\\nwww.coloradocare.org\\n\\nAGAINST\\nKatherine Mulready\\nVice President of Legislation Policy and Chief Strategy Officer\\nColorado Hospital Association\\nhttp://cha.com/Policy-Advocacy/2016-Ballot-Issues-Amendment-69-(ColoradoCare).aspx\\n\\nFor more information visit the above websites. \\nFor local information call Randy Wright\\, Alamosa Chamber at randyw@gojade.org Snacks will be available.\\nOrganized by Sue Foster\\, Charlotte Ledonne\\, Helen Lester and Donna Wehe \\n", + "LAST-MODIFIED": "20160908T212435Z", + "LOCATION": "First United Methodist Church\\, 2005 Mullins Ave\\, Alamosa\\, CO 81101", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Alamosa-Informational Meeting & Discussion-Jeanne Nicholson\\,RN\\,MSN", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160920T180000Z", + "DTEND": "20160920T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "gmr5psmqg9600nc5raropn6mb0@google.com", + "CREATED": "20160908T145624Z", + "DESCRIPTION": "Come to learn about ColoradoCare from our speaker Noel Guardi\\, JD\\, what it is and what it isn't. Something you need to do before you vote.", + "LAST-MODIFIED": "20160908T145812Z", + "LOCATION": "Boulder Public Library - Main Library\\, 1001 Arapahoe Ave\\, Boulder\\, CO 80302", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder: Learn about ColoradoCare at Boulder Public Library", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160910T030000Z", + "DTEND": "20160910T040000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9smm64gjcrlf8fojc59utt42qc@google.com", + "CREATED": "20160907T051208Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160907T202654Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "PBS Channel 12: T.R. Reid speak about ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160907T171500Z", + "DTEND": "20160908T070000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ohh4fh6l3ap22dqbo905491fg8@google.com", + "CREATED": "20160907T054822Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160907T054822Z", + "LOCATION": "Lamar Street Center\\, 5889 Lamar St\\, Arvada\\, CO 80003", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Arvada: Debate about ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160924T160000Z", + "DTEND": "20160924T170000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "8guk3k4tck5898ec4smj3it2jg@google.com", + "CREATED": "20160907T053859Z", + "DESCRIPTION": "Come to learn about ColoradoCare from our speaker Noel Guardi\\, JD\\, what it is and what it isn't\\, and what you need to know before you vote.", + "LAST-MODIFIED": "20160907T053859Z", + "LOCATION": "Gilpin County Library\\, 15131 CO-119\\, Black Hawk\\, CO 80422", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Black Hawk: Learn about ColoradoCare at Gilpin County Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20161013T000000Z", + "DTEND": "20161013T014500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "2m0sekenepimcoavokk55jjga4@google.com", + "CREATED": "20160824T053404Z", + "DESCRIPTION": "Come to learn about ColoradoCare from our speaker Mr. Bart Windrum\\, what it is and what it isn't and what you need to know before you vote.", + "LAST-MODIFIED": "20160907T053723Z", + "LOCATION": "Golden Library - Jefferson County Public Library\\, 10th Street\\, Golden\\, CO 80401", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Golden: Learn about ColoradoCare at Golden Public Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20161004T000000Z", + "DTEND": "20161004T014500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "486tjk7204qqcie49kqiuv9d4k@google.com", + "CREATED": "20160830T035321Z", + "DESCRIPTION": "Come to learn about ColoradoCare from our speaker Dr. Ellen Lewis\\, what it is and what it isn't\\, and what you need to know before you vote.", + "LAST-MODIFIED": "20160907T053528Z", + "LOCATION": "Lakewood Library\\, West 20th Avenue\\, Lakewood\\, CO 80215", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Lakewood: Learn about Colorado Care at Lakewood Public Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160917T160000Z", + "DTEND": "20160917T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "r0hv9j623eko8nseaujtjq8bdo@google.com", + "CREATED": "20160820T042124Z", + "DESCRIPTION": "Come to learn about ColoradoCare from our speaker Noel Guardi\\, JD\\, what it is and what it isn't\\, and what you need to know before you vote.", + "LAST-MODIFIED": "20160907T053144Z", + "LOCATION": "Belmar Public Library\\, 555 S Allison Pkwy\\, Lakewood\\, CO 80226", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Belmar: Learn about ColoradoCare at Belmar Public Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160910T170000Z", + "DTEND": "20160910T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "jl7ldqqjjce204ieism3t8qf6o@google.com", + "CREATED": "20160907T052923Z", + "DESCRIPTION": "Come to learn about ColoradoCare from our speaker Mr. Geoff Dolman\\, what it is and what it isn't\\, and what you need to know before you vote.", + "LAST-MODIFIED": "20160907T053029Z", + "LOCATION": "Carbon Valley Library\\, 7 Park Ave\\, Firestone\\, CO 80504", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Firesone: Learn about ColoradoCare at Carbon Valley Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160908T003000Z", + "DTEND": "20160908T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "rc98ef5cp9j39uuvtqa1d99mis@google.com", + "CREATED": "20160907T052719Z", + "DESCRIPTION": "Come to learn about ColoradoCare from our speaker Mr. Ron Verjorstek\\, what it is and what it isn't\\, and what you need to know before you vote.", + "LAST-MODIFIED": "20160907T052957Z", + "LOCATION": "Longmont Democrats\\,1108 Main St.\\, Longmont\\, CO 80501", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Longmont: Learn about ColoradoCare from Longmont Democrats", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20161006T000000Z", + "DTEND": "20161006T014500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "u97n1ome78tt8gaumvlccbcl9o@google.com", + "CREATED": "20160824T053101Z", + "DESCRIPTION": "Come learn about ColoradoCare from our speaker Mr. Bart Windrum\\, what it is and what it isn't and what you need to know before you vote.", + "LAST-MODIFIED": "20160907T051804Z", + "LOCATION": "Standley Lake Public Library\\, 8485 Kipling St\\, Arvada\\, CO 80005", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Arvada: Learn about ColoradoCare at Standley Lake Public Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160909T003000Z", + "DTEND": "20160909T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "i1uqopbrs5ulgs90mf0fevaq9k@google.com", + "CREATED": "20160907T045141Z", + "DESCRIPTION": "The Broomfield Democrats will sponsor a moderated forum today. BOTH Pro and ConA69 representatives are present to answer questions from citizens. Both ColoradoCare and ColoradoansForColoradoans will have a representative on stage.", + "LAST-MODIFIED": "20160907T045620Z", + "LOCATION": "Broomfield Community Center\\, 280 Spader Way\\, Broomfield\\, CO 80020", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Broomfield: Democrats debate with pro & con speakers", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160908T160000Z", + "DTEND": "20160908T170000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "huvr1ga9tteq15o9hra4ea0tu0@google.com", + "CREATED": "20160907T043318Z", + "DESCRIPTION": "On Thursday\\, Sep. 8\\, 10 a.m.\\, we're having a Facebook Live event with Sen. Irene Aguilar and we need your help.\\nIn order to spread the event as far as possible on social media\\, we are asking you to go to our page at 10 a.m. and 'share' the live event with your friends on Facebook. \\nMore than that\\, you can stay and listen to Irene speak about ColoradoCare and ask those questions (via written comments) you've been dying to ask! \\nOur FB page is at: https://www.facebook.com/CooperateColorado/\\nThank you all for your incredible work on behalf of ColoradoCare. ", + "LAST-MODIFIED": "20160907T043720Z", + "LOCATION": "Online", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Facebook live with Sen. Irene Aguilar", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160731T160000", + "DTEND;TZID=America/Los_Angeles": "20160731T190000", + "DTSTAMP": "20160926T041125Z", + "UID": "o5g095j5omkuk2isld5o9imhas@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "RECURRENCE-ID;TZID=America/Los_Angeles": "20160731T160000", + "CREATED": "20160727T211137Z", + "DESCRIPTION": "SUNDAY*** For Adams County \"ColoradoCare\" Leaders\\, Neighbors and Volunteers: \"A \"Just-Drop-In Open House\"\\, \"Meet n Greet\\,\" and ColoradoCare \"Phone Banking\" Event\\n\\n***Especially for our \"friends who already like ColoradoCareYES\" but also including \"the very curious\\, the spontaneous\\, and those who simply have to know more about our \"Adams County Insiders' Game Plan\" for a BIG\\, some say \"juuuge\\,\" YES!Vote electoral win on CC A-69 in Adams County on November 8 . . . Please stop by and say Hi . . . \\n\\nHello To Our \"Friends Who Like ColoradoCareYES\\,\"\\nWe will be gathering from 5-8 pm at the Villas at Sunny Acres where we've held earlier CC phone banks (Please come to The Villager Lounge\\, on the basement floor level -- inside and to the left -- of The Villager Building Entrance (with its adjoining guest parking) at 2511 E. 104th Ave.\\, Thornton\\, CO 80233-6168 (My cell is 720-275-4399 for directions\\, questions\\, etc.) . . . \\n\\n(A) FOR THIS \"Open House\" and \"Meet n Greet\" . . . Just show up\\; bring refreshments to share if you can\\, or not\\; Be prepared\\, or not\\, to ask questions about how we are moving forward to pass ColoradoCare in Adams County: Get ready to do whatever you can to help us achieve our \"Adams County Path to Victory for ColoradoCare Amendment 69 on November 8\\, 2016\" . . . Have fun\\; Meet some keen people\\; Have fun! Ken Connell will be your Host! (My cell is 720-275-4399) . . .\\n\\n(B) FOR A VERY POSITIVE EXPERIENCE WITH \"ColoradoCare Phone Banking\" . . . Please Try It Before You Decide Not To Like It (as Many Of Our Volunteer Callers Actually like It As We Are Doing It) . . . \\n\\nHere are the details for Sunday's calling . . . \\nKen Connell will be your Host and Trainer for this calling event . . . His cell no. is 720-275-4399 . . . Ken has great call lists of ColoradoCare \"friendlies\" . . . You'll work from a dynamic\\, highly motivating script for talking with those who may still be learning about ColoradoCare Amendment 69\\, those who are very much in the know\\, many CC active supporters and prior donors\\, and just about anyone and everyone your calls may actually reach in person . . . All call results have simple codes for reporting so future call lists will be current and updated within the VAN data base . . . We are very successful in thanking our supporters\\, gauging the strength of their support\\, engaging them as volunteers\\, and securing additional financial donations from those who are ready\\, willing and able to do more at the time of our calls . . . \\nWe will meet from 5 pm\\, to start the brief training of our phone bank callers so can begin making calls before 5:30 pm . . . We're requesting a minimum calling shift of 2 hours from the end of the training\\, but we have the space reserved until 9:00 pm\\, for any who can commit to more than two hours of calling . . . Callers will need to provide cell phones (and should bring a charger) to make calls . . . Callers are also encouraged to bring refreshments to share\\, as they can\\, or not . . . \\n\\nAdditional Location and Directions Detail): The phone banking address is at 2511 E. 104th Ave in The Villager Building Lounge (on the ground floor of the building where I live) on the campus of The Villas At Sunny Acres (VASA) in Thornton CO 80233-6168 . . . This is a 64-acre campus so one will need to follow the campus signs that specifically identify \"The Villager\" . . . (Do not go to \"The Villa\" building) . . . Please look for ColoradoCare on signs near those pointing the way to The Villager Building -- starting at the preferred front entrance next to the five-story Ambassador building at the Eastern-most entrance . . . (NOTE: There are actually two different entrances onto the campus from East 104th Ave by car (both to the north side just east of York St) . . . Either will lead into \"The Villager\" (a 4-story building on the northeast end of the campus) at the most northerly end of the paved roads by either entrance) . . . \\n\\nPlease map the \"The Villager\" address so you can see the basic location of \"The Villager\" on the Villas at Sunny Acres campus . . . Thanks very much for calling to help pass ColoradoCare Amendment 69 . . . \\n\\nHope to see you this Sunday . . .\\n720-275-4399", + "LAST-MODIFIED": "20160904T223234Z", + "LOCATION": "The Villager Building\\, 2511 E. 104th Ave.\\, Thornton\\, CO 80233-6168", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Adams County Meet 'n' Greet and Phone Bank", + "TRANSP": "OPAQUE", + "X-APPLE-TRAVEL-ADVISORY-BEHAVIOR": "AUTOMATIC", + "VALARM": [ + { + "ACTION": "NONE", + "TRIGGER;VALUE=DATE-TIME": "19760401T005545Z", + "X-WR-ALARMUID": "0F75BA5A-6D45-429B-8FA3-FC9A29184A36", + "UID": "0F75BA5A-6D45-429B-8FA3-FC9A29184A36" + } + ] + }, + { + "DTSTART": "20160827T163000Z", + "DTEND": "20160827T173000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "pdc0c07uhnkubhq8ee0q1l07qc@google.com", + "CREATED": "20160804T224617Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T224617Z", + "LOCATION": "Tri-City Baptist Church\\, 6953 W 92nd Ln\\, Broomfield\\, CO 80021", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Westminster: Amendment 69 debate", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160826T010000Z", + "DTEND": "20160826T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9emsqg7iqk0t1fcbn0bpte6h24@google.com", + "CREATED": "20160804T224438Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T224438Z", + "LOCATION": "Pulliam Community Building\\, 545 Cleveland Ave\\, Loveland\\, CO 80537", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Loveland: ColoradoCare community values with Senator Aguliar", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160825T003000Z", + "DTEND": "20160825T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "6d4u8tdjethjrfadr82athe8a4@google.com", + "CREATED": "20160804T224227Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T224227Z", + "LOCATION": "Pikes Peak Library District - East Library\\, 5550 N Union Blvd\\, Colorado Springs\\, CO 80918", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado Springs: Presentation to physicians with T.R. Reid", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160825T000000Z", + "DTEND": "20160825T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "1se97o8d5fjlncqeacp53huh9g@google.com", + "CREATED": "20160804T223754Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T223754Z", + "LOCATION": "The GrowHaus\\, 4751 York St\\, Denver\\, CO 80216", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Elyria-Swansea neighborhood presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160824T010000Z", + "DTEND": "20160824T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9kh8roi1rj1veoe8me0fr45104@google.com", + "CREATED": "20160804T223514Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T223514Z", + "LOCATION": "St. Anthony Hospital\\, 11600 W 2nd Pl\\, Lakewood\\, CO 80228", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Lakewood: JeffCo League of Women Voters", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160822T190000Z", + "DTEND": "20160822T210000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "jp0r9t0pgbdn4sdfhs2v5gisqo@google.com", + "CREATED": "20160804T223304Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T223304Z", + "LOCATION": "Denver Foundation\\, 55 Madison St # 800\\, Denver\\, CO 80206", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Community Wealth Building monthly meeting", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160820T153000Z", + "DTEND": "20160820T173000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "37u8ggmrkn1oi9j5hmhvdv36m4@google.com", + "CREATED": "20160804T223133Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T223133Z", + "LOCATION": "Council Tree Library - Poudre River Public Library District\\, 2733 Council Tree Ave\\, Fort Collins\\, CO 80525", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Fort Collins: Presentation on Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160810T233000Z", + "DTEND": "20160811T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "6oesrbgl5l5s87upa1qlpsrqvs@google.com", + "CREATED": "20160804T222711Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T222711Z", + "LOCATION": "Red Feather Lake Library\\, 71 Fire House Ln\\, Red Feather Lakes\\, CO 80545", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Red Feather Lakes: Presentation on Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160809T140000Z", + "DTEND": "20160809T153000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "o736vbhf8ue7bbrbnvpe4bn9fs@google.com", + "CREATED": "20160804T222452Z", + "DESCRIPTION": "Check out the event detail: http://cmccgroup.org/event-2114182", + "LAST-MODIFIED": "20160804T222452Z", + "LOCATION": "Children's Hospital Colorado Anschutz Medical Campus\\, 13123 E 16th Ave\\, Aurora\\, CO 80045", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora: Debate at Colorado Managed Care Collaborative", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160809T143000Z", + "DTEND": "20160809T153000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "72vfiq5nvpc1nu2ucj3kthsilk@google.com", + "CREATED": "20160804T221558Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T221655Z", + "LOCATION": "Brookdale Mountain View\\, 8101 E Mississippi Ave\\, Denver\\, CO 80247", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Senior issues briefing", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160809T010000Z", + "DTEND": "20160809T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "vc9p1cim6phapbm9b3glbs43d0@google.com", + "CREATED": "20160804T221311Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160804T221508Z", + "LOCATION": "White Fence Farm\\, 6263 W Jewell Ave\\, Lakewood\\, CO 80232", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Lakewood: South Lakewood Bus Association A69 discussion", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160807T170000Z", + "DTEND": "20160807T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "eoor3fef9hiai5ipo64g381ml8@google.com", + "CREATED": "20160804T195916Z", + "DESCRIPTION": "St. Barnabas Episcopal Church Adult Forum ", + "LAST-MODIFIED": "20160804T195916Z", + "LOCATION": "Warren United Methodist Church\\, 1630 E 14th Ave\\, Denver\\, CO 80218", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Presentation on ColoradoCare by Senator Aguilar", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160806T143000Z", + "DTEND": "20160806T160000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "torn2ras1k4qpoh88c3gdjucig@google.com", + "CREATED": "20160804T194314Z", + "DESCRIPTION": "This Saturday\\, 8/6\\, we continue our canvassing efforts. Our recent effort in Boulder was quite successful\\, with 10 of us spreading the word and getting many people to agree to spread the word about our website and agree to have lawn signs on their lawns in the Fall. Lafayette folks will be equally responsive. Once people know a bit about ColoradoCare\\, they are very likely to be supportive. We have very attractive materials to hand out. If needed\\, you will get brief training but the work is quite easy. No \"getting into the weeds\".\\n\\nDetails:\\nTime: assemble at my home at 8:30. We will work until about 10 AM.\\nLocation: 372 Lodgewood Ln. in Lafayette (2 blocks NE of the 95th and S. Baseline intersection. Go east on S. Baseline and take an immediate north on Rendezvous. Take an immediate right and then drive around the small park. My home is cream and light blue in color.\\n\\nYes\\, it is a lot to ask to give up part of a summer Saturday morning to canvass. But\\, think about how proud you will feel when Coloradans vote YES on Amendment #69. \\n\\nSO\\, send me your RSVP at vbkarlin@gmail.com. (\"Yes\" only please)\\n\\nBarry\\n303.443.8121", + "LAST-MODIFIED": "20160804T194314Z", + "LOCATION": "372 Lodgewood Ln\\, Lafayette\\, CO 80026", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Lafayette: Colorado Canvassing", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160818T010000Z", + "DTEND": "20160818T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "b7k1635274q0a5nmshp8k8bkmk@google.com", + "CREATED": "20160712T224047Z", + "DESCRIPTION": "The Healing of Colorado: A Community Forum about Amendment 69 ColoradoCare\\,\" with T.R. Reid. Sponsored by League of Women Voters Health Sub-committee and Church and Society Committee\\, First United Methodist Church\\n\\nDiscussion will be led by T.R. Reid\\, best-selling author of The Healing of America: A Global Quest for Better\\, Cheaper\\, and Fairer Health Care\\, documentary filmmaker\\, and former reporter for the Washington Post.\\n\\nLocation: First United Methodist Church\\, 1005 Stover (corner of Stover and Elizabeth)\\, Fort Collins (For info about location and parking: 970-482-2436)\\n\\nContact: Kevin Mabry\\, kwmabry@gmail.com\\; 970-689-7432 ", + "LAST-MODIFIED": "20160804T193915Z", + "LOCATION": "First United Methodist Church\\, 1005 Stover St (corner of Stover and Elizabeth)\\, Fort Collins\\, CO 80524", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Fort Collins: \"The Healing of Colorado: A Community Forum about Amendment 69 ColoradoCare\\,\" with T.R. Reid", + "TRANSP": "OPAQUE", + "ATTACH;FILENAME=Community Forum Poster.pdf;FMTTYPE=application/pdf": "https://drive.google.com/file/d/0B5KsxPTT8ZESd1l0blpfRElCOWM/view?usp=drive_web" + }, + { + "DTSTART;VALUE=DATE": "20160805", + "DTEND;VALUE=DATE": "20160808", + "DTSTAMP": "20160926T041125Z", + "UID": "doj1rl81lak71euvrlmfa8u7ho@google.com", + "CREATED": "20160729T011811Z", + "DESCRIPTION": "We will pass out fliers at bus stop to/from town. Check out detailed information about this event: http://www.vertexfestival.com/", + "LAST-MODIFIED": "20160804T163939Z", + "LOCATION": "Cottownwood Meadows\\,14822 CR 350\\, Buena Vista\\, CO 81211", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Buena Vista: Madison House Presents_Vertex concert", + "TRANSP": "TRANSPARENT", + "X-APPLE-TRAVEL-ADVISORY-BEHAVIOR": "AUTOMATIC", + "VALARM": [ + { + "ACTION": "AUDIO", + "TRIGGER": "-PT15H", + "X-WR-ALARMUID": "21EBCADA-6022-4C36-B4BB-E554B8E56E22", + "UID": "21EBCADA-6022-4C36-B4BB-E554B8E56E22", + "ATTACH;VALUE=URI": "Basso", + "X-APPLE-DEFAULT-ALARM": "TRUE", + "ACKNOWLEDGED": "20160804T163939Z" + } + ] + }, + { + "DTSTART": "20160727T003000Z", + "DTEND": "20160727T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "i7nhnk3sqncodeth3g93odmo0c@google.com", + "CREATED": "20160724T140349Z", + "DESCRIPTION": "Craig City Council expects to hear from the opposition about taking a stance against Amendment 69. Please attend if you can to counter the opposition and speak up for ColoradoCare.", + "LAST-MODIFIED": "20160724T140349Z", + "LOCATION": "Craig Municipal Building\\, 300 W. Fourth St.\\, Craig\\, CO 81625", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Craig City Council\\, Opposition to 69 on the agenda", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160816T210000Z", + "DTEND": "20160816T220000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "o9muanrc8i01e0v0bhqc4l24vc@google.com", + "CREATED": "20160719T230416Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160719T230416Z", + "LOCATION": "Yampa Valley Medical Center\\, Conference Room 1. Central Park Drive\\, Steamboat Springs\\, CO 80487", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Routt County: Presentation to Human Resource Council", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160726T180000Z", + "DTEND": "20160726T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "o0du2121g2lruldbeh0ovueas4@google.com", + "CREATED": "20160719T230054Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160719T230054Z", + "LOCATION": "Steamboat Grand\\, 2300 Mt Werner Cir\\, Steamboat Springs\\, CO 80487", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Streamboat Springs Rotary: ColoradoCare debate", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160722T125000Z", + "DTEND": "20160722T135000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "citqt8v8qcnioqvl44q43aohf8@google.com", + "CREATED": "20160719T225624Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160719T225624Z", + "LOCATION": "The Memorial Hospital at Craig\\, 750 Hospital Loop\\, Craig\\, CO 81625", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Craig Rotary Club: Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160722T230000Z", + "DTEND": "20160723T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "6fr0s7tno54n6f2d9q78j2ppn0@google.com", + "CREATED": "20160719T204056Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160719T204056Z", + "LOCATION": "Lord of the Mountain Lutheran Church\\, 56 US-6\\, Dillon\\, CO 80435", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Dillon: ColoradoCare kickoff summit", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160722T003000Z", + "DTEND": "20160722T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "a31dtjc7ldusb7qa0arkc70sh8@google.com", + "CREATED": "20160717T184653Z", + "DESCRIPTION": "Contact Owen at Owen@ColoradoCare.org for details.", + "LAST-MODIFIED": "20160717T201515Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Webinar\\, Social Media", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Denver": "20160728T190000", + "DTEND;TZID=America/Denver": "20160728T200000", + "RRULE": "FREQ=WEEKLY;UNTIL=20160826T010000Z;INTERVAL=2;BYDAY=TH", + "EXDATE;TZID=America/Denver": "20160811T190000", + "DTSTAMP": "20160926T041125Z", + "UID": "o2bh3l4bcu9be2t073r8uph3i4@google.com", + "CREATED": "20160717T184111Z", + "DESCRIPTION": "Contact Owen at Owen@ColoradoCare.org for details.", + "LAST-MODIFIED": "20160717T184129Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Webinar -- Speakers Bureau Training", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160716T160000Z", + "DTEND": "20160716T170000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "o946iv0rdffdhd8forr0v6o1bg@google.com", + "CREATED": "20160706T213137Z", + "DESCRIPTION": "T.R. Reid will debate in support of ColoradoCare at the House District 2 Democrats monthly meeting. The meeting starts at 10\\, with coffee and breakfast treats at 9:30. The debate is a portion of the agenda\\, and is tentatively slated to start around 10:30.", + "LAST-MODIFIED": "20160715T001023Z", + "LOCATION": "Washington Street Community Center\\, 809 S Washington St\\, Denver\\, CO 80209", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: T.R. Reid Debate on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160716T150000Z", + "DTEND": "20160716T163000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "jqd3qffg8en6munfclfs9ac2bc@google.com", + "CREATED": "20160715T000850Z", + "DESCRIPTION": "Joe Rogers will speak about ColoradoCare alongside an opposition speaker. Please come and show your support or learn about the issue.", + "LAST-MODIFIED": "20160715T000850Z", + "LOCATION": "Holy Shepherd Lutheran Church\\, 920 Kipling St.\\, Lakewood\\, CO 80215", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Lakewood\\, Ward 1 Monthly Meeting with ColoradoCare on the Agenda", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160723T220000Z", + "DTEND": "20160724T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "lisddfnrk2p659msfdsk46m7sk@google.com", + "CREATED": "20160713T224650Z", + "DESCRIPTION": "See detailed info: http://chaffeecountydemocrats.org/", + "LAST-MODIFIED": "20160713T224650Z", + "LOCATION": "Bill Dvorak Raft, Kayak, SUP & Fishing Expeditions\\, 17921 US-285\\, Nathrop\\, CO 81236", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Nathrop: Democratic Party Annual BBQ/Fundraiser", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160809T234500Z", + "DTEND": "20160810T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "7emt5mr4nkjs42acju98mghvr0@google.com", + "CREATED": "20160713T220423Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160713T220645Z", + "LOCATION": "Fruita Community Center - Community Room\\, 324 N Coulson St\\, Fruita\\, CO 81521", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Fruita: Presentation on ColoradoCare", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160712T223000Z", + "DTEND": "20160713T000000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "4sescf9ru1ktspklf77mek5l3c@google.com", + "CREATED": "20160713T220405Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160713T220405Z", + "LOCATION": "Palisade Library\\, 119 W 3rd St\\, Palisade\\, CO 81526", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Palisade: Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160714T000000Z", + "DTEND": "20160714T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "focbnqjrqdojimmdc5v750dokc@google.com", + "CREATED": "20160713T220246Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160713T220246Z", + "LOCATION": "Mesa County Central Library Monument Room\\, 443 N 6th Street\\, Grand Junction\\, CO 81501", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Grand Junction: Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160714T000000Z", + "DTEND": "20160714T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "qd1imset1j334ho37deqt4att4@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160711T025224Z", + "DESCRIPTION": "Contact Owen Perkins at Owen@ColoradoCare.org or Ricki Hadow at Ricki@ColoradoCare.org for more information on participating in our Speakers Bureau webinar.", + "LAST-MODIFIED": "20160713T013928Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Webinar -- Speakers Bureau Training", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160715T011500Z", + "DTEND": "20160715T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "8rkg0499tm2mqf8pg68ackc6ls@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160712T205911Z", + "DESCRIPTION": "Write Owen@ColoradoCare.org for details.", + "LAST-MODIFIED": "20160713T013913Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Webinar -- Engage! Team Training", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160726T233000Z", + "DTEND": "20160727T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "39m60ub2fpv3hi86jk1lhteku0@google.com", + "CREATED": "20160706T215519Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160713T013212Z", + "LOCATION": "Station 26 Brewery Co\\, 7045 E 38th Ave\\, Denver\\, CO 80207", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Presentation on Denver Young Dems Forum", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160714T200000Z", + "DTEND": "20160714T213000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "qmnok8u2at0l4j2sjkppdbrck8@google.com", + "CREATED": "20160706T213007Z", + "DESCRIPTION": "speaker: Dave Beckwith", + "LAST-MODIFIED": "20160713T012931Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Lakewood: Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160728T003000Z", + "DTEND": "20160728T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "079l68amgo2t0ocpk3ptqiucjc@google.com", + "CREATED": "20160712T175716Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160712T175716Z", + "LOCATION": "Pikes Peak Library District - Penrose Library\\, 20 N Cascade Ave\\, Colorado Springs\\, CO 80903", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado Springs -- ColoradoCare Volunteer Meeting", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160720T000000Z", + "DTEND": "20160720T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9lvs50go5mlfpind9h0l2vdij8@google.com", + "CREATED": "20160711T071732Z", + "DESCRIPTION": "A debate sponsored by the League of Women Voters of Weld County.", + "LAST-MODIFIED": "20160711T071732Z", + "LOCATION": "Farr Regional Library\\, 1939 61st Ave\\, Greeley\\, CO 80634", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Greeley\\, TR Reid debates for YES on Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160729T004500Z", + "DTEND": "20160729T021500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "hp8v4ded012tinn33sn09olhes@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160710T152711Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160710T170726Z", + "LOCATION": "Boulder Public Library - Main Library\\, Arapahoe Avenue - Flagstaff Room\\, Boulder\\, CO 80302", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Meet-up Talk: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160728T231500Z", + "DTEND": "20160729T004500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "s4dfju6rard5ob721j602evhlo@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160710T152543Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160710T170710Z", + "LOCATION": "Boulder Public Library - Main Library\\, Arapahoe Avenue - Flagstaff Room\\, Boulder\\, CO 80302", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Meet-up Talk: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160708T000000Z", + "DTEND": "20160708T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9nn5u25fspq3k3mnem23rhvl1k@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160706T195740Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160707T230753Z", + "LOCATION": "Idaho Springs library\\, 219 14th Ave\\, Idaho Springs\\, CO 80452", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Idaho Springs: Presentation on ColoradoCare", + "TRANSP": "OPAQUE", + "ATTACH;FILENAME=Amendment 69_Idaho Springs flyer.pdf": "https://drive.google.com/file/d/0B5KsxPTT8ZESQnNlWk51eUp2Mnc/view?usp=drive_web", + "X-APPLE-TRAVEL-ADVISORY-BEHAVIOR": "AUTOMATIC", + "VALARM": [ + { + "ACTION": "NONE", + "TRIGGER;VALUE=DATE-TIME": "19760401T005545Z", + "X-WR-ALARMUID": "B797B4C4-B810-45DA-BE76-0135103AA4C5", + "UID": "B797B4C4-B810-45DA-BE76-0135103AA4C5", + "ACKNOWLEDGED": "20160707T230733Z", + "X-APPLE-DEFAULT-ALARM": "TRUE" + } + ] + }, + { + "DTSTART": "20160629T133000Z", + "DTEND": "20160629T143000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "rq7e6cnblkaa0bmch9bhuo392o@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160516T051314Z", + "DESCRIPTION": "T.R. Reid is current Chair of the Colorado Foundation for Universal Health Care and former Washington Post bureau chief in Tokyo and London. He is author of the NY Times bestseller\\, The Healing of America: A Global Quest for Better\\, Cheaper\\, and Fairer Health Care\\, and known for his PBS documentary film\\, Sick Around the World.", + "LAST-MODIFIED": "20160518T030456Z", + "LOCATION": "Wallbangers Sports Bar & Grill\\, 720 US-50\\, Salida\\, CO 81201", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Sunrise Rotary-TR Reid\\, guest speaker", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160524T231500Z", + "DTEND": "20160525T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "r3jueq62at2i8ndjg8mijvkp28@google.com", + "CREATED": "20160516T050034Z", + "DESCRIPTION": "Where: The Tired House B&B\\n CR 109 is located on Highway 50 between Dr. Erickson's dental office and Anderson Motor. Turn south on CR 109. After the dead end sign\\, turn left into 7135 residence/B&B.\\n\\n The local volunteer committee for ColoradoCare Yes! is hosting a Volunteer ColoradoCare Training followed by a Speakers Training for individuals who are interested in getting more involved in the initiative and educating others about ColoradoCare.\\n\\nThe primary purpose of the volunteer training is to provide information about ColoradoCare. Volunteers are needed to promote ColoradoCare education to friends\\, neighbors\\, businesses\\, and at various outreach venues. Prior to the November election\\, we need to increase our volunteer capacity so accurate information is disseminated to the public.\\n\\n An example of a volunteer activity: a 2- hour shift at either the Buena Vista or the Salida Farmers Market to provide ColoradoCare education through conversation and/or a ColoradoCare flyer or other printed materials. Each farmers market will have two volunteers\\, one at a table and the other circulating through the market. \\n\\n An example of a speaker activity: speak to a local organization\\, church\\, business\\, or neighborhood group.\\n\\n Volunteers will also be needed for additional outreach venues that are being planned.\\n\\n We hope you will join us for a potluck dinner and training!\\n\\n Please RSVP to Joe Lyford: 719-221-6764 or joehlyfordjr@gmail.com\\n", + "LAST-MODIFIED": "20160516T050034Z", + "LOCATION": "Tired House B&B\\, 7135 County Road 109\\, Salida\\, CO 81201", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Salida: Volunteer Training\\, ColoradoCareYES", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160519T000000Z", + "DTEND": "20160519T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ginhed2umcuulq680lfdkdj458@google.com", + "CREATED": "20160514T174838Z", + "DESCRIPTION": "End-of-session Town Hall Meeting with Senator Irene Aguilar and Representative Susan Lontine\\, two ColoradoCare supporters. A good opportunity to engage with other like-minded potential campaign volunteers.", + "LAST-MODIFIED": "20160514T174854Z", + "LOCATION": "Harvey Park Rec Center\\, 2120 S Tennyson Way\\, Denver\\, CO 80219", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver Outreach Opportunity at Aguilar/Lontine Town Hall Meeting", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160518T003000Z", + "DTEND": "20160518T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "76mc2poqesfe30odli9r6p0ids@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160504T173403Z", + "DESCRIPTION": "For anyone interested in joining the ColoradoCare Speakers Bureau\\, join us for a training session in Lowery. If you've already had training but would like a refresher\\, please feel free to join us!", + "LAST-MODIFIED": "20160512T080341Z", + "LOCATION": "Lowery -- RSVP for location", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver Speakers Training", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160526T180000Z", + "DTEND": "20160526T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ptp9l6qdij2um9lpjkl7217nb4@google.com", + "CREATED": "20160512T062121Z", + "DESCRIPTION": "A presentation to the Florence Rotary Club.", + "LAST-MODIFIED": "20160512T062122Z", + "LOCATION": "Two Sisters Restaurant\\, 104 E Main St\\, Florence\\, CO 81226", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Florence -- Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160525T000000Z", + "DTEND": "20160525T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "euvvjibke02q1kla0fm1l4fds8@google.com", + "CREATED": "20160512T061045Z", + "DESCRIPTION": "T.R. Reid gives an overview of ColoradoCare to DU students\\, open to the public.", + "LAST-MODIFIED": "20160512T061045Z", + "LOCATION": "2199 S University Blvd\\, Denver\\, CO 80208", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver -- TR Reid discusses ColoradoCare with DU students", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160522T190000Z", + "DTEND": "20160522T203000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "nqf2nlgj9r20jrksn80klp2sp4@google.com", + "CREATED": "20160512T060425Z", + "DESCRIPTION": "Presentation to the congregation\\, open to the public.", + "LAST-MODIFIED": "20160512T060448Z", + "LOCATION": "Unitarian Universalist Church\\, 5001 Pennsylvania Ave.\\, Boulder\\, CO 80303", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder -- Senator Irene Aguilar presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160521T153000Z", + "DTEND": "20160521T173000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "h8tvnsoan1qetk68qjn499t8m8@google.com", + "CREATED": "20160512T055718Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160512T055718Z", + "LOCATION": "Pikes Peak Library District - East Library\\, 5550 N Union Blvd\\, Colorado Springs\\, CO 80918", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado Springs -- League of Women Voters presentation on Colorado with Senator Jeanne Nicholson", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160520T150000Z", + "DTEND": "20160520T160000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "kva613fjs3q5dj9mldu45vvuqs@google.com", + "CREATED": "20160512T055535Z", + "DESCRIPTION": "Senator Irene Aguilar gives a presentation on ColoradoCare as part of the Gold Lab Symposium.", + "LAST-MODIFIED": "20160512T055535Z", + "LOCATION": "Muenzinger Auditorium\\, CU Boulder\\, Boulder\\, CO 80309", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder -- Irene Aguilar presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160518T000000Z", + "DTEND": "20160518T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "mhoq3tj1rjquqqliofa39as33s@google.com", + "CREATED": "20160512T055324Z", + "DESCRIPTION": "Senator Jeanne Nicholson gives a presentation on ColoradoCare.", + "LAST-MODIFIED": "20160512T055324Z", + "LOCATION": "2821 S Parker Rd\\, Aurora\\, CO 80014", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora -- District Nurses Association #16 Presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160521T180000Z", + "DTEND": "20160521T200000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "rcth3btrabq32e5brdu3oghqh0@google.com", + "CREATED": "20160507T064326Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160507T064523Z", + "LOCATION": "Baerresen Ballroom (Room 320)\\, Tivoli at Auraria Campus\\, 900 Auraria Blvd\\, CO 80204", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver Voter Outreach Opportunity -- CD1 Debate\\, DeGette-Norris\\, Hosted by Denver Young Dems", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160505T000000Z", + "DTEND": "20160505T024500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "bugre1kqd12rev6ban0og6rje4@google.com", + "CREATED": "20160502T070533Z", + "DESCRIPTION": "Get an overview of ColoradoCare along with training on very aspects of the campaign\\, including organizing in your community\\, speaking on behalf of ColoradoCare\\, and more....", + "LAST-MODIFIED": "20160502T070534Z", + "LOCATION": "Mercury Cafe\\, 2199 California St\\, Denver\\, CO 80205", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver -- ColoradoCare Training Session", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160426T221500Z", + "DTEND": "20160427T000000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "n70cnbulv7jobbm51ev9d35g2g@google.com", + "CREATED": "20160308T220725Z", + "DESCRIPTION": "Presentation to the Heather Gardens Democratic Club. TIME TBD.", + "LAST-MODIFIED": "20160427T001650Z", + "LOCATION": "Rendezvous Restaurant\\, 2888 S Heather Gardens Way\\, Aurora\\, CO 80014", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora\\, Heather Gardens Democratic Club Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160415T003000Z", + "DTEND": "20160415T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ment8ps9950rgnd2ag3u5991c8@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160406T013851Z", + "DESCRIPTION": "Room: ECCR 1B40\\nSpeaker: T.R. Reid\\nDate: Thursday\\, April 14\\nTime: 6.30pm - 8pm", + "LAST-MODIFIED": "20160407T175302Z", + "LOCATION": "Engineering Center\\, 1111 Engineering Dr\\, Boulder\\, CO 80309", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder: T.R. Reid on ColoradoCare @ CU", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160418T233000Z", + "DTEND": "20160419T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "3ocfgcj1gc705qer6ogi79vg48@google.com", + "CREATED": "20160406T122704Z", + "DESCRIPTION": "Open to the public. One of three listed items on the meeting agenda.", + "LAST-MODIFIED": "20160406T122704Z", + "LOCATION": "Sterling Public Library\\, 420 N 5th St\\, Sterling\\, CO 80751", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Sterling\\, Presentation to Logan County Citizens Oversight Committee", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160408T180000Z", + "DTEND": "20160408T210000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "e91m52arfg5nniprom132pj9ks@google.com", + "CREATED": "20160406T120848Z", + "DESCRIPTION": "Stay tuned for updated on times. The event is scheduled for 2:30\\, which means doors will probably open by 1 and close around 2\\, and lines will probably form by noon or earlier.", + "LAST-MODIFIED": "20160406T120848Z", + "LOCATION": "Student Recreation Center\\, 1835 Pleasant St\\, Boulder\\, CO 80302", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Voter Outreach\\, VP Joe Biden at CU", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160413T010000Z", + "DTEND": "20160413T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "oovj10c5lbjem20rpftnpihsqo@google.com", + "CREATED": "20160402T154137Z", + "DESCRIPTION": "Roger Ratcliff and Donna Young will explain Amendment 69\\, which will be on the 2016 ballot in Colorado. After the program there will be time to answer questions. ", + "LAST-MODIFIED": "20160402T154137Z", + "LOCATION": "John C. Fremont Library\\, 130 Church Ave\\, Florence\\, CO 81226", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Florence Amendment 69 ColoradoCare Presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160329T003000Z", + "DTEND": "20160329T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "thed9itc8q74s595ftkgq6n53o@google.com", + "CREATED": "20160326T135534Z", + "DESCRIPTION": "The American Association of University Women host a presentation on ColoradoCare.. Public is welcome. If you're interested in attending\\, please check back here for an update on the status of the event. Last week's blizzard has triggered some rescheduling dominos.", + "LAST-MODIFIED": "20160326T144813Z", + "LOCATION": "Loveland Public Library\\, 300 N. Adams Ave.\\, Loveland\\, CO 80537", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Loveland -- Presentation (Check for update of event status)", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160324T233000Z", + "DTEND": "20160325T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "huubta2as5kj4ko9daottimm24@google.com", + "CREATED": "20160311T061927Z", + "DESCRIPTION": "T.R. Reid speaks about ColoradoCare\\, Amendment 69 on the November ballot\\, in a presentation sponsored by the League of Women Voters of La Plata County.", + "LAST-MODIFIED": "20160323T012408Z", + "LOCATION": "Durango Public Library\\, 1900 E 3rd Ave\\, Durango\\, CO 81301", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Durango -- TR Reid Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160323T233000Z", + "DTEND": "20160324T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "1vvgu9f5r002dgavrbp39tgkg0@google.com", + "CREATED": "20160323T011754Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160323T011754Z", + "LOCATION": "the Holiday Inn Express\\, 1391 S. Townshend Ave.\\, Montrose\\, CO 81401", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Montrose -- TR Reid presentation at the Holiday Inn Express", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160321T180000Z", + "DTEND": "20160321T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "6rrf13gceiv3ibbqma6atsofns@google.com", + "CREATED": "20160320T002802Z", + "DESCRIPTION": "Opportunity to reach voters with literature and messaging about CoradoCare\\, Amendment 69. Voters will be gathered to demonstrate at Senator Cory Gardner's district offices throughout the state.\\n\\nSenator Cory Gardner's DIstrict Offices:\\n\\nDenver: 1125 17th St.\\, Suite 800 (Chase Bank building) \\nColorado Springs: 102 S. Tejon St.\\, Suite 930\\nFort Collins: (unknown address)\\nGrand Junction: 400 Rood Ave.\\, Federal Bldg.\\, Ste. 220\\nGreeley: 801 8th St.\\, Ste. 140A\\nPueblo: 503 N. Main St.\\, Ste. 426\\nYuma: 529 N. Albany St.\\, Ste. 1220", + "LAST-MODIFIED": "20160321T153402Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado voter outreach -- speak to voters demonstrating at Senator Cory Gardner's office", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160415T010000Z", + "DTEND": "20160415T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "k98bou5eod1h6iegd0dq0a2vvc@google.com", + "CREATED": "20160314T203022Z", + "DESCRIPTION": "Amendment 69 ColoradoCare Presentation\\, La Junta Community Conversation\\, Thursday April 14\\, 7pm at the Barista Coffee Shop\\, 204 Santa Fe Ave\\, La Junta \\n\\nPresenters: Roger Ratcliff and / or Donna Young\\n\\nrogeraratcliff@gmail.com", + "LAST-MODIFIED": "20160314T203022Z", + "LOCATION": "Barista Coffee Shop\\, 204 Santa Fe Ave\\, La Junta\\, CO 81050", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "La Junta\\, Amendment 69 Presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160508T190000Z", + "DTEND": "20160509T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "m8obivliuu8ri0ab0g1917c6fc@google.com", + "CREATED": "20160312T170628Z", + "DESCRIPTION": "ColoradoCare Outreach Tent/Information Booth\\n\\nLocation:\\nM. City Lounge\\n515 South 7th Street\\nGrand Junction", + "LAST-MODIFIED": "20160314T064909Z", + "LOCATION": "515 S 7th St\\, Grand Junction\\, CO 81501", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Grand Junction: Colorado West Pride Fest 2016", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160507T160000Z", + "DTEND": "20160508T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "vobq3honqhvaqb4vohpo805878@google.com", + "CREATED": "20160312T170327Z", + "DESCRIPTION": "ColoradoCare Outreach Tent: Public Information\\n\\nSpanish-speaking volunteers needed!", + "LAST-MODIFIED": "20160314T064715Z", + "LOCATION": "Main Street\\, Main St\\, Grand Junction\\, CO 81501", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Grand Junction: Cinco de Mayo", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160314T173000Z", + "DTEND": "20160314T183000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "5vka9gnfbidu22m7s1tdfksmpo@google.com", + "CREATED": "20160310T013200Z", + "DESCRIPTION": "Organizing for those interested in promoting ColoradoCare from a business viewpoint", + "LAST-MODIFIED": "20160313T233443Z", + "LOCATION": "con-call 302-202-1119 code 542996", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Business for ColoCare-conference call", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160319T010000Z", + "DTEND": "20160319T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "lppelghrtnc4d8u1m6qd1nlr5c@google.com", + "CREATED": "20160312T001521Z", + "DESCRIPTION": "Jeanne Nicholson will give an overview presentation on Amendment 69 ColoradoCare. Amendment 69 will be on the November 2016 ballot in Colorado.", + "LAST-MODIFIED": "20160312T001731Z", + "LOCATION": "1315 E 7th Street\\, Pueblo\\, CO 81001", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Pueblo\\, Amendment 69 ColoradoCare presentation by Jeanne Nicholson", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160414T003000Z", + "DTEND": "20160414T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ogjgig0tes6ev42kil36oe0ndo@google.com", + "CREATED": "20160311T184423Z", + "DESCRIPTION": "Anthem Democrats monthly meeting\\, featuring a presentation from Dave Beckwith on ColoradoCare. Meet and greet at 6:30\\, other business (including hearing from candidates) at 7\\, and ColoradoCare at 7:30. ", + "LAST-MODIFIED": "20160311T184423Z", + "LOCATION": "Aspen Lodge\\, 16151 Lowell Blvd.\\, Broomfield\\, CO 80023", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Broomfield -- Anthem Ranch Democrats Presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160319T160000Z", + "DTEND": "20160319T173000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "rgmv0fhruuf0nu43qsg540evug@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160229T003705Z", + "DESCRIPTION": "Speaker: Senator Irene Aguilar\\, MD\\n\\nLocation: 1st. United Methodist Church\\, the Parlor Room\\, 1421 Spruce St.\\, Boulder 80302\\n\\nOpen to the public.\\n", + "LAST-MODIFIED": "20160311T084214Z", + "LOCATION": "First United Methodist Church\\, 1421 Spruce St\\, Boulder\\, CO 80302", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder County Aids Proj. & Beacon Clinic", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160320T190000Z", + "DTEND": "20160320T203000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "bkpdisasg8f4hdm50b7fnu4q18@google.com", + "CREATED": "20160311T064949Z", + "DESCRIPTION": "Presentation on ColoradoCare to the Teller County Dems. Free and open to the public.", + "LAST-MODIFIED": "20160311T065005Z", + "LOCATION": "Woodland Park Library\\, 218 E Midland Ave\\, Woodland Park\\, CO 80863", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Woodland Park -- Teller County Dems Presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160408T010000Z", + "DTEND": "20160408T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "6hecmrqjhvijnschehgr9s7si4@google.com", + "CREATED": "20160311T055642Z", + "DESCRIPTION": "T.R. Reid presentation on ColoradoCare\\, hosted by the Clear Creek Democrats.", + "LAST-MODIFIED": "20160311T055642Z", + "LOCATION": "United Center Inc\\, 1440 Colorado Blvd\\, Idaho Springs\\, CO 80452", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Idaho Springs -- TR Reid Presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160326T000000Z", + "DTEND": "20160326T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "0c52t1l0rvendmftq3d0kbsc5c@google.com", + "CREATED": "20160311T055403Z", + "DESCRIPTION": "T.R. Reid will show his film\\, Sick Around the World\\, and give a presentation on ColoradoCare\\, Amendment 69 on the November ballot. Hosted by the League of Women Voters of Montezuma County.", + "LAST-MODIFIED": "20160311T055403Z", + "LOCATION": "Sunflower Theater\\, 8 E Main St\\, Cortez\\, CO 81321", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Cortez -- TR Reid screening of Sick Around the World and presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160422T003000Z", + "DTEND": "20160422T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "hl0dh58jfq430qt6d5idk82ut0@google.com", + "CREATED": "20160310T154415Z", + "DESCRIPTION": "6:30 dinner\\; 7:00 ColoradoCare 5 min. presentation (competition for donations)", + "LAST-MODIFIED": "20160311T041712Z", + "LOCATION": "SteamPlant\\, 220 W Sackett Ave\\, Salida\\, CO 81201", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Salida Soup", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160323T140000Z", + "DTEND": "20160323T153000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "qbv89gsmke10jvghk6vj412hv8@google.com", + "CREATED": "20160311T010703Z", + "DESCRIPTION": "T.R. Reid will be the special guest to speak about ColoradoCare\\, Amendment 69\\, at the weekly Montrose Business Breakfast.", + "LAST-MODIFIED": "20160311T010703Z", + "LOCATION": "Heidi's Brooklyn Deli\\, 1521 Oxbow Dr #105\\, Montrose\\, CO 81401", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Montrose -- TR Reid at the Montrose Business Breakfast", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160323T010000Z", + "DTEND": "20160323T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "6hapitk40cj5idkhe52afi91t0@google.com", + "CREATED": "20160311T010428Z", + "DESCRIPTION": "T.R. Reid will speak about ColoradoCare\\, Amendment 69\\, and universal health care models around the world. Sponsored by the League of Women Voters\\, Mesa County.", + "LAST-MODIFIED": "20160311T010441Z", + "LOCATION": "Student Union Ballroom, Colorado Mesa University (2nd floor)\\, 1100 North Ave\\, Grand Junction\\, CO 81501", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Grand Junction -- T.R. Reid Presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160319T200000Z", + "DTEND": "20160319T223000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "2m601brqi5t9gp11seb68rule8@google.com", + "CREATED": "20160309T231514Z", + "DESCRIPTION": "Jeanne Nicholson will give an overview presentation on Amendment 69 ColoradoCare. Amendment 69 will be on the November 2016 ballot in Colorado.", + "LAST-MODIFIED": "20160311T010056Z", + "LOCATION": "21 C Public Library (Upper Level)\\, 1175 Chapel Hills Dr.\\, Colorado Springs\\, CO 80920", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado Springs Amendment 69 ColoradoCare Presentation by Jeanne Nicholson", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160329T170000Z", + "DTEND": "20160329T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "923e04ttaig8bibebceb9eufs4@google.com", + "CREATED": "20160310T203244Z", + "DESCRIPTION": "Rich Shannon will speak on behalf of ColoradoCare in a \"point-counter point\" presentation.. ", + "LAST-MODIFIED": "20160311T002220Z", + "LOCATION": "Embassy Suites Loveland Conference Center\\, 4705 Clydesdale Parkway\\, Loveland\\, CO 80538", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Loveland\\, Health Care in Your Future Summit", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160322T010000Z", + "DTEND": "20160322T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "7b8qvrao89db5tnn6l902a579c@google.com", + "CREATED": "20160305T181914Z", + "DESCRIPTION": "with special guest\\, Senator Irene Aguilar", + "LAST-MODIFIED": "20160311T001917Z", + "LOCATION": "Rocky Mountain Hospital for Children\\, 2001 N. High St.\\, Denver\\, CO 80205", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver\\, Voter Outreach & Info Forum\\, Beth McCann Town Hall on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160317T000000Z", + "DTEND": "20160317T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "hs2itiou70lpr7np8gbdqn1j7g@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160229T005131Z", + "DESCRIPTION": "Whittier neighborhood\\, 29th and Downing\\, Denver\\, CO 80205", + "LAST-MODIFIED": "20160311T001150Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Whittier Neighborhood Meeting", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160629T010000Z", + "DTEND": "20160629T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "qmhquk0s0n3ohsd0kbu6i3rcrs@google.com", + "CREATED": "20160306T061548Z", + "DESCRIPTION": "Film showing followed by T.R. Reid\\, speaker", + "LAST-MODIFIED": "20160310T224714Z", + "LOCATION": "SteamPlant\\, 220 W Sackett Ave\\, Salida\\, CO 81201", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Salida -- Documentary film\\, \"Sick Around the World\"", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160314T193000Z", + "DTEND": "20160314T200000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "o0hvj44dfrmtaqkjmvsopbdt2s@google.com", + "CREATED": "20160310T154150Z", + "DESCRIPTION": "Marilyn Bouldin presentation to Commissioners", + "LAST-MODIFIED": "20160310T224632Z", + "LOCATION": "Chaffee County Courthouse\\, 104 Crestone Ave.\\, Salida\\, CO 81201", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Chaffee County Commissioners work session", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160314T000000Z", + "DTEND": "20160314T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "k23144j5tbs8qv3pc5qoaec49k@google.com", + "CREATED": "20160310T222926Z", + "DESCRIPTION": "Dr. Christine Ebert-Santos will share information about ColoradoCare -- Amdendment 69 -- at a small gathering at her house. Food\\, wine\\, and good sicussion. Frisco Town Council candidate Deborah Shaner will also attend.", + "LAST-MODIFIED": "20160310T222926Z", + "LOCATION": "Home of Dr. Christine Ebert-Santos\\, 28 Hawn Drive\\, Frisco\\, CO 80443", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Frisco House Party", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160402T160000Z", + "DTEND": "20160402T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "aos6chnhoa4dqf304jsolkckt0@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160310T202540Z", + "DESCRIPTION": "T.R. Reid will speak in the Stapleton/Park Hill area. Details TBA.", + "LAST-MODIFIED": "20160310T202624Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Stapleton Foundation's Be Well Initiative", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160418T230000Z", + "DTEND": "20160419T003000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "k9hg8i2p5mskvmb2jih2lc958c@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160229T004119Z", + "DESCRIPTION": "League of Women Voters Denver\\nThe League of Women Voters of Denver\\, a nonpartisan\\, grassroots organization\\, has fought since the 1930s to improve our systems of government and impact public policies through education and advocacy.\\n\\nSpeaker: Irene Aguilar\\, MD\\n", + "LAST-MODIFIED": "20160310T081558Z", + "LOCATION": "Montview Presbyterian Church\\, 1980 Dahlia Street\\, Denver\\, CO 80220", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver LWV Presentaton", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160407T230000Z", + "DTEND": "20160408T003000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "7bkval501tak2qe512ngvecv3c@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160229T004030Z", + "DESCRIPTION": "Speaker: Senator Irene Aguilar\\, MD\\n\\nLocation:\\nRendezvous Restaurant\\n2888 S Heather Gardens Way\\nAurora\\, CO 80014\\n\\nOpen to the public.\\n", + "LAST-MODIFIED": "20160310T081507Z", + "LOCATION": "Rendezvous Restaurant\\, 2888 S Heather Gardens Way\\, Aurora\\, CO 80014", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Aurora LWV: Update on Colorado Cares and Mental Health Funding", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160310T153000Z", + "DTEND": "20160310T203000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9os0d2pjgvvc88mi72fub15ur0@google.com", + "CREATED": "20160304T031049Z", + "DESCRIPTION": "Good opportunity to have a presence and spread the word about ColoradoCare. Senator Aguilar and Representative Ginal will be speaking on a panel from 12:15 - 1:15.", + "LAST-MODIFIED": "20160310T081011Z", + "LOCATION": "First Baptist Church\\, 1373 Grant Street\\, Denver\\, CO 80203", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Voter Outreach -- Health Care Day of Action", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160316T233000Z", + "DTEND": "20160317T003000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "q6hjkm23nsfan4bdu2nt92m15g@google.com", + "CREATED": "20160228T173437Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160310T043031Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "T.R. Reid House Party", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160318T213000Z", + "DTEND": "20160318T223000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "dtjn0ma7l3r8h1h3prgk35e6q0@google.com", + "CREATED": "20160309T174738Z", + "DESCRIPTION": "Jeanne Nicholson will give an overview presentation on Amendment 69 ColoradoCare. Amendment 69 will be on the November 2016 ballot in Colorado. (719) 269-9020", + "LAST-MODIFIED": "20160310T034822Z", + "LOCATION": "516 Macon Ave\\, Canon City\\, CO 81212", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Canon City\\, Presentation on Amendment 69 ColoradoCare by Jeanne Nicholson", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Denver": "20160106T190000", + "DTEND;TZID=America/Denver": "20160106T194500", + "RRULE": "FREQ=WEEKLY;UNTIL=20160303T020000Z;BYDAY=WE", + "DTSTAMP": "20160926T041125Z", + "UID": "285klpvnf2ctdhhg39ro6b9rsc@google.com", + "CREATED": "20160229T002537Z", + "DESCRIPTION": "Join us every Wednesday at 7:00pm for an introduction to ColoradoCare\\, information on upcoming events\\, and an open Q&A session.\\n\\nCall 302-202-1110 and key in 941687 when prompted for the access code.", + "LAST-MODIFIED": "20160308T231515Z", + "LOCATION": "Call 302-202-1110 and key in 941687 when prompted", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Community Call-in", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160302T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "oenlvttu29gi1fi01lgenii980@google.com", + "CREATED": "20160229T004820Z", + "DESCRIPTION": "Open to the public.", + "LAST-MODIFIED": "20160303T210714Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "County Caucuses", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160306T190000Z", + "DTEND": "20160306T230000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "tlhdmh3ccobebct7hruo3j4ba8@google.com", + "CREATED": "20160301T164755Z", + "DESCRIPTION": "This is an event sponsored by the Bernie Sanders campaign in Colorado to introduce candidates to Bernie voters. It's a good opportunity to reach voters about ColoradoCare. Denver's DA candidates will be there\\, along with candidates for CU Regent\\, both houses of the State Assembly\\, and more", + "LAST-MODIFIED": "20160301T165820Z", + "LOCATION": "Mercury Cafe\\, 2199 California St\\, Denver\\, CO 80205", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Voter Outreach--Candidate Forum", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;VALUE=DATE": "20160228", + "DTEND;VALUE=DATE": "20160229", + "DTSTAMP": "20160926T041125Z", + "UID": "jq30pl8ss3qqs7uib2gq1ujlro@google.com", + "CREATED": "20160229T004719Z", + "DESCRIPTION": "Speaker: Jeanne Nicholson", + "LAST-MODIFIED": "20160229T004719Z", + "LOCATION": "Nederland Community Center - Roosevelt National Forest\\, 50 Forest Rd\\, Nederland\\, CO 80466", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Presentation in Nederland", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160302T190000Z", + "DTEND": "20160302T220000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "35s3v4mrtd4hp52g3ghos46jo0@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160229T003622Z", + "DESCRIPTION": "Benjamin Rush Institute (BRI): The Benjamin Rush Institute is a non-profit health-care policy organization at CU Denver.\\n\\nAgenda: Informational session followed by debate\\n\\nPanelists: T.R. Reid and Irene Aguilar\\, MD\\n\\nCU Denver students only.", + "LAST-MODIFIED": "20160229T003959Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "CU Denver BRI Presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160223T140000Z", + "DTEND": "20160223T163000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "0ifcdpkgmk7bu5ecma51l4r4ng@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160229T003417Z", + "DESCRIPTION": "Panelist: Irene Aguilar\\, MD\\n\\nRegister at: http://cwlb.org\\n\\nMore Information: See attachment.", + "LAST-MODIFIED": "20160229T003550Z", + "LOCATION": "Denver Consistory\\, 1370 Grant St\\, Denver\\, CO 80203", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado Women's Legislative Breakfast", + "TRANSP": "OPAQUE", + "ATTACH;FILENAME=CWLBflyer-2016.pdf": "https://drive.google.com/file/d/0B2ioM1QJEE9kOWhMdG92U2cxYm8/view?usp=drive_web" + }, + { + "DTSTART;VALUE=DATE": "20160216", + "DTEND;VALUE=DATE": "20160217", + "DTSTAMP": "20160926T041125Z", + "UID": "q6pdrbje3qb1due2jkete48e14@google.com", + "CREATED": "20160229T003356Z", + "DESCRIPTION": "Speaker: Irene Aguilar\\, MD\\n\\nPrivate Event.", + "LAST-MODIFIED": "20160229T003356Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "BVIPA Presentation", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160209T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "thika5i6l8a1phkukfbrd72in0@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160229T003219Z", + "DESCRIPTION": "Speaker: Jeanne Nicholson", + "LAST-MODIFIED": "20160229T003331Z", + "LOCATION": "St Andrews Village\\, 13801 E Yale Ave\\, Aurora\\, CO 80014", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Presentation @ St Andrew's Village", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;VALUE=DATE": "20160204", + "DTEND;VALUE=DATE": "20160205", + "DTSTAMP": "20160926T041125Z", + "UID": "ejeuhlt8huse807g9252h4imk8@google.com", + "CREATED": "20160229T003148Z", + "DESCRIPTION": "Speaker: Senator Irene Aguilar\\, MD\\n\\nPrivate event.", + "LAST-MODIFIED": "20160229T003148Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado Springs Medical-Legal Ethics Club", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160127T013000Z", + "DTEND": "20160127T043000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "gm6ni4o3kv18bg3i46h7cib4nc@google.com", + "CREATED": "20160229T002927Z", + "DESCRIPTION": "See attachment.", + "LAST-MODIFIED": "20160229T003115Z", + "LOCATION": "Summit County Road & Bridge\\, 218 County Rd 1003\\, Frisco\\, CO 80443", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Moderated Educational Community Forum", + "TRANSP": "OPAQUE", + "ATTACH;FILENAME=yesforum.png": "https://drive.google.com/file/d/0B2ioM1QJEE9kUVVsVnBORTROamc/view?usp=drive_web" + }, + { + "DTSTART": "20160123T163000Z", + "DTEND": "20160123T220000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "mh5jjauqve3cmnpm23empogies@google.com", + "CREATED": "20160229T002904Z", + "DESCRIPTION": "State-wide Membership Meeting and Issues Workshop\\nJanuary 23rd - 9:30 am - 3:00 pm\\n\\nLocation:\\nColorado Democratic Party Headquarters\\n789 Sherman St\\, Suite 110\\, Denver\\, CO 80203\\n\\nMeeting Goals:\\n Prepare rural democratic parties for and exciting and successful presidential election year\\n Discuss possible legislative action to provide better access to licensed and inspected meat processing facilities to promote rural agriculture\\n Study rural impacts related to changes in the Colorado Health Care Providers Fee\\n\\nAgenda:\\n9:00 - 9:30 am Registration and Check-in\\n9:30 - 10:00 am Introductions and announcements\\n10:00 - 11:00 am Improving Access to Licenses and Inspected meet processing facilities for Colorado ranchers and farmers\\nOur special guest for this topic is Mike Callicrate\\, a highly respected producer of top quality\\, grass fed beef in Colorado and a promoter and advocate for Colorado ranches and farmers.\\n​​\\n11:00 - noon - Rural impact of proposed changes to the Health Care Provider Fee\\nNoon - Lunch\\n12:45 - 1:45 pm - What do our rural county parties need to make this election year a great success?\\n1:45 - 2:30 pm - Interaction with state legislators\\n2:30 - 3:00 pm - Meeting wrap-up and plan of action\\n\\nCheck out www.ColoRuralDems.org for registration information.\\n", + "LAST-MODIFIED": "20160229T002904Z", + "LOCATION": "Colorado Democratic Party\\, 789 Sherman St #110\\, Denver\\, CO 80205", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Colorado Democrats Rural Initiative", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;VALUE=DATE": "20160120", + "DTEND;VALUE=DATE": "20160121", + "DTSTAMP": "20160926T041125Z", + "UID": "pspd674o477sdkdskmtnkklbj0@google.com", + "CREATED": "20160229T002712Z", + "DESCRIPTION": "Speaker: Senator Irene Aguilar\\, MD\\nTopic: Why Efforts to Control Health Costs are Failing\\n\\nDetails & Registration: http://www.hfma-co.org/events-conferences.php", + "LAST-MODIFIED": "20160229T002742Z", + "LOCATION": "Children's Hospital Colorado\\, 13123 E 16th Ave\\, Aurora\\, CO 80045", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Uninsured Conference", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART;VALUE=DATE": "20160117", + "DTEND;VALUE=DATE": "20160118", + "DTSTAMP": "20160926T041125Z", + "UID": "32avsthvvat5p0u5jp65fa0ksc@google.com", + "CREATED": "20160229T002642Z", + "DESCRIPTION": "Colorado Care will do for Coloradans what Medicare does for seniors.\\n\\nT.R. Reid\\, author\\, filmmaker\\, one of the plan’s architects\\, and an international authority on healthcare\\, will answer all our questions about Colorado Care. Colorado Care covers everyone\\, saves billions of dollars\\, and gets corporate insurance companies out from between you and your doctor. Colorado Care is a citizen’s initiative that will appear on our statewide ballot in November\\, when we will have the opportunity to vote it into law.\\n\\nFree and open to the public. RSVP required.\\n\\nYou may call Paula V. with questions at 720-346-3689. Please RSVP to Paula by Saturday if you don’t normally attend these Peace & Justice forums\\, so we can prepare enough lunch for all.", + "LAST-MODIFIED": "20160229T002642Z", + "LOCATION": "2280 S Columbine St\\, Denver\\, CO 80210", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Mountain View Friends Meeting Peace & Justice Forum", + "TRANSP": "TRANSPARENT" + } + ] + } + ], + "VTIMEZONE": [ + { + "TZID": "America/Los_Angeles", + "X-LIC-LOCATION": "America/Los_Angeles", + "DAYLIGHT": [ + { + "TZOFFSETFROM": "-0800", + "TZOFFSETTO": "-0700", + "TZNAME": "PDT", + "DTSTART": "19700308T020000", + "RRULE": "FREQ=YEARLY;BYMONTH=3;BYDAY=2SU" + } + ], + "STANDARD": [ + { + "TZOFFSETFROM": "-0700", + "TZOFFSETTO": "-0800", + "TZNAME": "PST", + "DTSTART": "19701101T020000", + "RRULE": "FREQ=YEARLY;BYMONTH=11;BYDAY=1SU" + } + ] + } + ], + "VEVENT": [ + { + "DTSTART;TZID=America/Los_Angeles": "20160904T090000", + "DTEND;TZID=America/Los_Angeles": "20160904T113000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161106T170000Z;BYDAY=SU", + "DTSTAMP": "20160926T041125Z", + "UID": "vd215drhodfvasmag5ar3rjiog_R20160904T160000@google.com", + "CREATED": "20160824T052048Z", + "DESCRIPTION": "RSVP. Please contact Sara at 303.548.6937", + "LAST-MODIFIED": "20160901T173219Z", + "LOCATION": "Lemars Donuts\\, 9940 Wadsworth Pkwy\\, Westminster\\, CO 80021", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Jefferson Canvass: Every Sunday at Westminster", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160828T090000", + "DTEND;TZID=America/Los_Angeles": "20160828T113000", + "RRULE": "FREQ=WEEKLY;UNTIL=20160904T155959Z;BYDAY=SU", + "DTSTAMP": "20160926T041125Z", + "UID": "vd215drhodfvasmag5ar3rjiog@google.com", + "CREATED": "20160824T052048Z", + "DESCRIPTION": "RSVP. Please contact Sara at 303.548.6973", + "LAST-MODIFIED": "20160901T173219Z", + "LOCATION": "Lemars Donuts\\, 9940 Wadsworth Pkwy\\, Westminster\\, CO 80021", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Jefferson Canvass: Every Sunday at Westminster", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160830T233000Z", + "DTEND": "20160831T014500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "026m96ets0tnhsv3mfn6khsj4o@google.com", + "CREATED": "20160830T040606Z", + "DESCRIPTION": "For detailed info\\, contact Aleta at 916-254-3854 or akazdi@gmail.com ", + "LAST-MODIFIED": "20160830T040608Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Arvada: Phone banking", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160903T000000Z", + "DTEND": "20160903T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "mil2v0ep3h14gvgdhp38r0jo78@google.com", + "CREATED": "20160830T034109Z", + "DESCRIPTION": "How has the healthcare system impacted your life\\, or those of people you love? \\n\\nDrop by Denver Open Media from 6-8pm on Friday\\, Sept 2\\, to learn about ColoradoCare (Amendment 69)\\, the universal healthcare system on the ballot this November. Share your story and hopes for change in an interactive video project. Highlights will be submitted to Denver Open Media for broadcast and shared online through ColoradoCare.\\n\\nWhen: Sept. 2\\, 6 - 8 pm\\nWhere: Denver Open Media\\, 700 Kalamath St\\, Denver\\, CO 80204\\nContact: Alan August\\, alantaugust@gmail.com", + "LAST-MODIFIED": "20160830T034109Z", + "LOCATION": "Denver Open Media\\, 700 Kalamath St\\, Denver\\, CO 80204", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: “Healthcare in our lives: Stories of Horror and Hope” ", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20161004T000000Z", + "DTEND": "20161004T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "pbas0nm9dg4ee5v82esvajkb98@google.com", + "CREATED": "20160828T054802Z", + "DESCRIPTION": "The discussion will focus on Medicare\\, Medicaid\\, and ColoradoCare. Other ColoradoCare issues may be discussed as pertinent.", + "LAST-MODIFIED": "20160828T054802Z", + "LOCATION": "Broomfield Public Library\\, 3 Community Park Rd\\, Broomfield\\, CO 80020", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Broomfield: Public discussion of ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160927T000000Z", + "DTEND": "20160927T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "4t23csn10cjhranv345qn6rbrc@google.com", + "CREATED": "20160828T054617Z", + "DESCRIPTION": "The discussion will focus on the self-employed and ColoradoCare. Other ColoradoCare issues may be discussed as pertinent. ", + "LAST-MODIFIED": "20160828T054617Z", + "LOCATION": "Broomfield Public Library\\, 3 Community Park Rd\\, Broomfield\\, CO 80020", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Broomfield: Public discussion of ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160902T000000Z", + "DTEND": "20160902T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ghlsq9hkr5nfqa51nl88ehl6ug@google.com", + "CREATED": "20160828T054336Z", + "DESCRIPTION": "Present general information about ColoradoCare\\, including advantages for Coloradans\\, financing\\, and governance.", + "LAST-MODIFIED": "20160828T054336Z", + "LOCATION": "Broomfield Public Library\\, 3 Community Park Rd\\, Broomfield\\, CO 80020", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Broomfield: Public discussion of ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160827T120000", + "DTEND;TZID=America/Los_Angeles": "20160827T150000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161105T190000Z;BYDAY=SA", + "DTSTAMP": "20160926T041125Z", + "UID": "uhngu0rgion5nb2j1hf7dt2fvg@google.com", + "CREATED": "20160828T052832Z", + "DESCRIPTION": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "LAST-MODIFIED": "20160828T052832Z", + "LOCATION": "3011 W. Long Court Unit D. Littleton\\, Arapahoe\\, CO 80120", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Douglas Canvass: Every Saturday afternoon", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160827T090000", + "DTEND;TZID=America/Los_Angeles": "20160827T120000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161105T160000Z;BYDAY=SA", + "DTSTAMP": "20160926T041125Z", + "UID": "ql166v0esq1fhp54irrhh37ca4@google.com", + "CREATED": "20160828T052655Z", + "DESCRIPTION": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "LAST-MODIFIED": "20160828T052655Z", + "LOCATION": "3011 W. Long Court Unit D. Littleton\\, Arapahoe\\, CO 80120", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Douglas Canvass: Every Saturday morning", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160827T120000", + "DTEND;TZID=America/Los_Angeles": "20160827T150000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161105T190000Z;BYDAY=SA", + "DTSTAMP": "20160926T041125Z", + "UID": "m0fomchrvf38ser9lekbi71blg@google.com", + "CREATED": "20160828T052202Z", + "DESCRIPTION": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "LAST-MODIFIED": "20160828T052326Z", + "LOCATION": "3011 W. Long Court Unit D. Littleton\\, Arapahoe\\, CO 80120", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Arapahoe Canvass: Every Saturday afternoon", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160827T090000", + "DTEND;TZID=America/Los_Angeles": "20160827T120000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161105T160000Z;BYDAY=SA", + "DTSTAMP": "20160926T041125Z", + "UID": "ddhvqtkvliq7sic8in0id5loa8@google.com", + "CREATED": "20160828T052149Z", + "DESCRIPTION": "RSVP. Please contact Julie at julieperla5280@gmail.com", + "LAST-MODIFIED": "20160828T052149Z", + "LOCATION": "3011 W. Long Court Unit D. Littleton\\, Arapahoe\\, CO 80120", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Arapahoe Canvass: Every Saturday morning", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160912T170000", + "DTEND;TZID=America/Los_Angeles": "20160912T190000", + "RRULE": "FREQ=DAILY;UNTIL=20160914T000000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "8atapo490n9md244lpb121p6t4@google.com", + "CREATED": "20160828T051532Z", + "DESCRIPTION": "RSVP. Please contact Judy at 303.377.8367", + "LAST-MODIFIED": "20160828T051532Z", + "LOCATION": "2455 N Race St.\\, Denver\\, CO 80205", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver Canvass", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160906T170000", + "DTEND;TZID=America/Los_Angeles": "20160906T190000", + "RRULE": "FREQ=DAILY;UNTIL=20160908T000000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "qeahkiuuq0888gh00oeuqgv10s@google.com", + "CREATED": "20160828T051411Z", + "DESCRIPTION": "RSVP. Please contact Judy at 303.377.8367", + "LAST-MODIFIED": "20160828T051411Z", + "LOCATION": "2455 N Race St.\\, Denver\\, CO 80205", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver Canvass", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160830T170000", + "DTEND;TZID=America/Los_Angeles": "20160830T190000", + "RRULE": "FREQ=DAILY;UNTIL=20160901T000000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "8fc1sbo1ovpcuslljp9v9rjak0@google.com", + "CREATED": "20160828T051136Z", + "DESCRIPTION": "RSVP. Please contact Judy at 303.377.8367", + "LAST-MODIFIED": "20160828T051136Z", + "LOCATION": "2455 N Race St.\\, Denver\\, CO 80205", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver Canvass", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160829T163000", + "DTEND;TZID=America/Los_Angeles": "20160829T183000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161108T003000Z;BYDAY=MO", + "DTSTAMP": "20160926T041125Z", + "UID": "tsqbqk9sk9jruk81ncjt5cf67g@google.com", + "CREATED": "20160828T051003Z", + "DESCRIPTION": "Please contact organizers for location.\\nRSVP. Please contact Megan at megan.rin@gmail.com", + "LAST-MODIFIED": "20160828T051003Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver Canvass: Every Tuesday evening", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160830T003000Z", + "DTEND": "20160830T020000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "gsgh7ndj0p0da41ach7nkt74ag@google.com", + "CREATED": "20160827T052258Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160827T052453Z", + "LOCATION": "House Rock Kitchen\\, 421 E Main St\\, Buena Vista\\, CO 81211", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Buena Vista: A Conversation with Senator Irene Aguilar\\, MD", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160830T140000Z", + "DTEND": "20160830T153000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "mquth1ebmujiu640evrjgvik6g@google.com", + "CREATED": "20160827T052415Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160827T052415Z", + "LOCATION": "Cafe Dawn\\, 203 West 1st St.\\, Salida\\, CO 81201", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Salida: A Conversation with Senator Irene Aguilar\\, MD", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160902T003000Z", + "DTEND": "20160902T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "vd0okb4s17u1kcg4g7h7ot3fl0@google.com", + "CREATED": "20160827T052124Z", + "DESCRIPTION": "Public presentation at Durango Public Library. 6:30PM. Contact Guinn Unger 936-727-1957", + "LAST-MODIFIED": "20160827T052124Z", + "LOCATION": "Durango Public Library & Durango Botanic Gardens\\, East 3rd Avenue\\, Durango\\, CO 81301", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Durango: Sen. Aguilar's presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160831T233000Z", + "DTEND": "20160901T013000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "bipkk6lmvfk5ifdv53u4lmrcj8@google.com", + "CREATED": "20160827T051852Z", + "DESCRIPTION": "Public presentation at Apex Conference Room\\, Holiday Inn Express. Sponsored by Montrose County League of Women Voters. Contact Tim Conner 970-417-0660", + "LAST-MODIFIED": "20160827T051852Z", + "LOCATION": "Holiday Inn Express & Suites Montrose\\, 1391 S Townsend Ave\\, Montrose\\, CO 81401", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Montrose: Sen. Aguilar's presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160831T010000Z", + "DTEND": "20160831T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "1outgqg6srmjgg3q30gghg04m8@google.com", + "CREATED": "20160827T051606Z", + "DESCRIPTION": "Public presentation at Western State Colorado University. Mountaineer Center\\, South Conference Room. Sponsored by WSCU Political Science Club. Contact Shelly Higgins 970-209-8949", + "LAST-MODIFIED": "20160827T051606Z", + "LOCATION": "Western State Colorado University\\, 600 North Adams Street\\, Gunnison\\, CO 81231", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Gunnison: Sen. Aguilar's presentation on ColoradoCare", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160827T110000", + "DTEND;TZID=America/Los_Angeles": "20160827T133000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161105T180000Z;BYDAY=SA", + "DTSTAMP": "20160926T041125Z", + "UID": "m6alu56bpsfc043bj6vbr98rg8@google.com", + "CREATED": "20160824T051609Z", + "DESCRIPTION": "RSVP. Please contact Sara at 303.548.6973", + "LAST-MODIFIED": "20160824T051909Z", + "LOCATION": "BeauJo's Pizza\\, 7525 W 53rd Ave\\, Arvada\\, CO 80439", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Jefferson Canvass: Every Saturday at Arvada", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160923T000000Z", + "DTEND": "20160923T014500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "e15sl4tipne6781c3rsgvd7ldc@google.com", + "CLASS": "PUBLIC", + "CREATED": "20160820T041834Z", + "DESCRIPTION": "This is your opportunity to learn about how ColoradoCare will be very good for your family. Understand what it is and what it isn't before you vote.", + "LAST-MODIFIED": "20160824T051457Z", + "LOCATION": "Evergreen Public Library\\, 5000 Co Rd 73\\, Evergreen\\, CO 80439", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Evergreen: Learn about ColoradoCare at Evergreen Public Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160928T000000Z", + "DTEND": "20160928T014500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "p84blrm3lql1p8f4lmh5iqplho@google.com", + "CREATED": "20160820T043050Z", + "DESCRIPTION": "Come learn about Colorado Care\\, what it is and what it isn't. Something you need to do before you vote.", + "LAST-MODIFIED": "20160824T051221Z", + "LOCATION": "Arvada Public Library\\, 7525 W 57th Ave\\, Arvada\\, CO 80002", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Arvada: Learn about Colorado Care at Arvada Public Library", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160827T190000Z", + "DTEND": "20160827T210000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "67ssvf59obfjvrdesii0avr230@google.com", + "CREATED": "20160823T044941Z", + "DESCRIPTION": "Please join us: Saturday August 27th for a ColoradoCare House Party\\nJeanne Nicholson presentation and powerpoint followed by Q&A discussion.\\nThis will be an informational meeting on the nuts and bolts of ColoradoCare with opposition views discussion. Light snacks will be served.\\nContact Karlton Culig\\, 720-235-2628 with questions.\\nPlease RSVP to kdculig@msn.com before 8/25-clubhouse capacity 50 people.\\n", + "LAST-MODIFIED": "20160823T045228Z", + "LOCATION": "Dam East Clubhouse\\, 12300 E. Amherst Circle\\, Aurora\\, CO 80014", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "ColoradoCare House Party! ", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160922T003000Z", + "DTEND": "20160922T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "t5oeg9007m582ejj0tckn88jl4@google.com", + "CREATED": "20160822T165433Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160822T165433Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "TENTATIVE", + "SUMMARY": "Non fiction writers meeting ", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160917T060000Z", + "DTEND": "20160917T080000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "2vad24cca519ot1o0hvcl7jg84@google.com", + "CREATED": "20160820T042809Z", + "DESCRIPTION": "Another week another supporter\\, we need to find them all. Join us for a successful canvass.", + "LAST-MODIFIED": "20160820T042843Z", + "LOCATION": "Beau Jo's Arvada\\, 7525 W 53rd Ave\\, Arvada\\, CO 80002", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "canvass for success", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160824T180000Z", + "DTEND": "20160824T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "vc1ibc919bfunefdt4ps752lgk@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160812T222248Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160817T185449Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Intro to Engage Webinar", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160908T003000Z", + "DTEND": "20160908T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9kr7b5ucb9jv8umnivcb65kgvk@google.com", + "CREATED": "20160817T033205Z", + "DESCRIPTION": "Ron Vejrostek will present on ColoradoCare", + "LAST-MODIFIED": "20160817T033205Z", + "LOCATION": "Front Range Community College - Boulder County Campus\\, 2121 Miller Drive\\, Longmont\\, CO 80501", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Longmont Area Dems", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160816T160000Z", + "DTEND": "20160816T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "8l2bv6vni4j17p9tnltlomhik8@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160815T170203Z", + "DESCRIPTION": "Sen. Jeanne Nicholson to speak on ColoradoCare at the CWA Symposium on Amendment 69", + "LAST-MODIFIED": "20160815T211743Z", + "LOCATION": "Boulder Public Library - Meadows Branch\\, 4800 Baseline Rd\\, Boulder\\, CO 80303", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder: Conf on World Affairs Symposium\\, Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160821T163000Z", + "DTEND": "20160821T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "r2fqea44p52b0omckebmaubdhs@google.com", + "CREATED": "20160815T170508Z", + "DESCRIPTION": "Sen. Aguilar to present on ColoradoCare", + "LAST-MODIFIED": "20160815T170604Z", + "LOCATION": "St Thomas Episcopal Church\\, 2201 Dexter Street\\, Denver\\, CO 80207", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Sen. Aguilar on Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160815T231500Z", + "DTEND": "20160816T004500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "sdt6phbf2tcja3ft3sd4ogmvcg@google.com", + "CREATED": "20160710T153542Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160815T170352Z", + "LOCATION": "Boulder Public Library - Reynolds Branch - Downstairs Conference Room\\, 3595 Table Mesa Dr\\, Boulder\\, CO 80305", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Symposium and Meet-up: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160818T143000Z", + "DTEND": "20160818T163000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "pghdoqklc3t5kdaof3ff63r1j8@google.com", + "CREATED": "20160815T035639Z", + "DESCRIPTION": "Join the Nurses for ColoradoCare as they will be distributing flyers door-to-door in the Elyria-Swansea neighborhood of North Denver. The flyers are to announce an upcoming presentation on ColoradoCare!\\n\\nRSVP Cally at cally.thalman@gmail.com\\, or John at rugule@gmail.com", + "LAST-MODIFIED": "20160815T043901Z", + "LOCATION": "Swansea Elementary School\\, 4650 Columbine St\\, Denver\\, CO 80216", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Elyria-Swansea of Denver: Door-to-door flyer-ing event (lit drop)", + "TRANSP": "TRANSPARENT", + "ATTACH;FILENAME=Flyer-ing event.jpg": "https://drive.google.com/file/d/0B5KsxPTT8ZEScVlxLWRBSFBBQUU/view?usp=drive_web" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160814T090000", + "DTEND;TZID=America/Los_Angeles": "20160814T170000", + "DTSTAMP": "20160926T041125Z", + "UID": "9a9u7v0heod3ek4539lfof9rqc@google.com", + "RECURRENCE-ID;TZID=America/Los_Angeles": "20160814T160000", + "CREATED": "20160815T042101Z", + "DESCRIPTION": "Dear ColoradoCare supporters\\,\\n \\nHappy summer to you all!\\n \\nMany of you are busy already leafletting\\, canvassing\\, and spreading the word about ColoradoCare in your community for Amendment 68 ColoradoCare\\, and I am writing to invite you to join us for a fun week-end in Ft. Collins at the New West Fest\\, August 12\\, 13 and 14. There are vendor and non-profit booths\\, activities and rides for kids of all ages\\, a great variety of foods\\, and free music events going on at all times of the day. It's a great place to relax and have fun while you're saving the world--or at least Colorado!\\n \\nWhether you live in the area\\, or come for the day\\, or can spend 2 or 3 days (several of our N CO members have offered free lodging to out-of-town volunteers)\\, we would love to have you join us. We will have a gathering place to meet other volunteers\\, pick up materials\\, or just relax\\, on the west lawn of the Ft. Collins Mennonite Fellowship\\,(NE corner of Oak and Mathews)\\, which is on the NWF \"route.\" Also\\, one of the NWF free water \"fountains\" will be at this location\\, so there will be a constant stream of passers-by.\\n \\nWe'd like to have 2 people at the table in each time slot. And since more than 120\\,000 visitors attend the NWF\\, we can also use as many supporters as possible to hand out leaflets and talk to folks about ColoradoCare during the hours of the festival and the evening concerts\\, all of which are FREE. There are concerts Friday night from 5 - 10 PM\\, Saturday from 11 AM - 10 PM\\, and Sunday from 11 AM - 7 PM. Vendors are open from 10 AM - 6 PM on Saturday and Sunday.\\n \\nBelow is the schedule for our table and for leafletters at the New West Fest. If you'd like to sign up to staff the table and/or leaflett\\, please send the following information to Eliza Carney\\, Eliza@ColoradoCareYES.co or 970-416-0636. We will send you a confirmation and other information. For more info on entertainment\\, transportation\\, etc.\\, at the NWF\\, go to www.bohemiannights.org\\n \\nName:\\nPhone : Home: Cell\\nE-mail:\\nTown:\\nI will staff the table during the following time slot:\\nI will hand out leafletts during the following time slot:\\nI would like a place to stay\\, for the night(s) of:\\n\\nColoradoCare gathering spot\\, west lawn of Ft. Collins Mennonite Fellowship\\, 300 E. Oak (NE corner\\, Oak & Mathews)\\, Ft. Collins\\n\\nFriday\\, Aug. 14:\\n \\n 5 - 7 PM\\n \\n 7 - 10 PM\\n \\n \\nSaturday\\, Aug. 15:\\n \\n 10 - 12 noon:\\n \\n 12 - 2 PM:\\n \\n 2 - 4 PM:\\n \\n 4 - 6 PM\\n \\n 6 - 8 PM\\n \\n 8 - 10 PM\\n\\n\\nSunday\\, Aug. 16:\\n \\n 10 - 12 noon:\\n \\n 12 - 2PM:\\n\\n 2 - 4 PM:\\n \\n 4 - 7 PM:\\n \\nOnce you've signed up\\, we will send you more information about directions\\, housing\\, and a list of all who have signed up\\, in case you want to carpool.\\n \\nThank you for all you've done already\\, and we hope you can join us for the fun and good works at the New West Fest!", + "LAST-MODIFIED": "20160815T042459Z", + "LOCATION": "West lawn of Ft. Collins Mennonite Fellowship\\, 300 E. Oak\\, Fort Collins\\, CO 80524", + "SEQUENCE": "4", + "STATUS": "CONFIRMED", + "SUMMARY": "Fort Collins: Distribute info about Amen. 69 ColoradoCare at the New West Fest", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160813T100000", + "DTEND;TZID=America/Los_Angeles": "20160813T210000", + "DTSTAMP": "20160926T041125Z", + "UID": "9a9u7v0heod3ek4539lfof9rqc@google.com", + "RECURRENCE-ID;TZID=America/Los_Angeles": "20160813T160000", + "CREATED": "20160815T042101Z", + "DESCRIPTION": "Dear ColoradoCare supporters\\,\\n \\nHappy summer to you all!\\n \\nMany of you are busy already leafletting\\, canvassing\\, and spreading the word about ColoradoCare in your community for Amendment 68 ColoradoCare\\, and I am writing to invite you to join us for a fun week-end in Ft. Collins at the New West Fest\\, August 12\\, 13 and 14. There are vendor and non-profit booths\\, activities and rides for kids of all ages\\, a great variety of foods\\, and free music events going on at all times of the day. It's a great place to relax and have fun while you're saving the world--or at least Colorado!\\n \\nWhether you live in the area\\, or come for the day\\, or can spend 2 or 3 days (several of our N CO members have offered free lodging to out-of-town volunteers)\\, we would love to have you join us. We will have a gathering place to meet other volunteers\\, pick up materials\\, or just relax\\, on the west lawn of the Ft. Collins Mennonite Fellowship\\,(NE corner of Oak and Mathews)\\, which is on the NWF \"route.\" Also\\, one of the NWF free water \"fountains\" will be at this location\\, so there will be a constant stream of passers-by.\\n \\nWe'd like to have 2 people at the table in each time slot. And since more than 120\\,000 visitors attend the NWF\\, we can also use as many supporters as possible to hand out leaflets and talk to folks about ColoradoCare during the hours of the festival and the evening concerts\\, all of which are FREE. There are concerts Friday night from 5 - 10 PM\\, Saturday from 11 AM - 10 PM\\, and Sunday from 11 AM - 7 PM. Vendors are open from 10 AM - 6 PM on Saturday and Sunday.\\n \\nBelow is the schedule for our table and for leafletters at the New West Fest. If you'd like to sign up to staff the table and/or leaflett\\, please send the following information to Eliza Carney\\, Eliza@ColoradoCareYES.co or 970-416-0636. We will send you a confirmation and other information. For more info on entertainment\\, transportation\\, etc.\\, at the NWF\\, go to www.bohemiannights.org\\n \\nName:\\nPhone : Home: Cell\\nE-mail:\\nTown:\\nI will staff the table during the following time slot:\\nI will hand out leafletts during the following time slot:\\nI would like a place to stay\\, for the night(s) of:\\n\\nColoradoCare gathering spot\\, west lawn of Ft. Collins Mennonite Fellowship\\, 300 E. Oak (NE corner\\, Oak & Mathews)\\, Ft. Collins\\n\\nFriday\\, Aug. 14:\\n \\n 5 - 7 PM\\n \\n 7 - 10 PM\\n \\n \\nSaturday\\, Aug. 15:\\n \\n 10 - 12 noon:\\n \\n 12 - 2 PM:\\n \\n 2 - 4 PM:\\n \\n 4 - 6 PM\\n \\n 6 - 8 PM\\n \\n 8 - 10 PM\\n\\n\\nSunday\\, Aug. 16:\\n \\n 10 - 12 noon:\\n \\n 12 - 2PM:\\n\\n 2 - 4 PM:\\n \\n 4 - 7 PM:\\n \\nOnce you've signed up\\, we will send you more information about directions\\, housing\\, and a list of all who have signed up\\, in case you want to carpool.\\n \\nThank you for all you've done already\\, and we hope you can join us for the fun and good works at the New West Fest!", + "LAST-MODIFIED": "20160815T042426Z", + "LOCATION": "West lawn of Ft. Collins Mennonite Fellowship\\, 300 E. Oak\\, Fort Collins\\, CO 80524", + "SEQUENCE": "4", + "STATUS": "CONFIRMED", + "SUMMARY": "Fort Collins: Distribute info about Amen. 69 ColoradoCare at the New West Fest", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160812T160000", + "DTEND;TZID=America/Los_Angeles": "20160812T210000", + "RRULE": "FREQ=DAILY;UNTIL=20160814T230000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9a9u7v0heod3ek4539lfof9rqc@google.com", + "CREATED": "20160815T042101Z", + "DESCRIPTION": "Dear ColoradoCare supporters\\,\\n \\nHappy summer to you all!\\n \\nMany of you are busy already leafletting\\, canvassing\\, and spreading the word about ColoradoCare in your community for Amendment 68 ColoradoCare\\, and I am writing to invite you to join us for a fun week-end in Ft. Collins at the New West Fest\\, August 12\\, 13 and 14. There are vendor and non-profit booths\\, activities and rides for kids of all ages\\, a great variety of foods\\, and free music events going on at all times of the day. It's a great place to relax and have fun while you're saving the world--or at least Colorado!\\n \\nWhether you live in the area\\, or come for the day\\, or can spend 2 or 3 days (several of our N CO members have offered free lodging to out-of-town volunteers)\\, we would love to have you join us. We will have a gathering place to meet other volunteers\\, pick up materials\\, or just relax\\, on the west lawn of the Ft. Collins Mennonite Fellowship\\,(NE corner of Oak and Mathews)\\, which is on the NWF \"route.\" Also\\, one of the NWF free water \"fountains\" will be at this location\\, so there will be a constant stream of passers-by.\\n \\nWe'd like to have 2 people at the table in each time slot. And since more than 120\\,000 visitors attend the NWF\\, we can also use as many supporters as possible to hand out leaflets and talk to folks about ColoradoCare during the hours of the festival and the evening concerts\\, all of which are FREE. There are concerts Friday night from 5 - 10 PM\\, Saturday from 11 AM - 10 PM\\, and Sunday from 11 AM - 7 PM. Vendors are open from 10 AM - 6 PM on Saturday and Sunday.\\n \\nBelow is the schedule for our table and for leafletters at the New West Fest. If you'd like to sign up to staff the table and/or leaflett\\, please send the following information to Eliza Carney\\, Eliza@ColoradoCareYES.co or 970-416-0636. We will send you a confirmation and other information. For more info on entertainment\\, transportation\\, etc.\\, at the NWF\\, go to www.bohemiannights.org\\n \\nName:\\nPhone : Home: Cell\\nE-mail:\\nTown:\\nI will staff the table during the following time slot:\\nI will hand out leafletts during the following time slot:\\nI would like a place to stay\\, for the night(s) of:\\n\\nColoradoCare gathering spot\\, west lawn of Ft. Collins Mennonite Fellowship\\, 300 E. Oak (NE corner\\, Oak & Mathews)\\, Ft. Collins\\n\\nFriday\\, Aug. 14:\\n \\n 5 - 7 PM\\n \\n 7 - 10 PM\\n \\n \\nSaturday\\, Aug. 15:\\n \\n 10 - 12 noon:\\n \\n 12 - 2 PM:\\n \\n 2 - 4 PM:\\n \\n 4 - 6 PM\\n \\n 6 - 8 PM\\n \\n 8 - 10 PM\\n\\n\\nSunday\\, Aug. 16:\\n \\n 10 - 12 noon:\\n \\n 12 - 2PM:\\n\\n 2 - 4 PM:\\n \\n 4 - 7 PM:\\n \\nOnce you've signed up\\, we will send you more information about directions\\, housing\\, and a list of all who have signed up\\, in case you want to carpool.\\n \\nThank you for all you've done already\\, and we hope you can join us for the fun and good works at the New West Fest!", + "LAST-MODIFIED": "20160815T042339Z", + "LOCATION": "West lawn of Ft. Collins Mennonite Fellowship\\, 300 E. Oak\\, Fort Collins\\, CO 80524", + "SEQUENCE": "3", + "STATUS": "CONFIRMED", + "SUMMARY": "Fort Collins: Distribute info about Amen. 69 ColoradoCare at the New West Fest", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160830T004500Z", + "DTEND": "20160830T021500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "jcfn6utj9fnpu7739k1ceog5q4@google.com", + "CREATED": "20160710T154048Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160814T001154Z", + "LOCATION": "Boulder Public Library - Meadows Branch\\, Baseline Road - Conference Room\\, 4800 Baseline Rd\\, Boulder\\, CO 80303", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Symposium and Meet-up Talk: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160829T231500Z", + "DTEND": "20160830T004500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "oa6s7hhi6fvqh0l9jam0s9httk@google.com", + "CREATED": "20160710T153934Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160814T001146Z", + "LOCATION": "Boulder Public Library - Meadows Branch -- Baseline Road - Conference Room\\, 4800 Baseline Rd\\, Boulder\\, CO 80303", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Symposium and Meet-up Talk: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160816T004500Z", + "DTEND": "20160816T021500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "1ggj1n0nl8gsr1u3o2jbicfgio@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160710T153650Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160814T001053Z", + "LOCATION": "Boulder Public Library - Reynolds Branch - Downstairs Conference Room\\, 3595 Table Mesa Dr\\, Boulder\\, CO 80305", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Symposium and Meet-up: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160818T233000Z", + "DTEND": "20160819T010000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "meslq9v65v27cn4mtirhn3egok@google.com", + "CREATED": "20160812T035246Z", + "DESCRIPTION": "Community Forum where Amendment 69 will be discussed\\, pro and con", + "LAST-MODIFIED": "20160812T035246Z", + "LOCATION": "South Park II Homeowners Association\\, 2850 West Long Drive\\, Littleton\\, CO 80120", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Littleton: Community Forum to Discuss Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160921T130000Z", + "DTEND": "20160921T143000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "3p1lfdi312cff6904mn8mghlv4@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160811T201838Z", + "DESCRIPTION": "Oxford-style debate with T.R. Reid. Charge for breakfast (approx. $25).", + "LAST-MODIFIED": "20160812T034821Z", + "LOCATION": " University Club 17th and Grant\\, 1673 Sherman St.\\, Denver\\, CO 80203", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver: Mile-High Rotary Club (with T.R. Reid)", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;VALUE=DATE": "20160812", + "DTEND;VALUE=DATE": "20160815", + "DTSTAMP": "20160926T041125Z", + "UID": "n64idlaep1s5auk36vfhqvn8fc@google.com", + "CREATED": "20160729T012845Z", + "DESCRIPTION": "We will pass out fliers and get sign-ups. Check out the event detail: http://www.crestfest.org/", + "LAST-MODIFIED": "20160811T160041Z", + "LOCATION": "W Silver Ave\\, Moffat\\, CO 81143", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Crestone Music Festival", + "TRANSP": "TRANSPARENT", + "X-APPLE-TRAVEL-ADVISORY-BEHAVIOR": "AUTOMATIC", + "VALARM": [ + { + "ACTION": "AUDIO", + "TRIGGER": "-PT15H", + "X-WR-ALARMUID": "CE01AE09-B6DE-4D72-ADB1-FAFAACF3B058", + "UID": "CE01AE09-B6DE-4D72-ADB1-FAFAACF3B058", + "ATTACH;VALUE=URI": "Basso", + "X-APPLE-DEFAULT-ALARM": "TRUE", + "ACKNOWLEDGED": "20160811T160040Z" + } + ] + }, + { + "DTSTART": "20160813T163000Z", + "DTEND": "20160813T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "nlfrtsibclth27m7i8kkgogadk@google.com", + "CREATED": "20160729T150332Z", + "DESCRIPTION": "Presentation - by Stephen Winters", + "LAST-MODIFIED": "20160803T172533Z", + "LOCATION": "Longmont Public Library Creation Station\\, 519 4th Ave\\, Longmont\\, CO 80501", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Presentation - by Stephen Winters. Longmont Public Library 409 4th St", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160809T004500Z", + "DTEND": "20160809T021500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "0t0te8bnuqt8rf2dcpodhqjrqg@google.com", + "CREATED": "20160710T153256Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160803T172521Z", + "LOCATION": "Boulder Public Library - Main Library\\, Arapahoe Avenue - Boulder Creek Room\\, Boulder\\, CO 80302", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Meet-up Talk: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160808T231500Z", + "DTEND": "20160809T004500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ovnhn2eak22c19r90it1fdnia0@google.com", + "CREATED": "20160710T153123Z", + "DESCRIPTION": "Join your Meet-up friends to hear a talk on Amendment 69", + "LAST-MODIFIED": "20160803T172515Z", + "LOCATION": "Boulder Public Library - Main Library\\, Arapahoe Avenue - Boulder Creek Room\\, Boulder\\, CO 80302", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder Meet-up Talk: Amendment 69", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160823T010000Z", + "DTEND": "20160823T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "p1b30ef9441vah13nbdugvmr7k@google.com", + "CREATED": "20160729T150539Z", + "DESCRIPTION": "Presentation - by Diane Dunn", + "LAST-MODIFIED": "20160803T172440Z", + "LOCATION": "Alfalfa's Market Louisville\\, 785 E South Boulder Rd\\, Louisville\\, CO 80027", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "ColoradoCare presentation", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160826T010000Z", + "DTEND": "20160826T023000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "fu02up0bf6emals0bq3pl1hv68@google.com", + "CREATED": "20160802T143327Z", + "DESCRIPTION": "Cross Currents Discussion on ColoradoCare\\, with T.R. Reid and Senator Jeanne Nicholson speaking in support of Amendment 69 in a debate format with speakers from the opposition.", + "LAST-MODIFIED": "20160802T143327Z", + "LOCATION": "City of Fort Collins City Chambers\\, 300 LaPorte Ave.\\, Fort Collins\\, CO 80521", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Fort Collins\\, League of Women Voters Cross Currents Discussion with TR Reid and Jeanne Nicholson", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160803T211500Z", + "DTEND": "20160803T221500Z", + "DTSTAMP": "20160926T041125Z", + "UID": "43rhm74m62tp5f5po1p5a6o6jc@google.com", + "CREATED": "20160731T225353Z", + "DESCRIPTION": "To reserve a spot inside\\, RSVP at https://www.hillaryclinton.com/events/view/23BHQ26S7TWENLAS/. You can also be there outside to hand out lit and talk to people waiting to get in. Doors open to the public at 1 p.m.", + "LAST-MODIFIED": "20160731T225353Z", + "LOCATION": "Adams City High School\\, 7200 Quebec Parkway\\, Commerce City\\, CO 80022", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Adams County Outreach\\, Hillary Clinton Campaign Event", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160804T000000Z", + "DTEND": "20160804T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "ituk1fhu9ihumbku2r77f1vr90@google.com", + "CREATED": "20160729T013829Z", + "DESCRIPTION": "COHOPE's meet the candidates and your elected officials over potluck picnic. ", + "LAST-MODIFIED": "20160729T014214Z", + "LOCATION": "Shelter 6 - Clement Park\\, 7306 W Bowles Ave\\, Littleton\\, CO 80123", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Jefferson County: Potluck picnic", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160801T203000Z", + "DTEND": "20160801T220000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "7k7isv9p94noku5lk0ee8knj9g@google.com", + "CREATED": "20160729T013201Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160729T013447Z", + "LOCATION": "Frasier Meadows Retirement Community\\, 350 Ponca Pl\\, Boulder\\, CO 80303", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Boulder: Presentation to LWVBC", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART;TZID=America/Los_Angeles": "20160805T163000", + "DTEND;TZID=America/Los_Angeles": "20160805T190000", + "RRULE": "FREQ=WEEKLY;UNTIL=20161104T233000Z;BYDAY=FR", + "DTSTAMP": "20160926T041125Z", + "UID": "j01pqtfgvj7vi7m09cm8q81210@google.com", + "CREATED": "20160729T005342Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160729T005602Z", + "LOCATION": "5826 Urban Street\\, Arvada\\, CO 80004", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Arvada: Phone banking ", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART": "20160803T223000Z", + "DTEND": "20160804T000000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "3adandpsa8vmbnjrs89m83psh4@google.com", + "CREATED": "20160729T004727Z", + "DESCRIPTION": "Universal healthcare for Colorado is on the ballot this Fall with Amendment 69. Amendment 69 would replace for-profit insurance with a statewide co-op run by an elected board of directors. ColoradoCare would save consumers and employers billions\\, improve payments and reduce complexity for care providers\\, and ensure quality health coverage for every single Coloradan.\\n\\nCome learn about the proposal and get answers to your questions from State Senator Irene Aguilar\\, MD\\, key author of the amendment.\\n\\nWeds. 8/3. 4:30-6PM in Alamosa at the San Luis Valley Museum\\, 401 Hunt Ave.\\n\\nIf your organization would like a special private event with Senator Aguilar\\, or if you would like to host an early or late dinner\\, the Senator is available for scheduling before and after this event. \\n\\nFor more information on ColoradoCare\\, visit the website at www.coloradocare.org.\\n\\nQuestions about the event and ColoradoCare organizing in Alamosa? Contact Don Thompson at 719.587.5529\\n\\nPolicy questions about Amendment 69? Contact Joel Dyar at 970.812.6422\\n\\nHope to see you there!", + "LAST-MODIFIED": "20160729T004847Z", + "LOCATION": "San Luis Valley Museum-Alamosa\\, 401 Hunt Ave\\, Alamosa\\, CO 81101", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Alamosa: Presentation on ColoradoCare with Senator Irene Aguilar", + "TRANSP": "OPAQUE", + "ATTACH;FILENAME=ColoradoCare event_Alamosa.jpg": "https://drive.google.com/file/d/0B5KsxPTT8ZESYjFVR2gtY2dUQTg/view?usp=drive_web" + }, + { + "DTSTART": "20160809T010000Z", + "DTEND": "20160809T030000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "o40msj8m1hkaienebilqi486eo@google.com", + "CREATED": "20160501T045227Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160728T200630Z", + "LOCATION": "SteamPlant Theater and Event Center\\, 220 W Sackett Ave\\, Salida\\, CO 81201", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Debate with Sen. Irene Aguilar\\,MD sponsored by Chaffee County Medical Society. Location: Salida SteamPlant", + "TRANSP": "TRANSPARENT" + }, + { + "DTSTART;TZID=America/Denver": "20160802T190000", + "DTEND;TZID=America/Denver": "20160802T200000", + "DTSTAMP": "20160926T041125Z", + "UID": "o2bh3l4bcu9be2t073r8uph3i4@google.com", + "RECURRENCE-ID;TZID=America/Denver": "20160728T190000", + "CREATED": "20160717T184111Z", + "DESCRIPTION": "Contact Owen at Owen@ColoradoCare.org for details.", + "LAST-MODIFIED": "20160728T135139Z", + "LOCATION": "", + "SEQUENCE": "1", + "STATUS": "CONFIRMED", + "SUMMARY": "Webinar -- Speakers Bureau Training", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160731T160000Z", + "DTEND": "20160731T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "5bqfkobo7cetdaa73g38va7jsk@google.com", + "CREATED": "20160728T051418Z", + "DESCRIPTION": "Bagels and Coffee\\, compliments of a supporter who cannot canvass that day\\, will be provided. Aleta Kazadi (Aletakazadi@gmail.com) will hand out maps and instructions and you can set off from there when ready. Then we'll reassemble back at Beau Jo's to celebrate our efforts. 5 foot massages will be raffled off - to the 5 most tired feet! Thank you to Beau Jo’s and Local Masseuse giving the foot massages! You are terrific CCares supporters!” (from Roberta Cowan Weadley)", + "LAST-MODIFIED": "20160728T051419Z", + "LOCATION": "Beau Jo's Arvada\\, 7525 W 53rd Ave\\, Arvada\\, CO 80002", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "JeffCo: Kickoff Canvassing Event!", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160730T160000Z", + "DTEND": "20160730T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "p66d1g89j5qrurg31l31s6vtj0@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160728T045539Z", + "DESCRIPTION": "Dear Denver City and County Supporters for ColoradoCare/ Amendment 69 – Universal Healthcare for All Coloradans!\\n\\nORGANIZE\\, SOCIALIZE\\, MEET CIVIC MINDED AND ENGAGED PEOPLE\\, COME FOR LUNCH! BRING A SIDE DISH OR DRINKS TO SHARE WITH YOUR FRIENDS AND NEIGHBORS! RSVP by Friday July 30!\\n\\nIt’s time to begin organizing for a win for Colorado Care! As you know Colorado Care is a game changer. The passage of this referendum by the people of Colorado will replace the current insurance industry system with Colorado Care. Colorado Care eliminates the middlemen who restrict access to healthcare while at the same time make excessive profits. It is a well conceived payment system that provides comprehensive health care for your children\\, grandchildren and parents and for your friends and neighbors living in Colorado and for you in times of misfortune. We invite everyone to “Do the Math!” and compare their healthcare cost under the current insurance industry system and Colorado Care at http://www.coloradocare.org/for-you/calculate-your-savings/ You can also Do the Math and look at more information on Colorado Care attached to this email.\\n\\nWe are hosting our first Denver City and County organization party at my home located at 530 Yosemite Way Denver 80230 on Saturday July 30 at 10 am. We will have our field directors\\, Joel Dyar and Jeriel Brammeier\\, at this meeting to show us how to educate voters on Colorado Care and how to get out the vote using VAN and mini-VAN. We will organize these efforts using the eight State House Districts within the city. For each of the 8 house districts we will need at least one community leader\\, a data captain and many canvassers and people who like to talk to voters on the phone. Please let me know if you are willing to take on any of these house district leadership roles. Your help and input is greatly appreciated! \\n\\nAt the conclusion of this training\\, we invite you to stay for a BBQ including pulled pork sandwiches. Please invite your friends and family to this event and let me know if you can attend by Fri July 29. Please also bring a side dish or drink to share!\\n\\n530 Yosemite Way Denver CO 80230 is located just East of the Big Bear Ice Arena. Take Lowry Blvd East from Quebec (Lowry Blvd is between Alameda and 6th Avenue 50 North) to the third roundabout. At the third roundabout drive South on Yosemite Way and it is the first house on the left with the rocking horse on the porch.\\n\\nRSVP to Steve (steve4allseasons@gmail.com) by July 29 if you can attend", + "LAST-MODIFIED": "20160728T050153Z", + "LOCATION": "530 Yosemite Way\\, Denver\\, CO 80230", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver County (Lowry): Colorado Care Organizing Event!", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160730T160000Z", + "DTEND": "20160730T190000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "a7sdikj0tcgtklm89mo8lpvdkk@google.com Events--ColoradoCareYES;X-NUM-GUESTS=0:mailto:00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com", + "CREATED": "20160728T045125Z", + "DESCRIPTION": "We will have several senior leaders from the campaign who will spend quality time and offer an A to Z voter contact demonstration for our local volunteers. We will be organizing and identifying local neighborhoods for the canvasses. If you've never canvassed before DON'T WORRY\\, it’s easy and fun! The script includes asking neighbors if they are aware that we have universal healthcare on the ballot in Colorado this year and giving them some literature. \\n\\nAfter spending some time in the field\\, Senator/Dr. Aguilar will be joining us for an after-party/ luncheon. \\n\\nPLEASE NOTE: Only RSVP to Julie ( if you are ABLE to attend and she will contact you back with details).", + "LAST-MODIFIED": "20160728T050033Z", + "LOCATION": "Private Home - RSVP to Julie (julieperla5280@gmail.com) if you can attend", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Littleton: Kick-off Canvassing Campaign!", + "TRANSP": "OPAQUE" + }, + { + "DTSTART": "20160820T140000Z", + "DTEND": "20160820T180000Z", + "DTSTAMP": "20160926T041125Z", + "UID": "9es8f1g9s81ag0dp99lv3tbfgg@google.com", + "CREATED": "20160727T012024Z", + "DESCRIPTION": "", + "LAST-MODIFIED": "20160727T012049Z", + "LOCATION": "", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Denver outreach opportunity\\, Colorado AIDS Walk", + "TRANSP": "OPAQUE" + }, + { + "DTSTART;VALUE=DATE": "20160727", + "DTEND;VALUE=DATE": "20160730", + "DTSTAMP": "20160926T041125Z", + "UID": "gs7rof6v16mnv2b930ihj7rhl4@google.com", + "CREATED": "20160713T224131Z", + "DESCRIPTION": "See detailed agenda at: http://www.coloradohealth.org/healthsymposium/", + "LAST-MODIFIED": "20160726T160004Z", + "LOCATION": "Keystone Resort Conference Center\\, 0633 Tennis Club Rd\\, Dillon\\, CO 80435", + "SEQUENCE": "0", + "STATUS": "CONFIRMED", + "SUMMARY": "Keystone: The Colorado Health Symposium", + "TRANSP": "TRANSPARENT", + "X-APPLE-TRAVEL-ADVISORY-BEHAVIOR": "AUTOMATIC", + "VALARM": [ + { + "ACTION": "AUDIO", + "TRIGGER": "-PT15H", + "X-WR-ALARMUID": "5C3A751D-86EC-4170-8AAC-070FEAB2A695", + "UID": "5C3A751D-86EC-4170-8AAC-070FEAB2A695", + "ATTACH;VALUE=URI": "Basso", + "X-APPLE-DEFAULT-ALARM": "TRUE", + "ACKNOWLEDGED": "20160726T160004Z" + } + ] + } + ] +} diff --git a/data/meetup-urls.txt b/data/meetup-urls.txt new file mode 100644 index 0000000..385f6d9 --- /dev/null +++ b/data/meetup-urls.txt @@ -0,0 +1,85 @@ +FreethinkersCS +Grassroots-Progressives-of-Livonia +grassrootsprog-3 +grassrootsprog-4 +grassrootsprog-5 +Indianapolis-Socialist-Party-USA +LiberalProgressivesCO +London-rs21 +Lovers-of-Liberals-Passionate-for-Progressives +MPV-LA +nc-piedmont-dsa +ne-ohio-libruls +Needles-in-a-Haystack-Liberal-minds-in-North-Fulton +New-Haven-County-Progressives +norfolkdemocrats +Northshore-Progressives +NYC-progressive-muslim +nycdsa +peninsulademocrats +Prescott-Progressives +Progressive-Singles-SF-Bay-Area +Progressives-Paying-Forward-in-Worcester-County +pugetsoundsocialists +River-Valley-Progressives +Riverside-Radical-Progressives +seattle-progressives +Sociable-Progressives-and-Liberals-Happy-Hour +Space-Coast-Progressive-Alliance +Suffolk-County-Progressives +The-Dems-Progressives-Syndicat +virginiabeachdemocrats +wakeprogressivedems +Wellstone-Democratic-Renewal-Club-East-Bay +denversocialists +Central-Arkansas-Progressive-Calendar +Bible-Study-for-Progressives +BraddockDems +ChamberOfProgress +Chicago-Democratic-Socialists-of-America-Chapter +CT-Progressives +Daytona-Beach-Area-Progressives +DC-DSA +democrat-139 +20millionloud-38 +Apple-Valley-Progressives-Meetup +Austin-Progressives-and-Political-Wonks-who-Party +Bern-Fest +berniebythebay +Blue-in-a-Red-State +Chicago-Economics-Social-Democracy-Reading-Club +churchandstate-127 +Craven-County-Progressives +Dallas-Leftists-20-30 +Dallas-Social-Leftists +DC-MPV-USA +DCConnect +DeForest-Meetup-Deforest-Area-Progressives +Democratic-Socialists-DESO-party +Democratic-Socialists-of-America-Eugene-Chapter +Democratic-Socialists-of-Augusta +Democratic-Socialists-of-Boulder +dfa-123 +Latinos-for-Bernie-NYC +LV-Henderson-Progressives-Social-Club +marchforwomen-224 +Metro-Atlanta-Democratic-Socialists-of-America +Metro-Atlanta-Progressives +michaelmoore-161 +Minneapolis-Christian-Left-and-Political-Progressives +Nevada-Progressives-and-Democrats +omahayoungprogressives +Philadelphia-Democratic-Socialists-of-America +prochoice-56 +Progressives-Who-Brunch +San-Luis-Obispo-Progressives +SFV-Progressives +skc-progressives +Socializing-for-Socialists +Spokane-Progressives +The-Houston-Socialist-Reading-Group +The-Socialist-Party-of-Great-Britain +Upstate-Progressives +Downtown-Disciples-unapologetically-progressive +drinkingliberallypeoria +Foothills-Progressives diff --git a/progressive_events/settings.py b/progressive_events/settings.py index 0081931..d59ce50 100644 --- a/progressive_events/settings.py +++ b/progressive_events/settings.py @@ -31,7 +31,8 @@ ALLOWED_HOSTS = ['progressiveevents.org', 'www.progressiveevents.org', 'localhost', 'progressiveevents.herokuapp.com'] - +COLORADO_CARE_URL = 'https://clients6.google.com/calendar/v3/calendars/00odpg87lg2o43eki6gi0sktgk@group.calendar.google.com/events?calendarId=00odpg87lg2o43eki6gi0sktgk%40group.calendar.google.com&singleEvents=true&timeZone=America%2FDenver&maxAttendees=1&maxResults=250&sanitizeHtml=true&timeMin=2016-08-28T00%3A00%3A00-06%3A00&timeMax=2016-10-02T00%3A00%3A00-06%3A00&key=AIzaSyBNlYH01_9Hc5S1J9vuFmu2nUqBZJNAXxs' +MANHATTAN_DEMOCRATS_URL = 'https://clients6.google.com/calendar/v3/calendars/manhattandems@gmail.com/events?calendarId=manhattandems%40gmail.com&singleEvents=true&timeZone=America%2FNew_York&maxAttendees=1&maxResults=250&sanitizeHtml=true&timeMin=2016-09-25T00%3A00%3A00-04%3A00&timeMax=2016-12-31T00%3A00%3A00-04%3A00&key=AIzaSyBNlYH01_9Hc5S1J9vuFmu2nUqBZJNAXxs' # Application definition INSTALLED_APPS = [ @@ -143,4 +144,4 @@ } # may need addressing at some point, but until then... -CORS_ORIGIN_ALLOW_ALL = True \ No newline at end of file +CORS_ORIGIN_ALLOW_ALL = True