├── client
├── index.html
├── components
│ ├── AppLoading.jsx
│ ├── AppNotFound.jsx
│ ├── Settings.jsx
│ ├── Login.jsx
│ ├── Tooltip.jsx
│ ├── App.jsx
│ ├── Modal.jsx
│ ├── Popout.jsx
│ ├── Sidenav.jsx
│ └── Map.jsx
├── router.jsx
└── styles
│ └── styles.scss
├── .meteor
├── .gitignore
├── release
├── platforms
├── .id
├── .finished-upgraders
├── packages
└── versions
├── LICENSE
├── .gitignore
├── .DS_Store
├── lib
└── collections.js
├── scss.json
├── server
└── server.jsx
└── precinct4.geojson
/client/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.meteor/.gitignore:
--------------------------------------------------------------------------------
1 | local
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | 2015 © Sam Corcos
2 |
--------------------------------------------------------------------------------
/client/components/AppLoading.jsx:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/client/components/AppNotFound.jsx:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/client/components/Settings.jsx:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.meteor/release:
--------------------------------------------------------------------------------
1 | METEOR@1.2-rc.7
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | settings.json
3 |
--------------------------------------------------------------------------------
/.meteor/platforms:
--------------------------------------------------------------------------------
1 | server
2 | browser
3 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/samcorcos/campaign-hawk/HEAD/.DS_Store
--------------------------------------------------------------------------------
/lib/collections.js:
--------------------------------------------------------------------------------
1 | VoterData = new Mongo.Collection('voterData');
2 | VoterDataGeoJSON = new Mongo.Collection('voterDataGeoJSON');
3 |
--------------------------------------------------------------------------------
/scss.json:
--------------------------------------------------------------------------------
1 | {
2 | "enableAutoprefixer": true,
3 | "autoprefixerOptions": {
4 | "browsers": ["> 5%"],
5 | "cascade": false
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/client/components/Login.jsx:
--------------------------------------------------------------------------------
1 | Login = React.createClass({
2 | render() {
3 | return (
4 |
This is where the login goes
5 | )
6 | }
7 | })
8 |
--------------------------------------------------------------------------------
/.meteor/.id:
--------------------------------------------------------------------------------
1 | # This file contains a token that is unique to your project.
2 | # Check it into your repository along with the rest of this directory.
3 | # It can be used for purposes such as:
4 | # - ensuring you don't accidentally deploy one app on top of another
5 | # - providing package authors with aggregated statistics
6 |
7 | 16ttuih1ecbn7n1tehn8k
8 |
--------------------------------------------------------------------------------
/.meteor/.finished-upgraders:
--------------------------------------------------------------------------------
1 | # This file contains information which helps Meteor properly upgrade your
2 | # app when you run 'meteor update'. You should check it into version control
3 | # with your project.
4 |
5 | notices-for-0.9.0
6 | notices-for-0.9.1
7 | 0.9.4-platform-file
8 | notices-for-facebook-graph-api-2
9 | 1.2.0-standard-minifiers-package
10 | 1.2.0-meteor-platform-split
11 | 1.2.0-cordova-changes
12 |
--------------------------------------------------------------------------------
/client/router.jsx:
--------------------------------------------------------------------------------
1 | const {
2 | Router,
3 | Route,
4 | Redirect
5 | } = ReactRouter;
6 | const {
7 | history
8 | } = ReactRouter.lib.BrowserHistory;
9 | Meteor.startup(function() {
10 | let AppRoutes = (
11 |
12 |
13 |
14 |
15 |
16 |
17 | )
18 | React.render(AppRoutes, document.body)
19 | })
20 |
21 | // window.location.search.substring(1).split("=")
22 | // window.location.search.substring(1).split("=")[1]
23 |
--------------------------------------------------------------------------------
/.meteor/packages:
--------------------------------------------------------------------------------
1 | # Meteor packages used by this project, one per line.
2 | # Check this file (and the other files in this directory) into your repository.
3 | #
4 | # 'meteor add' and 'meteor remove' will edit this file for you,
5 | # but you can also edit it by hand.
6 |
7 | standard-minifiers
8 | meteor-base
9 | mobile-experience
10 | mongo
11 | blaze-html-templates
12 | session
13 | jquery
14 | tracker
15 | logging
16 | reload
17 | random
18 | ejson
19 | spacebars
20 | check
21 | fourseven:scss
22 | react
23 | reactrouter:react-router
24 | fortawesome:fontawesome
25 | pauloborges:mapbox
26 | http
27 | reactive-var
28 | insecure
29 | d3
30 |
--------------------------------------------------------------------------------
/client/components/Tooltip.jsx:
--------------------------------------------------------------------------------
1 | SidenavTooltip = React.createClass({
2 | render() {
3 | tooltipStyle = {
4 | top: this.props.tooltipY,
5 | left: this.props.tooltipX
6 | }
7 | if (this.props.showTooltipState) {
8 | tooltipStyle.opacity = "1";
9 | tooltipStyle.visibility = "visible";
10 | } else {
11 | tooltipStyle.opacity = "0";
12 | tooltipStyle.visibility = "hidden";
13 | }
14 | return (
15 |
16 |
{this.props.tooltipDescription}
17 |
18 |
19 | )
20 | }
21 | })
22 |
--------------------------------------------------------------------------------
/client/components/App.jsx:
--------------------------------------------------------------------------------
1 | App = React.createClass({
2 | render() {
3 | return (
4 |
5 | {this.props.children}
6 |
7 | )
8 | }
9 | })
10 |
11 | // MeteorData = React.createClass({
12 | // componentWillMount() {
13 | // this.c = Tracker.autorun(() => {
14 | // const sub = this.props.subscribe()
15 | // const state = this.props.fetch()
16 | // state.loading = !sub.ready()
17 | // this.setState(state)
18 | // })
19 | // },
20 | // componentWillUnmount() {
21 | // this.c.stop()
22 | // },
23 | // render() {
24 | // return this.state ? this.props.render(this.state) : false
25 | // }
26 | // })
27 |
28 | MeteorData = React.createClass({
29 | mixins: [ReactMeteorData],
30 | getMeteorData() {
31 | const sub = this.props.subscribe()
32 | const data = this.props.fetch()
33 | data.loading = !sub.ready()
34 | return data;
35 | },
36 | render() {
37 | return this.props.render(this.data)
38 | }
39 | })
40 |
--------------------------------------------------------------------------------
/.meteor/versions:
--------------------------------------------------------------------------------
1 | autoupdate@1.2.3-rc.1
2 | babel-compiler@5.8.22-rc.0
3 | babel-runtime@0.1.4-rc.0
4 | base64@1.0.4-rc.0
5 | binary-heap@1.0.4-rc.0
6 | blaze@2.1.3-rc.0
7 | blaze-html-templates@1.0.1-rc.0
8 | blaze-tools@1.0.4-rc.0
9 | boilerplate-generator@1.0.4-rc.0
10 | caching-compiler@1.0.0-rc.0
11 | caching-html-compiler@1.0.1-rc.0
12 | callback-hook@1.0.4-rc.0
13 | check@1.0.6-rc.0
14 | coffeescript@1.0.8-rc.2
15 | cosmos:browserify@0.5.0
16 | d3@1.0.0
17 | ddp@1.2.1-rc.0
18 | ddp-client@1.2.1-rc.1
19 | ddp-common@1.2.1-rc.0
20 | ddp-server@1.2.1-rc.1
21 | deps@1.0.8-rc.0
22 | diff-sequence@1.0.1-rc.0
23 | ecmascript@0.1.3-rc.1
24 | ecmascript-collections@0.1.5-rc.1
25 | ejson@1.0.7-rc.0
26 | fastclick@1.0.7-rc.0
27 | fortawesome:fontawesome@4.4.0
28 | fourseven:scss@3.2.0
29 | geojson-utils@1.0.4-rc.0
30 | hot-code-push@1.0.0-rc.0
31 | html-tools@1.0.5-rc.0
32 | htmljs@1.0.5-rc.1
33 | http@1.1.1-rc.1
34 | id-map@1.0.4-rc.0
35 | insecure@1.0.4-rc.0
36 | jquery@1.11.4-rc.0
37 | jsx@0.2.0
38 | launch-screen@1.0.3-rc.1
39 | livedata@1.0.14-rc.0
40 | logging@1.0.8-rc.1
41 | meteor@1.1.7-rc.1
42 | meteor-base@1.0.1-rc.0
43 | minifiers@1.1.6-rc.1
44 | minimongo@1.0.9-rc.0
45 | mobile-experience@1.0.1-rc.0
46 | mobile-status-bar@1.0.5-rc.1
47 | mongo@1.1.1-rc.2
48 | mongo-id@1.0.1-rc.0
49 | npm-mongo@1.4.39-rc.0_1
50 | observe-sequence@1.0.7-rc.0
51 | ordered-dict@1.0.4-rc.0
52 | pauloborges:mapbox@2.1.5
53 | promise@0.4.8-rc.0
54 | random@1.0.4-rc.0
55 | react@0.1.11
56 | react-meteor-data@0.1.7
57 | react-runtime@0.13.3_6
58 | react-runtime-dev@0.13.3_5
59 | react-runtime-prod@0.13.3_4
60 | reactive-dict@1.1.1-rc.0
61 | reactive-var@1.0.6-rc.0
62 | reactrouter:react-router@0.1.4
63 | reload@1.1.4-rc.0
64 | retry@1.0.4-rc.0
65 | routepolicy@1.0.6-rc.0
66 | session@1.1.1-rc.0
67 | spacebars@1.0.7-rc.0
68 | spacebars-compiler@1.0.7-rc.0
69 | standard-minifiers@1.0.0-rc.1
70 | templating@1.1.2-rc.3
71 | templating-tools@1.0.0-rc.0
72 | tracker@1.0.8-rc.0
73 | ui@1.0.7-rc.0
74 | underscore@1.0.4-rc.0
75 | url@1.0.5-rc.0
76 | webapp@1.2.2-rc.1
77 | webapp-hashing@1.0.4-rc.0
78 |
--------------------------------------------------------------------------------
/client/components/Modal.jsx:
--------------------------------------------------------------------------------
1 | Modal = React.createClass({
2 | render() {
3 | let modalStyle = {
4 | visibility: "hidden",
5 | opacity: "0"
6 | }
7 | if (!!this.props.showModalState) {
8 | modalStyle.visibility = "visible"
9 | modalStyle.opacity = "1"
10 | }
11 | return (
12 |
13 |
14 | {(() => {
15 | switch (this.props.showModalState) {
16 | case "Add Volunteer": return
;
17 | case "View Volunteers": return view volunteers
;
18 | default: return false;
19 | }
20 | })()}
21 |
22 |
23 | )
24 | }
25 | })
26 |
27 | AddVolunteerModalContent = React.createClass({
28 | render() {
29 | return (
30 |
31 |
46 |
51 |
52 |
53 |
54 |
55 |
56 | )
57 | }
58 | })
59 |
--------------------------------------------------------------------------------
/client/components/Popout.jsx:
--------------------------------------------------------------------------------
1 | Popout = React.createClass({
2 | render() {
3 | var popoutStyle = {
4 | top: this.props.popoutY,
5 | left: "50px"
6 | }
7 | if (this.props.showPopoutState) {
8 | popoutStyle.opacity = "1";
9 | popoutStyle.visibility = "visible";
10 | } else {
11 | popoutStyle.opacity = "0";
12 | popoutStyle.visibility = "hidden";
13 | }
14 | return (
15 |
16 |
{this.props.popoutContent}
17 |
18 |
19 | )
20 | }
21 | })
22 |
23 | DataLayerPopoutContent = React.createClass({
24 | getInitialState() {
25 | return {
26 | voterSliderValue: 0
27 | }
28 | },
29 | handleDataLayerChange(e) {
30 | this.props.toggleDataLayer(e.target.id)
31 | },
32 | handleVoterSliderChange(e) {
33 | this.props.refreshVoterFilterLayer(e.target.value)
34 | },
35 | render() {
36 | let filterRange = (
37 |
38 | 0%100%
39 |
40 | )
41 | return (
42 |
63 | )
64 | }
65 | })
66 |
--------------------------------------------------------------------------------
/server/server.jsx:
--------------------------------------------------------------------------------
1 | Meteor.startup(function() {
2 | if (VoterData.find().count() === 0) {
3 | HTTP.post("http://trc-backend-test.azurewebsites.net/login/code?code=" + Meteor.settings.accessCode, [], function(err, res) {
4 | var list = HTTP.get(res.data.Server + "/sheets/" + res.data.SheetId + "?type=json", {
5 | headers: {
6 | "Authorization": "Bearer " + res.data.AuthToken,
7 | "Accept": "application/json; charset=utf-8"
8 | }
9 | }, function(err, res) {
10 | var keys = _.keys(res.data);
11 | _.each(res.data.RecId, function(item, i) {
12 | var voter = {};
13 | _.each(keys, function(key) {
14 | voter[key] = res.data[key][i]
15 | })
16 | VoterData.insert({
17 | rec_id: voter.RecId,
18 | first_name: voter.FirstName,
19 | last_name: voter.LastName,
20 | birthday: voter.Birthday,
21 | gender: voter.Gender,
22 | city: voter.City,
23 | zip: voter.Zip,
24 | address: voter.Address,
25 | lat: voter.Lat,
26 | long: voter.Long,
27 | party: voter.Party,
28 | history: voter.History,
29 | precinct_name: voter.PrecinctName
30 | });
31 | })
32 | })
33 | });
34 | }
35 | })
36 |
37 | var featureArray = [];
38 | convertToGeoJSON = function() {
39 | _.each(VoterData.find().fetch(), function(voter) {
40 | featureArray.push({
41 | type: "Feature",
42 | geometry: {
43 | type: "Point",
44 | coordinates: [+voter.long, +voter.lat]
45 | },
46 | properties: {
47 | rec_id: voter.rec_id,
48 | first_name: voter.first_name,
49 | last_name: voter.last_name,
50 | birthday: new Date(voter.birthday).getTime(),
51 | gender: voter.gender,
52 | city: voter.city,
53 | zip: +voter.zip,
54 | address: voter.address,
55 | party: +voter.party,
56 | history: (parseFloat(voter.history)/100 || 0),
57 | precinct_name: voter.precinct_name
58 | }
59 | })
60 | })
61 | }
62 |
63 | if (VoterDataGeoJSON.find().count() === 0) {
64 | convertToGeoJSON()
65 | VoterDataGeoJSON.insert({
66 | "type": "FeatureCollection",
67 | "features": featureArray
68 | })
69 | }
70 |
71 | Meteor.publish('geojson', function() {
72 | return VoterDataGeoJSON.find();
73 | })
74 |
--------------------------------------------------------------------------------
/client/components/Sidenav.jsx:
--------------------------------------------------------------------------------
1 | Sidenav = React.createClass({
2 | getInitialState() {
3 | return {
4 | tooltipDescription: "",
5 | showTooltipState: false,
6 | tooltipX: "50px",
7 | tooltipY: "0px",
8 | popoutContent: "",
9 | showPopoutState: false,
10 | popoutY: "0px"
11 | }
12 | },
13 | showTooltip(e) {
14 | if (this.state.showPopoutState) { return null; }
15 | this.setState({
16 | showTooltipState: true,
17 | tooltipY: e.nativeEvent.target.offsetTop + (e.nativeEvent.target.offsetHeight / 2) + "px"
18 | })
19 | },
20 | setTooltipDescription(item) {
21 | this.setState({
22 | tooltipDescription: item.description
23 | })
24 | },
25 | hideTooltip(e) {
26 | this.setState({
27 | showTooltipState: false
28 | })
29 | },
30 | showPopout(item, e) {
31 | this.setState({
32 | showPopoutState: true,
33 | showTooltipState: false,
34 | popoutContent: item,
35 | popoutY: e.nativeEvent.target.offsetTop + (e.nativeEvent.target.offsetHeight + 10) + "px"
36 | })
37 | },
38 | hidePopout(e) {
39 | this.setState({
40 | showPopoutState: false
41 | })
42 | },
43 | render() {
44 | return (
45 |
68 | )
69 | }
70 | })
71 |
72 | SidenavIcons = React.createClass({
73 | shouldComponentUpdate(nextProps, nextState) {
74 | return nextProps.id !== this.props.id
75 | },
76 | handlePopoutClick(data, e) {
77 | this.props.showPopoutState ?
78 | this.props.hidePopout() :
79 | this.props.showPopout.bind(null, data, e)();
80 | },
81 | render() {
82 | let iconList = [
83 | {name: "fa fa-database", description: "Data Layers"},
84 | {name: "fa fa-user-plus", description: "Add Volunteer"},
85 | {name: "fa fa-users", description: "View Volunteers"},
86 | {name: "fa fa-bicycle", description: "Dispatcher"},
87 | {name: "fa fa-list-ul", description: "View as List"},
88 | {name: "fa fa-lightbulb-o", description: "Campaign Autopilot"},
89 | {name: "fa fa-list-ol", description: "Leaderboard"},
90 | {name: "fa fa-line-chart", description: "Fancy Charts"},
91 | {name: "fa fa-cog", description: "Settings"}
92 | ]
93 | let list = iconList.map((item) => {
94 | return (
95 | {
97 | switch (item.description) {
98 | case "Add Volunteer": return this.props.showModal.bind(null, item.description);
99 | case "View Volunteers": return this.props.showModal.bind(null, item.description);
100 | case "View as List": return this.props.showModal.bind(null, item.description);
101 | case "Leaderboard": return this.props.showModal.bind(null, item.description);
102 | case "Data Layers": return this.handlePopoutClick.bind(null, );
105 | default: return null;
106 | }
107 | })()}
108 | onMouseEnter={this.props.setTooltipDescription.bind(null, item)}
109 | onMouseOver={this.props.showTooltip}
110 | onMouseOut={this.props.hideTooltip}
111 | className="sidenav-list-item">
112 |
113 |
114 | )
115 | })
116 | return (
117 |
118 | {list}
119 |
120 | )
121 | }
122 | })
123 |
--------------------------------------------------------------------------------
/client/components/Map.jsx:
--------------------------------------------------------------------------------
1 | Meteor.startup(function() {
2 | Mapbox.load({
3 | plugins: [
4 | "turf",
5 | "markercluster",
6 | "omnivore"
7 | ]
8 | });
9 | });
10 |
11 | Tracker.autorun(function () {
12 | let handle = Meteor.subscribe('geojson');
13 | if (Mapbox.loaded() && handle.ready()) {
14 | // let x = turf.center(VoterDataGeoJSON.find().fetch()[0]).geometry.coordinates
15 | L.mapbox.accessToken = Meteor.settings.public.mapbox.accessToken;
16 | map = L.mapbox.map("map", Meteor.settings.public.mapbox.mapId) //.setView([47.736534, -121.956672], 14) // reset this
17 |
18 | allVotersLayer = createAllVotersLayer()
19 | precinctLayer = createPrecinctLayer()
20 | filteredVoterLayer = createFilteredVoterLayer(value=0)
21 | }
22 | });
23 |
24 | let createPrecinctLayer = function() {
25 | let allDataFeatures = VoterDataGeoJSON.find().fetch()[0].features;
26 | var stringOfCoords = new Set();
27 | let uniqueDataFeatures = _.filter(allDataFeatures, function(feature) {
28 | if (!stringOfCoords.has(feature.geometry.coordinates.toString()) && feature.geometry.coordinates.toString() != "0,0") {
29 | stringOfCoords.add(feature.geometry.coordinates.toString())
30 | return feature
31 | }
32 | })
33 | let groupByPrecinct = _.groupBy(uniqueDataFeatures, (feature) => { return feature.properties.precinct_name; })
34 | let precinctKeys = _.keys(groupByPrecinct);
35 | let precinctFeatureCollections = [];
36 | _.each(precinctKeys, (key) => {
37 | precinctFeatureCollections.push(turf.featurecollection(groupByPrecinct[key]))
38 | })
39 | let precinctConcaveHulls = [];
40 | let averagePartyAffiliation = [];
41 | _.each(precinctFeatureCollections, (precinct) => {
42 | let justProperties = _.pluck(precinct.features, "properties")
43 | let justParty = _.pluck(justProperties, "party")
44 | let partyAffiliationArray = _.without(justParty, 0, 6);
45 | averagePartyAffiliation.push(d3.mean(partyAffiliationArray));
46 | precinctConcaveHulls.push(turf.convex(precinct, 0.1, 'miles'))
47 | })
48 |
49 | var scale = d3.scale.linear()
50 | .domain([d3.min(averagePartyAffiliation), d3.max(averagePartyAffiliation)])
51 | .range([1, 5]);
52 |
53 | let scaledPartyAffiliationArray = _.map(averagePartyAffiliation, scale)
54 |
55 | var colorScale = d3.scale.linear()
56 | .domain([1, 3, 5])
57 | .range(["blue", "gray", "red"])
58 |
59 | let scaledColorArray = _.map(scaledPartyAffiliationArray, colorScale)
60 |
61 | let scaledPrecinctConcaveHulls = _.map(precinctConcaveHulls, function(polygonFeatureGroup, i) {
62 | let propertiesObject = {
63 | title: precinctKeys[i],
64 | stroke: scaledColorArray[i],
65 | "stroke-opacity": 0.7,
66 | "stroke-width": 2,
67 | fill: scaledColorArray[i],
68 | "fill-opacity": 0.3
69 | };
70 | polygonFeatureGroup.properties = propertiesObject
71 | return polygonFeatureGroup
72 | })
73 | // console.log(precinctFeatureCollections[4]); // This is the one that breaks everything
74 | return L.mapbox.featureLayer(scaledPrecinctConcaveHulls);
75 | // map.addLayer(precinctFeatureLayer);
76 | }
77 |
78 | let createAllVotersLayer = () => {
79 | let clusterGroup = new L.MarkerClusterGroup();
80 | let voterDataUnfiltered = VoterDataGeoJSON.find().fetch()[0].features
81 | let voterDataFiltered = _.filter(voterDataUnfiltered, function(feature) {
82 | if (feature.geometry.coordinates[0] != 0) {
83 | return feature;
84 | }
85 | })
86 | let voterDataFeatureCollection = turf.featurecollection(voterDataFiltered)
87 | let dataLayer = L.mapbox.featureLayer().setGeoJSON(voterDataFeatureCollection)
88 | return clusterGroup.addLayer(dataLayer)
89 | }
90 |
91 | let createFilteredVoterLayer = (value) => {
92 | let votingPercentage = value / 100;
93 | let filteredVoters = _.filter(VoterDataGeoJSON.find().fetch()[0].features, function(feature) {
94 | if (feature.geometry.coordinates[0] != 0) {
95 | return feature.properties.history > votingPercentage
96 | }
97 | })
98 | let clusterGroup = new L.MarkerClusterGroup();
99 | let dataLayer = L.mapbox.featureLayer().setGeoJSON(filteredVoters)
100 | if (typeof filteredVoterLayer !== "undefined") {
101 | return filteredVoterLayer = clusterGroup.addLayer(dataLayer)
102 | }
103 | return clusterGroup.addLayer(dataLayer)
104 | }
105 |
106 |
107 | MapChild = React.createClass({
108 | refreshVoterFilterLayer(value) {
109 | if (map.hasLayer(filteredVoterLayer)) {
110 | map.removeLayer(filteredVoterLayer)
111 | }
112 | createFilteredVoterLayer(value)
113 | map.addLayer(filteredVoterLayer)
114 | },
115 | toggleDataLayer(layerName) {
116 | if (!this.props.loading) {
117 |
118 | let allLayers = [
119 | allVotersLayer,
120 | precinctLayer,
121 | filteredVoterLayer
122 | ]
123 |
124 | _.each(allLayers, function(layer) {
125 | if (map.hasLayer(layer)) {
126 | map.removeLayer(layer)
127 | }
128 | })
129 |
130 | if (layerName === "all-voters-layer") {
131 | map.addLayer(allVotersLayer)
132 | }
133 | if (layerName === "precinct-layer") {
134 | map.addLayer(precinctLayer)
135 | }
136 | if (layerName === "filter-non-voters") {
137 | map.addLayer(filteredVoterLayer)
138 | }
139 |
140 | } else {
141 | alert("Not ready. Retrying in 3 seconds."); // What we eventually want is a loading spinner
142 | setTimeout(() => {
143 | this.toggleDataLayer(layerName);
144 | }, 3000)
145 | }
146 | },
147 | render() {
148 | if (!this.props.loading) {
149 |
150 | }
151 | return (
152 |
164 | )
165 | }
166 | })
167 |
168 | Map = React.createClass({
169 | getInitialState() {
170 | return {
171 | showModalState: false
172 | }
173 | },
174 | showModal(modalType) {
175 | this.setState({
176 | showModalState: modalType
177 | })
178 | },
179 | hideModal(e) {
180 | this.setState({
181 | showModalState: false
182 | })
183 | },
184 | render() {
185 | return (
186 | {
188 | return Meteor.subscribe('geojson') }}
189 | fetch = { () => {
190 | return {data: VoterDataGeoJSON.find().fetch() } }}
191 | render = { ({loading, data}) => {
192 | return }
199 | }
200 | />
201 | )
202 | }
203 | })
204 |
--------------------------------------------------------------------------------
/client/styles/styles.scss:
--------------------------------------------------------------------------------
1 | @import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
2 | $font-stack: 'Open Sans', sans-serif;
3 | $default-text-color: rgba(107,117,139,1);
4 |
5 |
6 | body, p, h1, h2, h3, h4, ul, li {
7 | font-family: $font-stack;
8 | padding: 0;
9 | margin: 0;
10 | }
11 |
12 | .sidenav {
13 | z-index: 2;
14 | position: absolute;
15 | top: 0;
16 | left: 0;
17 | box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
18 | background-color: rgba(250,250,250,1);
19 | width: 60px;
20 | height: 100vh;
21 | .sidenav-list {
22 | list-style-type: none;
23 | div {
24 | padding-top: 20px;
25 | }
26 | .sidenav-list-item {
27 | cursor: pointer;
28 | padding: 20px;
29 | display: flex;
30 | opacity: 0.54;
31 | font-size: 1.6em;
32 | justify-content: center;
33 | }
34 | }
35 | }
36 |
37 | .sidenav-tooltip, .popout-container {
38 | transition: opacity 0.3s ease;
39 | opacity: 0;
40 | background-color: #fff;
41 | min-height: 3em;
42 | padding-bottom: 4px;
43 | margin-left: 30px;
44 | position: absolute;
45 | box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.5);
46 | visibility: hidden;
47 | display: flex;
48 | align-items: center;
49 | transform: translateY(-50%);
50 | .popout-content {
51 | padding: 10px 15px;
52 | ul {
53 | list-style-type: none;
54 | li {
55 | .filter-voter-range {
56 | white-space:nowrap;
57 | }
58 | }
59 | }
60 | }
61 | p {
62 | color: $default-text-color;
63 | white-space: nowrap;
64 | font-size: 1.5em;
65 | padding: 10px;
66 | align-self: center;
67 | }
68 | .tail {
69 | border: 10px solid;
70 | border-color: transparent #fff transparent transparent;
71 | position:absolute;
72 | top: 15px;
73 | left: -20px;
74 | }
75 | }
76 |
77 | .content-wrapper {
78 | width: calc(100% - 60px);
79 | padding-left: 60px;
80 | }
81 |
82 | .modal-active-darken {
83 | background-color: rgba(0,0,0,.5);
84 | width: calc(100% - 60px);
85 | pointer-events: none;
86 | display: flex;
87 | justify-content: center;
88 | align-items: center;
89 | transition: all 0.3s ease;
90 | position: absolute;
91 | top: 0;
92 | bottom: 0;
93 | z-index: 1;
94 | .modal-container {
95 | pointer-events: all;
96 | width: 60%;
97 | min-height: 500px;
98 | background-color: white;
99 | border-radius: 2px;
100 | box-shadow: 5px 8px 10px 0px rgba(0,0,0,0.5);
101 | }
102 | }
103 |
104 | .volunteer-form-row {
105 | height: 225px;
106 | width: 100%;
107 | padding: 10px 20px;
108 | display: flex;
109 | align-items: center;
110 | box-sizing: border-box;
111 | .volunteer-form-column-55 {
112 | width: 55%;
113 | display: flex;
114 | flex-direction: column;
115 | padding: 0 20px;
116 | box-sizing: border-box;
117 | }
118 | .volunteer-form-column-45 {
119 | width: 45%;
120 | position: relative;
121 | height: 225px;
122 | display: flex;
123 | flex-direction: column;
124 | align-items: center;
125 | justify-content: center;
126 | .profile-image-wrapper {
127 | height: 150px;
128 | width: 150px;
129 | border-radius: 50%;
130 | overflow: hidden;
131 | display: flex;
132 | justify-content: center;
133 | align-items: center;
134 | }
135 | button {
136 | margin-top: 10px;
137 | margin-bottom: -20px;
138 | }
139 | }
140 | .volunteer-form-column-100 {
141 | width: 100%;
142 | display: flex;
143 | justify-content: center;
144 | box-sizing: border-box;
145 | align-self: center;
146 | height: 150px;
147 | textarea {
148 | background-color: white;
149 | width: 93%;
150 | height: 100%;
151 | font-size: 1rem;
152 | border-radius: 2px;
153 | border: 1px solid #888;
154 | &::-webkit-input-placeholder {
155 | padding: 8px;
156 | }
157 | }
158 | }
159 | }
160 |
161 | .submit-modal-buttons {
162 | padding: 0 20px;
163 | transform: translateY(-15px);
164 | display: flex;
165 | flex-direction: row-reverse;
166 | button {
167 | &:first-child {
168 | margin-right: 15px;
169 | }
170 | margin: 0 5px;
171 | }
172 | }
173 |
174 | [type="text"], [type="email"], [type="phone"] {
175 | background-color: transparent;
176 | border: none;
177 | border-bottom: 1px solid #888;
178 | border-radius: 0;
179 | outline: none;
180 | height: 3rem;
181 | width: 100%;
182 | font-size: 1rem;
183 | padding: 0;
184 | box-shadow: none;
185 | transition: all .3s;
186 | &:focus {
187 | border-bottom: 1px solid green;
188 | box-shadow: 0 1px 0 0 green;
189 | }
190 | }
191 |
192 | .close-modal-x {
193 | position: absolute;
194 | font-size: 1.5em;
195 | top: 5px;
196 | right: 0px;
197 | cursor: pointer;
198 | transition: all 0.1s ease;
199 | &:hover {
200 | color: #888;
201 | }
202 | }
203 |
204 | .button, .button-flat {
205 | border: none;
206 | border-radius: 2px;
207 | display: inline-block;
208 | outline: 0;
209 | padding: 1rem 1.5rem;
210 | text-transform: uppercase;
211 | vertical-align: middle;
212 | -webkit-tap-highlight-color: transparent;
213 | }
214 |
215 | .button {
216 | text-decoration:none;
217 | color: white;
218 | background-color: $default-text-color;
219 | text-align: center;
220 | letter-spacing: .5px;
221 | transition: all 0.2s ease;
222 | cursor: pointer;
223 | &:hover {
224 | background-color: lighten($default-text-color, 5%);
225 | box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.5);
226 | }
227 | }
228 |
229 | .button-flat {
230 | box-shadow: none;
231 | background-color: transparent;
232 | color: $default-text-color;
233 | cursor: pointer;
234 | transition: all 0.2s ease;
235 | white-space: nowrap;
236 | &:hover {
237 | color: white;
238 | background-color: $default-text-color;
239 | }
240 | }
241 |
242 | #map.mapbox {
243 | position: absolute;
244 | top: 0;
245 | bottom: 0;
246 | z-index: 0;
247 | width: calc(100% - 60px);
248 | }
249 |
250 | /* Remove default Radio Buttons */
251 | [type="radio"]:not(:checked),
252 | [type="radio"]:checked {
253 | display: none;
254 | }
255 | //
256 | // [type="radio"]:not(:checked),
257 | // [type="radio"]:checked {
258 | // position: absolute;
259 | // left: -100%;
260 | // visibility: hidden;
261 | // }
262 |
263 | [type="radio"] + label {
264 | position: relative;
265 | cursor: pointer;
266 | transition: all 0.3s ease;
267 | padding: 3px 0 0 35px;
268 | line-height: 25px;
269 | }
270 |
271 | [type="radio"] + label:before {
272 | content: '';
273 | position: absolute;
274 | left: 0;
275 | top: 0;
276 | margin: 4px;
277 | width: 16px;
278 | height: 16px;
279 | transition: all 0.3s ease;
280 | }
281 |
282 | [type="radio"]:not(:checked) + label:before {
283 | border-radius: 50%;
284 | border: 2px solid #888;
285 | }
286 |
287 | [type="radio"]:checked + label:before {
288 | border-radius: 50%;
289 | border: 2px solid $default-text-color;
290 | background-color: $default-text-color;
291 | }
292 |
293 | label {
294 | white-space: nowrap;
295 | }
296 |
--------------------------------------------------------------------------------
/precinct4.geojson:
--------------------------------------------------------------------------------
1 | { "_id" : "Cv9udtuW5xkWRmN65", "type" : "FeatureCollection", "features" : [ { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9728127, 47.73543919 ] }, "properties" : { "rec_id" : "WA005248995", "first_name" : "CHARLES", "last_name" : "ABSHIRE", "birthday" : -359344800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14902 273RD PL NE", "party" : 1, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9677879, 47.73253261 ] }, "properties" : { "rec_id" : "WA002080105", "first_name" : "KAY", "last_name" : "ADAMS", "birthday" : -445741200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27715 NE 145TH PL", "party" : 1, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656822, 47.73297754 ] }, "properties" : { "rec_id" : "WA003211060", "first_name" : "JANET", "last_name" : "ADKISSON", "birthday" : -1117504800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27920 NE 147TH CIR", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9617032, 47.73284084 ] }, "properties" : { "rec_id" : "WA003272471", "first_name" : "ERIK", "last_name" : "AHRENS", "birthday" : -754275600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28225 NE 147TH CT", "party" : 4, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9605282, 47.7332825 ] }, "properties" : { "rec_id" : "WA003272435", "first_name" : "DEBRA", "last_name" : "ALANIS", "birthday" : -411872400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28306 NE 147TH CT", "party" : 5, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9690175, 47.73312924 ] }, "properties" : { "rec_id" : "WA003272346", "first_name" : "LORI", "last_name" : "ALLEN-LESLIE", "birthday" : -301716000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27616 NE 145TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9745233, 47.73533967 ] }, "properties" : { "rec_id" : "WA009613094", "first_name" : "RONALD", "last_name" : "AMADOR", "birthday" : 247446000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14831 272ND PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9572544, 47.73427028 ] }, "properties" : { "rec_id" : "WA003272192", "first_name" : "DEREK", "last_name" : "ANDERSON", "birthday" : 99270000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28507 NE 149TH PL", "party" : 3, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9634142, 47.73269314 ] }, "properties" : { "rec_id" : "WA003251065", "first_name" : "GEORGE", "last_name" : "ANDERSON", "birthday" : -851821200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14530 281ST AVE NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9671537, 47.73245966 ] }, "properties" : { "rec_id" : "WA003276626", "first_name" : "JENNIFER", "last_name" : "ANDERSON", "birthday" : 147049200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27731 NE 145TH PL", "party" : 5, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653264, 47.73335727 ] }, "properties" : { "rec_id" : "WA003341659", "first_name" : "BIRGITTA", "last_name" : "ANDREWS", "birthday" : -911437200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28004 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9698, 47.73551869 ] }, "properties" : { "rec_id" : "WA010548571", "first_name" : "CARLY", "last_name" : "ANDREWS", "birthday" : 817340400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27531 NE 149TH LN", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9611762, 47.73282584 ] }, "properties" : { "rec_id" : "WA010151139", "first_name" : "JOHN", "last_name" : "ATWOOD", "birthday" : -734666400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28233 NE 147TH CT", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9680212, 47.73465682 ] }, "properties" : { "rec_id" : "WA003468998", "first_name" : "ATHENA", "last_name" : "AYRES", "birthday" : 130633200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27712 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656262, 47.73480301 ] }, "properties" : { "rec_id" : "WA009713662", "first_name" : "MARY", "last_name" : "BAILEY", "birthday" : 454888800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14810 279TH LN NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9717479, 47.73463292 ] }, "properties" : { "rec_id" : "WA003251952", "first_name" : "CARSON", "last_name" : "BAKKER", "birthday" : 462232800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27415 NE 148TH WAY", "party" : 0, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9603985, 47.73274634 ] }, "properties" : { "rec_id" : "WA003272313", "first_name" : "JACK", "last_name" : "BALLARD", "birthday" : -513568800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28307 NE 147TH CT", "party" : 1, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9661456, 47.73224851 ] }, "properties" : { "rec_id" : "WA009770327", "first_name" : "NICHOLAS", "last_name" : "BANKS", "birthday" : 594342000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27929 NE 147TH CIR", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9596006, 47.73393443 ] }, "properties" : { "rec_id" : "WA003272570", "first_name" : "AARON", "last_name" : "BARD", "birthday" : 493596000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14818 283RD PL NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662723, 47.7347509 ] }, "properties" : { "rec_id" : "WA010208573", "first_name" : "DAVID", "last_name" : "BARKER", "birthday" : 783990000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27819 NE 148TH LN", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9685665, 47.7346309 ] }, "properties" : { "rec_id" : "WA003270159", "first_name" : "LEAH", "last_name" : "BARNUM", "birthday" : -419047200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27713 NE 146TH WAY", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9667167, 47.7342489 ] }, "properties" : { "rec_id" : "WA009996740", "first_name" : "ETHAN", "last_name" : "BARSKE", "birthday" : 480553200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14804 278TH AVE NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9620999, 47.732215 ] }, "properties" : { "rec_id" : "WA003272322", "first_name" : "AMY", "last_name" : "BEAL", "birthday" : -44935200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28221 NE 146TH ST", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656293, 47.7351283 ] }, "properties" : { "rec_id" : "WA003469803", "first_name" : "JENNIFER", "last_name" : "BELL", "birthday" : 84063600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14814 279TH LN NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9648152, 47.73554584 ] }, "properties" : { "rec_id" : "WA003272436", "first_name" : "AMY", "last_name" : "BELLAMY", "birthday" : -27046800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27916 NE 149TH CT", "party" : 2, "history" : 0.2, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9615168, 47.73521675 ] }, "properties" : { "rec_id" : "WA007082531", "first_name" : "EMILY", "last_name" : "BEMIS", "birthday" : 616284000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14921 282ND PL NE", "party" : 0, "history" : 0.6, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9629106, 47.73246125 ] }, "properties" : { "rec_id" : "WA003200532", "first_name" : "EDWARD", "last_name" : "BENJAMIN", "birthday" : 410482800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28114 NE 145TH CT", "party" : 0, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.96094, 47.73233786 ] }, "properties" : { "rec_id" : "WA008654220", "first_name" : "MATTHEW", "last_name" : "BENNIER", "birthday" : 310604400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28238 NE 146TH ST", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9612834, 47.73244139 ] }, "properties" : { "rec_id" : "WA002852031", "first_name" : "MARK", "last_name" : "BERENS", "birthday" : 98146800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28232 NE 146TH ST", "party" : 6, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.969286, 47.73567465 ] }, "properties" : { "rec_id" : "WA003272375", "first_name" : "JERRY", "last_name" : "BERG", "birthday" : 310086000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14919 276TH PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653027, 47.73377552 ] }, "properties" : { "rec_id" : "WA003268486", "first_name" : "MARJORIE", "last_name" : "BERGSTROM", "birthday" : -854758800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27928 NE 147TH PL", "party" : 3, "history" : 0.6, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.964756, 47.73441561 ] }, "properties" : { "rec_id" : "WA001267749", "first_name" : "GARRETT", "last_name" : "BESLOW", "birthday" : 493336800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27928 NE 148TH PL", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9588927, 47.7349573 ] }, "properties" : { "rec_id" : "WA003272451", "first_name" : "GARY", "last_name" : "BEYERMAN", "birthday" : -726195600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28406 NE 149TH PL", "party" : 1, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9672532, 47.73294937 ] }, "properties" : { "rec_id" : "WA008863958", "first_name" : "AARON", "last_name" : "BISHOP", "birthday" : 236559600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27732 NE 145TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9667138, 47.73411438 ] }, "properties" : { "rec_id" : "WA003554154", "first_name" : "SCOTT", "last_name" : "BISSELL", "birthday" : -40269600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14800 278TH AVE NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9702805, 47.73555286 ] }, "properties" : { "rec_id" : "WA010335093", "first_name" : "GARY", "last_name" : "BIZJAK", "birthday" : -767412000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27515 NE 149TH LN", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.959653, 47.73417501 ] }, "properties" : { "rec_id" : "WA003272336", "first_name" : "MAY", "last_name" : "BLATHERWICK", "birthday" : -50551200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14824 283RD PL NE", "party" : 0, "history" : 0.25, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684143, 47.73259134 ] }, "properties" : { "rec_id" : "WA003272367", "first_name" : "SHAUN", "last_name" : "BLOOM", "birthday" : 53305200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27701 NE 145TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692904, 47.73310581 ] }, "properties" : { "rec_id" : "WA005221385", "first_name" : "BYRON", "last_name" : "BLUNK", "birthday" : 416444400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27610 NE 145TH PL", "party" : 0, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9642559, 47.73442453 ] }, "properties" : { "rec_id" : "WA003272248", "first_name" : "CARRIE", "last_name" : "BODNAR", "birthday" : -61693200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27932 NE 148TH PL", "party" : 2, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9628052, 47.73287424 ] }, "properties" : { "rec_id" : "WA003272087", "first_name" : "KIMBERLY", "last_name" : "BODNAR", "birthday" : -316227600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28201 NE 147TH PL", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9683631, 47.73502467 ] }, "properties" : { "rec_id" : "WA009140604", "first_name" : "DUANE", "last_name" : "BOLICK", "birthday" : 249346800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27704 NE 146TH WAY", "party" : 0, "history" : 0.2, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9636682, 47.73202787 ] }, "properties" : { "rec_id" : "WA003272337", "first_name" : "MARY", "last_name" : "BOOHER", "birthday" : -245811600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28107 NE 145TH CT", "party" : 3, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9680075, 47.73477948 ] }, "properties" : { "rec_id" : "WA003278320", "first_name" : "LISA", "last_name" : "BOWERSOCK", "birthday" : -241063200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27710 NE 146TH WAY", "party" : 0, "history" : 0.15, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9631588, 47.73197369 ] }, "properties" : { "rec_id" : "WA003272227", "first_name" : "EDWARD", "last_name" : "BOYD", "birthday" : -292471200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28115 NE 145TH CT", "party" : 4, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9665075, 47.73341394 ] }, "properties" : { "rec_id" : "WA010106374", "first_name" : "DAVID", "last_name" : "BRADLEY", "birthday" : -22903200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27811 NE 147TH PL", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9658956, 47.73219503 ] }, "properties" : { "rec_id" : "WA003702476", "first_name" : "JOHN", "last_name" : "BRADLEY", "birthday" : -43812000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27931 NE 147TH CIR", "party" : 4, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653289, 47.73462826 ] }, "properties" : { "rec_id" : "WA005019773", "first_name" : "JAYME", "last_name" : "BROSSARD", "birthday" : 343522800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27920 NE 148TH PL", "party" : 2, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9679088, 47.73405915 ] }, "properties" : { "rec_id" : "WA003677869", "first_name" : "DYAN", "last_name" : "BURKLO", "birthday" : 386373600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27722 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9691794, 47.73253305 ] }, "properties" : { "rec_id" : "WA001251020", "first_name" : "STEVEN", "last_name" : "BUSSING", "birthday" : -165981600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27617 NE 145TH PL", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9604158, 47.73437289 ] }, "properties" : { "rec_id" : "WA003272289", "first_name" : "STEVEN", "last_name" : "CARLSON", "birthday" : -22298400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14829 283RD PL NE", "party" : 4, "history" : 0.12, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9576619, 47.73486074 ] }, "properties" : { "rec_id" : "WA003272243", "first_name" : "TRACEY", "last_name" : "CARMEAN", "birthday" : -119062800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28504 NE 149TH PL", "party" : 3, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9666421, 47.73479546 ] }, "properties" : { "rec_id" : "WA003503035", "first_name" : "CHARLOTTE", "last_name" : "CARRIDO", "birthday" : -615693600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27809 NE 148TH LN", "party" : 4, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9731328, 47.73388056 ] }, "properties" : { "rec_id" : "WA003272208", "first_name" : "ELIZABETH", "last_name" : "CARTER", "birthday" : -116301600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27312 NE 146TH PL", "party" : 0, "history" : 0.2, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9697671, 47.73528874 ] }, "properties" : { "rec_id" : "WA003272215", "first_name" : "MARK", "last_name" : "CASE", "birthday" : -104810400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27530 NE 148TH LN", "party" : 2, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647314, 47.73269783 ] }, "properties" : { "rec_id" : "WA003391232", "first_name" : "LAUREN", "last_name" : "CASTRO", "birthday" : 443228400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27945 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9674747, 47.73250321 ] }, "properties" : { "rec_id" : "WA007348611", "first_name" : "MARILYN", "last_name" : "CATES", "birthday" : -1042506000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27723 NE 145TH PL", "party" : 1, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9734999, 47.73445372 ] }, "properties" : { "rec_id" : "WA003272068", "first_name" : "AARON", "last_name" : "CATO", "birthday" : 54860400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27231 NE 148TH WAY", "party" : 0, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9604843, 47.73179535 ] }, "properties" : { "rec_id" : "WA003277486", "first_name" : "GERARD", "last_name" : "CATTIN", "birthday" : -371696400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28311 NE 146TH ST", "party" : 1, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9607549, 47.73364861 ] }, "properties" : { "rec_id" : "WA003272521", "first_name" : "SALLY", "last_name" : "CHAFE", "birthday" : -506998800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28233 NE 148TH PL", "party" : 3, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9605568, 47.73410998 ] }, "properties" : { "rec_id" : "WA010126407", "first_name" : "AMY", "last_name" : "CHAMBERS", "birthday" : 613173600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14819 283RD PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9621897, 47.73379182 ] }, "properties" : { "rec_id" : "WA010361127", "first_name" : "SARAH", "last_name" : "CHASE", "birthday" : 149122800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28205 NE 148TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9681007, 47.73503972 ] }, "properties" : { "rec_id" : "WA005195795", "first_name" : "JOHN", "last_name" : "CHRISTIAN", "birthday" : 574729200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27706 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.964955, 47.73439587 ] }, "properties" : { "rec_id" : "WA009699795", "first_name" : "ANITA", "last_name" : "CHRISTOPHER", "birthday" : 340585200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27918 NE 148TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9617765, 47.73492964 ] }, "properties" : { "rec_id" : "WA003702293", "first_name" : "MICHELLE", "last_name" : "CIMINO", "birthday" : -1990800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14905 282ND PL NE", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9727436, 47.73477819 ] }, "properties" : { "rec_id" : "WA009688738", "first_name" : "CONNOR", "last_name" : "CLANCY", "birthday" : 748648800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27321 NE 148TH WAY", "party" : 0, "history" : 0.52, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9619598, 47.73451825 ] }, "properties" : { "rec_id" : "WA003272499", "first_name" : "CHAD", "last_name" : "CLAPP", "birthday" : -434167200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28115 NE 149TH PL", "party" : 4, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9610085, 47.7351713 ] }, "properties" : { "rec_id" : "WA009497726", "first_name" : "CORTNEY", "last_name" : "CLARK", "birthday" : 440204400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14920 282ND PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9686795, 47.73213336 ] }, "properties" : { "rec_id" : "WA003272484", "first_name" : "LOU", "last_name" : "CLARK", "birthday" : -718506000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27620 NE 144TH ST", "party" : 5, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9610306, 47.73486652 ] }, "properties" : { "rec_id" : "WA003272073", "first_name" : "CHRISTOPHER", "last_name" : "CLARKE", "birthday" : -171165600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14906 282ND PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653536, 47.73509533 ] }, "properties" : { "rec_id" : "WA003272415", "first_name" : "BONNIE", "last_name" : "CLIFT", "birthday" : -502333200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27929 NE 149TH CT", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.959602, 47.73498588 ] }, "properties" : { "rec_id" : "WA003272423", "first_name" : "BURR", "last_name" : "CLINE", "birthday" : -1260493200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14918 283RD PL NE", "party" : 1, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9652992, 47.73316478 ] }, "properties" : { "rec_id" : "WA009565509", "first_name" : "BRYAN", "last_name" : "COARD", "birthday" : 470530800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27950 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9601569, 47.73323821 ] }, "properties" : { "rec_id" : "WA003272082", "first_name" : "MARK", "last_name" : "COLE", "birthday" : -395805600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28314 NE 147TH CT", "party" : 3, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9642045, 47.73549561 ] }, "properties" : { "rec_id" : "WA003188144", "first_name" : "A", "last_name" : "COOMBES", "birthday" : -1198544400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14931 280TH PL NE", "party" : 3, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9708946, 47.735143 ] }, "properties" : { "rec_id" : "WA003272098", "first_name" : "ROANN", "last_name" : "CORBISIER", "birthday" : -335066400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14805 275TH PL NE", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9724304, 47.734344 ] }, "properties" : { "rec_id" : "WA003272262", "first_name" : "CHRISTELLE", "last_name" : "CREEKMORE", "birthday" : 195692400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14709 274TH WAY NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9576845, 47.73435937 ] }, "properties" : { "rec_id" : "WA003270480", "first_name" : "SHELLY", "last_name" : "CROSSLAND", "birthday" : 96332400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28503 NE 149TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684091, 47.73536416 ] }, "properties" : { "rec_id" : "WA001172379", "first_name" : "DANIEL", "last_name" : "CROUCH", "birthday" : 355096800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14906 276TH PL NE", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662494, 47.7334134 ] }, "properties" : { "rec_id" : "WA007557398", "first_name" : "HONGXIA", "last_name" : "CROWELL", "birthday" : -226980000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27815 NE 147TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9697157, 47.73313685 ] }, "properties" : { "rec_id" : "WA003272305", "first_name" : "ANNA", "last_name" : "CUNNINGHAM", "birthday" : -974768400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27526 NE 145TH LN", "party" : 2, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692486, 47.73553868 ] }, "properties" : { "rec_id" : "WA009275686", "first_name" : "CHRISTOPHER", "last_name" : "CURWICK", "birthday" : 406940400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14915 276TH PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9642237, 47.7331204 ] }, "properties" : { "rec_id" : "WA003272488", "first_name" : "CHRISTINA", "last_name" : "CUSACK", "birthday" : -756608400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14619 281ST AVE NE", "party" : 2, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9638271, 47.73394427 ] }, "properties" : { "rec_id" : "WA010274334", "first_name" : "AMY", "last_name" : "CYR", "birthday" : -74311200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28003 NE 148TH PL", "party" : 0, "history" : 0.15, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9625072, 47.73532553 ] }, "properties" : { "rec_id" : "WA003272489", "first_name" : "GARY", "last_name" : "DAMRON", "birthday" : -472611600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14925 281ST PL NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9609299, 47.73324737 ] }, "properties" : { "rec_id" : "WA003272118", "first_name" : "MEREDITH", "last_name" : "DARVIE", "birthday" : -535078800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28236 NE 147TH CT", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9588757, 47.73447887 ] }, "properties" : { "rec_id" : "WA003272071", "first_name" : "KEVIN", "last_name" : "DAVIS", "birthday" : -67654800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28407 NE 149TH PL", "party" : 1, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.970266, 47.73414628 ] }, "properties" : { "rec_id" : "WA003272111", "first_name" : "JEANNE", "last_name" : "DAWKINS", "birthday" : 39826800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27519 NE 147TH LN", "party" : 4, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9679794, 47.73454968 ] }, "properties" : { "rec_id" : "WA009742094", "first_name" : "AUDREY", "last_name" : "DEAN", "birthday" : 247705200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27714 NE 146TH WAY", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9605256, 47.73509793 ] }, "properties" : { "rec_id" : "WA008930165", "first_name" : "JONATHAN", "last_name" : "DEKLOTZ", "birthday" : 466383600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14917 283RD PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.973386, 47.7356488 ] }, "properties" : { "rec_id" : "WA001395217", "first_name" : "JOHN", "last_name" : "DENNING", "birthday" : -127789200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14915 273RD PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9739801, 47.7358611 ] }, "properties" : { "rec_id" : "WA003667768", "first_name" : "CHRISTINA", "last_name" : "DEPOE", "birthday" : -209959200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14928 272ND PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656263, 47.73496195 ] }, "properties" : { "rec_id" : "WA000682733", "first_name" : "KEITH", "last_name" : "DEYSENROTH", "birthday" : 127782000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14812 279TH LN NE", "party" : 2, "history" : 0.85, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9745316, 47.73572344 ] }, "properties" : { "rec_id" : "WA003272125", "first_name" : "JULIE", "last_name" : "DIETRICH", "birthday" : -45972000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14921 272ND PL NE", "party" : 2, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9688497, 47.73442495 ] }, "properties" : { "rec_id" : "WA009379467", "first_name" : "CRYSTAL", "last_name" : "DIMARZIO", "birthday" : 150764400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27611 NE 146TH WAY", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9663746, 47.73302663 ] }, "properties" : { "rec_id" : "WA008580101", "first_name" : "ANDREW", "last_name" : "DOTSON", "birthday" : 329868000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27919 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9708867, 47.73436714 ] }, "properties" : { "rec_id" : "WA003272437", "first_name" : "BRET", "last_name" : "DOWNING", "birthday" : -3027600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14703 275TH PL NE", "party" : 2, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9615877, 47.73187763 ] }, "properties" : { "rec_id" : "WA003272550", "first_name" : "ADAM", "last_name" : "DOWNS", "birthday" : 290386800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28231 NE 146TH ST", "party" : 2, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647254, 47.73284712 ] }, "properties" : { "rec_id" : "WA003473138", "first_name" : "CHRISTOPHER", "last_name" : "DRAKE", "birthday" : 194396400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27947 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656453, 47.73564811 ] }, "properties" : { "rec_id" : "WA009215557", "first_name" : "MARY", "last_name" : "DREHER", "birthday" : -728269200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27834 NE 149TH CT", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684596, 47.73395728 ] }, "properties" : { "rec_id" : "WA004221108", "first_name" : "CODY", "last_name" : "DUCHENE", "birthday" : 404002800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27723 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9745191, 47.73514779 ] }, "properties" : { "rec_id" : "WA010352024", "first_name" : "CATHERINE", "last_name" : "DUGGAN", "birthday" : -137037600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14821 272ND PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9739647, 47.73502625 ] }, "properties" : { "rec_id" : "WA003272296", "first_name" : "DAVID", "last_name" : "DUNAWAY", "birthday" : -132112800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14816 272ND PL NE", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9733816, 47.73544321 ] }, "properties" : { "rec_id" : "WA008854380", "first_name" : "KRISTIN", "last_name" : "ECK", "birthday" : -21866400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14905 273RD PL NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.965278, 47.73494565 ] }, "properties" : { "rec_id" : "WA003272417", "first_name" : "DOUGLAS", "last_name" : "EDLICH", "birthday" : -1468720800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27931 NE 149TH CT", "party" : 3, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9698047, 47.73383592 ] }, "properties" : { "rec_id" : "WA009871283", "first_name" : "KASEY", "last_name" : "EDWARDS", "birthday" : 516751200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27528 NE 146TH LN", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9641087, 47.73286868 ] }, "properties" : { "rec_id" : "WA003272244", "first_name" : "KATHLEEN", "last_name" : "EGLIN", "birthday" : -337399200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14603 281ST AVE NE", "party" : 3, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656936, 47.73328834 ] }, "properties" : { "rec_id" : "WA003528340", "first_name" : "BRIAN", "last_name" : "ELDREDGE", "birthday" : 371775600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27914 NE 147TH CIR", "party" : 2, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9651059, 47.73212204 ] }, "properties" : { "rec_id" : "WA005502577", "first_name" : "CHRISTOPHER", "last_name" : "ERVIN", "birthday" : 390434400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27937 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9667341, 47.73345211 ] }, "properties" : { "rec_id" : "WA009851380", "first_name" : "BANAFSHEH", "last_name" : "ESHRAGHI", "birthday" : 200358000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27807 NE 147TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9678686, 47.73300247 ] }, "properties" : { "rec_id" : "WA010175988", "first_name" : "PHILLIP", "last_name" : "ESPARZA", "birthday" : -87786000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27712 NE 145TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.965184, 47.73402549 ] }, "properties" : { "rec_id" : "WA003278545", "first_name" : "MARILYNN", "last_name" : "EVANS", "birthday" : -280544400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27913 NE 148TH PL", "party" : 1, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9683056, 47.73210119 ] }, "properties" : { "rec_id" : "WA003272267", "first_name" : "DONALD", "last_name" : "FERGUSON", "birthday" : -694054800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27632 NE 144TH ST", "party" : 1, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9594314, 47.73226155 ] }, "properties" : { "rec_id" : "WA003272205", "first_name" : "MELISSA", "last_name" : "FLEMING", "birthday" : 517701600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28332 NE 146TH ST", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692489, 47.73443756 ] }, "properties" : { "rec_id" : "WA001245901", "first_name" : "ANDREW", "last_name" : "FORTINO", "birthday" : 439340400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27607 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9599445, 47.73128593 ] }, "properties" : { "rec_id" : "WA003272453", "first_name" : "ELIZABETH", "last_name" : "FORTMAN", "birthday" : -623469600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28232 NE 144TH ST", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9683357, 47.73334913 ] }, "properties" : { "rec_id" : "WA010126775", "first_name" : "DEBORAH", "last_name" : "FRANCO", "birthday" : 235436400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27729 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9745358, 47.73591532 ] }, "properties" : { "rec_id" : "WA003272383", "first_name" : "CRAIG", "last_name" : "FRAZIER", "birthday" : -289533600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14931 272ND PL NE", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9721809, 47.73403817 ] }, "properties" : { "rec_id" : "WA003272328", "first_name" : "AARON", "last_name" : "FREIHEIT", "birthday" : 162082800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27408 NE 147TH CT", "party" : 3, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662307, 47.73387801 ] }, "properties" : { "rec_id" : "WA009102253", "first_name" : "ROBERT", "last_name" : "FRENCH", "birthday" : 245372400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27814 NE 147TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9685446, 47.73426424 ] }, "properties" : { "rec_id" : "WA003011368", "first_name" : "JOHN", "last_name" : "FREY", "birthday" : 193273200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27719 NE 146TH WAY", "party" : 1, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9593909, 47.73167995 ] }, "properties" : { "rec_id" : "WA009522350", "first_name" : "MARLYCE", "last_name" : "FRIEBEL", "birthday" : -660272400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28333 NE 146TH ST", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9690827, 47.73530249 ] }, "properties" : { "rec_id" : "WA003558883", "first_name" : "JENNIFER", "last_name" : "FRIZELLE", "birthday" : -60829200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14905 276TH PL NE", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.963982, 47.73357718 ] }, "properties" : { "rec_id" : "WA003272086", "first_name" : "ERIK", "last_name" : "FUGLVOG", "birthday" : -93488400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28030 NE 147TH PL", "party" : 1, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9690472, 47.73214482 ] }, "properties" : { "rec_id" : "WA003272260", "first_name" : "BRANDI", "last_name" : "FURTADO", "birthday" : 312591600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27606 NE 144TH ST", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.973393, 47.73586706 ] }, "properties" : { "rec_id" : "WA003272482", "first_name" : "SUSAN", "last_name" : "GEMMILL", "birthday" : -25405200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14925 273RD PL NE", "party" : 2, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9702588, 47.73314703 ] }, "properties" : { "rec_id" : "WA003272085", "first_name" : "DEBRA", "last_name" : "GHAZANFARPOUR", "birthday" : -322970400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27520 NE 145TH LN", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9666946, 47.73392417 ] }, "properties" : { "rec_id" : "WA001552348", "first_name" : "MARQUITA", "last_name" : "GRAVES", "birthday" : 439167600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27806 NE 147TH PL", "party" : 0, "history" : 0.15, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692604, 47.73432862 ] }, "properties" : { "rec_id" : "WA003546171", "first_name" : "ABIGAIL", "last_name" : "GRAY", "birthday" : 354582000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27609 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9641523, 47.73209748 ] }, "properties" : { "rec_id" : "WA009851492", "first_name" : "ZOE", "last_name" : "GRAY", "birthday" : 451173600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14505 281ST AVE NE", "party" : 0, "history" : 0.6, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9728111, 47.73526149 ] }, "properties" : { "rec_id" : "WA001416077", "first_name" : "JONATHAN", "last_name" : "GRAYUM", "birthday" : -79754400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14828 273RD PL NE", "party" : 0, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692331, 47.73276734 ] }, "properties" : { "rec_id" : "WA010628607", "first_name" : "COLTON", "last_name" : "GREEN", "birthday" : 823042800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27611 NE 145TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9708981, 47.73552806 ] }, "properties" : { "rec_id" : "WA003272410", "first_name" : "JAIME", "last_name" : "GUENTHER", "birthday" : 161305200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14831 275TH PL NE", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9657304, 47.73406068 ] }, "properties" : { "rec_id" : "WA005177301", "first_name" : "CHRISTOPHER", "last_name" : "GUTHRIE", "birthday" : -219546000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27903 NE 148TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.96435, 47.73362203 ] }, "properties" : { "rec_id" : "WA002713679", "first_name" : "DEBORAH", "last_name" : "GWINN-SCOTT", "birthday" : -221619600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28022 NE 147TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684968, 47.73502956 ] }, "properties" : { "rec_id" : "WA003132063", "first_name" : "PATIENCE", "last_name" : "HALL", "birthday" : 363650400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27702 NE 146TH WAY", "party" : 0, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9641065, 47.73261975 ] }, "properties" : { "rec_id" : "WA003272117", "first_name" : "ALAN", "last_name" : "HAPPER", "birthday" : -939258000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14523 281ST AVE NE", "party" : 2, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9646374, 47.73363488 ] }, "properties" : { "rec_id" : "WA010644449", "first_name" : "CHRISTOPHER", "last_name" : "HARLAND", "birthday" : 431733600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28014 NE 147TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.972301, 47.73352528 ] }, "properties" : { "rec_id" : "WA008196149", "first_name" : "JOHN", "last_name" : "HARPER", "birthday" : 105750000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27407 NE 147TH CT", "party" : 0, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9720375, 47.73548042 ] }, "properties" : { "rec_id" : "WA009984991", "first_name" : "LESLIE", "last_name" : "HARRINGTON", "birthday" : -260848800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14903 275TH AVE NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9664711, 47.73530607 ] }, "properties" : { "rec_id" : "WA005029678", "first_name" : "CYNTHIA", "last_name" : "HARTZELL", "birthday" : 191286000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27815 NE 149TH CT", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9667051, 47.73440895 ] }, "properties" : { "rec_id" : "WA002474322", "first_name" : "BRYANT", "last_name" : "HAWTHORNE", "birthday" : 543366000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14812 278TH AVE NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9717939, 47.73419206 ] }, "properties" : { "rec_id" : "WA004902593", "first_name" : "AYAKO", "last_name" : "HAYDEN", "birthday" : -13140000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14716 274TH WAY NE", "party" : 0, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9697203, 47.73485308 ] }, "properties" : { "rec_id" : "WA009359699", "first_name" : "CHRISTINA", "last_name" : "HAYS", "birthday" : 238114800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27529 NE 148TH LN", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9632557, 47.73350476 ] }, "properties" : { "rec_id" : "WA009730526", "first_name" : "JESSICA", "last_name" : "HELLEVANG", "birthday" : 493423200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28112 NE 147TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9635054, 47.73299757 ] }, "properties" : { "rec_id" : "WA010233583", "first_name" : "CHRISTL", "last_name" : "HENSLER", "birthday" : -1050631200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14616 281ST AVE NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9634873, 47.73167362 ] }, "properties" : { "rec_id" : "WA003272293", "first_name" : "AIMEE", "last_name" : "HERN", "birthday" : 411174000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28020 NE 144TH ST", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9729046, 47.73352805 ] }, "properties" : { "rec_id" : "WA009330667", "first_name" : "DANIEL", "last_name" : "HERNANDEZ", "birthday" : 55292400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27321 NE 146TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9679491, 47.73422042 ] }, "properties" : { "rec_id" : "WA003295186", "first_name" : "NATHAN", "last_name" : "HICKS", "birthday" : 206492400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27720 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9617103, 47.73374868 ] }, "properties" : { "rec_id" : "WA003272422", "first_name" : "PRISCILLA", "last_name" : "HIGH", "birthday" : -808452000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28217 NE 148TH PL", "party" : 1, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.963526, 47.73510547 ] }, "properties" : { "rec_id" : "WA003278076", "first_name" : "ACE", "last_name" : "HILL", "birthday" : -188355600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14906 280TH PL NE", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9628929, 47.73346938 ] }, "properties" : { "rec_id" : "WA001444897", "first_name" : "CRYSTAL", "last_name" : "HILL-PENNINGTON", "birthday" : 273452400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28120 NE 147TH PL", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9596414, 47.73442811 ] }, "properties" : { "rec_id" : "WA003271076", "first_name" : "LAURA", "last_name" : "HINTZKE", "birthday" : -224470800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14830 283RD PL NE", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9737583, 47.73481515 ] }, "properties" : { "rec_id" : "WA009189669", "first_name" : "JACOB", "last_name" : "HIXON", "birthday" : 636678000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27228 NE 148TH WAY", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9610574, 47.7341388 ] }, "properties" : { "rec_id" : "WA010105584", "first_name" : "DAN", "last_name" : "HO", "birthday" : 773877600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28226 NE 148TH PL", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9675851, 47.73208011 ] }, "properties" : { "rec_id" : "WA003272567", "first_name" : "LIH", "last_name" : "HUDSON", "birthday" : -28256400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27710 NE 144TH ST", "party" : 2, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692639, 47.73490999 ] }, "properties" : { "rec_id" : "WA004971495", "first_name" : "MARKUS", "last_name" : "HUHNE BALDUCCI", "birthday" : 587685600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27604 NE 146TH WAY", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9609375, 47.7344243 ] }, "properties" : { "rec_id" : "WA002969988", "first_name" : "BRANDI", "last_name" : "HYDER-MOYER", "birthday" : 350262000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28219 NE 149TH PL", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.961233, 47.73370469 ] }, "properties" : { "rec_id" : "WA003665067", "first_name" : "JEFFREY", "last_name" : "INGHAM", "birthday" : 217465200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28225 NE 148TH PL", "party" : 0, "history" : 0.72, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.964715, 47.73300579 ] }, "properties" : { "rec_id" : "WA001420844", "first_name" : "JACOB", "last_name" : "JACKMAN", "birthday" : 362354400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27949 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9599037, 47.73264713 ] }, "properties" : { "rec_id" : "WA003272155", "first_name" : "KATHRYN", "last_name" : "JAKUBEK", "birthday" : -83728800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28319 NE 147TH CT", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9660488, 47.73568999 ] }, "properties" : { "rec_id" : "WA003272169", "first_name" : "KRISTOPHER", "last_name" : "JOHNSON", "birthday" : -164512800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27822 NE 149TH CT", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9702637, 47.73384993 ] }, "properties" : { "rec_id" : "WA003272237", "first_name" : "FRANK", "last_name" : "JOINER", "birthday" : 221439600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27522 NE 146TH LN", "party" : 2, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9738313, 47.73443524 ] }, "properties" : { "rec_id" : "WA007860125", "first_name" : "BENJAMIN", "last_name" : "JONES", "birthday" : 633481200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27225 NE 148TH WAY", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9689129, 47.7350876 ] }, "properties" : { "rec_id" : "WA009646590", "first_name" : "COURTNEY", "last_name" : "JONES", "birthday" : 357170400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27612 NE 146TH WAY", "party" : 0, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9697892, 47.73217548 ] }, "properties" : { "rec_id" : "WA009624050", "first_name" : "DARIN", "last_name" : "KALPAKOFF", "birthday" : -51847200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27520 NE 144TH ST", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9621849, 47.73155005 ] }, "properties" : { "rec_id" : "WA009612691", "first_name" : "JANEL", "last_name" : "KAUL", "birthday" : 734392800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28116 NE 144TH ST", "party" : 0, "history" : 0.25, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9687205, 47.73573343 ] }, "properties" : { "rec_id" : "WA003272395", "first_name" : "CYNTHIA", "last_name" : "KAYALI", "birthday" : -415242000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14920 276TH PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9661116, 47.73193219 ] }, "properties" : { "rec_id" : "WA003272115", "first_name" : "LYNN", "last_name" : "KEEFE", "birthday" : -466131600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27818 NE 144TH ST", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656708, 47.73185437 ] }, "properties" : { "rec_id" : "WA003080100", "first_name" : "JUSTIN", "last_name" : "KELLOGG", "birthday" : 6476400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27826 NE 144TH ST", "party" : 5, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9594384, 47.73128598 ] }, "properties" : { "rec_id" : "WA000475493", "first_name" : "JAIME", "last_name" : "KEMPER", "birthday" : 145926000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28312 NE 144TH ST", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9641729, 47.7346925 ] }, "properties" : { "rec_id" : "WA003272464", "first_name" : "WENDE", "last_name" : "KENDIG", "birthday" : -464925600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14821 280TH PL NE", "party" : 2, "history" : 0.85, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.965022, 47.73558715 ] }, "properties" : { "rec_id" : "WA003215765", "first_name" : "JACKIE", "last_name" : "KILLORN", "birthday" : 253407600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27912 NE 149TH CT", "party" : 2, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656904, 47.73314224 ] }, "properties" : { "rec_id" : "WA008778131", "first_name" : "HEIDI", "last_name" : "KIMBLE", "birthday" : 150418800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27918 NE 147TH CIR", "party" : 3, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.970878, 47.73359315 ] }, "properties" : { "rec_id" : "WA010055945", "first_name" : "EMILY", "last_name" : "KING", "birthday" : 783126000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14533 275TH PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9658459, 47.73567204 ] }, "properties" : { "rec_id" : "WA008832352", "first_name" : "CHRISTIAN", "last_name" : "KLEIN", "birthday" : 387928800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27828 NE 149TH CT", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9655167, 47.73531691 ] }, "properties" : { "rec_id" : "WA003272233", "first_name" : "DEBERA", "last_name" : "KLINGER", "birthday" : -761187600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14820 279TH LN NE", "party" : 2, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9657516, 47.73382438 ] }, "properties" : { "rec_id" : "WA000128577", "first_name" : "HEATHER", "last_name" : "KLINGSHEIM", "birthday" : 202777200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27908 NE 147TH PL", "party" : 0, "history" : 0.6, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9599112, 47.73355219 ] }, "properties" : { "rec_id" : "WA003272540", "first_name" : "SCOTT", "last_name" : "KLOOSTER", "birthday" : 50367600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14809 283RD PL NE", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9597335, 47.73324711 ] }, "properties" : { "rec_id" : "WA003272150", "first_name" : "GREGORY", "last_name" : "KNAPLUND", "birthday" : -6660000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28320 NE 147TH CT", "party" : 2, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653537, 47.73404157 ] }, "properties" : { "rec_id" : "WA002325012", "first_name" : "BONNIE", "last_name" : "KOENIG", "birthday" : -212032800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27907 NE 148TH PL", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684537, 47.73589927 ] }, "properties" : { "rec_id" : "WA003272511", "first_name" : "JACLYN", "last_name" : "KOEPKE", "birthday" : 235954800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14926 276TH PL NE", "party" : 2, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9732108, 47.7335126 ] }, "properties" : { "rec_id" : "WA003272369", "first_name" : "ANN", "last_name" : "KOONCE", "birthday" : -259034400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27311 NE 146TH PL", "party" : 5, "history" : 0.6, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9708823, 47.73397955 ] }, "properties" : { "rec_id" : "WA003272290", "first_name" : "MICHELLE", "last_name" : "KRAUSE", "birthday" : -163821600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14611 275TH PL NE", "party" : 2, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9617381, 47.73150722 ] }, "properties" : { "rec_id" : "WA003272255", "first_name" : "JEANNIE", "last_name" : "KUSSMAN", "birthday" : -127098000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28126 NE 144TH ST", "party" : 2, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9615443, 47.73418392 ] }, "properties" : { "rec_id" : "WA009346221", "first_name" : "STANLEY", "last_name" : "LAKEFISH", "birthday" : -779594400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28218 NE 148TH PL", "party" : 1, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9603229, 47.73369131 ] }, "properties" : { "rec_id" : "WA003272332", "first_name" : "D", "last_name" : "LANDIN", "birthday" : -522036000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28241 NE 148TH PL", "party" : 4, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9614492, 47.73447126 ] }, "properties" : { "rec_id" : "WA003555587", "first_name" : "DANA", "last_name" : "LARSEN", "birthday" : 310431600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28201 NE 149TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.959812, 47.73230007 ] }, "properties" : { "rec_id" : "WA003272103", "first_name" : "SUIFUN", "last_name" : "LAW", "birthday" : -463975200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28326 NE 146TH ST", "party" : 1, "history" : 0.2, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684077, 47.73565269 ] }, "properties" : { "rec_id" : "WA003272213", "first_name" : "TIFFANY", "last_name" : "LAWS", "birthday" : 51318000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14910 276TH PL NE", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9629803, 47.73461208 ] }, "properties" : { "rec_id" : "WA003680406", "first_name" : "MARK", "last_name" : "LEAS", "birthday" : -498358800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28017 NE 149TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.964733, 47.73234959 ] }, "properties" : { "rec_id" : "WA003707343", "first_name" : "DESTRY", "last_name" : "LEE", "birthday" : 128214000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27941 NE 147TH CIR", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653694, 47.73215984 ] }, "properties" : { "rec_id" : "WA010477760", "first_name" : "JENNIFER", "last_name" : "LENTO", "birthday" : 381106800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27935 NE 147TH CIR", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9675635, 47.73297372 ] }, "properties" : { "rec_id" : "WA003272312", "first_name" : "HEATHER", "last_name" : "LEWIS", "birthday" : 85791600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27722 NE 145TH PL", "party" : 2, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9722508, 47.73452117 ] }, "properties" : { "rec_id" : "WA008582209", "first_name" : "LAWRIE", "last_name" : "LILLIE", "birthday" : -690166800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14723 274TH WAY NE", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9652463, 47.7352873 ] }, "properties" : { "rec_id" : "WA003496406", "first_name" : "AUDREY", "last_name" : "LINDHE", "birthday" : 94777200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27921 NE 149TH CT", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9650608, 47.73372715 ] }, "properties" : { "rec_id" : "WA008470706", "first_name" : "MONIQUE", "last_name" : "LINZ", "birthday" : 470790000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27930 NE 147TH PL", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9663828, 47.73319444 ] }, "properties" : { "rec_id" : "WA003684378", "first_name" : "NATHANIEL", "last_name" : "LITKE", "birthday" : 328744800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27917 NE 147TH CIR", "party" : 4, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656572, 47.73467069 ] }, "properties" : { "rec_id" : "WA003702479", "first_name" : "SCOTT", "last_name" : "LOEWKE", "birthday" : -215658000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14808 279TH LN NE", "party" : 3, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9687438, 47.73253818 ] }, "properties" : { "rec_id" : "WA003272515", "first_name" : "DINA", "last_name" : "LOVE", "birthday" : -258688800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27629 NE 145TH PL", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9580759, 47.73488574 ] }, "properties" : { "rec_id" : "WA010817528", "first_name" : "DAVID", "last_name" : "LUNDEEN", "birthday" : -845427600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28430 NE 149TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9630166, 47.73535055 ] }, "properties" : { "rec_id" : "WA010042640", "first_name" : "EVAN", "last_name" : "LYNCH", "birthday" : 616543200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14915 281ST PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9697197, 47.73455175 ] }, "properties" : { "rec_id" : "WA009951514", "first_name" : "JAMES", "last_name" : "MABE", "birthday" : -4496400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27524 NE 147TH LN", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692562, 47.73476705 ] }, "properties" : { "rec_id" : "WA003564355", "first_name" : "TERI", "last_name" : "MACKAY", "birthday" : 199926000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27601 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9728156, 47.73561833 ] }, "properties" : { "rec_id" : "WA003276740", "first_name" : "DAVID", "last_name" : "MACKINTOSH", "birthday" : -354679200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14914 273RD PL NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9719365, 47.7359898 ] }, "properties" : { "rec_id" : "WA010500440", "first_name" : "PAMELA", "last_name" : "MADDOX", "birthday" : -26442000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14907 275TH AVE NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9709015, 47.73591901 ] }, "properties" : { "rec_id" : "WA003272529", "first_name" : "SUSAN", "last_name" : "MARSH-MCMAHAN", "birthday" : -689302800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14907 275TH PL NE", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9652931, 47.7326736 ] }, "properties" : { "rec_id" : "WA007587781", "first_name" : "ROBERT", "last_name" : "MARTIN", "birthday" : 537663600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27944 NE 147TH CIR", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9733768, 47.73523752 ] }, "properties" : { "rec_id" : "WA010065504", "first_name" : "COREY", "last_name" : "MARTINEZ", "birthday" : 559954800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14827 273RD PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9601811, 47.7323365 ] }, "properties" : { "rec_id" : "WA003272343", "first_name" : "MICHELLE", "last_name" : "MAYCOCK", "birthday" : 46998000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28316 NE 146TH ST", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9613115, 47.73326723 ] }, "properties" : { "rec_id" : "WA001113471", "first_name" : "BRENT", "last_name" : "MCBRIDE", "birthday" : 138409200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28230 NE 147TH CT", "party" : 2, "history" : 0.87, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9652874, 47.73283533 ] }, "properties" : { "rec_id" : "WA003466294", "first_name" : "JARED", "last_name" : "MCCARTON", "birthday" : 467334000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27946 NE 147TH CIR", "party" : 5, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9652271, 47.73180623 ] }, "properties" : { "rec_id" : "WA003272460", "first_name" : "MAUREEN", "last_name" : "MCFADDIN", "birthday" : -347936400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27906 NE 144TH ST", "party" : 4, "history" : 0.55, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647192, 47.73492692 ] }, "properties" : { "rec_id" : "WA009087028", "first_name" : "CORISSA", "last_name" : "MCGEHE", "birthday" : 318466800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27932 NE 149TH CT", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9685589, 47.73449417 ] }, "properties" : { "rec_id" : "WA003544359", "first_name" : "SCOTT", "last_name" : "MCGILL", "birthday" : 283561200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27715 NE 146TH WAY", "party" : 2, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9634967, 47.73436863 ] }, "properties" : { "rec_id" : "WA002680886", "first_name" : "CHRISTINA", "last_name" : "MCINNIS", "birthday" : -177300000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14810 280TH PL NE", "party" : 1, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9665289, 47.73228513 ] }, "properties" : { "rec_id" : "WA008839564", "first_name" : "CORY", "last_name" : "MCKEE", "birthday" : 285980400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27927 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9618581, 47.73201678 ] }, "properties" : { "rec_id" : "WA007831570", "first_name" : "JASON", "last_name" : "MEATS", "birthday" : 341103600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28227 NE 146TH ST", "party" : 2, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.961683, 47.73327255 ] }, "properties" : { "rec_id" : "WA008796272", "first_name" : "DOUGLAS", "last_name" : "MEMPA", "birthday" : -613533600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28222 NE 147TH CT", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.963944, 47.73164047 ] }, "properties" : { "rec_id" : "WA010585210", "first_name" : "CAITLIN", "last_name" : "MERRIMAN", "birthday" : 835394400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28008 NE 144TH ST", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656808, 47.73454606 ] }, "properties" : { "rec_id" : "WA009511332", "first_name" : "JAMES", "last_name" : "METHVIN", "birthday" : 468630000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14806 279TH LN NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662421, 47.7340556 ] }, "properties" : { "rec_id" : "WA008812315", "first_name" : "CHRISTOPHER", "last_name" : "MILLER", "birthday" : 348015600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14801 279TH LN NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9675428, 47.73539382 ] }, "properties" : { "rec_id" : "WA003272136", "first_name" : "RONDA", "last_name" : "MILLS", "birthday" : -234842400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27717 NE 150TH ST", "party" : 2, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9620317, 47.73422904 ] }, "properties" : { "rec_id" : "WA003272351", "first_name" : "PHILLIP", "last_name" : "MOCK", "birthday" : 139359600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28210 NE 148TH PL", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9722969, 47.73592651 ] }, "properties" : { "rec_id" : "WA007931200", "first_name" : "ENRIQUE", "last_name" : "MONTANA", "birthday" : 184287600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27411 NE 150TH ST", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9608068, 47.7327985 ] }, "properties" : { "rec_id" : "WA010333799", "first_name" : "CODY", "last_name" : "MORSE", "birthday" : 768520800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28301 NE 147TH CT", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9728095, 47.73599373 ] }, "properties" : { "rec_id" : "WA007474468", "first_name" : "GEORGE", "last_name" : "MOTSON", "birthday" : 92358000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14930 273RD PL NE", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9738105, 47.73353613 ] }, "properties" : { "rec_id" : "WA003276247", "first_name" : "LISA", "last_name" : "MUNDY", "birthday" : 202345200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27231 NE 146TH PL", "party" : 5, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9725258, 47.73379918 ] }, "properties" : { "rec_id" : "WA008874359", "first_name" : "BRIAN", "last_name" : "MURPHY", "birthday" : 2502000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27333 NE 146TH PL", "party" : 5, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9626205, 47.73159061 ] }, "properties" : { "rec_id" : "WA004410586", "first_name" : "MEELIN", "last_name" : "NAKATA", "birthday" : -163908000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28104 NE 144TH ST", "party" : 0, "history" : 0.15, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9652253, 47.73559699 ] }, "properties" : { "rec_id" : "WA003270134", "first_name" : "MANUEL", "last_name" : "NAVARRO", "birthday" : -333856800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27908 NE 149TH CT", "party" : 6, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9717069, 47.7335313 ] }, "properties" : { "rec_id" : "WA003277243", "first_name" : "GEOFF", "last_name" : "NELSON", "birthday" : 92444400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27425 NE 147TH CT", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.963008, 47.73431954 ] }, "properties" : { "rec_id" : "WA003502112", "first_name" : "JEFFREY", "last_name" : "NELSON", "birthday" : 39826800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28020 NE 148TH PL", "party" : 1, "history" : 0.87, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9745109, 47.73494103 ] }, "properties" : { "rec_id" : "WA003272449", "first_name" : "JOHN", "last_name" : "NELSON", "birthday" : 50108400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14811 272ND PL NE", "party" : 1, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9628751, 47.73385513 ] }, "properties" : { "rec_id" : "WA003272072", "first_name" : "ERIC", "last_name" : "NESBITT", "birthday" : -244864800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28027 NE 148TH PL", "party" : 3, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9680104, 47.73491625 ] }, "properties" : { "rec_id" : "WA002141952", "first_name" : "DEREK", "last_name" : "NETTLES", "birthday" : 348534000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27708 NE 146TH WAY", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.972793, 47.73507845 ] }, "properties" : { "rec_id" : "WA001497406", "first_name" : "JEFFREY", "last_name" : "NEWPORT", "birthday" : -631242000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27322 NE 148TH WAY", "party" : 0, "history" : 0.6, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656681, 47.7325424 ] }, "properties" : { "rec_id" : "WA007887737", "first_name" : "COLIN", "last_name" : "OBRIEN", "birthday" : 469494000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27926 NE 147TH CIR", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9740813, 47.73356298 ] }, "properties" : { "rec_id" : "WA009420440", "first_name" : "JENNIFER", "last_name" : "OBRIEN", "birthday" : 490658400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27223 NE 146TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9702784, 47.73525772 ] }, "properties" : { "rec_id" : "WA003272197", "first_name" : "FRANCISCO", "last_name" : "OCHOA", "birthday" : -1530151200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27516 NE 148TH LN", "party" : 1, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9726207, 47.7335495 ] }, "properties" : { "rec_id" : "WA009272628", "first_name" : "CLARE", "last_name" : "ODONNELL", "birthday" : 696553200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27327 NE 146TH PL", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9678872, 47.73386469 ] }, "properties" : { "rec_id" : "WA004036063", "first_name" : "DREW", "last_name" : "OHARA", "birthday" : 296866800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27724 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9634155, 47.732442 ] }, "properties" : { "rec_id" : "WA001301614", "first_name" : "ERICA", "last_name" : "OJEDA", "birthday" : 242262000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28106 NE 145TH CT", "party" : 4, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9717556, 47.73439208 ] }, "properties" : { "rec_id" : "WA003272516", "first_name" : "MATTHEW", "last_name" : "OLANDER", "birthday" : -104724000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14722 274TH WAY NE", "party" : 2, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9708622, 47.73271193 ] }, "properties" : { "rec_id" : "WA003272157", "first_name" : "SUSAN", "last_name" : "OLWELL", "birthday" : -790650000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27505 NE 145TH LN", "party" : 1, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.969261, 47.73582571 ] }, "properties" : { "rec_id" : "WA003272229", "first_name" : "RACHEL", "last_name" : "ORMISTON", "birthday" : -1645200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14925 276TH PL NE", "party" : 2, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9728991, 47.7340634 ] }, "properties" : { "rec_id" : "WA010234766", "first_name" : "COLLEEN", "last_name" : "PACE", "birthday" : 25398000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27324 NE 146TH PL", "party" : 5, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9635293, 47.73540728 ] }, "properties" : { "rec_id" : "WA008749576", "first_name" : "DIANE", "last_name" : "PALMER", "birthday" : -264996000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14918 280TH PL NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9679698, 47.73432281 ] }, "properties" : { "rec_id" : "WA003548355", "first_name" : "SUSAN", "last_name" : "PARK", "birthday" : -777088800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27718 NE 146TH WAY", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9660144, 47.73524964 ] }, "properties" : { "rec_id" : "WA003272424", "first_name" : "JOHN", "last_name" : "PATTEE", "birthday" : -568947600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14817 279TH LN NE", "party" : 4, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9605796, 47.73230448 ] }, "properties" : { "rec_id" : "WA004225272", "first_name" : "CAMERON", "last_name" : "PECK", "birthday" : 382230000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28308 NE 146TH ST", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9733555, 47.73498963 ] }, "properties" : { "rec_id" : "WA003272194", "first_name" : "VANESSA", "last_name" : "PEGUEROS", "birthday" : -153709200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14813 273RD PL NE", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9594978, 47.73359744 ] }, "properties" : { "rec_id" : "WA007904855", "first_name" : "CRAIG", "last_name" : "PELTIER", "birthday" : 140396400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14810 283RD PL NE", "party" : 0, "history" : 0.87, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.962503, 47.73192173 ] }, "properties" : { "rec_id" : "WA003272183", "first_name" : "COURTNEY", "last_name" : "PETERS", "birthday" : -15991200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28121 NE 145TH CT", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653081, 47.73251799 ] }, "properties" : { "rec_id" : "WA003557685", "first_name" : "JANALYN", "last_name" : "PICKUP", "birthday" : 354924000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27942 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9612115, 47.73186429 ] }, "properties" : { "rec_id" : "WA003272378", "first_name" : "JENNIFER", "last_name" : "POS", "birthday" : 175215600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28239 NE 146TH ST", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647274, 47.73251754 ] }, "properties" : { "rec_id" : "WA009301836", "first_name" : "JASON", "last_name" : "POWELL", "birthday" : 79830000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27943 NE 147TH CIR", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9708749, 47.73320072 ] }, "properties" : { "rec_id" : "WA003508402", "first_name" : "KATHI", "last_name" : "PRATSCHNER", "birthday" : -303616800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14509 275TH PL NE", "party" : 0, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9681813, 47.73297757 ] }, "properties" : { "rec_id" : "WA010504550", "first_name" : "KYLE", "last_name" : "REAULT", "birthday" : 367797600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27704 NE 145TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.97303, 47.73468202 ] }, "properties" : { "rec_id" : "WA003272562", "first_name" : "AMY", "last_name" : "RICH", "birthday" : 82335600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27313 NE 148TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9723983, 47.73511532 ] }, "properties" : { "rec_id" : "WA009708548", "first_name" : "CHASE", "last_name" : "RICHMAN", "birthday" : 742514400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27330 NE 148TH WAY", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9630479, 47.73163208 ] }, "properties" : { "rec_id" : "WA003272181", "first_name" : "DAVID", "last_name" : "RIDDERBUSCH", "birthday" : -210391200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28028 NE 144TH ST", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.965679, 47.73282833 ] }, "properties" : { "rec_id" : "WA003702351", "first_name" : "AMBER", "last_name" : "RIFFE", "birthday" : 199580400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27922 NE 147TH CIR", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9702758, 47.73485052 ] }, "properties" : { "rec_id" : "WA000303287", "first_name" : "KENDRA", "last_name" : "RO", "birthday" : 174178800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27517 NE 148TH LN", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9569094, 47.73439858 ] }, "properties" : { "rec_id" : "WA010174063", "first_name" : "JEFFREY", "last_name" : "ROBIDOU", "birthday" : 152751600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28509 NE 149TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9686814, 47.73503705 ] }, "properties" : { "rec_id" : "WA009569267", "first_name" : "JAMES", "last_name" : "RONSSE", "birthday" : -45194400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27700 NE 146TH WAY", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662167, 47.73534483 ] }, "properties" : { "rec_id" : "WA003844025", "first_name" : "RONI", "last_name" : "RUMSEY", "birthday" : -357357600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27823 NE 149TH CT", "party" : 0, "history" : 0.32, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9659893, 47.73385502 ] }, "properties" : { "rec_id" : "WA009599511", "first_name" : "WILLIAM", "last_name" : "RUNKLE", "birthday" : 9154800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27902 NE 147TH PL", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647447, 47.73525392 ] }, "properties" : { "rec_id" : "WA003544237", "first_name" : "ROBERT", "last_name" : "RUNNELLS", "birthday" : -109821600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27924 NE 149TH CT", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9649257, 47.73460433 ] }, "properties" : { "rec_id" : "WA003662958", "first_name" : "ANDREA", "last_name" : "RYHAL", "birthday" : 310518000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27922 NE 148TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9687609, 47.73595705 ] }, "properties" : { "rec_id" : "WA003272360", "first_name" : "MARY", "last_name" : "SANKER", "birthday" : -970538400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14932 276TH PL NE", "party" : 3, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9641855, 47.73522877 ] }, "properties" : { "rec_id" : "WA003272357", "first_name" : "LEASA", "last_name" : "SANTOS", "birthday" : -114487200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14923 280TH PL NE", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9668118, 47.73481408 ] }, "properties" : { "rec_id" : "WA004051142", "first_name" : "ASHLEY", "last_name" : "SCARLETT", "birthday" : 518738400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27807 NE 148TH LN", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9648529, 47.73368098 ] }, "properties" : { "rec_id" : "WA001483769", "first_name" : "RYAN", "last_name" : "SCHLECHT", "birthday" : 139359600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28006 NE 147TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9702848, 47.73596048 ] }, "properties" : { "rec_id" : "WA003272531", "first_name" : "CHRISTA", "last_name" : "SCHOMMER", "birthday" : -1121824800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27514 NE 149TH LN", "party" : 3, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.97089, 47.73475636 ] }, "properties" : { "rec_id" : "WA003272119", "first_name" : "CYNTHIA", "last_name" : "SCHOMMER", "birthday" : -205380000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14715 275TH PL NE", "party" : 2, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9623145, 47.73246074 ] }, "properties" : { "rec_id" : "WA003268912", "first_name" : "PAMELA", "last_name" : "SCHULENBURG", "birthday" : -236570400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28215 NE 146TH ST", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9641792, 47.73496052 ] }, "properties" : { "rec_id" : "WA010076666", "first_name" : "ALYSSA", "last_name" : "SCROGGINS", "birthday" : 779752800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14911 280TH PL NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9643047, 47.73399246 ] }, "properties" : { "rec_id" : "WA003272303", "first_name" : "HARRY", "last_name" : "SEESE", "birthday" : -1198976400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27933 NE 148TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.960055, 47.73510113 ] }, "properties" : { "rec_id" : "WA008191749", "first_name" : "DANIELLE", "last_name" : "SEIBERT", "birthday" : 553989600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14924 283RD PL NE", "party" : 0, "history" : 0.32, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9655178, 47.73380385 ] }, "properties" : { "rec_id" : "WA002991062", "first_name" : "NIHARIKA", "last_name" : "SHAH", "birthday" : -693795600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27916 NE 147TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647272, 47.73541237 ] }, "properties" : { "rec_id" : "WA004218769", "first_name" : "CHRISTINE", "last_name" : "SHAMON", "birthday" : 89938800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27920 NE 149TH CT", "party" : 0, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9616543, 47.73256158 ] }, "properties" : { "rec_id" : "WA001243410", "first_name" : "BRADLEY", "last_name" : "SHARMAN", "birthday" : -134445600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28224 NE 146TH ST", "party" : 2, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9664649, 47.73477945 ] }, "properties" : { "rec_id" : "WA001465597", "first_name" : "NICHOLAS", "last_name" : "SHELTON", "birthday" : -477795600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27815 NE 148TH LN", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684771, 47.73412811 ] }, "properties" : { "rec_id" : "WA003273099", "first_name" : "CANDICE", "last_name" : "SHEPHERD", "birthday" : 404780400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27721 NE 146TH WAY", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9664513, 47.7357256 ] }, "properties" : { "rec_id" : "WA008802780", "first_name" : "BRANDI", "last_name" : "SIEK", "birthday" : 437353200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27810 NE 149TH CT", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9625202, 47.73427432 ] }, "properties" : { "rec_id" : "WA003272426", "first_name" : "DAVID", "last_name" : "SMITH", "birthday" : -664592400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28200 NE 148TH PL", "party" : 1, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9646911, 47.73317703 ] }, "properties" : { "rec_id" : "WA008838641", "first_name" : "KELLIE", "last_name" : "SMITH", "birthday" : -7524000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28011 NE 147TH CIR", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9739784, 47.73564293 ] }, "properties" : { "rec_id" : "WA003272259", "first_name" : "WILLIAM", "last_name" : "SMITH", "birthday" : -221619600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14918 272ND PL NE", "party" : 2, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9678404, 47.73346288 ] }, "properties" : { "rec_id" : "WA003211267", "first_name" : "ELIZABETH", "last_name" : "SMOOT", "birthday" : 315615600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27730 NE 146TH WAY", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647604, 47.73212546 ] }, "properties" : { "rec_id" : "WA004244780", "first_name" : "BRADFORD", "last_name" : "SNOW", "birthday" : 289177200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27939 NE 147TH CIR", "party" : 0, "history" : 0.32, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9649751, 47.734908 ] }, "properties" : { "rec_id" : "WA007906441", "first_name" : "SARAH", "last_name" : "SOLBERG", "birthday" : 301014000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27936 NE 149TH CT", "party" : 0, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.962228, 47.73497088 ] }, "properties" : { "rec_id" : "WA009087671", "first_name" : "GENA", "last_name" : "SOUCHEK", "birthday" : 324511200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14908 281ST PL NE", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9608482, 47.73182855 ] }, "properties" : { "rec_id" : "WA008189338", "first_name" : "BRENDA", "last_name" : "SPROCK", "birthday" : 72486000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28303 NE 146TH ST", "party" : 0, "history" : 0.6, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9620232, 47.73525072 ] }, "properties" : { "rec_id" : "WA009628323", "first_name" : "ANDREA", "last_name" : "STANEK", "birthday" : 205887600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14916 281ST PL NE", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9657017, 47.73344993 ] }, "properties" : { "rec_id" : "WA010275502", "first_name" : "KIMBERLY", "last_name" : "STELLA", "birthday" : -203738400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27910 NE 147TH CIR", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9596036, 47.73277134 ] }, "properties" : { "rec_id" : "WA003272153", "first_name" : "JEFFREY", "last_name" : "STEWART", "birthday" : -240026400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28329 NE 147TH CT", "party" : 1, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656414, 47.73216336 ] }, "properties" : { "rec_id" : "WA003660313", "first_name" : "RUTH", "last_name" : "STROK", "birthday" : 173487600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27933 NE 147TH CIR", "party" : 4, "history" : 0.4, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9704313, 47.73271257 ] }, "properties" : { "rec_id" : "WA003702273", "first_name" : "DEBORAH", "last_name" : "STUMP", "birthday" : -111895200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27517 NE 145TH LN", "party" : 3, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9596447, 47.7346853 ] }, "properties" : { "rec_id" : "WA003272180", "first_name" : "JAMES", "last_name" : "SVARE", "birthday" : -277779600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14906 283RD PL NE", "party" : 3, "history" : 0.15, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9597605, 47.73172635 ] }, "properties" : { "rec_id" : "WA003644996", "first_name" : "GUNNAR", "last_name" : "SWANSON", "birthday" : 112316400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28327 NE 146TH ST", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9626275, 47.73221621 ] }, "properties" : { "rec_id" : "WA003272557", "first_name" : "DLO", "last_name" : "SYKES", "birthday" : -188182800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28120 NE 145TH CT", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9580847, 47.73441296 ] }, "properties" : { "rec_id" : "WA003272156", "first_name" : "DOMINIC", "last_name" : "SYLVESTER", "birthday" : -1141347600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28431 NE 149TH PL", "party" : 0, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662678, 47.73437268 ] }, "properties" : { "rec_id" : "WA008781287", "first_name" : "CHRISTOPHER", "last_name" : "TALLEY", "birthday" : 472604400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14805 279TH LN NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9696507, 47.73266724 ] }, "properties" : { "rec_id" : "WA003393296", "first_name" : "ALETHA", "last_name" : "TAYLOR", "birthday" : -587872800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27525 NE 145TH LN", "party" : 2, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692658, 47.73596757 ] }, "properties" : { "rec_id" : "WA010521644", "first_name" : "JEREMY", "last_name" : "TAYLOR", "birthday" : 280191600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14933 276TH PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9605195, 47.73480031 ] }, "properties" : { "rec_id" : "WA003272166", "first_name" : "STEVE", "last_name" : "TEMPLETON", "birthday" : -622951200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14911 283RD PL NE", "party" : 2, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9698055, 47.73343433 ] }, "properties" : { "rec_id" : "WA003554166", "first_name" : "ANNETTE", "last_name" : "THOMAS", "birthday" : -180842400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27527 NE 146TH LN", "party" : 1, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692928, 47.73537576 ] }, "properties" : { "rec_id" : "WA003395548", "first_name" : "KRISTINA", "last_name" : "THOMAS", "birthday" : 80866800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14911 276TH PL NE", "party" : 0, "history" : 0.47, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9665334, 47.7319801 ] }, "properties" : { "rec_id" : "WA009612866", "first_name" : "ALBANY", "last_name" : "THOMPSON", "birthday" : 732754800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27804 NE 144TH ST", "party" : 0, "history" : 0.12, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.959572, 47.73305451 ] }, "properties" : { "rec_id" : "WA003272139", "first_name" : "ROBERT", "last_name" : "THOMPSON", "birthday" : -135655200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28328 NE 147TH CT", "party" : 1, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9584799, 47.73444429 ] }, "properties" : { "rec_id" : "WA003272405", "first_name" : "HANNAH", "last_name" : "TOBIN", "birthday" : 57279600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28419 NE 149TH PL", "party" : 1, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662462, 47.73570735 ] }, "properties" : { "rec_id" : "WA010361633", "first_name" : "ERIC", "last_name" : "TOSCH", "birthday" : -301629600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27814 NE 149TH CT", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9702701, 47.73455645 ] }, "properties" : { "rec_id" : "WA003272132", "first_name" : "ERIN", "last_name" : "TOWNSEND", "birthday" : 387583200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27518 NE 147TH LN", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9604002, 47.73132908 ] }, "properties" : { "rec_id" : "WA003272452", "first_name" : "JULIE", "last_name" : "TOWNSEND", "birthday" : -304826400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28222 NE 144TH ST", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9717867, 47.73397465 ] }, "properties" : { "rec_id" : "WA003272121", "first_name" : "NICHOLE", "last_name" : "TOWNSEND", "birthday" : 96332400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27416 NE 147TH CT", "party" : 3, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9672, 47.73203152 ] }, "properties" : { "rec_id" : "WA003272300", "first_name" : "MICHAEL", "last_name" : "TUCKER", "birthday" : -137296800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27726 NE 144TH ST", "party" : 1, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9636177, 47.73354094 ] }, "properties" : { "rec_id" : "WA003272500", "first_name" : "BOBBY", "last_name" : "TWIGGS", "birthday" : -1148090400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28104 NE 147TH PL", "party" : 3, "history" : 1, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9649844, 47.73401731 ] }, "properties" : { "rec_id" : "WA009958112", "first_name" : "LINDSAY", "last_name" : "URQUHART", "birthday" : 467334000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27917 NE 148TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9624709, 47.73456539 ] }, "properties" : { "rec_id" : "WA003272148", "first_name" : "KATHY", "last_name" : "VAN TASSEL", "birthday" : -391831200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28101 NE 149TH PL", "party" : 0, "history" : 0.62, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9622216, 47.73320389 ] }, "properties" : { "rec_id" : "WA009435220", "first_name" : "CHRIS", "last_name" : "VATTAKS", "birthday" : -505962000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14720 282ND AVE NE", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692048, 47.7351562 ] }, "properties" : { "rec_id" : "WA007831138", "first_name" : "ELIZABETH", "last_name" : "VERNON", "birthday" : 190335600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27610 NE 146TH WAY", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9652957, 47.73300314 ] }, "properties" : { "rec_id" : "WA003272533", "first_name" : "MARSHA", "last_name" : "VINING", "birthday" : -426564000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27948 NE 147TH CIR", "party" : 4, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9728199, 47.73579603 ] }, "properties" : { "rec_id" : "WA003272160", "first_name" : "JOHN", "last_name" : "WALKER", "birthday" : -4410000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14922 273RD PL NE", "party" : 5, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9653021, 47.73478084 ] }, "properties" : { "rec_id" : "WA009580292", "first_name" : "DANIEL", "last_name" : "WALLACE", "birthday" : 290991600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27924 NE 148TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9725024, 47.73592697 ] }, "properties" : { "rec_id" : "WA003272110", "first_name" : "ANDREW", "last_name" : "WALSH", "birthday" : 68684400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27405 NE 150TH ST", "party" : 2, "history" : 0.5, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.968561, 47.73437911 ] }, "properties" : { "rec_id" : "WA008275665", "first_name" : "JULIA", "last_name" : "WALSH", "birthday" : 601081200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27717 NE 146TH WAY", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9584849, 47.73491866 ] }, "properties" : { "rec_id" : "WA010666403", "first_name" : "KATHERINE", "last_name" : "WALSH", "birthday" : 784162800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28418 NE 149TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9697259, 47.73595722 ] }, "properties" : { "rec_id" : "WA003272170", "first_name" : "JENNIFER", "last_name" : "WALTER", "birthday" : 194223600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27532 NE 149TH LN", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9664868, 47.73388816 ] }, "properties" : { "rec_id" : "WA003269314", "first_name" : "BONNIE", "last_name" : "WALTMAN", "birthday" : 505695600000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27810 NE 147TH PL", "party" : 0, "history" : 0.75, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9662825, 47.73418467 ] }, "properties" : { "rec_id" : "WA003710035", "first_name" : "DUSTIN", "last_name" : "WARD", "birthday" : 214700400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14803 279TH LN NE", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9633507, 47.73390052 ] }, "properties" : { "rec_id" : "WA003272281", "first_name" : "JOHN", "last_name" : "WASLEY", "birthday" : 32396400000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28015 NE 148TH PL", "party" : 0, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9646923, 47.73509794 ] }, "properties" : { "rec_id" : "WA010273006", "first_name" : "THOMAS", "last_name" : "WASSER", "birthday" : 391816800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27930 NE 149TH CT", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9692619, 47.73502816 ] }, "properties" : { "rec_id" : "WA010025872", "first_name" : "ADAM", "last_name" : "WEBER", "birthday" : 570409200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27608 NE 146TH WAY", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9697176, 47.73414719 ] }, "properties" : { "rec_id" : "WA003272543", "first_name" : "KATHLEEN", "last_name" : "WEBSTER", "birthday" : 238892400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27523 NE 147TH LN", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9745274, 47.73553156 ] }, "properties" : { "rec_id" : "WA004233661", "first_name" : "ADINA", "last_name" : "WELCH", "birthday" : 186620400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "14911 272ND PL NE", "party" : 4, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9601213, 47.73176107 ] }, "properties" : { "rec_id" : "WA009539915", "first_name" : "AMANDA", "last_name" : "WHETSTINE", "birthday" : 437958000000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28321 NE 146TH ST", "party" : 0, "history" : 0.35, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9625283, 47.73269855 ] }, "properties" : { "rec_id" : "WA003272106", "first_name" : "BRIAN", "last_name" : "WHITE", "birthday" : -448336800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "28209 NE 147TH PL", "party" : 3, "history" : 0.22, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9694143, 47.73216263 ] }, "properties" : { "rec_id" : "WA003553770", "first_name" : "CORINNE", "last_name" : "WHITE", "birthday" : 306457200000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27530 NE 144TH ST", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9571957, 47.73482414 ] }, "properties" : { "rec_id" : "WA009801077", "first_name" : "MELISSA", "last_name" : "WHITE", "birthday" : 759106800000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "28508 NE 149TH PL", "party" : 0, "history" : 0.2, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9630137, 47.73504815 ] }, "properties" : { "rec_id" : "WA003562956", "first_name" : "PAUL", "last_name" : "WIGGINS", "birthday" : -161053200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14907 281ST PL NE", "party" : 1, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.968674, 47.7355676 ] }, "properties" : { "rec_id" : "WA010411502", "first_name" : "JODY", "last_name" : "WILKES", "birthday" : 134953200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "14914 276TH PL NE", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9656621, 47.73268859 ] }, "properties" : { "rec_id" : "WA009850539", "first_name" : "CHRISTOPHER", "last_name" : "WILKINS", "birthday" : 397951200000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27924 NE 147TH CIR", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9679439, 47.73206385 ] }, "properties" : { "rec_id" : "WA003272438", "first_name" : "BRIAN", "last_name" : "WILLARD", "birthday" : -182826000000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27704 NE 144TH ST", "party" : 1, "history" : 0.37, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9646339, 47.7346431 ] }, "properties" : { "rec_id" : "WA010287219", "first_name" : "BRIDGETTE", "last_name" : "WITTE", "birthday" : 800834400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27930 NE 148TH PL", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9681011, 47.732562 ] }, "properties" : { "rec_id" : "WA003272566", "first_name" : "CAROL", "last_name" : "YAKLICH", "birthday" : -249008400000, "gender" : "F", "city" : "DUVALL", "zip" : 98019, "address" : "27709 NE 145TH PL", "party" : 0, "history" : 0.07, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9684465, 47.7337833 ] }, "properties" : { "rec_id" : "WA009852631", "first_name" : "JACOB", "last_name" : "YOUNG", "birthday" : 198975600000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27725 NE 146TH WAY", "party" : 0, "history" : 0, "precinct_name" : "DUV 45-3481" } }, { "type" : "Feature", "geometry" : { "type" : "Point", "coordinates" : [ -121.9647958, 47.73176107 ] }, "properties" : { "rec_id" : "WA010043746", "first_name" : "IVELIN", "last_name" : "ZHEGLOV", "birthday" : 213490800000, "gender" : "M", "city" : "DUVALL", "zip" : 98019, "address" : "27918 NE 144TH ST", "party" : 0, "history" : 0.22, "precinct_name" : "DUV 45-3481" } } ] }
2 |
--------------------------------------------------------------------------------