{"url":"https://api.github.com/gists/8033015","forks_url":"https://api.github.com/gists/8033015/forks","commits_url":"https://api.github.com/gists/8033015/commits","id":"8033015","node_id":"MDQ6R2lzdDgwMzMwMTU=","git_pull_url":"https://gist.github.com/8033015.git","git_push_url":"https://gist.github.com/8033015.git","html_url":"https://gist.github.com/mbostock/8033015","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/08cbaed043c567de033ccee804154026885757c5/.block","size":73,"truncated":false,"content":"license: gpl-3.0\nredirect: https://observablehq.com/@d3/multi-line-chart\n","encoding":"utf-8"},"Makefile":{"filename":"Makefile","type":"text/plain","language":"Makefile","raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/c6195274362495962eb9dcd60a9171e973cd513d/Makefile","size":340,"truncated":false,"content":"GENERATED_FILES = \\\n\tunemployment.tsv\n\n.PHONY: all clean\n\nall: $(GENERATED_FILES)\n\nclean:\n\trm -rf -- $(GENERATED_FILES)\n\n# http://www.bls.gov/lau/metrossa.htm\nbuild/ssamatab2.txt:\n\tmkdir -p build\n\tcurl -o $@ 'http://www.bls.gov/lau/ssamatab2.txt'\n\nunemployment.tsv: process-data build/ssamatab2.txt\n\t./process-data build/ssamatab2.txt > $@\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/afe9d9569f1e81c001f55fa704187829f4de62d1/README.md","size":268,"truncated":false,"content":"This [multi-line chart](/mbostock/3884955) uses an invisible [Voronoi tessellation](/mbostock/4060366) to handle mouseover; the closest point to the mouse on any line is highlighted. Click the checkbox in the top-right to toggle the visibility of the Voronoi overlay.\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/85149fd6b5dd4326a44750d61e47ebc4352927ab/index.html","size":3904,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.axis--y path {\n  display: none;\n}\n\n.cities {\n  fill: none;\n  stroke: #aaa;\n  stroke-linejoin: round;\n  stroke-linecap: round;\n  stroke-width: 1.5px;\n}\n\n.city--hover {\n  stroke: #000;\n}\n\n.focus text {\n  text-anchor: middle;\n  text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;\n}\n\n.voronoi path {\n  fill: none;\n  pointer-events: all;\n}\n\n.voronoi--show path {\n  stroke: red;\n  stroke-opacity: 0.2;\n}\n\n#form {\n  position: absolute;\n  top: 20px;\n  right: 30px;\n}\n\n</style>\n<svg width=\"960\" height=\"500\"></svg>\n<label id=\"form\" for=\"show-voronoi\">\n  Show Voronoi\n  <input type=\"checkbox\" id=\"show-voronoi\" disabled>\n</label>\n<script src=\"//d3js.org/d3.v4.min.js\"></script>\n<script>\n\nvar months,\n    monthKeys,\n    monthParse = d3.timeParse(\"%Y-%m\");\n\nvar svg = d3.select(\"svg\"),\n    margin = {top: 20, right: 30, bottom: 30, left: 40},\n    width = svg.attr(\"width\") - margin.left - margin.right,\n    height = svg.attr(\"height\") - margin.top - margin.bottom,\n    g = svg.append(\"g\").attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\nvar x = d3.scaleTime()\n    .range([0, width]);\n\nvar y = d3.scaleLinear()\n    .range([height, 0]);\n\nvar voronoi = d3.voronoi()\n    .x(function(d) { return x(d.date); })\n    .y(function(d) { return y(d.value); })\n    .extent([[-margin.left, -margin.top], [width + margin.right, height + margin.bottom]]);\n\nvar line = d3.line()\n    .x(function(d) { return x(d.date); })\n    .y(function(d) { return y(d.value); });\n\nd3.tsv(\"unemployment.tsv\", type, function(error, data) {\n  if (error) throw error;\n\n  x.domain(d3.extent(months));\n  y.domain([0, d3.max(data, function(c) { return d3.max(c.values, function(d) { return d.value; }); })]).nice();\n\n  g.append(\"g\")\n      .attr(\"class\", \"axis axis--x\")\n      .attr(\"transform\", \"translate(0,\" + height + \")\")\n      .call(d3.axisBottom(x));\n\n  g.append(\"g\")\n      .attr(\"class\", \"axis axis--y\")\n      .call(d3.axisLeft(y).ticks(10, \"%\"))\n    .append(\"text\")\n      .attr(\"x\", 4)\n      .attr(\"y\", 0.5)\n      .attr(\"dy\", \"0.32em\")\n      .style(\"text-anchor\", \"start\")\n      .style(\"fill\", \"#000\")\n      .style(\"font-weight\", \"bold\")\n      .text(\"Unemployment Rate\");\n\n  g.append(\"g\")\n      .attr(\"class\", \"cities\")\n    .selectAll(\"path\")\n    .data(data)\n    .enter().append(\"path\")\n      .attr(\"d\", function(d) { d.line = this; return line(d.values); });\n\n  var focus = g.append(\"g\")\n      .attr(\"transform\", \"translate(-100,-100)\")\n      .attr(\"class\", \"focus\");\n\n  focus.append(\"circle\")\n      .attr(\"r\", 3.5);\n\n  focus.append(\"text\")\n      .attr(\"y\", -10);\n\n  var voronoiGroup = g.append(\"g\")\n      .attr(\"class\", \"voronoi\");\n\n  voronoiGroup.selectAll(\"path\")\n    .data(voronoi.polygons(d3.merge(data.map(function(d) { return d.values; }))))\n    .enter().append(\"path\")\n      .attr(\"d\", function(d) { return d ? \"M\" + d.join(\"L\") + \"Z\" : null; })\n      .on(\"mouseover\", mouseover)\n      .on(\"mouseout\", mouseout);\n\n  d3.select(\"#show-voronoi\")\n      .property(\"disabled\", false)\n      .on(\"change\", function() { voronoiGroup.classed(\"voronoi--show\", this.checked); });\n\n  function mouseover(d) {\n    d3.select(d.data.city.line).classed(\"city--hover\", true);\n    d.data.city.line.parentNode.appendChild(d.data.city.line);\n    focus.attr(\"transform\", \"translate(\" + x(d.data.date) + \",\" + y(d.data.value) + \")\");\n    focus.select(\"text\").text(d.data.city.name);\n  }\n\n  function mouseout(d) {\n    d3.select(d.data.city.line).classed(\"city--hover\", false);\n    focus.attr(\"transform\", \"translate(-100,-100)\");\n  }\n});\n\nfunction type(d, i, columns) {\n  if (!months) monthKeys = columns.slice(1), months = monthKeys.map(monthParse);\n  var c = {name: d.name.replace(/ (msa|necta div|met necta|met div)$/i, \"\"), values: null};\n  c.values = monthKeys.map(function(k, i) { return {city: c, date: months[i], value: d[k] / 100}; });\n  return c;\n}\n\n</script>\n","encoding":"utf-8"},"package.json":{"filename":"package.json","type":"application/json","language":"JSON","raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/090962477f5cc2b547e9af44964a188e5773bf85/package.json","size":109,"truncated":false,"content":"{\n  \"name\": \"anonymous\",\n  \"version\": \"0.0.1\",\n  \"private\": true,\n  \"devDependencies\": {\n    \"d3\": \"3\"\n  }\n}\n","encoding":"utf-8"},"process-data":{"filename":"process-data","type":"text/plain","language":"JavaScript","raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/ec43a7d8bca0dd335e85bd4f47a5d33e2672657f/process-data","size":1494,"truncated":false,"content":"#!/usr/bin/env node\n\nvar fs = require(\"fs\"),\n    d3 = require(\"d3\");\n\n// Parse lines.\nvar lines = fs.readFileSync(process.argv[2], \"utf8\").split(/[\\r\\n]+/);\n\n// Parse fixed-width columns.\nvar data = lines.filter(function(d, i) {\n  return i >= 3 && i <= lines.length - 4;\n}).map(function(line) {\n  var fields = line.split(/\\s{2,}/), i = -1;\n  return {\n    \"LAUS Code\": fields[++i],\n    \"State FIPS Code\": fields[++i],\n    \"Area FIPS Code\": fields[++i],\n    \"Area\": fields[++i],\n    \"Year\": fields[++i],\n    \"Month\": fields[++i],\n    \"Civilian Labor Force\": +fields[++i].replace(/,/g, \"\"),\n    \"Employment\": +fields[++i].replace(/,/g, \"\"),\n    \"Unemployment\": +fields[++i].replace(/,/g, \"\"),\n    \"Unemployment Rate\": +fields[++i]\n  };\n});\n\n// Extract the available dates.\nvar dates = d3.set(data.map(function(d) { return d[\"Year\"] + \"-\" + d[\"Month\"]; })).values().sort();\n\n// Nest unemployment rate by area and date.\nvar rateByNameAndDate = d3.nest()\n    .key(function(d) { return d[\"Area\"]; })\n    .key(function(d) { return d[\"Year\"] + \"-\" + d[\"Month\"]; })\n    .rollup(function(v) { return v[0][\"Unemployment Rate\"]; }) // leaf nest is unique\n    .map(data, d3.map);\n\n// Recast data into a wide table.\nvar rows = rateByNameAndDate.entries().sort(function(a, b) { return d3.ascending(a.key, b.key); }).map(function(area) {\n  return [area.key].concat(dates.map(function(d) {\n    return area.value.get(d);\n  }));\n});\n\nprocess.stdout.write(d3.tsv.formatRows([[\"name\"].concat(dates)].concat(rows)));\n","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/c587fa05cb0617d8369d9b48d992ba09e940a8c6/thumbnail.png","size":16139,"truncated":false,"content":"iVBORw0KGgoAAAANSUhEUgAAAOYAAAB4CAIAAABpZBnfAAAKhmlDQ1BpY20A\nAEjHlZYHUJPZFsfv96U3WkIoUkLvSK/SayjSq42QhBBKDIEgIiIq4gquBRER\nLAuyVAVXpchaEAsWFgEFuwuyCKjrYsGGyvuQR3xv3uy82TNz5vvNmTP/e+79\n7p35A0AuYwmFKbAMAKmCDFGojzsjOiaWgXsEiIAAaMAYqLDY6UK34OAA8Lfx\nbghAc99bJnNa4J+FLIebzgYACkY4npPOTkX4FJJ5bKEoAwCUFVLXXpMhnONo\nhGkiZECE59ah8eY5b47j57nkW094qAfCdQDgySyWiAcACdEEjEw2D9Eh3UbY\nTMDhCwAgoxF2ZieyOAh7Imycmrp6joUI68f/hw7vvzTjJZosFk/C83v5FnhP\nfrowhbX2Hx7H/4/UFPHCGmpIktOTw/zn1kPOLIvN8gpb4EQuM2CBhRnuoQvM\nz2CGS3rEvhELLE6OcFvg5NX+kn5B/NIgiX66R+wCZyeGRy0wh+vptcCi1aGS\n/vTMMK/v/R5LFziJ5Re8wCzR/HnNMTfFJ/T7zMGSOQUpSyV7SRB5S3q46d/3\nm5EY7ith5AJI+vneTMl+Rb7f9VOCJZoicajkHLiCCIkmh+UpOVvAB4GABdgZ\n3KyMuYE9VgvXivi8xAyGG3LrucYMpoBtasywMDO3BHNvaP4XvaF/exsQ/fr3\nWlonAPaFSJH3vcbSAuD0UwCo777XtF4jv3cXAGf72GJR5nxt7roCDPI6pZHX\nqYTcAC2gD0yABbABjsAVeAE/EATCQQxYCdggEaQCEVgDcsBGUACKwC6wF5SD\nw+AIqAPHwAnQBs6AC+AKuAH6wCB4AIbBGHgOpsA7MANBEA6iQFRICVKHdCAj\nyAKyg5whLygACoVioDiIBwkgMZQDbYaKoGKoHKqE6qFfoNPQBega1A/dg0ag\nSeg19AlGwWSYBqvCuvBi2A52g/3hcHgFzIPT4Gw4H94Bl8FV8FG4Fb4A34AH\n4WH4OTyNAigSio7SQJmg7FAeqCBULCoBJULlogpRpagqVBOqA9WNuoUaRr1A\nfURj0VQ0A22CdkT7oiPQbHQaOhe9HV2OrkO3oi+hb6FH0FPorxgKRgVjhHHA\nMDHRGB5mDaYAU4qpwbRgLmMGMWOYd1gslo7Vw9pifbEx2CTsOux27EFsM7YT\n248dxU7jcDglnBHOCReEY+EycAW4/bijuPO4AdwY7gOehFfHW+C98bF4AX4T\nvhTfgD+HH8CP42cIMgQdggMhiMAhrCXsJFQTOgg3CWOEGaIsUY/oRAwnJhE3\nEsuITcTLxIfENyQSSZNkTwoh8Ul5pDLScdJV0gjpI1mObEj2IC8ni8k7yLXk\nTvI98hsKhaJLcaXEUjIoOyj1lIuUx5QPUlQpUymmFEdqg1SFVKvUgNRLaYK0\njrSb9ErpbOlS6ZPSN6VfyBBkdGU8ZFgyuTIVMqdl7shMy1JlzWWDZFNlt8s2\nyF6TnZDDyenKeclx5PLljshdlBuloqhaVA8qm7qZWk29TB2jYWl6NCYtiVZE\nO0brpU3Jy8lbyUfKZ8lXyJ+VH6aj6Lp0Jj2FvpN+gj5E/6SgquCmwFXYptCk\nMKDwXnGRoqsiV7FQsVlxUPGTEkPJSylZabdSm9IjZbSyoXKI8hrlQ8qXlV8s\noi1yXMReVLjoxKL7KrCKoUqoyjqVIyo9KtOqaqo+qkLV/aoXVV+o0dVc1ZLU\nStTOqU2qU9Wd1fnqJern1Z8x5BlujBRGGeMSY0pDRcNXQ6xRqdGrMaOppxmh\nuUmzWfORFlHLTitBq0SrS2tKW107UDtHu1H7vg5Bx04nUWefTrfOe1093Sjd\nrbptuhN6inpMvWy9Rr2H+hR9F/00/Sr92wZYAzuDZIODBn2GsKG1YaJhheFN\nI9jIxohvdNCo3xhjbG8sMK4yvmNCNnEzyTRpNBkxpZsGmG4ybTN9uVh7cezi\n3Yu7F381szZLMas2e2AuZ+5nvsm8w/y1haEF26LC4rYlxdLbcoNlu+UrKyMr\nrtUhq7vWVOtA663WXdZfbGxtRDZNNpO22rZxtgds79jR7ILttttdtcfYu9tv\nsD9j/9HBxiHD4YTDX44mjsmODY4TS/SWcJdULxl10nRiOVU6DTsznOOcf3Ie\ndtFwYblUuTxx1XLluNa4jrsZuCW5HXV76W7mLnJvcX/v4eCx3qPTE+Xp41no\n2esl5xXhVe712FvTm+fd6D3lY+2zzqfTF+Pr77vb9w5Tlclm1jOn/Gz91vtd\n8if7h/mX+z8JMAwQBXQEwoF+gXsCHy7VWSpY2hYEgphBe4IeBesFpwX/GoIN\nCQ6pCHkaah6aE9odRg1bFdYQ9i7cPXxn+IMI/QhxRFekdOTyyPrI91GeUcVR\nw9GLo9dH34hRjuHHtMfiYiNja2Knl3kt27tsbLn18oLlQyv0VmStuLZSeWXK\nyrOrpFexVp2Mw8RFxTXEfWYFsapY0/HM+APxU2wP9j72c44rp4QzyXXiFnPH\nE5wSihMmeE68PbzJRJfE0sQXfA9+Of9Vkm/S4aT3yUHJtcmzKVEpzan41LjU\n0wI5QbLg0mq11Vmr+4VGwgLhcJpD2t60KZG/qCYdSl+R3p5BQ8xKj1hfvEU8\nkumcWZH5YU3kmpNZslmCrJ61hmu3rR3P9s7+eR16HXtdV45GzsackfVu6ytz\nodz43K4NWhvyN4zl+eTVbSRuTN742yazTcWb3m6O2tyRr5qflz+6xWdLY4FU\ngajgzlbHrYd/QP/A/6F3m+W2/du+FnIKrxeZFZUWfd7O3n79R/Mfy36c3ZGw\no3enzc5Du7C7BLuGdrvsriuWLc4uHt0TuKe1hFFSWPJ276q910qtSg/vI+4T\n7xsuCyhr36+9f9f+z+WJ5YMV7hXNB1QObDvw/iDn4MAh10NNh1UPFx3+9BP/\np7uVPpWtVbpVpUewRzKPPK2OrO7+2e7n+hrlmqKaL7WC2uG60LpL9bb19Q0q\nDTsb4UZx4+TR5Uf7jnkea28yaapspjcXHQfHxcef/RL3y9AJ/xNdJ+1ONp3S\nOXWghdpS2Aq1rm2daktsG26Pae8/7Xe6q8Oxo+VX019rz2icqTgrf3bnOeK5\n/HOz57PPT3cKO19c4F0Y7VrV9eBi9MXbl0Iu9V72v3z1iveVi91u3eevOl09\nc83h2unrdtfbbtjcaO2x7mn5zfq3ll6b3tabtjfb++z7OvqX9J8bcBm4cMvz\n1pXbzNs3BpcO9g9FDN29s/zO8F3O3Yl7Kfde3c+8P/Mg7yHmYeEjmUelj1Ue\nV/1u8HvzsM3w2RHPkZ4nYU8ejLJHn/+R/sfnsfynlKel4+rj9RMWE2cmvSf7\nni17NvZc+HzmRcGfsn8eeKn/8tRfrn/1TEVPjb0SvZp9vf2N0pvat1Zvu6aD\npx+/S303877wg9KHuo92H7s/RX0an1nzGfe57IvBl46v/l8fzqbOzgpZItY3\nK4BCEk5IAOB1LQCUGMQ79AFAlJr3uN8Cmvfl3wj8Hc/74G9hA0CtKwARiJ8O\nQDzKISR1ECYj3zm7Fu4KYEtLSf470hMsLea1yIiTw3yYnX2jCgCuA4AvotnZ\nmYOzs1+qkWHvAdCZNu+t5wIrA8BxzBz1qOX+j8f9Fyeq8Q/iFmgiAAA0QElE\nQVR42u2deXcUR5qv/YX6i8ydO1+h/54/7ul7+tx2n/bMubbbbbvbgAFbYKF9\nKaF9BQECyWYx+47NYhazg8QihFYkhGoe5YPCSVVJKqAEFM44hySVFRkZyy/e\neLd444N0kpJUVOmD5//PpedCejFH1oPYT8uV/uzZs6SLk7QykM3CKGgLYOXm\nWVYS3s9yp7l4cVHmFwpMUpJeF7Ljo+OjI48f3r8//Gj48djE09nn1HFycuLR\nCA8ms9+cmpqYmJzKTX3n5maePp1+MnXu3PnxKM+T6emkr5NUGMg+iyjfDzsH\nqisqvv3q66b66k21TWNjTy9cOPdoePjQ4R/rWts//erL6orGVHX5hrKqtWvX\nV9WU121uqKja9F1VeUNdqrenq7m1bdWqr+tTlZtKN3y9YeOm9ZtKK1Nnz5/5\nt//9H9+Vlq5bv/6/P/3i22/WHjx5IeEWkvS6kJ2LFvFbV272bd/SsWPX+XNn\nWhpbrl+/Nzh45/Ho2I0r5//1xZdVtWWt9TVrV32+an1Je2dXXW3Z//m//5lq\nSlVUV1RXVv7tLx/WNre1t7c1bK7+x2cfr/t2fXuqrrNr58XLF9t7uusrS/7f\nh5+Ullb//ZP/2nf0XALZJBWMl517znSC4WdxnpMlfi4moXEz+3R6aGjw+StP\np2/evjU7lymrxeS4uec5E0Y2SQWHbFxnEK6x9Cwjw8Ifi+YJUlr0HHqeoDZJ\nK6AxyCfFZf9ED/AOplzqyt83ZJP0juM1obJJKrL06NGjwcHBp0+fvn8ITiD7\nviXkh6tXr96+fXt4ePjSpUtjY2PvGWoTyL5v6ddff4XEeg+VvXLlyt27d2dn\nZ98b4Ob0MUjEqWLlXx8+fHjz5s10zN7OlYeQ2+nIAPkeoDYvH4MkFQtqL1++\nLP+aoTeYnJwEtVNTU+8Bahd8DB6Pj48+fnjv3sNHj+I+BkkqIhI7NDSEyJXO\n0nB5/+TJk4sXL46Pjxc7ahd8DPr6yyo2lZXWNtVV6mNw8eIFl5iE1hZFgluF\nxGoMd8gmJibu3LkDfQ1PIMBBICtiyC74GNzo27GtZ+fu8+dOtzTN+xjcuzd4\n7979BLJFRGJJPoEBuHr16o0bN0ZGRpDGfG62mZkZkK00VvS8LBOUliB7PUvc\n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\nXrnC34CP9f8AwQfX7HoI+gkAAAAASUVORK5CYII=\n","encoding":"base64"},"unemployment.tsv":{"filename":"unemployment.tsv","type":"text/tab-separated-values","language":"TSV","raw_url":"https://gist.githubusercontent.com/mbostock/8033015/raw/7c895bae41e6def5ef1c0d860d7711be30c728c3/unemployment.tsv","size":32052,"truncated":false,"content":"name\t2000-01\t2000-02\t2000-03\t2000-04\t2000-05\t2000-06\t2000-07\t2000-08\t2000-09\t2000-10\t2000-11\t2000-12\t2001-01\t2001-02\t2001-03\t2001-04\t2001-05\t2001-06\t2001-07\t2001-08\t2001-09\t2001-10\t2001-11\t2001-12\t2002-01\t2002-02\t2002-03\t2002-04\t2002-05\t2002-06\t2002-07\t2002-08\t2002-09\t2002-10\t2002-11\t2002-12\t2003-01\t2003-02\t2003-03\t2003-04\t2003-05\t2003-06\t2003-07\t2003-08\t2003-09\t2003-10\t2003-11\t2003-12\t2004-01\t2004-02\t2004-03\t2004-04\t2004-05\t2004-06\t2004-07\t2004-08\t2004-09\t2004-10\t2004-11\t2004-12\t2005-01\t2005-02\t2005-03\t2005-04\t2005-05\t2005-06\t2005-07\t2005-08\t2005-09\t2005-10\t2005-11\t2005-12\t2006-01\t2006-02\t2006-03\t2006-04\t2006-05\t2006-06\t2006-07\t2006-08\t2006-09\t2006-10\t2006-11\t2006-12\t2007-01\t2007-02\t2007-03\t2007-04\t2007-05\t2007-06\t2007-07\t2007-08\t2007-09\t2007-10\t2007-11\t2007-12\t2008-01\t2008-02\t2008-03\t2008-04\t2008-05\t2008-06\t2008-07\t2008-08\t2008-09\t2008-10\t2008-11\t2008-12\t2009-01\t2009-02\t2009-03\t2009-04\t2009-05\t2009-06\t2009-07\t2009-08\t2009-09\t2009-10\t2009-11\t2009-12\t2010-01\t2010-02\t2010-03\t2010-04\t2010-05\t2010-06\t2010-07\t2010-08\t2010-09\t2010-10\t2010-11\t2010-12\t2011-01\t2011-02\t2011-03\t2011-04\t2011-05\t2011-06\t2011-07\t2011-08\t2011-09\t2011-10\t2011-11\t2011-12\t2012-01\t2012-02\t2012-03\t2012-04\t2012-05\t2012-06\t2012-07\t2012-08\t2012-09\t2012-10\t2012-11\t2012-12\t2013-01\t2013-02\t2013-03\t2013-04\t2013-05\t2013-06\t2013-07\t2013-08\t2013-09\t2013-10\nBethesda-Rockville-Frederick, MD Met Div\t2.6\t2.6\t2.6\t2.6\t2.7\t2.7\t2.7\t2.6\t2.6\t2.6\t2.6\t2.6\t2.7\t2.7\t2.8\t2.8\t2.9\t3\t3.1\t3.3\t3.4\t3.5\t3.5\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.5\t3.5\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.3\t3.3\t3.3\t3.3\t3.3\t3.2\t3.2\t3.2\t3.2\t3.2\t3.2\t3.2\t3.2\t3.2\t3.2\t3.2\t3.3\t3.3\t3.3\t3.3\t3.2\t3.2\t3.1\t3.1\t3\t3\t3\t2.9\t2.9\t2.8\t2.8\t2.8\t2.8\t2.9\t3\t3\t3\t2.9\t2.9\t2.9\t2.9\t2.8\t2.8\t2.7\t2.7\t2.6\t2.6\t2.6\t2.6\t2.6\t2.6\t2.6\t2.5\t2.5\t2.6\t2.7\t2.8\t2.9\t3.1\t3.2\t3.4\t3.6\t3.9\t4.2\t4.5\t4.9\t5.2\t5.5\t5.7\t5.8\t5.9\t6\t6\t6.1\t6.2\t6.2\t6.3\t6.3\t6.3\t6.2\t6.1\t6\t5.9\t5.9\t5.9\t5.9\t5.9\t5.8\t5.8\t5.7\t5.6\t5.5\t5.5\t5.5\t5.6\t5.6\t5.6\t5.6\t5.5\t5.4\t5.4\t5.3\t5.3\t5.3\t5.3\t5.3\t5.3\t5.3\t5.3\t5.2\t5.2\t5.2\t5.2\t5.2\t5.2\t5.1\t5.2\t5.3\t5.5\t5.5\t5.3\t5.2\t5.2\nBoston-Cambridge-Quincy, MA NECTA Div\t2.7\t2.6\t2.6\t2.5\t2.4\t2.4\t2.3\t2.3\t2.3\t2.3\t2.3\t2.4\t2.5\t2.6\t2.8\t2.9\t3\t3.2\t3.4\t3.6\t3.8\t4\t4.2\t4.4\t4.6\t4.7\t4.8\t4.9\t4.9\t5\t5\t5\t5.1\t5.1\t5.2\t5.2\t5.3\t5.3\t5.4\t5.4\t5.5\t5.6\t5.6\t5.6\t5.5\t5.4\t5.3\t5.2\t5.1\t5.1\t5\t4.9\t4.9\t4.8\t4.7\t4.6\t4.5\t4.5\t4.4\t4.4\t4.4\t4.4\t4.4\t4.3\t4.3\t4.2\t4.2\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.2\t4.2\t4.2\t4.2\t4.1\t4.1\t4.1\t4\t4\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t4\t4.1\t4.2\t4.3\t4.5\t4.7\t4.8\t5\t5.3\t5.6\t5.9\t6.2\t6.5\t6.7\t6.9\t7.1\t7.3\t7.4\t7.5\t7.6\t7.6\t7.6\t7.6\t7.6\t7.5\t7.5\t7.4\t7.3\t7.2\t7.1\t7\t7\t6.9\t6.9\t6.8\t6.6\t6.5\t6.4\t6.3\t6.3\t6.2\t6.2\t6.1\t6.1\t6\t5.9\t5.8\t5.7\t5.7\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.5\t5.4\t5.5\t5.6\t5.9\t6\t6\t5.9\t6\nBoston-Cambridge-Quincy, MA-NH Met NECTA\t2.8\t2.7\t2.7\t2.6\t2.6\t2.5\t2.5\t2.5\t2.4\t2.4\t2.5\t2.5\t2.6\t2.8\t2.9\t3.1\t3.2\t3.4\t3.6\t3.8\t4.1\t4.3\t4.5\t4.7\t4.9\t5\t5.1\t5.2\t5.2\t5.3\t5.3\t5.4\t5.4\t5.5\t5.5\t5.5\t5.6\t5.6\t5.6\t5.7\t5.8\t5.8\t5.9\t5.8\t5.8\t5.7\t5.6\t5.5\t5.4\t5.3\t5.2\t5.2\t5.1\t5\t4.9\t4.9\t4.8\t4.7\t4.7\t4.6\t4.6\t4.6\t4.6\t4.5\t4.5\t4.4\t4.4\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.4\t4.4\t4.4\t4.4\t4.4\t4.3\t4.3\t4.2\t4.2\t4.2\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.2\t4.3\t4.4\t4.5\t4.7\t4.9\t5.1\t5.3\t5.5\t5.8\t6.1\t6.5\t6.8\t7.1\t7.3\t7.5\t7.7\t7.8\t7.9\t8\t8\t8\t8\t8\t7.9\t7.9\t7.8\t7.6\t7.5\t7.4\t7.3\t7.3\t7.2\t7.2\t7.1\t6.9\t6.8\t6.8\t6.7\t6.6\t6.6\t6.6\t6.5\t6.5\t6.4\t6.3\t6.2\t6.1\t6.1\t6.1\t6\t6\t6.1\t6.1\t6.1\t6.1\t6.1\t6.1\t6.1\t6.1\t5.9\t5.9\t5.9\t6\t6.3\t6.3\t6.3\t6.2\t6.3\nBrockton-Bridgewater-Easton, MA NECTA Div\t3\t3\t2.9\t2.9\t2.8\t2.8\t2.8\t2.8\t2.8\t2.8\t2.9\t2.9\t3.1\t3.2\t3.3\t3.4\t3.5\t3.6\t3.8\t3.9\t4.1\t4.3\t4.4\t4.6\t4.8\t4.9\t5\t5.1\t5.2\t5.3\t5.3\t5.4\t5.4\t5.5\t5.6\t5.6\t5.7\t5.8\t5.9\t6\t6.1\t6.2\t6.2\t6.3\t6.2\t6.2\t6.1\t6.1\t6\t5.9\t5.9\t5.9\t5.8\t5.7\t5.7\t5.6\t5.5\t5.5\t5.4\t5.4\t5.4\t5.3\t5.3\t5.3\t5.2\t5.2\t5.2\t5.3\t5.3\t5.4\t5.3\t5.3\t5.3\t5.2\t5.2\t5.3\t5.3\t5.3\t5.4\t5.3\t5.3\t5.3\t5.3\t5.2\t5.2\t5.1\t5.1\t5.1\t5\t5\t5\t5\t5\t5.1\t5.1\t5.1\t5.2\t5.2\t5.3\t5.4\t5.6\t5.8\t6\t6.2\t6.5\t6.8\t7.1\t7.5\t7.9\t8.2\t8.5\t8.7\t8.9\t9.1\t9.3\t9.5\t9.6\t9.7\t9.8\t9.9\t9.9\t9.9\t9.9\t9.8\t9.6\t9.5\t9.4\t9.4\t9.3\t9.3\t9.2\t9.1\t9\t8.8\t8.7\t8.6\t8.5\t8.5\t8.4\t8.4\t8.3\t8.2\t8.1\t7.9\t7.8\t7.7\t7.7\t7.7\t7.7\t7.7\t7.7\t7.6\t7.5\t7.5\t7.5\t7.4\t7.4\t7.2\t7.1\t7.2\t7.4\t7.8\t7.9\t7.9\t7.7\t7.8\nCamden, NJ Met Div\t3.6\t3.6\t3.5\t3.5\t3.4\t3.4\t3.5\t3.5\t3.6\t3.6\t3.6\t3.5\t3.5\t3.5\t3.5\t3.6\t3.7\t3.8\t3.9\t4.1\t4.3\t4.5\t4.6\t4.8\t5\t5.1\t5.2\t5.3\t5.4\t5.4\t5.4\t5.4\t5.5\t5.5\t5.5\t5.6\t5.6\t5.6\t5.5\t5.6\t5.6\t5.6\t5.6\t5.5\t5.4\t5.3\t5.2\t5.2\t5.1\t5.1\t5\t5\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.4\t4.3\t4.3\t4.3\t4.2\t4.2\t4.2\t4.1\t4.2\t4.3\t4.4\t4.5\t4.6\t4.7\t4.7\t4.7\t4.7\t4.8\t4.8\t4.9\t4.8\t4.8\t4.7\t4.6\t4.5\t4.4\t4.3\t4.3\t4.2\t4.2\t4.3\t4.3\t4.3\t4.4\t4.4\t4.5\t4.6\t4.7\t4.7\t4.8\t4.8\t4.9\t5.1\t5.2\t5.4\t5.7\t5.9\t6.3\t6.7\t7.1\t7.6\t8\t8.4\t8.7\t9\t9.2\t9.4\t9.6\t9.7\t9.9\t10\t10.1\t10.2\t10.2\t10.2\t10.1\t10\t10\t9.9\t9.9\t10\t10\t10\t10\t9.9\t9.8\t9.7\t9.7\t9.7\t9.8\t9.8\t9.9\t9.8\t9.8\t9.7\t9.7\t9.6\t9.7\t9.8\t9.9\t10\t10\t10.1\t10.1\t10.1\t10.1\t10.1\t10.1\t9.9\t9.7\t9.4\t9.1\t9\t9\t8.8\t8.7\t8.7\t8.6\nChicago-Joliet-Naperville, IL Met Div\t4.4\t4.4\t4.4\t4.4\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.7\t4.9\t5.1\t5.3\t5.4\t5.4\t5.4\t5.4\t5.5\t5.6\t5.8\t6\t6.2\t6.4\t6.6\t6.7\t6.8\t6.9\t7\t7\t7\t7\t7\t7\t7\t6.9\t6.9\t6.8\t6.8\t6.9\t7\t7.1\t7.2\t7.2\t7.1\t7\t6.8\t6.6\t6.5\t6.4\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.2\t6.2\t6.1\t6\t5.8\t5.7\t5.5\t5.3\t5.1\t4.9\t4.7\t4.5\t4.5\t4.4\t4.4\t4.3\t4.2\t4.2\t4.2\t4.3\t4.3\t4.4\t4.6\t4.7\t4.8\t4.9\t5\t5.1\t5.1\t5.2\t5.2\t5.2\t5.2\t5.3\t5.4\t5.6\t5.9\t6.1\t6.3\t6.4\t6.5\t6.9\t7.1\t7.4\t7.9\t8.5\t9.1\t9.5\t9.9\t10.2\t10.4\t10.7\t10.9\t11.1\t11.2\t11.3\t11.2\t11.1\t10.9\t10.7\t10.5\t10.4\t10.2\t10.1\t10\t9.9\t9.7\t9.5\t9.4\t9.3\t9.4\t9.6\t9.8\t10.2\t10.4\t10.5\t10.5\t10.3\t9.9\t9.5\t9.2\t8.9\t8.8\t8.7\t8.8\t8.9\t8.9\t8.9\t8.9\t8.9\t8.9\t8.9\t9\t9.4\t9.5\t9.4\t9.3\t9.4\t9.4\t9.4\t9.3\t9.1\nChicago-Joliet-Naperville, IL-IN-WI MSA\t4.1\t4.2\t4.2\t4.2\t4.3\t4.3\t4.3\t4.4\t4.4\t4.5\t4.6\t4.7\t4.9\t5\t5.1\t5.1\t5.2\t5.2\t5.3\t5.5\t5.7\t5.9\t6.1\t6.3\t6.5\t6.6\t6.7\t6.7\t6.8\t6.8\t6.8\t6.8\t6.8\t6.8\t6.8\t6.7\t6.7\t6.7\t6.6\t6.7\t6.8\t6.9\t7\t7\t6.9\t6.8\t6.7\t6.5\t6.4\t6.3\t6.2\t6.2\t6.2\t6.2\t6.2\t6.2\t6.2\t6.2\t6.2\t6.2\t6.2\t6.2\t6.1\t6.1\t6.1\t6\t5.9\t5.8\t5.8\t5.6\t5.5\t5.3\t5.1\t4.9\t4.7\t4.6\t4.5\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.5\t4.6\t4.6\t4.7\t4.7\t4.8\t4.9\t5\t5.1\t5.2\t5.3\t5.3\t5.3\t5.3\t5.4\t5.6\t5.8\t6\t6.2\t6.3\t6.5\t6.8\t7.1\t7.6\t8.1\t8.7\t9.2\t9.7\t10\t10.2\t10.3\t10.5\t10.7\t10.9\t11.1\t11.3\t11.3\t11.3\t11.1\t10.9\t10.6\t10.4\t10.2\t10\t9.9\t9.8\t9.7\t9.6\t9.5\t9.4\t9.5\t9.6\t9.8\t10\t10.2\t10.2\t10.1\t10\t9.7\t9.5\t9.2\t9\t8.9\t8.8\t8.8\t8.8\t8.8\t8.8\t8.8\t8.8\t8.8\t8.8\t9.1\t9.6\t9.7\t9.6\t9.4\t9.4\t9.3\t9.2\t9\t8.8\nDallas-Fort Worth-Arlington, TX MSA\t3.7\t3.7\t3.7\t3.7\t3.6\t3.6\t3.6\t3.6\t3.5\t3.5\t3.4\t3.4\t3.5\t3.6\t3.8\t4\t4.2\t4.5\t4.7\t5\t5.3\t5.6\t5.9\t6.1\t6.3\t6.4\t6.5\t6.5\t6.5\t6.5\t6.5\t6.5\t6.5\t6.6\t6.6\t6.7\t6.7\t6.7\t6.8\t6.8\t6.8\t6.8\t6.8\t6.7\t6.6\t6.4\t6.3\t6.2\t6.1\t6.1\t6\t5.9\t5.9\t5.8\t5.7\t5.7\t5.7\t5.7\t5.7\t5.6\t5.6\t5.5\t5.4\t5.3\t5.2\t5.1\t5.1\t5.1\t5.1\t5.1\t5\t5\t4.9\t4.9\t4.9\t4.9\t4.9\t4.9\t4.9\t4.8\t4.7\t4.6\t4.5\t4.5\t4.4\t4.4\t4.3\t4.3\t4.2\t4.2\t4.2\t4.3\t4.3\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.5\t4.6\t4.8\t4.9\t5.1\t5.4\t5.6\t6\t6.3\t6.6\t6.9\t7.2\t7.4\t7.6\t7.8\t8\t8.1\t8.2\t8.2\t8.3\t8.3\t8.3\t8.3\t8.3\t8.3\t8.2\t8.1\t8.1\t8.1\t8.1\t8.2\t8.2\t8.2\t8.1\t8\t8\t7.9\t7.9\t7.9\t7.9\t7.9\t7.8\t7.6\t7.4\t7.3\t7.1\t7\t7\t6.9\t6.9\t6.8\t6.7\t6.6\t6.4\t6.3\t6.2\t6.1\t6.2\t6.2\t6.3\t6.3\t6.4\t6.3\t6.2\t6\t6\t6\nDallas-Plano-Irving, TX Met Div\t3.7\t3.7\t3.7\t3.7\t3.6\t3.6\t3.6\t3.6\t3.5\t3.5\t3.4\t3.4\t3.5\t3.6\t3.8\t4.1\t4.3\t4.6\t4.9\t5.2\t5.5\t5.9\t6.2\t6.4\t6.5\t6.7\t6.7\t6.7\t6.8\t6.8\t6.7\t6.7\t6.7\t6.8\t6.8\t6.9\t6.9\t6.9\t7\t7\t7\t7\t6.9\t6.9\t6.7\t6.6\t6.4\t6.3\t6.3\t6.2\t6.1\t6.1\t6\t5.9\t5.9\t5.8\t5.8\t5.8\t5.8\t5.7\t5.6\t5.6\t5.4\t5.3\t5.2\t5.2\t5.1\t5.1\t5.1\t5.1\t5.1\t5.1\t5\t5\t5\t5\t5\t5\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.4\t4.3\t4.3\t4.3\t4.2\t4.2\t4.3\t4.3\t4.4\t4.4\t4.4\t4.4\t4.5\t4.5\t4.5\t4.6\t4.7\t4.8\t5\t5.2\t5.5\t5.7\t6.1\t6.4\t6.7\t7\t7.2\t7.5\t7.7\t7.9\t8\t8.1\t8.2\t8.2\t8.2\t8.3\t8.3\t8.3\t8.3\t8.3\t8.2\t8.1\t8.1\t8.1\t8.1\t8.1\t8.2\t8.1\t8.1\t8\t8\t8\t8\t8\t8\t7.9\t7.8\t7.7\t7.5\t7.3\t7.2\t7.1\t7.1\t7\t7\t6.9\t6.8\t6.6\t6.5\t6.3\t6.2\t6.1\t6.2\t6.3\t6.3\t6.3\t6.4\t6.4\t6.2\t6.1\t6\t6\nDetroit-Livonia-Dearborn, MI Met Div\t4.1\t4.1\t4.2\t4.2\t4.3\t4.3\t4.3\t4.3\t4.4\t4.5\t4.7\t5\t5.3\t5.6\t5.7\t5.7\t5.7\t5.7\t5.8\t6\t6.3\t6.7\t7\t7.2\t7.3\t7.3\t7.3\t7.3\t7.2\t7.2\t7.1\t7.1\t7.1\t7.3\t7.5\t7.8\t8.1\t8.4\t8.6\t8.7\t8.8\t8.8\t8.7\t8.7\t8.6\t8.4\t8.3\t8.2\t8.1\t8.1\t8.2\t8.3\t8.4\t8.5\t8.7\t8.8\t9\t9.1\t9.1\t9.1\t9.1\t9\t8.9\t8.8\t8.7\t8.6\t8.5\t8.4\t8.4\t8.5\t8.5\t8.4\t8.3\t8.2\t8.2\t8.1\t8.2\t8.3\t8.4\t8.5\t8.6\t8.7\t8.6\t8.5\t8.4\t8.3\t8.3\t8.3\t8.4\t8.6\t8.7\t8.9\t9\t9\t8.9\t8.8\t8.7\t8.6\t8.7\t8.8\t9.1\t9.4\t9.7\t10\t10.5\t11.1\t11.9\t12.7\t13.7\t14.5\t15.3\t15.9\t16.3\t16.7\t16.9\t17\t16.9\t16.7\t16.6\t16.4\t16.2\t16\t15.7\t15.4\t15.1\t14.8\t14.5\t14.3\t14.1\t14\t13.7\t13.5\t13.2\t13\t12.9\t12.9\t12.9\t12.9\t12.8\t12.7\t12.4\t12.2\t11.9\t11.7\t11.5\t11.4\t11.4\t11.4\t11.5\t11.6\t11.7\t11.7\t11.8\t11.8\t11.9\t12\t12\t11.8\t11.4\t11\t10.7\t10.7\t10.5\t10.5\t10.5\t10.4\nDetroit-Warren-Livonia, MI MSA\t3.5\t3.5\t3.5\t3.5\t3.6\t3.7\t3.8\t3.8\t3.8\t3.8\t3.9\t4.2\t4.5\t4.7\t4.9\t5\t5\t5.1\t5.2\t5.4\t5.6\t5.9\t6.1\t6.3\t6.4\t6.4\t6.4\t6.4\t6.4\t6.4\t6.3\t6.2\t6.2\t6.2\t6.4\t6.6\t6.8\t7.1\t7.2\t7.3\t7.4\t7.4\t7.4\t7.3\t7.2\t7\t6.9\t6.8\t6.7\t6.7\t6.8\t6.9\t7\t7.1\t7.2\t7.4\t7.5\t7.6\t7.6\t7.6\t7.6\t7.6\t7.5\t7.4\t7.3\t7.2\t7.1\t7\t7\t7.1\t7.1\t7.1\t7.1\t7.1\t7\t7\t7.1\t7.1\t7.2\t7.3\t7.4\t7.4\t7.4\t7.3\t7.3\t7.2\t7.2\t7.3\t7.4\t7.5\t7.6\t7.7\t7.7\t7.8\t7.7\t7.6\t7.5\t7.5\t7.5\t7.7\t7.9\t8.2\t8.5\t8.8\t9.3\t9.9\t10.7\t11.5\t12.4\t13.2\t14\t14.6\t15.1\t15.5\t15.8\t15.9\t16\t15.9\t15.7\t15.5\t15.2\t14.9\t14.7\t14.4\t14.1\t13.9\t13.6\t13.4\t13.3\t13.1\t12.8\t12.5\t12.1\t11.9\t11.8\t11.8\t11.9\t12\t11.9\t11.8\t11.5\t11.2\t10.9\t10.5\t10.3\t10.2\t10.1\t10.2\t10.4\t10.6\t10.7\t10.7\t10.7\t10.7\t10.7\t10.7\t10.6\t10.3\t9.9\t9.5\t9.3\t9.4\t9.4\t9.6\t9.7\t9.5\nEdison-New Brunswick, NJ Met Div\t3.3\t3.3\t3.3\t3.2\t3.2\t3.2\t3.2\t3.2\t3.3\t3.2\t3.2\t3.2\t3.3\t3.3\t3.4\t3.5\t3.6\t3.7\t3.9\t4.1\t4.3\t4.5\t4.6\t4.8\t5\t5.1\t5.2\t5.3\t5.3\t5.4\t5.4\t5.4\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.4\t5.3\t5.2\t5.1\t5\t4.9\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.3\t4.2\t4.1\t4.1\t4.1\t4.1\t4\t4\t4\t4\t4.1\t4.1\t4.2\t4.3\t4.3\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.3\t4.3\t4.2\t4.1\t4\t3.9\t3.9\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.9\t3.9\t4\t4.1\t4.1\t4.3\t4.4\t4.4\t4.5\t4.7\t4.8\t5\t5.2\t5.4\t5.7\t6.1\t6.6\t7\t7.5\t7.9\t8.2\t8.4\t8.6\t8.7\t8.8\t8.9\t8.9\t9\t9\t9.1\t9.1\t9.1\t9\t8.9\t8.9\t8.8\t8.8\t8.8\t8.8\t8.8\t8.7\t8.7\t8.6\t8.6\t8.6\t8.6\t8.7\t8.7\t8.7\t8.7\t8.7\t8.7\t8.6\t8.6\t8.6\t8.7\t8.8\t8.8\t8.9\t8.9\t9\t9\t9\t9\t9\t8.9\t8.7\t8.3\t8\t7.9\t8\t7.8\t7.8\t7.7\t7.7\nFort Lauderdale-Pompano Beach-Deerfield Beach, FL Met Div\t3.5\t3.6\t3.6\t3.7\t3.7\t3.8\t3.8\t3.8\t3.7\t3.6\t3.5\t3.5\t3.6\t3.7\t3.8\t3.9\t4\t4.1\t4.3\t4.6\t4.9\t5.3\t5.7\t5.9\t6.1\t6.1\t6\t6\t6\t5.9\t5.8\t5.8\t5.7\t5.7\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.5\t5.4\t5.3\t5.1\t5\t4.9\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.6\t4.5\t4.4\t4.3\t4.2\t4.2\t4.1\t4\t3.9\t3.8\t3.7\t3.6\t3.5\t3.4\t3.4\t3.4\t3.3\t3.3\t3.2\t3.1\t3.1\t3\t3\t3\t3\t3\t3\t3\t3\t3\t3\t3.1\t3.1\t3.2\t3.2\t3.3\t3.4\t3.5\t3.6\t3.8\t3.9\t4\t4.1\t4.2\t4.4\t4.7\t4.9\t5.2\t5.5\t5.7\t6\t6.3\t6.7\t7\t7.5\t7.9\t8.3\t8.6\t8.9\t9.1\t9.3\t9.4\t9.6\t9.7\t9.8\t9.8\t9.8\t9.8\t9.7\t9.6\t9.5\t9.5\t9.5\t9.5\t9.6\t9.6\t9.6\t9.6\t9.5\t9.4\t9.2\t9.2\t9.1\t9.1\t9\t8.9\t8.8\t8.6\t8.4\t8.2\t8\t7.9\t7.8\t7.7\t7.6\t7.5\t7.4\t7.3\t7.1\t7\t6.9\t6.8\t6.7\t6.5\t6.2\t6.1\t6\t5.9\t5.8\t5.6\t5.5\t5.4\nFort Worth-Arlington, TX Met Div\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.5\t3.5\t3.5\t3.6\t3.8\t3.9\t4\t4.2\t4.4\t4.6\t4.8\t5.1\t5.4\t5.6\t5.7\t5.8\t5.9\t6\t6\t6\t6\t6\t6.1\t6.1\t6.2\t6.2\t6.3\t6.3\t6.4\t6.4\t6.5\t6.5\t6.5\t6.4\t6.3\t6.1\t6\t5.9\t5.8\t5.8\t5.7\t5.7\t5.6\t5.5\t5.5\t5.5\t5.4\t5.5\t5.5\t5.4\t5.4\t5.3\t5.2\t5.1\t5\t5\t5\t5\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.6\t4.6\t4.5\t4.4\t4.4\t4.3\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.4\t4.5\t4.6\t4.8\t5\t5.2\t5.4\t5.7\t6.1\t6.4\t6.7\t7\t7.3\t7.6\t7.8\t8\t8.1\t8.2\t8.2\t8.3\t8.3\t8.4\t8.4\t8.4\t8.3\t8.2\t8.2\t8.1\t8.1\t8.2\t8.2\t8.2\t8.2\t8.1\t8\t7.9\t7.9\t7.9\t7.9\t7.8\t7.8\t7.7\t7.5\t7.3\t7.1\t7\t6.9\t6.8\t6.8\t6.8\t6.7\t6.6\t6.4\t6.3\t6.2\t6.1\t6\t6.1\t6.2\t6.2\t6.2\t6.2\t6.2\t6.1\t5.9\t5.9\t5.9\nFramingham, MA NECTA Div\t2.4\t2.4\t2.3\t2.3\t2.2\t2.2\t2.2\t2.1\t2.1\t2.1\t2.1\t2.1\t2.2\t2.3\t2.4\t2.6\t2.7\t2.9\t3.1\t3.3\t3.6\t3.8\t4\t4.2\t4.4\t4.6\t4.7\t4.8\t4.9\t4.9\t5\t5\t5.1\t5.1\t5.1\t5.2\t5.2\t5.2\t5.2\t5.3\t5.3\t5.3\t5.3\t5.2\t5.2\t5.1\t5\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.3\t4.2\t4.2\t4.1\t4\t4\t3.9\t3.9\t3.9\t3.9\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.8\t3.8\t3.8\t3.8\t3.7\t3.7\t3.7\t3.7\t3.6\t3.6\t3.5\t3.5\t3.4\t3.4\t3.5\t3.5\t3.5\t3.5\t3.5\t3.6\t3.7\t3.8\t3.9\t4.1\t4.2\t4.4\t4.5\t4.7\t5\t5.3\t5.6\t5.9\t6.2\t6.4\t6.6\t6.8\t6.9\t7\t7\t7\t7\t7\t7\t6.9\t6.8\t6.7\t6.6\t6.5\t6.4\t6.3\t6.3\t6.2\t6.2\t6\t5.9\t5.8\t5.7\t5.6\t5.6\t5.6\t5.6\t5.5\t5.5\t5.4\t5.3\t5.2\t5.1\t5.1\t5.1\t5.1\t5.1\t5.1\t5.1\t5.1\t5.2\t5.2\t5.2\t5.2\t5.3\t5.2\t5.2\t5.2\t5.4\t5.6\t5.6\t5.6\t5.5\t5.6\nGary, IN Met Div\t3.3\t3.3\t3.3\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.5\t3.7\t3.8\t4\t4.2\t4.3\t4.5\t4.7\t5\t5.4\t5.7\t6.1\t6.3\t6.5\t6.5\t6.4\t6.3\t6.1\t5.9\t5.8\t5.7\t5.6\t5.5\t5.4\t5.4\t5.4\t5.5\t5.6\t5.8\t6\t6.1\t6.2\t6.2\t6.1\t6.1\t6\t5.9\t5.9\t5.9\t5.8\t5.8\t5.9\t5.9\t5.9\t5.9\t5.9\t5.9\t5.9\t5.8\t5.7\t5.7\t5.6\t5.6\t5.6\t5.7\t5.7\t5.8\t5.7\t5.6\t5.4\t5.3\t5.3\t5.4\t5.5\t5.6\t5.7\t5.7\t5.6\t5.4\t5.3\t5.1\t5\t5\t4.9\t4.8\t4.7\t4.6\t4.6\t4.7\t4.8\t4.9\t5\t5\t4.9\t4.9\t4.9\t4.9\t5\t5.1\t5.3\t5.5\t5.8\t6.2\t6.7\t7.4\t8.1\t8.9\t9.5\t10\t10.4\t10.6\t10.6\t10.6\t10.6\t10.7\t10.7\t10.9\t10.9\t11\t10.9\t10.8\t10.6\t10.4\t10.2\t10.1\t9.9\t10.7\t10.3\t9.9\t9.6\t9.3\t9.1\t9\t9\t9.1\t9.3\t9.5\t9.6\t9.6\t9.5\t9.3\t9.1\t8.8\t8.7\t8.6\t8.7\t8.8\t8.9\t9\t9.1\t9.2\t9.3\t9.4\t9.5\t9.8\t9.9\t9.8\t9.6\t9.4\t9.5\t9.6\t9.3\t9.2\t9\nHaverhill-North Andover-Amesbury, MA-NH NECTA Div\t2.8\t2.8\t2.8\t2.8\t2.7\t2.7\t2.7\t2.7\t2.6\t2.6\t2.7\t2.7\t2.8\t3\t3.1\t3.3\t3.5\t3.7\t3.9\t4.2\t4.4\t4.7\t5\t5.3\t5.4\t5.6\t5.7\t5.8\t5.8\t5.9\t5.9\t5.9\t5.9\t5.9\t5.9\t5.8\t5.8\t5.8\t5.8\t5.9\t5.9\t6\t6\t6\t5.9\t5.9\t5.8\t5.7\t5.7\t5.6\t5.6\t5.5\t5.4\t5.3\t5.2\t5.1\t5\t5\t4.9\t4.9\t4.9\t4.9\t4.8\t4.7\t4.6\t4.6\t4.6\t4.6\t4.7\t4.7\t4.7\t4.6\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.4\t4.3\t4.3\t4.3\t4.3\t4.3\t4.2\t4.2\t4.2\t4.2\t4.3\t4.3\t4.4\t4.5\t4.6\t4.8\t5\t5.2\t5.4\t5.6\t5.9\t6.2\t6.5\t6.9\t7.2\t7.4\t7.7\t7.8\t8\t8.1\t8.2\t8.3\t8.3\t8.3\t8.3\t8.3\t8.2\t8.1\t8\t7.8\t7.6\t7.5\t7.4\t7.4\t7.4\t7.3\t7.2\t7.1\t7\t6.9\t6.8\t6.8\t6.8\t6.8\t6.8\t6.8\t6.7\t6.7\t6.6\t6.5\t6.5\t6.5\t6.5\t6.5\t6.5\t6.6\t6.6\t6.6\t6.6\t6.6\t6.6\t6.6\t6.4\t6.3\t6.3\t6.3\t6.4\t6.4\t6.4\t6.3\t6.4\nLake County-Kenosha County, IL-WI Met Div\t3.7\t3.7\t3.7\t3.7\t3.8\t3.8\t3.7\t3.7\t3.7\t3.6\t3.7\t3.8\t3.9\t4\t4.1\t4.2\t4.3\t4.4\t4.5\t4.7\t4.9\t5.1\t5.2\t5.3\t5.4\t5.5\t5.5\t5.6\t5.7\t5.7\t5.7\t5.7\t5.6\t5.6\t5.6\t5.7\t5.7\t5.7\t5.8\t5.8\t5.9\t5.9\t6\t6.1\t6.1\t6\t5.9\t5.8\t5.7\t5.7\t5.6\t5.6\t5.5\t5.5\t5.4\t5.4\t5.4\t5.4\t5.4\t5.3\t5.2\t5.2\t5.1\t5\t5\t4.9\t4.9\t4.9\t4.9\t4.9\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.7\t4.7\t4.6\t4.5\t4.5\t4.4\t4.5\t4.5\t4.7\t4.8\t4.9\t4.9\t5\t5\t5\t5.1\t5.2\t5.3\t5.4\t5.4\t5.4\t5.4\t5.5\t5.7\t5.9\t6.2\t6.5\t6.7\t6.9\t7\t7.3\t7.7\t8\t8.4\t8.8\t9.1\t9.4\t9.7\t10\t10.3\t10.7\t11\t11.3\t11.5\t11.6\t11.5\t11.4\t11.1\t10.8\t10.5\t10.2\t10.1\t9.9\t9.8\t9.7\t9.6\t9.5\t9.4\t9.3\t9.3\t9.3\t9.3\t9.3\t9.3\t9.3\t9.2\t9.1\t9\t8.8\t8.7\t8.7\t8.7\t8.7\t8.7\t8.6\t8.6\t8.5\t8.5\t8.4\t8.4\t8.7\t9\t8.9\t8.6\t8.4\t8.2\t8.2\t8.1\t8.1\t8.1\nLawrence-Methuen-Salem, MA-NH NECTA Div\t4.7\t4.7\t4.6\t4.5\t4.5\t4.4\t4.4\t4.3\t4.3\t4.2\t4.2\t4.3\t4.5\t4.8\t5.1\t5.4\t5.8\t6.2\t6.6\t7.1\t7.6\t8\t8.5\t8.8\t9.1\t9.3\t9.4\t9.4\t9.4\t9.4\t9.4\t9.5\t9.5\t9.5\t9.5\t9.4\t9.4\t9.4\t9.4\t9.5\t9.6\t9.7\t9.7\t9.7\t9.6\t9.5\t9.3\t9.2\t9.1\t9\t8.9\t8.8\t8.6\t8.5\t8.4\t8.2\t8.2\t8.1\t8.1\t8.1\t8\t7.9\t7.8\t7.6\t7.6\t7.5\t7.5\t7.5\t7.5\t7.5\t7.5\t7.4\t7.4\t7.4\t7.4\t7.3\t7.2\t7.1\t7\t7\t7\t7\t7\t7\t7\t7\t6.9\t6.9\t6.9\t6.8\t6.8\t6.7\t6.6\t6.6\t6.6\t6.6\t6.7\t6.8\t6.9\t7.1\t7.4\t7.7\t8.1\t8.4\t8.7\t9.1\t9.5\t9.9\t10.3\t10.8\t11.3\t11.7\t12\t12.3\t12.4\t12.6\t12.7\t12.7\t12.7\t12.7\t12.7\t12.6\t12.5\t12.3\t12.2\t12\t12\t11.9\t11.9\t12\t12\t12\t11.9\t11.8\t11.7\t11.6\t11.6\t11.6\t11.6\t11.5\t11.4\t11.2\t11.1\t11\t10.9\t10.9\t10.9\t11\t11\t11.1\t11.1\t11.1\t11\t10.9\t10.8\t10.7\t10.7\t10.6\t10.7\t10.8\t11\t11.3\t11.3\t11.3\t11.2\t11.2\nLos Angeles-Long Beach-Glendale, CA Met Div\t5.7\t5.6\t5.6\t5.6\t5.5\t5.5\t5.5\t5.4\t5.3\t5.2\t5.1\t5\t4.9\t4.9\t5\t5.1\t5.3\t5.5\t5.7\t5.9\t6.1\t6.3\t6.5\t6.6\t6.8\t6.9\t6.9\t7\t7\t6.9\t6.8\t6.7\t6.6\t6.6\t6.6\t6.6\t6.7\t6.8\t6.8\t6.9\t7\t7.2\t7.2\t7.2\t7.2\t7.1\t6.9\t6.8\t6.7\t6.7\t6.7\t6.8\t6.8\t6.7\t6.6\t6.5\t6.4\t6.3\t6.2\t6.1\t5.9\t5.8\t5.7\t5.6\t5.4\t5.2\t5.1\t5\t5\t5.1\t5.1\t5.1\t5.1\t5\t4.9\t4.9\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.6\t4.7\t4.7\t4.7\t4.8\t4.8\t4.9\t4.9\t5\t5.1\t5.2\t5.3\t5.5\t5.6\t5.8\t5.9\t6.2\t6.5\t6.8\t7.2\t7.6\t7.9\t8.3\t8.7\t9.2\t9.7\t10.2\t10.6\t10.9\t11.2\t11.5\t11.7\t11.9\t12.1\t12.2\t12.2\t12.3\t12.3\t12.3\t12.4\t12.4\t12.4\t12.5\t12.5\t12.6\t12.7\t12.7\t12.7\t12.7\t12.6\t12.4\t12.3\t12.2\t12.2\t12.3\t12.4\t12.5\t12.5\t12.4\t12.2\t12\t11.8\t11.6\t11.4\t11.2\t11.2\t11.1\t11.1\t11\t10.9\t10.7\t10.5\t10.4\t10.3\t10.4\t10.3\t10.2\t9.9\t9.6\t9.7\t9.9\t10.1\t9.8\t9.7\nLos Angeles-Long Beach-Santa Ana, CA MSA\t5.2\t5.1\t5.1\t5.1\t5.1\t5\t5\t4.9\t4.9\t4.8\t4.7\t4.6\t4.6\t4.6\t4.7\t4.8\t4.9\t5\t5.2\t5.4\t5.7\t5.9\t6.1\t6.2\t6.3\t6.4\t6.4\t6.5\t6.5\t6.4\t6.4\t6.3\t6.2\t6.2\t6.2\t6.3\t6.3\t6.3\t6.4\t6.4\t6.5\t6.5\t6.6\t6.6\t6.5\t6.5\t6.4\t6.3\t6.2\t6.2\t6.2\t6.2\t6.1\t6.1\t6\t5.9\t5.8\t5.7\t5.6\t5.6\t5.5\t5.4\t5.2\t5.1\t5\t4.8\t4.7\t4.7\t4.7\t4.7\t4.8\t4.8\t4.7\t4.6\t4.6\t4.5\t4.5\t4.4\t4.4\t4.4\t4.4\t4.3\t4.3\t4.4\t4.4\t4.5\t4.5\t4.6\t4.6\t4.6\t4.7\t4.8\t4.9\t5.1\t5.2\t5.3\t5.4\t5.6\t5.8\t6\t6.3\t6.6\t7\t7.3\t7.7\t8.1\t8.5\t9\t9.5\t9.9\t10.3\t10.6\t10.8\t11\t11.2\t11.4\t11.5\t11.6\t11.6\t11.7\t11.7\t11.8\t11.8\t11.8\t11.8\t11.7\t11.8\t11.8\t11.9\t11.9\t11.9\t11.8\t11.7\t11.6\t11.5\t11.4\t11.5\t11.5\t11.5\t11.5\t11.4\t11.3\t11.1\t10.9\t10.8\t10.6\t10.5\t10.4\t10.3\t10.2\t10.1\t9.9\t9.8\t9.7\t9.6\t9.5\t9.6\t9.5\t9.3\t9.1\t8.8\t8.8\t8.9\t8.8\t8.7\t8.6\nLowell-Billerica-Chelmsford, MA-NH NECTA Div\t3\t3\t2.9\t2.8\t2.7\t2.6\t2.5\t2.5\t2.4\t2.4\t2.4\t2.5\t2.6\t2.8\t3.1\t3.3\t3.6\t3.9\t4.2\t4.5\t4.9\t5.2\t5.5\t5.7\t5.9\t6\t6.1\t6.2\t6.3\t6.4\t6.4\t6.5\t6.6\t6.6\t6.7\t6.7\t6.7\t6.8\t6.8\t6.9\t6.9\t6.9\t6.9\t6.8\t6.7\t6.5\t6.4\t6.3\t6.2\t6.1\t6\t5.9\t5.8\t5.7\t5.6\t5.5\t5.5\t5.4\t5.4\t5.4\t5.4\t5.3\t5.3\t5.2\t5.1\t5\t5\t5\t5\t5\t5\t5\t4.9\t4.9\t4.9\t4.9\t4.9\t4.9\t4.9\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.7\t4.7\t4.6\t4.6\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.6\t4.6\t4.7\t4.9\t5\t5.2\t5.4\t5.6\t5.9\t6.2\t6.6\t7\t7.4\t7.7\t8.1\t8.4\t8.6\t8.9\t9.1\t9.2\t9.3\t9.3\t9.3\t9.3\t9.2\t9.1\t9\t8.9\t8.7\t8.5\t8.4\t8.3\t8.3\t8.2\t8.2\t8\t7.9\t7.8\t7.7\t7.6\t7.6\t7.6\t7.5\t7.5\t7.4\t7.3\t7.2\t7.1\t7.1\t7\t7\t7\t7\t7\t7\t7\t7\t7\t7\t7\t6.9\t6.7\t6.7\t6.6\t6.8\t7\t7\t7\t6.9\t7\nMiami-Fort Lauderdale-Pompano Beach, FL MSA\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.4\t4.4\t4.3\t4.3\t4.3\t4.4\t4.4\t4.5\t4.6\t4.6\t4.7\t4.8\t4.9\t5.9\t6.9\t6.8\t6.7\t6.6\t6.6\t6.5\t6.4\t6.3\t6.2\t6.1\t6\t6\t6\t6\t5.9\t5.9\t5.8\t5.8\t5.8\t5.8\t5.8\t5.8\t5.7\t5.6\t5.5\t5.4\t5.3\t5.3\t5.3\t5.2\t5.2\t5.2\t5.1\t5\t5\t4.9\t4.9\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.2\t4.1\t4\t4\t3.9\t3.9\t3.9\t3.8\t3.7\t3.7\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.5\t3.5\t3.6\t3.6\t3.6\t3.7\t3.9\t4\t4.1\t4.3\t4.4\t4.5\t4.6\t4.8\t4.9\t5.1\t5.4\t5.7\t5.9\t6.4\t6.8\t7.1\t7.6\t8\t8.5\t9\t9.5\t9.9\t10.3\t10.5\t10.7\t10.8\t10.9\t11\t11.1\t11.1\t11.2\t11.2\t11.2\t11.2\t11.1\t11.1\t11.2\t11.2\t11.3\t11.3\t11.3\t11.2\t11\t10.9\t10.8\t10.7\t10.6\t10.5\t10.3\t10.1\t9.9\t9.6\t9.4\t9.2\t9.1\t8.9\t8.8\t8.7\t8.7\t8.6\t8.5\t8.4\t8.3\t8.2\t8.1\t8.1\t8.2\t8.2\t8.1\t7.8\t7.6\t7.3\t7.1\t6.9\t6.9\t6.9\nMiami-Miami Beach-Kendall, FL Met Div\t5.2\t5.2\t5.2\t5.2\t5.2\t5.2\t5.2\t5.1\t5\t4.9\t4.8\t4.8\t4.9\t5\t5.1\t5.2\t5.3\t5.3\t5.3\t5.3\t7.9\t7.8\t7.6\t7.4\t7.2\t7.1\t7\t6.8\t6.7\t6.5\t6.3\t6.2\t6.2\t6.1\t6.1\t6.1\t6.1\t6\t6\t6\t6\t6\t5.9\t5.9\t5.8\t5.7\t5.7\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.5\t5.5\t5.4\t5.4\t5.3\t5.3\t5.2\t5.1\t5\t4.9\t4.8\t4.7\t4.6\t4.5\t4.5\t4.4\t4.4\t4.3\t4.2\t4.1\t4\t4\t4\t4.1\t4.1\t4.2\t4.2\t4.1\t4.1\t4.1\t4\t3.7\t3.7\t3.7\t3.8\t3.9\t4\t4.1\t4.3\t4.4\t4.4\t4.5\t4.6\t4.8\t4.9\t5.1\t5.3\t5.5\t5.7\t5.9\t6.8\t7.1\t7.5\t8\t8.6\t9.3\t10\t10.6\t11.1\t11.4\t11.6\t11.6\t11.6\t11.6\t11.7\t11.8\t12\t12.2\t12.4\t12.5\t12.5\t12.4\t12.3\t12.2\t12.2\t12.3\t12.4\t12.4\t12.4\t12.4\t12.3\t12.3\t12.1\t11.8\t11.4\t11\t10.6\t10.2\t10\t9.9\t9.8\t9.7\t9.7\t9.6\t9.6\t9.5\t9.3\t9.2\t9\t8.9\t8.9\t8.9\t8.9\t9.3\t9.8\t9.9\t9.7\t9.3\t8.8\t8.3\t7.9\t7.8\t8\nNashua, NH-MA NECTA Div\t2.7\t2.7\t2.8\t2.8\t2.8\t2.7\t2.7\t2.7\t2.6\t2.6\t2.6\t2.7\t2.8\t3\t3.1\t3.3\t3.5\t3.7\t3.9\t4.1\t4.3\t4.6\t4.7\t4.9\t5\t5.1\t5.2\t5.3\t5.4\t5.4\t5.5\t5.6\t5.7\t5.7\t5.7\t5.6\t5.5\t5.3\t5.3\t5.2\t5.2\t5.3\t5.3\t5.3\t5.2\t5.1\t5\t4.9\t4.8\t4.7\t4.6\t4.6\t4.4\t4.3\t4.2\t4.1\t4\t4\t3.9\t3.9\t4\t4\t3.9\t3.9\t3.9\t3.8\t3.8\t3.8\t3.9\t3.9\t3.8\t3.8\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.8\t3.7\t3.7\t3.7\t3.6\t3.6\t3.5\t3.5\t3.5\t3.4\t3.4\t3.5\t3.5\t3.5\t3.6\t3.6\t3.7\t3.8\t3.8\t3.9\t4.1\t4.3\t4.5\t4.8\t5.2\t5.5\t5.9\t6.2\t6.4\t6.6\t6.8\t6.9\t7\t7\t7\t7\t7\t6.9\t6.8\t6.6\t6.5\t6.3\t6.2\t6.1\t6.1\t6.1\t6\t5.9\t5.8\t5.7\t5.7\t5.7\t5.7\t5.7\t5.8\t5.8\t5.8\t5.8\t5.7\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.7\t5.8\t5.8\t5.8\t5.9\t5.9\t5.9\t6\t6\t6\t5.9\t5.8\t5.5\t5.4\t5.2\t5.2\t5.4\nNassau-Suffolk, NY Met Div\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.3\t3.3\t3.2\t3.2\t3.2\t3.3\t3.3\t3.4\t3.6\t3.7\t3.9\t4.1\t4.3\t4.5\t4.7\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.6\t4.6\t4.6\t4.6\t4.6\t4.6\t4.6\t4.7\t4.7\t4.7\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.6\t4.5\t4.5\t4.4\t4.4\t4.4\t4.3\t4.3\t4.2\t4.2\t4.1\t4.1\t4.1\t4.2\t4.2\t4.2\t4.2\t4.1\t4.1\t4\t4\t4\t4.1\t4.1\t4.1\t4\t3.9\t3.9\t3.8\t3.7\t3.6\t3.6\t3.6\t3.6\t3.6\t3.7\t3.8\t3.9\t3.9\t4\t4.1\t4.1\t4.1\t4.2\t4.3\t4.4\t4.5\t4.6\t4.8\t4.9\t5\t5.2\t5.4\t5.7\t6\t6.3\t6.7\t6.9\t7.1\t7.3\t7.4\t7.4\t7.4\t7.4\t7.5\t7.5\t7.5\t7.5\t7.5\t7.5\t7.4\t7.4\t7.3\t7.3\t7.3\t7.3\t7.4\t7.4\t7.3\t7.3\t7.2\t7.1\t7.1\t7.1\t7.1\t7.2\t7.2\t7.2\t7.2\t7.3\t7.3\t7.3\t7.3\t7.3\t7.4\t7.5\t7.5\t7.5\t7.4\t7.4\t7.3\t7.3\t7.2\t7.3\t7.2\t7\t6.6\t6.4\t6.2\t6\t6.1\t6.1\t6.1\nNew York-Northern New Jersey-Long Island, NY-NJ-PA MSA\t4.6\t4.6\t4.5\t4.5\t4.5\t4.5\t4.5\t4.4\t4.4\t4.3\t4.3\t4.2\t4.2\t4.2\t4.2\t4.3\t4.4\t4.6\t4.8\t5\t5.3\t5.6\t5.9\t6.1\t6.3\t6.4\t6.5\t6.5\t6.5\t6.5\t6.4\t6.4\t6.4\t6.5\t6.6\t6.6\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.6\t6.5\t6.4\t6.3\t6.3\t6.2\t6.1\t6\t5.9\t5.8\t5.7\t5.5\t5.4\t5.3\t5.1\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.8\t4.8\t4.9\t5\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.5\t4.4\t4.3\t4.3\t4.2\t4.2\t4.2\t4.2\t4.3\t4.4\t4.4\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.6\t4.6\t4.7\t4.9\t5\t5.2\t5.4\t5.6\t5.9\t6.3\t6.7\t7.2\t7.6\t8\t8.3\t8.6\t8.8\t8.9\t9.1\t9.2\t9.2\t9.2\t9.3\t9.3\t9.3\t9.2\t9.1\t9\t9\t8.9\t8.9\t8.8\t8.8\t8.8\t8.7\t8.6\t8.5\t8.5\t8.5\t8.5\t8.6\t8.6\t8.7\t8.7\t8.7\t8.8\t8.7\t8.7\t8.7\t8.8\t8.8\t8.9\t8.9\t8.9\t8.8\t8.8\t8.7\t8.7\t8.6\t8.7\t8.7\t8.4\t8.1\t7.9\t7.9\t7.8\t7.8\t7.8\t7.9\nNew York-White Plains-Wayne, NY-NJ Met Div\t5.4\t5.4\t5.3\t5.3\t5.2\t5.2\t5.1\t5.1\t5\t5\t4.9\t4.8\t4.8\t4.8\t4.8\t4.9\t5\t5.1\t5.3\t5.6\t6\t6.3\t6.6\t6.9\t7.1\t7.2\t7.3\t7.4\t7.3\t7.3\t7.2\t7.2\t7.2\t7.3\t7.4\t7.5\t7.6\t7.6\t7.6\t7.5\t7.5\t7.6\t7.6\t7.5\t7.4\t7.3\t7.2\t7.2\t7.1\t7\t6.9\t6.8\t6.7\t6.5\t6.3\t6.2\t6\t5.8\t5.7\t5.6\t5.5\t5.4\t5.3\t5.3\t5.2\t5.2\t5.3\t5.3\t5.4\t5.4\t5.4\t5.3\t5.2\t5.1\t5\t5\t5\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.4\t4.4\t4.4\t4.5\t4.6\t4.7\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.7\t4.7\t4.7\t4.7\t4.8\t4.9\t5.1\t5.3\t5.5\t5.8\t6.1\t6.5\t6.9\t7.4\t7.8\t8.2\t8.6\t8.9\t9.2\t9.4\t9.5\t9.6\t9.7\t9.7\t9.7\t9.7\t9.7\t9.6\t9.6\t9.4\t9.3\t9.2\t9.2\t9.1\t9.1\t9\t8.9\t8.8\t8.7\t8.7\t8.7\t8.7\t8.8\t8.9\t8.9\t9\t9\t9.1\t9.1\t9.1\t9.1\t9.1\t9.2\t9.2\t9.2\t9.2\t9.1\t9\t8.9\t8.8\t8.8\t9\t8.9\t8.7\t8.4\t8.2\t8.2\t8.1\t8.2\t8.3\t8.4\nNewark-Union, NJ-PA Met Div\t3.6\t3.6\t3.5\t3.5\t3.5\t3.6\t3.6\t3.7\t3.7\t3.7\t3.6\t3.6\t3.6\t3.7\t3.7\t3.8\t4\t4.1\t4.3\t4.5\t4.8\t5\t5.3\t5.5\t5.7\t5.8\t5.9\t6\t6\t6\t6\t5.9\t6\t6\t6\t6.1\t6.1\t6.1\t6.1\t6.1\t6.1\t6.2\t6.1\t6.1\t6\t5.8\t5.7\t5.6\t5.5\t5.5\t5.4\t5.3\t5.2\t5.1\t5\t4.9\t4.7\t4.6\t4.6\t4.5\t4.5\t4.5\t4.4\t4.4\t4.4\t4.4\t4.4\t4.5\t4.6\t4.7\t4.7\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.6\t4.5\t4.4\t4.3\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.3\t4.3\t4.4\t4.5\t4.6\t4.7\t4.7\t4.8\t4.9\t5\t5.2\t5.3\t5.5\t5.8\t6.1\t6.4\t6.9\t7.3\t7.7\t8.1\t8.5\t8.7\t8.9\t9.1\t9.2\t9.3\t9.4\t9.5\t9.5\t9.6\t9.6\t9.5\t9.5\t9.4\t9.3\t9.3\t9.3\t9.3\t9.4\t9.4\t9.4\t9.3\t9.3\t9.3\t9.3\t9.3\t9.3\t9.3\t9.3\t9.3\t9.2\t9.2\t9.1\t9\t9\t9.1\t9.2\t9.2\t9.3\t9.4\t9.4\t9.4\t9.4\t9.4\t9.4\t9.4\t9.1\t8.8\t8.5\t8.5\t8.5\t8.3\t8.3\t8.2\t8.2\nOakland-Fremont-Hayward, CA Met Div\t3.6\t3.6\t3.7\t3.7\t3.7\t3.7\t3.7\t3.6\t3.5\t3.5\t3.4\t3.4\t3.4\t3.5\t3.6\t3.8\t4\t4.3\t4.5\t4.8\t5.1\t5.4\t5.6\t5.8\t6\t6.1\t6.1\t6.2\t6.3\t6.3\t6.3\t6.4\t6.4\t6.5\t6.6\t6.6\t6.6\t6.6\t6.7\t6.7\t6.7\t6.7\t6.7\t6.6\t6.5\t6.4\t6.3\t6.3\t6.2\t6.1\t6.1\t6\t5.8\t5.7\t5.6\t5.5\t5.4\t5.4\t5.4\t5.3\t5.3\t5.3\t5.2\t5.1\t5\t5\t5\t5\t5\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.4\t4.4\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.4\t4.4\t4.4\t4.5\t4.5\t4.5\t4.6\t4.7\t4.8\t4.8\t4.9\t5\t5\t5.1\t5.1\t5.3\t5.4\t5.6\t5.9\t6.1\t6.4\t6.7\t7.1\t7.5\t8\t8.6\t9.1\t9.5\t9.9\t10.3\t10.5\t10.8\t10.9\t11.1\t11.1\t11.2\t11.3\t11.3\t11.3\t11.3\t11.3\t11.2\t11.2\t11.2\t11.2\t11.2\t11.2\t11.1\t11\t10.9\t10.8\t10.7\t10.6\t10.5\t10.5\t10.4\t10.3\t10.2\t10.1\t9.9\t9.7\t9.5\t9.4\t9.3\t9.2\t9.2\t9.1\t9\t8.9\t8.8\t8.7\t8.6\t8.5\t8.4\t8.2\t8\t7.6\t7.2\t7\t7\t7.1\t7.1\t7.1\nPeabody, MA NECTA Div\t2.9\t2.8\t2.8\t2.7\t2.6\t2.6\t2.5\t2.5\t2.5\t2.5\t2.5\t2.6\t2.7\t2.8\t3\t3.2\t3.3\t3.5\t3.7\t3.9\t4.2\t4.4\t4.6\t4.8\t4.9\t5\t5.1\t5.2\t5.3\t5.3\t5.4\t5.4\t5.5\t5.5\t5.6\t5.7\t5.7\t5.8\t5.9\t6\t6.1\t6.2\t6.2\t6.2\t6.1\t6.1\t6\t5.9\t5.8\t5.7\t5.7\t5.6\t5.6\t5.5\t5.5\t5.4\t5.4\t5.3\t5.3\t5.2\t5.2\t5.1\t5.1\t5\t5\t4.9\t4.9\t5\t5\t5\t5.1\t5\t5\t5\t5\t5\t5\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.6\t4.5\t4.5\t4.5\t4.5\t4.4\t4.4\t4.5\t4.5\t4.5\t4.6\t4.7\t4.8\t4.9\t5.1\t5.3\t5.5\t5.8\t6.1\t6.4\t6.7\t7.2\t7.5\t7.8\t8\t8.2\t8.3\t8.5\t8.6\t8.6\t8.6\t8.6\t8.6\t8.6\t8.5\t8.5\t8.3\t8.2\t8.1\t8\t7.9\t7.8\t7.8\t7.7\t7.6\t7.4\t7.3\t7.2\t7.1\t7\t7\t7\t7\t7\t6.9\t6.9\t6.8\t6.8\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.7\t6.6\t6.4\t6.3\t6.3\t6.5\t6.8\t6.9\t7\t6.9\t6.9\nPhiladelphia, PA Met Div\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.2\t4.2\t4.3\t4.3\t4.4\t4.5\t4.6\t4.8\t4.9\t5.1\t5.2\t5.3\t5.4\t5.5\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.7\t5.7\t5.6\t5.6\t5.6\t5.6\t5.5\t5.5\t5.5\t5.5\t5.5\t5.4\t5.4\t5.3\t5.2\t5.2\t5.1\t5.1\t5.1\t5.1\t5.1\t5\t4.9\t4.8\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.6\t4.6\t4.6\t4.6\t4.6\t4.5\t4.5\t4.4\t4.4\t4.3\t4.2\t4.2\t4.2\t4.2\t4.3\t4.3\t4.3\t4.4\t4.5\t4.5\t4.6\t4.7\t4.7\t4.8\t4.8\t4.9\t5\t5.2\t5.3\t5.5\t5.7\t5.9\t6.1\t6.4\t6.7\t7\t7.3\t7.5\t7.7\t7.8\t8\t8.1\t8.2\t8.3\t8.4\t8.5\t8.6\t8.6\t8.6\t8.6\t8.5\t8.5\t8.4\t8.4\t8.4\t8.4\t8.4\t8.3\t8.3\t8.2\t8.2\t8.2\t8.2\t8.3\t8.3\t8.4\t8.3\t8.3\t8.3\t8.2\t8.2\t8.1\t8.2\t8.2\t8.3\t8.3\t8.4\t8.4\t8.4\t8.4\t8.4\t8.4\t8.6\t8.5\t8.2\t8\t7.9\t7.8\t7.8\t7.9\t7.9\t7.8\nPhiladelphia-Camden-Wilmington, PA-NJ-DE-MD MSA\t3.8\t3.8\t3.8\t3.8\t3.8\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t4\t4\t4\t4.1\t4.1\t4.3\t4.4\t4.5\t4.7\t4.8\t5\t5.1\t5.2\t5.3\t5.4\t5.4\t5.4\t5.4\t5.4\t5.4\t5.4\t5.4\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.5\t5.4\t5.3\t5.3\t5.3\t5.3\t5.3\t5.2\t5.2\t5.2\t5.1\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.6\t4.6\t4.7\t4.7\t4.7\t4.6\t4.6\t4.6\t4.5\t4.5\t4.6\t4.6\t4.6\t4.5\t4.5\t4.4\t4.3\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.3\t4.3\t4.4\t4.4\t4.5\t4.6\t4.6\t4.7\t4.7\t4.8\t5\t5.1\t5.3\t5.5\t5.7\t6\t6.3\t6.6\t7\t7.3\t7.6\t7.9\t8.1\t8.2\t8.4\t8.5\t8.6\t8.7\t8.8\t8.9\t9\t9\t9\t9\t8.9\t8.8\t8.8\t8.7\t8.7\t8.8\t8.7\t8.7\t8.6\t8.6\t8.5\t8.5\t8.5\t8.6\t8.6\t8.6\t8.6\t8.6\t8.5\t8.5\t8.4\t8.4\t8.4\t8.5\t8.6\t8.6\t8.7\t8.7\t8.7\t8.6\t8.6\t8.6\t8.8\t8.7\t8.4\t8.2\t8.1\t8\t8\t8\t8\t7.9\nSan Francisco-Oakland-Fremont, CA MSA\t3.4\t3.4\t3.4\t3.4\t3.5\t3.5\t3.4\t3.4\t3.3\t3.3\t3.2\t3.2\t3.3\t3.4\t3.6\t3.8\t4\t4.2\t4.5\t4.8\t5.1\t5.4\t5.6\t5.8\t6\t6\t6.1\t6.2\t6.2\t6.2\t6.3\t6.3\t6.4\t6.4\t6.4\t6.5\t6.5\t6.5\t6.5\t6.5\t6.5\t6.5\t6.5\t6.4\t6.3\t6.2\t6.1\t6\t6\t5.9\t5.8\t5.7\t5.6\t5.5\t5.4\t5.3\t5.2\t5.2\t5.2\t5.2\t5.1\t5.1\t5\t4.9\t4.8\t4.8\t4.8\t4.8\t4.8\t4.7\t4.7\t4.5\t4.4\t4.3\t4.3\t4.2\t4.2\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.2\t4.2\t4.2\t4.2\t4.3\t4.3\t4.4\t4.4\t4.5\t4.6\t4.6\t4.6\t4.7\t4.7\t4.8\t5\t5.2\t5.4\t5.6\t5.9\t6.1\t6.5\t6.9\t7.4\t7.9\t8.4\t8.8\t9.2\t9.5\t9.8\t10\t10.1\t10.2\t10.3\t10.3\t10.4\t10.4\t10.4\t10.4\t10.4\t10.3\t10.2\t10.2\t10.2\t10.2\t10.2\t10.2\t10.1\t9.9\t9.8\t9.7\t9.6\t9.5\t9.5\t9.4\t9.4\t9.3\t9.1\t9\t8.8\t8.6\t8.5\t8.4\t8.3\t8.3\t8.2\t8.1\t8\t7.9\t7.8\t7.7\t7.6\t7.5\t7.3\t7.1\t6.7\t6.4\t6.2\t6.3\t6.3\t6.3\t6.3\nSan Francisco-San Mateo-Redwood City, CA Met Div\t3.1\t3.1\t3.1\t3.1\t3.2\t3.2\t3.2\t3.1\t3.1\t3\t3\t3.1\t3.2\t3.3\t3.5\t3.7\t3.9\t4.2\t4.4\t4.7\t5\t5.3\t5.6\t5.8\t5.9\t6\t6.1\t6.1\t6.1\t6.1\t6.2\t6.2\t6.2\t6.2\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.2\t6.2\t6\t5.9\t5.8\t5.7\t5.6\t5.6\t5.5\t5.5\t5.3\t5.2\t5.1\t5\t5\t5\t4.9\t4.9\t4.9\t4.8\t4.7\t4.6\t4.6\t4.5\t4.5\t4.5\t4.5\t4.5\t4.4\t4.3\t4.2\t4.1\t4\t4\t3.9\t3.9\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.9\t3.9\t3.9\t3.9\t3.9\t4\t4\t4.1\t4.1\t4.1\t4.1\t4.2\t4.2\t4.3\t4.4\t4.6\t4.8\t5\t5.2\t5.4\t5.7\t6.1\t6.5\t7\t7.5\t7.9\t8.2\t8.5\t8.7\t8.9\t9\t9.1\t9.1\t9.2\t9.2\t9.3\t9.3\t9.2\t9.2\t9\t9\t8.9\t8.9\t8.9\t8.9\t8.9\t8.8\t8.6\t8.5\t8.4\t8.3\t8.2\t8.2\t8.2\t8.1\t8\t7.9\t7.8\t7.6\t7.5\t7.3\t7.3\t7.2\t7.1\t7\t6.9\t6.8\t6.7\t6.6\t6.5\t6.4\t6.4\t6.2\t5.9\t5.6\t5.3\t5.2\t5.3\t5.3\t5.2\t5.2\nSanta Ana-Anaheim-Irvine, CA Met Div\t3.5\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.5\t3.5\t3.4\t3.3\t3.3\t3.4\t3.4\t3.5\t3.6\t3.7\t3.8\t3.9\t4.1\t4.3\t4.4\t4.6\t4.7\t4.8\t4.9\t4.9\t5\t5\t5\t5\t5\t5\t5\t5\t5\t5\t4.9\t4.9\t4.9\t4.9\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.6\t4.6\t4.5\t4.5\t4.5\t4.4\t4.3\t4.2\t4.1\t4\t4\t4\t4\t4\t3.9\t3.9\t3.8\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.6\t3.5\t3.5\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.4\t3.5\t3.6\t3.6\t3.7\t3.7\t3.8\t3.9\t4\t4.1\t4.2\t4.2\t4.3\t4.3\t4.4\t4.5\t4.6\t4.8\t5\t5.3\t5.5\t5.8\t6.1\t6.4\t6.8\t7.3\t7.7\t8.1\t8.5\t8.7\t9\t9.2\t9.4\t9.5\t9.6\t9.6\t9.7\t9.7\t9.7\t9.7\t9.6\t9.5\t9.4\t9.4\t9.4\t9.4\t9.4\t9.3\t9.2\t9.1\t9\t8.9\t8.9\t8.8\t8.8\t8.8\t8.8\t8.7\t8.5\t8.4\t8.2\t8.1\t8\t7.9\t7.8\t7.7\t7.7\t7.6\t7.5\t7.3\t7.2\t7.1\t7.1\t7\t6.8\t6.6\t6.2\t5.9\t5.8\t5.8\t5.9\t5.8\t5.8\nSeattle-Bellevue-Everett, WA Met Div\t4.1\t4.1\t4.2\t4.2\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.2\t4.3\t4.5\t4.6\t4.8\t4.9\t4.9\t4.9\t5\t5.1\t5.3\t5.5\t5.7\t5.9\t6.1\t6.2\t6.3\t6.4\t6.4\t6.4\t6.3\t6.3\t6.4\t6.4\t6.5\t6.5\t6.6\t6.7\t6.7\t6.7\t6.7\t6.6\t6.5\t6.4\t6.3\t6.2\t6\t5.9\t5.8\t5.7\t5.6\t5.5\t5.4\t5.3\t5.2\t5.1\t5.1\t5.1\t5.1\t5.1\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.8\t4.8\t4.7\t4.7\t4.6\t4.5\t4.5\t4.4\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.1\t4\t3.8\t3.7\t3.6\t3.6\t3.6\t3.6\t3.6\t3.7\t3.7\t3.7\t3.7\t3.7\t3.8\t3.9\t4.1\t4.3\t4.5\t4.7\t5\t5.4\t5.9\t6.5\t7.2\t7.7\t8.3\t8.7\t9\t9.2\t9.3\t9.5\t9.6\t9.7\t9.7\t9.7\t9.7\t9.6\t9.5\t9.4\t9.4\t9.4\t9.4\t9.5\t9.6\t9.6\t9.5\t9.4\t9.1\t8.9\t8.7\t8.6\t8.6\t8.6\t8.5\t8.4\t8.3\t8.2\t8\t7.8\t7.6\t7.4\t7.3\t7.3\t7.3\t7.2\t7.2\t7\t6.9\t6.7\t6.5\t6.4\t6.3\t5.9\t5.5\t5.1\t4.7\t4.7\t4.8\t5.3\t5.4\t5.7\nSeattle-Tacoma-Bellevue, WA MSA\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.4\t4.4\t4.5\t4.7\t4.8\t5\t5.1\t5.2\t5.2\t5.3\t5.5\t5.7\t5.9\t6.1\t6.3\t6.5\t6.6\t6.7\t6.7\t6.8\t6.7\t6.7\t6.7\t6.7\t6.7\t6.8\t6.8\t6.8\t6.9\t6.9\t7\t7\t7\t6.9\t6.9\t6.7\t6.6\t6.5\t6.3\t6.2\t6\t5.9\t5.8\t5.7\t5.6\t5.6\t5.5\t5.4\t5.4\t5.4\t5.3\t5.3\t5.2\t5.2\t5.1\t5.1\t5\t5\t5\t5\t4.9\t4.8\t4.7\t4.6\t4.5\t4.4\t4.4\t4.5\t4.5\t4.5\t4.5\t4.5\t4.5\t4.4\t4.4\t4.2\t4.1\t4\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t3.9\t4\t4\t4.1\t4.2\t4.4\t4.6\t4.8\t5\t5.3\t5.6\t6.1\t6.6\t7.3\t7.9\t8.4\t8.9\t9.2\t9.4\t9.5\t9.6\t9.7\t9.8\t9.8\t9.9\t9.9\t9.8\t9.8\t9.7\t9.6\t9.6\t9.6\t9.6\t9.6\t9.6\t9.6\t9.5\t9.3\t9.1\t9\t8.9\t8.9\t8.8\t8.8\t8.7\t8.6\t8.5\t8.3\t8.1\t7.9\t7.8\t7.7\t7.7\t7.7\t7.6\t7.5\t7.4\t7.2\t7.1\t6.9\t6.8\t6.7\t6.5\t6.2\t5.8\t5.5\t5.4\t5.5\t5.8\t5.9\t6\nTacoma, WA Met Div\t4.8\t4.8\t4.8\t4.8\t4.9\t5\t5.1\t5.1\t5.2\t5.2\t5.2\t5.3\t5.5\t5.7\t5.8\t6\t6.1\t6.2\t6.4\t6.6\t7\t7.3\t7.6\t7.9\t8.1\t8.2\t8.2\t8.2\t8.2\t8.1\t8\t7.9\t7.9\t7.9\t7.9\t7.9\t7.9\t7.9\t8\t8.1\t8.3\t8.4\t8.5\t8.5\t8.4\t8.3\t8.1\t7.9\t7.7\t7.6\t7.4\t7.3\t7.1\t7\t6.9\t6.7\t6.6\t6.5\t6.4\t6.4\t6.3\t6.2\t6.2\t6\t5.9\t5.8\t5.8\t5.7\t5.7\t5.6\t5.5\t5.3\t5.2\t5.1\t5.1\t5.1\t5.2\t5.2\t5.2\t5.1\t5.1\t5\t4.9\t4.9\t4.8\t4.7\t4.7\t4.6\t4.6\t4.7\t4.7\t4.8\t4.9\t4.9\t4.9\t4.9\t4.9\t4.9\t5\t5.2\t5.3\t5.5\t5.7\t6\t6.2\t6.5\t6.9\t7.4\t7.9\t8.5\t9\t9.4\t9.7\t9.9\t10\t10.1\t10.2\t10.3\t10.5\t10.6\t10.7\t10.6\t10.5\t10.4\t10.2\t10.1\t10\t10\t10\t10.1\t10.1\t10\t10\t9.9\t9.9\t9.8\t9.8\t9.8\t9.8\t9.8\t9.7\t9.7\t9.6\t9.4\t9.3\t9.2\t9.1\t9\t9\t9\t8.9\t8.9\t8.8\t8.7\t8.6\t8.6\t8.6\t8.6\t8.5\t8.3\t8.2\t8.2\t8.2\t7.9\t7.8\t7.9\nTaunton-Norton-Raynham, MA NECTA Div\t2.8\t2.8\t2.7\t2.7\t2.6\t2.6\t2.6\t2.6\t2.7\t2.7\t2.7\t2.8\t2.9\t3\t3.1\t3.2\t3.4\t3.5\t3.6\t3.8\t3.9\t4.1\t4.2\t4.3\t4.4\t4.5\t4.7\t4.8\t4.9\t5\t5.1\t5.1\t5.2\t5.2\t5.3\t5.3\t5.3\t5.4\t5.4\t5.5\t5.5\t5.6\t5.7\t5.7\t5.6\t5.6\t5.6\t5.5\t5.5\t5.5\t5.4\t5.4\t5.3\t5.2\t5.2\t5.1\t5.1\t5.1\t5\t5\t5\t4.9\t4.9\t4.8\t4.7\t4.7\t4.7\t4.8\t4.9\t4.9\t5\t5\t5\t5\t5\t5\t5\t5\t5\t5\t5\t4.9\t4.9\t4.8\t4.8\t4.7\t4.7\t4.7\t4.7\t4.7\t4.7\t4.7\t4.7\t4.7\t4.8\t4.8\t4.9\t4.9\t5\t5.2\t5.4\t5.6\t5.8\t6\t6.3\t6.6\t7\t7.3\t7.8\t8.1\t8.4\t8.6\t8.8\t8.9\t9\t9.2\t9.3\t9.3\t9.4\t9.4\t9.4\t9.4\t9.4\t9.2\t9.1\t8.9\t8.8\t8.7\t8.7\t8.6\t8.6\t8.5\t8.3\t8.2\t8\t7.9\t7.9\t7.9\t7.8\t7.8\t7.7\t7.6\t7.5\t7.4\t7.3\t7.2\t7.1\t7.2\t7.2\t7.2\t7.2\t7.2\t7.2\t7.1\t7.1\t7\t6.9\t6.6\t6.6\t6.6\t6.9\t7.2\t7.4\t7.5\t7.4\t7.5\nWarren-Troy-Farmington Hills, MI Met Div\t2.8\t2.8\t2.9\t3\t3.1\t3.2\t3.3\t3.4\t3.5\t3.5\t3.6\t3.8\t3.9\t4.1\t4.2\t4.4\t4.5\t4.6\t4.8\t5\t5.3\t5.5\t5.7\t5.7\t5.8\t5.8\t5.8\t5.8\t5.8\t5.7\t5.7\t5.6\t5.6\t5.6\t5.7\t5.8\t5.9\t6\t6.1\t6.3\t6.3\t6.4\t6.4\t6.4\t6.2\t6.1\t5.9\t5.8\t5.7\t5.7\t5.8\t5.9\t6\t6.1\t6.2\t6.3\t6.5\t6.6\t6.6\t6.7\t6.6\t6.6\t6.6\t6.5\t6.4\t6.2\t6.1\t6.1\t6.1\t6.1\t6.2\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.3\t6.4\t6.5\t6.6\t6.6\t6.6\t6.6\t6.6\t6.6\t6.6\t6.6\t6.6\t6.7\t6.8\t6.8\t6.9\t6.9\t6.9\t6.9\t6.8\t6.8\t6.9\t7\t7.1\t7.3\t7.6\t7.9\t8.4\t9\t9.8\t10.7\t11.7\t12.5\t13.3\t13.9\t14.4\t14.7\t15\t15.2\t15.2\t15.1\t14.9\t14.8\t14.6\t14.5\t14.2\t13.9\t13.5\t13.2\t12.9\t12.7\t12.5\t12.3\t12.1\t11.9\t11.6\t11.4\t11.3\t11.2\t11.2\t11.2\t11.1\t10.9\t10.7\t10.5\t10.2\t10\t9.8\t9.7\t9.6\t9.6\t9.6\t9.7\t9.7\t9.8\t9.8\t9.8\t9.9\t10\t10\t9.7\t9.3\t8.9\t8.6\t8.6\t8.4\t8.5\t8.6\t8.5\nWashington-Arlington-Alexandria, DC-VA-MD-WV MSA\t2.8\t2.8\t2.8\t2.8\t2.8\t2.7\t2.7\t2.7\t2.7\t2.6\t2.6\t2.7\t2.7\t2.8\t2.9\t3\t3.1\t3.2\t3.4\t3.6\t3.8\t3.9\t4\t4\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4\t3.9\t3.9\t3.9\t3.9\t3.9\t4\t4\t4\t4\t4\t3.9\t3.9\t3.8\t3.8\t3.8\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.7\t3.6\t3.6\t3.6\t3.6\t3.7\t3.7\t3.7\t3.6\t3.6\t3.5\t3.5\t3.4\t3.4\t3.3\t3.3\t3.2\t3.2\t3.1\t3\t3\t3.1\t3.1\t3.2\t3.2\t3.2\t3.1\t3.1\t3.1\t3\t3\t3\t2.9\t2.9\t2.9\t2.9\t2.9\t2.9\t3\t3\t3\t3\t3\t3\t3.1\t3.2\t3.3\t3.5\t3.7\t3.8\t4\t4.3\t4.6\t4.9\t5.3\t5.6\t5.9\t6.1\t6.2\t6.3\t6.3\t6.4\t6.5\t6.5\t6.6\t6.7\t6.7\t6.7\t6.6\t6.6\t6.4\t6.3\t6.3\t6.3\t6.3\t6.2\t6.2\t6.1\t6.1\t6\t6\t6\t6\t6\t6.1\t6.1\t6\t6\t5.9\t5.8\t5.7\t5.6\t5.6\t5.6\t5.6\t5.6\t5.6\t5.5\t5.5\t5.5\t5.5\t5.4\t5.5\t5.4\t5.3\t5.3\t5.4\t5.5\t5.6\t5.5\t5.4\t5.6\nWashington-Arlington-Alexandria, DC-VA-MD-WV Met Div\t2.9\t2.8\t2.8\t2.8\t2.8\t2.8\t2.7\t2.7\t2.7\t2.7\t2.7\t2.7\t2.7\t2.8\t2.9\t3.1\t3.2\t3.3\t3.5\t3.7\t3.9\t4\t4.1\t4.1\t4.2\t4.2\t4.2\t4.3\t4.3\t4.2\t4.2\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4.1\t4\t4\t3.9\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.8\t3.7\t3.7\t3.7\t3.7\t3.7\t3.6\t3.6\t3.5\t3.5\t3.4\t3.4\t3.3\t3.2\t3.2\t3.1\t3.1\t3.1\t3.2\t3.2\t3.2\t3.2\t3.2\t3.2\t3.1\t3.1\t3.1\t3\t3\t2.9\t2.9\t2.9\t3\t3\t3.1\t3.1\t3.1\t3.1\t3.1\t3.2\t3.2\t3.3\t3.5\t3.6\t3.8\t3.9\t4.1\t4.4\t4.7\t5\t5.4\t5.7\t6\t6.2\t6.3\t6.4\t6.5\t6.5\t6.6\t6.7\t6.7\t6.8\t6.9\t6.8\t6.8\t6.7\t6.6\t6.4\t6.4\t6.4\t6.4\t6.3\t6.3\t6.2\t6.2\t6.1\t6.1\t6.1\t6.1\t6.2\t6.2\t6.2\t6.2\t6.1\t6\t5.9\t5.8\t5.7\t5.7\t5.7\t5.7\t5.7\t5.6\t5.6\t5.6\t5.5\t5.5\t5.5\t5.5\t5.5\t5.3\t5.3\t5.4\t5.5\t5.6\t5.6\t5.5\t5.7\nWest Palm Beach-Boca Raton-Boynton Beach, FL Met Div\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.3\t4.4\t4.5\t4.6\t4.6\t4.7\t4.7\t4.8\t6.4\t6.4\t6.4\t6.4\t6.4\t6.3\t6.3\t6.2\t6.1\t6.1\t6\t6\t6\t6\t6\t5.9\t5.9\t5.9\t5.9\t5.9\t5.9\t5.8\t5.7\t5.6\t5.5\t5.4\t5.3\t5.3\t5.2\t5.2\t5.2\t5.2\t5.1\t5.1\t5.1\t5\t5\t4.9\t4.9\t4.9\t4.7\t4.6\t4.5\t4.3\t4.2\t4\t4\t4\t3.9\t3.9\t3.8\t3.7\t3.7\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.6\t3.7\t3.7\t3.7\t3.8\t3.8\t3.9\t4\t4.1\t4.2\t4.4\t4.5\t4.7\t4.8\t5\t5.1\t5.3\t5.5\t5.7\t6\t6.3\t6.6\t6.9\t7.2\t7.6\t8\t8.5\t8.9\t9.4\t9.8\t10.1\t10.4\t10.6\t10.8\t11\t11.2\t11.3\t11.4\t11.5\t11.6\t11.6\t11.5\t11.5\t11.4\t11.3\t11.3\t11.3\t11.4\t11.4\t11.4\t11.3\t11.2\t11\t10.9\t10.8\t10.7\t10.6\t10.6\t10.4\t10.2\t10\t9.8\t9.6\t9.4\t9.3\t9.2\t9.1\t9\t8.9\t8.8\t8.6\t8.5\t8.4\t8.3\t8.2\t8.1\t7.9\t7.6\t7.4\t7.3\t7.2\t7.1\t7\t6.8\t6.7\nWilmington, DE-MD-NJ Met Div\t2.9\t3\t3.1\t3.2\t3.3\t3.3\t3.4\t3.4\t3.4\t3.5\t3.6\t3.6\t3.6\t3.6\t3.5\t3.4\t3.3\t3.3\t3.4\t3.5\t3.7\t3.7\t3.8\t3.9\t4\t4.1\t4.2\t4.3\t4.4\t4.4\t4.4\t4.3\t4.3\t4.3\t4.4\t4.5\t4.6\t4.7\t4.7\t4.7\t4.7\t4.7\t4.6\t4.6\t4.5\t4.4\t4.3\t4.2\t4.2\t4.2\t4.2\t4.2\t4.2\t4.3\t4.3\t4.3\t4.4\t4.4\t4.4\t4.4\t4.4\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.3\t4.4\t4.4\t4.3\t4.2\t4.1\t4\t3.9\t4\t4\t4\t4\t4\t3.9\t3.9\t3.8\t3.7\t3.7\t3.6\t3.6\t3.7\t3.7\t3.7\t3.7\t3.7\t3.8\t3.8\t3.9\t3.9\t3.9\t4\t4\t4.2\t4.4\t4.7\t5\t5.3\t5.6\t6\t6.4\t6.8\t7.2\t7.7\t8\t8.3\t8.5\t8.6\t8.6\t8.7\t8.7\t8.8\t8.8\t8.9\t8.9\t8.9\t8.9\t8.8\t8.7\t8.6\t8.5\t8.5\t8.5\t8.4\t8.4\t8.3\t8.1\t8\t7.9\t7.9\t7.9\t7.9\t7.9\t7.9\t7.9\t7.8\t7.7\t7.6\t7.6\t7.5\t7.5\t7.5\t7.6\t7.6\t7.6\t7.6\t7.6\t7.6\t7.5\t7.5\t7.6\t7.6\t7.6\t7.6\t7.5\t7.5\t7.5\t7.3\t7.1\t7","encoding":"utf-8"}},"public":true,"created_at":"2013-12-19T01:50:19Z","updated_at":"2020-07-17T06:44:52Z","description":"Multi-Line Voronoi","comments":1,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/8033015/comments","owner":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"fork_of":{"url":"https://api.github.com/gists/8031385","forks_url":"https://api.github.com/gists/8031385/forks","commits_url":"https://api.github.com/gists/8031385/commits","id":"8031385","node_id":"MDQ6R2lzdDgwMzEzODU=","git_pull_url":"https://gist.github.com/8031385.git","git_push_url":"https://gist.github.com/8031385.git","html_url":"https://gist.github.com/mbostock/8031385","files":{},"public":true,"created_at":"2013-12-18T23:00:41Z","updated_at":"2019-12-31T23:07:37Z","description":"Processing Fixed-Width Data","comments":0,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/8031385/comments","owner":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false}},"forks":[{"url":"https://api.github.com/gists/9095481","user":{"login":"wboykinm","id":735463,"node_id":"MDQ6VXNlcjczNTQ2Mw==","avatar_url":"https://avatars.githubusercontent.com/u/735463?v=4","gravatar_id":"","url":"https://api.github.com/users/wboykinm","html_url":"https://github.com/wboykinm","followers_url":"https://api.github.com/users/wboykinm/followers","following_url":"https://api.github.com/users/wboykinm/following{/other_user}","gists_url":"https://api.github.com/users/wboykinm/gists{/gist_id}","starred_url":"https://api.github.com/users/wboykinm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wboykinm/subscriptions","organizations_url":"https://api.github.com/users/wboykinm/orgs","repos_url":"https://api.github.com/users/wboykinm/repos","events_url":"https://api.github.com/users/wboykinm/events{/privacy}","received_events_url":"https://api.github.com/users/wboykinm/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bill Morris","company":"@Mapbox","blog":"https://billmorris.io","location":"Burlington, VT","email":null,"hireable":true,"bio":"full-stack dilettante","twitter_username":null,"public_repos":174,"public_gists":615,"followers":210,"following":108,"created_at":"2011-04-17T23:08:12Z","updated_at":"2025-09-29T18:18:53Z"},"id":"9095481","created_at":"2014-02-19T16:21:04Z","updated_at":"2015-08-29T13:56:31Z"},{"url":"https://api.github.com/gists/9718647","user":{"login":"jmduke","id":461046,"node_id":"MDQ6VXNlcjQ2MTA0Ng==","avatar_url":"https://avatars.githubusercontent.com/u/461046?v=4","gravatar_id":"","url":"https://api.github.com/users/jmduke","html_url":"https://github.com/jmduke","followers_url":"https://api.github.com/users/jmduke/followers","following_url":"https://api.github.com/users/jmduke/following{/other_user}","gists_url":"https://api.github.com/users/jmduke/gists{/gist_id}","starred_url":"https://api.github.com/users/jmduke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmduke/subscriptions","organizations_url":"https://api.github.com/users/jmduke/orgs","repos_url":"https://api.github.com/users/jmduke/repos","events_url":"https://api.github.com/users/jmduke/events{/privacy}","received_events_url":"https://api.github.com/users/jmduke/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Justin Duke","company":"@buttondown","blog":"jmduke.com","location":"Richmond, VA","email":"justin@buttondown.email","hireable":null,"bio":"I'm the founder and CEO of @buttondown.","twitter_username":"jmduke","public_repos":10,"public_gists":22,"followers":237,"following":3,"created_at":"2010-10-30T19:35:22Z","updated_at":"2026-04-20T00:06:21Z"},"id":"9718647","created_at":"2014-03-23T04:10:57Z","updated_at":"2015-08-29T13:57:39Z"},{"url":"https://api.github.com/gists/9798054","user":{"login":"duncangraham","id":865298,"node_id":"MDQ6VXNlcjg2NTI5OA==","avatar_url":"https://avatars.githubusercontent.com/u/865298?v=4","gravatar_id":"","url":"https://api.github.com/users/duncangraham","html_url":"https://github.com/duncangraham","followers_url":"https://api.github.com/users/duncangraham/followers","following_url":"https://api.github.com/users/duncangraham/following{/other_user}","gists_url":"https://api.github.com/users/duncangraham/gists{/gist_id}","starred_url":"https://api.github.com/users/duncangraham/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/duncangraham/subscriptions","organizations_url":"https://api.github.com/users/duncangraham/orgs","repos_url":"https://api.github.com/users/duncangraham/repos","events_url":"https://api.github.com/users/duncangraham/events{/privacy}","received_events_url":"https://api.github.com/users/duncangraham/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"duncangraham","company":null,"blog":"duncangraham.xyz","location":"San Francisco, CA","email":"duncangraham75@gmail.com","hireable":null,"bio":null,"twitter_username":"duncangraham","public_repos":33,"public_gists":32,"followers":38,"following":15,"created_at":"2011-06-21T20:48:37Z","updated_at":"2026-01-05T19:36:42Z"},"id":"9798054","created_at":"2014-03-27T01:31:16Z","updated_at":"2015-08-29T13:57:47Z"},{"url":"https://api.github.com/gists/11295915","user":{"login":"erlenstar","id":59835,"node_id":"MDQ6VXNlcjU5ODM1","avatar_url":"https://avatars.githubusercontent.com/u/59835?v=4","gravatar_id":"","url":"https://api.github.com/users/erlenstar","html_url":"https://github.com/erlenstar","followers_url":"https://api.github.com/users/erlenstar/followers","following_url":"https://api.github.com/users/erlenstar/following{/other_user}","gists_url":"https://api.github.com/users/erlenstar/gists{/gist_id}","starred_url":"https://api.github.com/users/erlenstar/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/erlenstar/subscriptions","organizations_url":"https://api.github.com/users/erlenstar/orgs","repos_url":"https://api.github.com/users/erlenstar/repos","events_url":"https://api.github.com/users/erlenstar/events{/privacy}","received_events_url":"https://api.github.com/users/erlenstar/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Jeff Zerger","company":"Phykos, PBC","blog":"","location":"Pacifica, CA","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":11,"public_gists":24,"followers":40,"following":28,"created_at":"2009-03-03T20:03:14Z","updated_at":"2026-03-09T00:02:28Z"},"id":"11295915","created_at":"2014-04-25T16:47:57Z","updated_at":"2015-08-29T14:00:32Z"},{"url":"https://api.github.com/gists/dc94258ffdda894e41af","user":{"login":"joshcarr","id":86731,"node_id":"MDQ6VXNlcjg2NzMx","avatar_url":"https://avatars.githubusercontent.com/u/86731?v=4","gravatar_id":"","url":"https://api.github.com/users/joshcarr","html_url":"https://github.com/joshcarr","followers_url":"https://api.github.com/users/joshcarr/followers","following_url":"https://api.github.com/users/joshcarr/following{/other_user}","gists_url":"https://api.github.com/users/joshcarr/gists{/gist_id}","starred_url":"https://api.github.com/users/joshcarr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joshcarr/subscriptions","organizations_url":"https://api.github.com/users/joshcarr/orgs","repos_url":"https://api.github.com/users/joshcarr/repos","events_url":"https://api.github.com/users/joshcarr/events{/privacy}","received_events_url":"https://api.github.com/users/joshcarr/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Josh Carr","company":null,"blog":"http://www.joshcarr.com","location":"Portland, OR","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":42,"public_gists":60,"followers":43,"following":26,"created_at":"2009-05-20T14:13:32Z","updated_at":"2025-10-29T19:45:05Z"},"id":"dc94258ffdda894e41af","created_at":"2014-05-13T22:59:32Z","updated_at":"2015-08-29T14:01:24Z"},{"url":"https://api.github.com/gists/bdfba220230b642de58b","user":{"login":"munkyboy","id":107797,"node_id":"MDQ6VXNlcjEwNzc5Nw==","avatar_url":"https://avatars.githubusercontent.com/u/107797?v=4","gravatar_id":"","url":"https://api.github.com/users/munkyboy","html_url":"https://github.com/munkyboy","followers_url":"https://api.github.com/users/munkyboy/followers","following_url":"https://api.github.com/users/munkyboy/following{/other_user}","gists_url":"https://api.github.com/users/munkyboy/gists{/gist_id}","starred_url":"https://api.github.com/users/munkyboy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/munkyboy/subscriptions","organizations_url":"https://api.github.com/users/munkyboy/orgs","repos_url":"https://api.github.com/users/munkyboy/repos","events_url":"https://api.github.com/users/munkyboy/events{/privacy}","received_events_url":"https://api.github.com/users/munkyboy/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Mike Luu","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":46,"public_gists":5,"followers":17,"following":0,"created_at":"2009-07-22T23:50:59Z","updated_at":"2026-04-11T11:25:07Z"},"id":"bdfba220230b642de58b","created_at":"2014-09-08T22:15:21Z","updated_at":"2015-08-29T14:06:12Z"},{"url":"https://api.github.com/gists/99006722c6d180bd12ab3f820b067a43","user":{"login":"ix4","id":38112035,"node_id":"MDQ6VXNlcjM4MTEyMDM1","avatar_url":"https://avatars.githubusercontent.com/u/38112035?v=4","gravatar_id":"","url":"https://api.github.com/users/ix4","html_url":"https://github.com/ix4","followers_url":"https://api.github.com/users/ix4/followers","following_url":"https://api.github.com/users/ix4/following{/other_user}","gists_url":"https://api.github.com/users/ix4/gists{/gist_id}","starred_url":"https://api.github.com/users/ix4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ix4/subscriptions","organizations_url":"https://api.github.com/users/ix4/orgs","repos_url":"https://api.github.com/users/ix4/repos","events_url":"https://api.github.com/users/ix4/events{/privacy}","received_events_url":"https://api.github.com/users/ix4/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":12,"public_gists":1448,"followers":67,"following":94,"created_at":"2018-04-05T17:37:06Z","updated_at":"2026-04-13T03:04:38Z"},"id":"99006722c6d180bd12ab3f820b067a43","created_at":"2019-12-27T18:04:19Z","updated_at":"2019-12-27T18:04:20Z"},{"url":"https://api.github.com/gists/c77e8ddbad628a2d406a55f6f5250b72","user":{"login":"mindrones","id":1309648,"node_id":"MDQ6VXNlcjEzMDk2NDg=","avatar_url":"https://avatars.githubusercontent.com/u/1309648?v=4","gravatar_id":"","url":"https://api.github.com/users/mindrones","html_url":"https://github.com/mindrones","followers_url":"https://api.github.com/users/mindrones/followers","following_url":"https://api.github.com/users/mindrones/following{/other_user}","gists_url":"https://api.github.com/users/mindrones/gists{/gist_id}","starred_url":"https://api.github.com/users/mindrones/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mindrones/subscriptions","organizations_url":"https://api.github.com/users/mindrones/orgs","repos_url":"https://api.github.com/users/mindrones/repos","events_url":"https://api.github.com/users/mindrones/events{/privacy}","received_events_url":"https://api.github.com/users/mindrones/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Luca Bonavita","company":null,"blog":"https://mindrones.com","location":null,"email":null,"hireable":true,"bio":"Data visualization, linked data, all things visual.","twitter_username":null,"public_repos":20,"public_gists":29,"followers":113,"following":80,"created_at":"2012-01-06T15:28:39Z","updated_at":"2026-04-20T08:17:15Z"},"id":"c77e8ddbad628a2d406a55f6f5250b72","created_at":"2020-04-17T10:48:57Z","updated_at":"2020-04-17T10:49:24Z"}],"history":[{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"ee3468bd61ee7a0b87b971e601844dd848a058f0","committed_at":"2019-12-31T22:28:58Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/8033015/ee3468bd61ee7a0b87b971e601844dd848a058f0"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"01e8225d4a65aca6c759fe4b8c77179f446c5815","committed_at":"2016-08-01T21:21:28Z","change_status":{"total":3,"additions":3,"deletions":0},"url":"https://api.github.com/gists/8033015/01e8225d4a65aca6c759fe4b8c77179f446c5815"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"2db50a1bfdb68eddf1e1d704bec3c3328a32b21a","committed_at":"2016-08-01T21:19:43Z","change_status":{"total":116,"additions":39,"deletions":77},"url":"https://api.github.com/gists/8033015/2db50a1bfdb68eddf1e1d704bec3c3328a32b21a"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"7c3a92342c41489f931eafae667b3c54a0eae135","committed_at":"2016-02-09T01:58:59Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/8033015/7c3a92342c41489f931eafae667b3c54a0eae135"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"6d7fe9d5a399e5bd02185bf3651acf84603d637d","committed_at":"2015-10-31T02:05:46Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/8033015/6d7fe9d5a399e5bd02185bf3651acf84603d637d"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"eace5d13a64abdb9e119023db9c74d467622d052","committed_at":"2015-06-11T19:09:17Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/8033015/eace5d13a64abdb9e119023db9c74d467622d052"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"2f749629add606d07be1b502ec10c2306448ee47","committed_at":"2015-06-03T22:05:17Z","change_status":{"total":2,"additions":0,"deletions":2},"url":"https://api.github.com/gists/8033015/2f749629add606d07be1b502ec10c2306448ee47"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"d9b8d857155c3c78a2d3237967f55ba805cf63c0","committed_at":"2013-12-19T23:11:31Z","change_status":{"total":37,"additions":32,"deletions":5},"url":"https://api.github.com/gists/8033015/d9b8d857155c3c78a2d3237967f55ba805cf63c0"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"1dcbe2b0d08d5a3719f1cf3e4e5e5f21daa4549c","committed_at":"2013-12-19T01:57:03Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/8033015/1dcbe2b0d08d5a3719f1cf3e4e5e5f21daa4549c"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"74dfb3a34f6a8279de6e245760b3789b6852c723","committed_at":"2013-12-19T01:56:03Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/8033015/74dfb3a34f6a8279de6e245760b3789b6852c723"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"e2d13a254541403e5138d94968d0833a22d40756","committed_at":"2013-12-19T01:50:55Z","change_status":{},"url":"https://api.github.com/gists/8033015/e2d13a254541403e5138d94968d0833a22d40756"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"686140b3637b1e81d073c179ef6582de36fcb422","committed_at":"2013-12-18T23:12:38Z","change_status":{},"url":"https://api.github.com/gists/8033015/686140b3637b1e81d073c179ef6582de36fcb422"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"e457bb2c2af52bb8857e4c507e6ee266cb68a03a","committed_at":"2013-12-18T23:10:55Z","change_status":{},"url":"https://api.github.com/gists/8033015/e457bb2c2af52bb8857e4c507e6ee266cb68a03a"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"aade44adaeca2598b1a6fbf3a9dff3526998f79b","committed_at":"2013-12-18T23:08:34Z","change_status":{},"url":"https://api.github.com/gists/8033015/aade44adaeca2598b1a6fbf3a9dff3526998f79b"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"11c08cae4d5259c7550a4c29cff3f2ab16072b5a","committed_at":"2013-12-18T23:08:08Z","change_status":{},"url":"https://api.github.com/gists/8033015/11c08cae4d5259c7550a4c29cff3f2ab16072b5a"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"3fb7066a35e064d5572e28618150a3565f975f69","committed_at":"2013-12-18T23:07:36Z","change_status":{},"url":"https://api.github.com/gists/8033015/3fb7066a35e064d5572e28618150a3565f975f69"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"6457e82f97bf80cf03a20398c56f4eb702977aa9","committed_at":"2013-12-18T23:06:36Z","change_status":{},"url":"https://api.github.com/gists/8033015/6457e82f97bf80cf03a20398c56f4eb702977aa9"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"a1b2db28991c9296ff278284bcc95ce58255bb94","committed_at":"2013-12-18T23:05:07Z","change_status":{},"url":"https://api.github.com/gists/8033015/a1b2db28991c9296ff278284bcc95ce58255bb94"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"2102e3ac049bb771d39e5544de595ad230f4e79e","committed_at":"2013-12-18T23:01:05Z","change_status":{},"url":"https://api.github.com/gists/8033015/2102e3ac049bb771d39e5544de595ad230f4e79e"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"1b859bf843e641d6f08c558f4530c71512317a70","committed_at":"2013-12-18T23:00:41Z","change_status":{},"url":"https://api.github.com/gists/8033015/1b859bf843e641d6f08c558f4530c71512317a70"}],"truncated":false}