Skip to content

Instantly share code, notes, and snippets.

@hwangmoretime
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hwangmoretime/c2c7128c5226f9199f87 to your computer and use it in GitHub Desktop.
Save hwangmoretime/c2c7128c5226f9199f87 to your computer and use it in GitHub Desktop.
Bar Chart Composed of Images ("In One Chart")

What This Shows

A bar chart of Twitter images from Tweets that contain the phrase "in one [chart|graph]". The images themselves make up the areas of the bar chart. Because the Twitter Search API only indexes tweets from the previous seven days, the data is relatively uninteresting for a bar chart.Thus, this visualization is more a proof-of-concept and a unique talking piece for the increased prevalence of the phrase "in one chart". I wrote a short bit on this visualization here.

What's Under the Hood

For this visualization, I wanted to group unique charts/graphs on the day they were first published. I used the following pipeline to determined the tweets that first published unique charts/graphs:

  1. Get all tweets that contained the phrase "in one chart" or "in one graph". (6788 tweets to start)
  2. Then, get tweets that had a picture attached. (4716 tweets left)
  3. Then, group tweets by the image url. Find the earliest tweet from those groups. (204 tweets left)
  4. Then, compare tweets to one another to determine if any of the images were simply re-uploads of existing images. (153 tweets to end)

I did not know that step3 would yield such a reduction in the search space. I learned there is good reason for serious tweeters to not simply click retweet, but instead copy-paste the tweet of interest and fire it off themselves (i.e., manually retweet). Good thing, too, else the somewhat costly image comparison in step4 might have barred its fangs.

To avoid recomputation, each tweet that has gone through the pipeline is marked to state whether or not it is a unique-earliest-tweet. Thus, on successive runs of the pipeline, steps 1-3 only have to run on the new tweets. Step 4 is computationally lessened as well, but not to same degree because each new image must be compared to older images.

What Remains

For image comparison, I use a root-means-squared metric between the two image's PIL.Image.histogram(). Histographic comparison, at least in my implementation, is not robust to cropping or small annotations; those types of edits rarely justify uniqueness.

The slow loading of images is ugly. A loading screen would be nicer.

Interactivity. I've tried my hand at embedding corresponding Tweets upon mouseover() for the images with some success. Uncomment out the .on(mouseover) line and you will get that interactivity with the embedded Tweet off to the side. Unfortunately, you can only view the tweet because once you move your cursor you inevitably mouseover() some other tweet along the way. A better way to embed the tweet is with a tooltip. I struggled in attempting that in large part due to the asynchrnous nature of embedding tweets. Current d3-tooltip libraries are unsuited for that. jQuery lacks support for svgs for this purpose, and I would much prefer a d3 native solution over other external libraries.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.axis {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 40, right: 20, bottom: 100, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
var y = d3.scale.ordinal()
.rangeRoundBands([height, 0], .1);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(5);
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var embed_tweets = d3.select("body").append("g")
.attr("id", 'embed_container');
d3.json("inonechart2.json", function(error, data) {
// cleaning data. d3.json() does not have any accessor methods (e.g. type(d))
var data_keys = Object.keys(data),
dates = [],
date_strs = [];
for (var i = data_keys.length - 1; i >= 0; i--) {
dates[i] = convertDateToUTC(new Date(data_keys[i]))
};
dates.sort(function(a,b) { return a.getTime() - b.getTime(); });
date_strs = dates.map(function(d) { return jsdateToKey(d); } );
x.domain(date_strs);
var y_domain = [],
sizes = data_keys.map(function(d) { return data[d].length; });
max_size = d3.max(sizes);
while(max_size--) y_domain[max_size] = max_size;
y.domain(y_domain);
// flatten out data
var temp_data = [];
for (var i = data_keys.length - 1; i >= 0; i--) {
for (var j = data[data_keys[i]].length - 1; j >= 0; j--) {
var doc = data[data_keys[i]][j];
doc['data_key'] = data_keys[i];
doc['created_at'] = convertDateToUTC(new Date(Date.parse(doc['created_at'])));
temp_data.push(doc);
};
};
data = temp_data;
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.selectAll("text")
.text(function(d) { return d.substring(5,d.length).replace('-', '/'); });
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Charts that day");
svg.selectAll("image")
.data(data)
.enter().append("svg:image")
.attr("class", "twitter-pic")
.attr("xlink:href", function(d) { return d.media[0].media_url_https; })
.attr("x", function(d) { return x(d.data_key); })
.attr("y", function(d) { return height - (sizes[data_keys.indexOf(d.data_key)]-- * y.rangeBand()); })
.attr("width", x.rangeBand())
.attr("height", y.rangeBand());
//.on('mouseover', function(d) { mouseOver(d); })
});
function mouseOver(d) {
var iframe = d3.selectAll('iframe')
.data(d);
iframe.exit().remove();
twttr.ready(function() {
twttr.widgets.createTweet(d.id_str, document.getElementById('embed_container'), {'align': 'right', 'width': '300' });
});
}
function convertDateToUTC(date) {
// call this only once per date. successive calls will result in (n_calls - 1) too many offsets
return new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds());
}
function jsdateToKey(date) {
// note that this does not call UTC versions of the getters. do any conversinos before calling this
return date.getFullYear().toString() + '-' + pad(date.getMonth()+1, 2) + '-' + pad(date.getDate(), 2);
}
function pad(n, width, z) {
z = z || '0';
n = n + '';
return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
}
</script>
<script>window.twttr = (function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function(f) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));</script>
{"2015-02-24": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/InvisThreat/statuses/570355279688110080", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/hashtag/Measles?src=hash\">#Measles</a> in one graph <a href=\"https://twitter.com/hashtag/vaccineswork?src=hash\">#vaccineswork</a> <a href=\"https://twitter.com/hashtag/outbreaks?src=hash\">#outbreaks</a> WASTE $$ <a href=\"https://twitter.com/hashtag/death?src=hash\">#death</a>, <a href=\"https://twitter.com/hashtag/blindness?src=hash\">#blindness</a>, &amp; brain swelling PREVENTABLE <a href=\"http://t.co/LWNzRzewji\">pic.twitter.com/LWNzRzewji</a></p>&mdash; Invisible Threat (@InvisThreat) <a href=\"https://twitter.com/InvisThreat/status/570355279688110080\">February 24, 2015</a></blockquote>\n", "author_name": "Invisible Threat", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/InvisThreat", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/InvisThreat/status/570355279688110080/photo/1", "sizes": {"small": {"h": 339, "resize": "fit", "w": 340}, "large": {"h": 617, "resize": "fit", "w": 618}, "medium": {"h": 599, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/LWNzRzewji", "media_url_https": "https://pbs.twimg.com/media/B-pPGjCUYAQrn2n.jpg", "display_url": "pic.twitter.com/LWNzRzewji", "id_str": "570355276718563332", "indices": [109, 131], "type": "photo", "id": 570355276718563332, "media_url": "http://pbs.twimg.com/media/B-pPGjCUYAQrn2n.jpg"}], "created_at": "Tue Feb 24 22:51:10 +0000 2015", "id_str": "570355279688110080"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/LusherCollege/statuses/570260342023917570", "html": "<blockquote class=\"twitter-tweet\"><p>The increase in college apps per student--remarkable--in one chart. <a href=\"https://twitter.com/hashtag/highered?src=hash\">#highered</a> <a href=\"http://t.co/6hBkeOfCqr\">pic.twitter.com/6hBkeOfCqr</a></p>&mdash; IECA (@IECA) <a href=\"https://twitter.com/IECA/status/563692918876418048\">February 6, 2015</a></blockquote>\n", "author_name": "LusherCollegeCounsel", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/LusherCollege", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 31719273, "source_status_id_str": "563692918876418048", "expanded_url": "http://twitter.com/IECA/status/563692918876418048/photo/1", "display_url": "pic.twitter.com/6hBkeOfCqr", "url": "http://t.co/6hBkeOfCqr", "media_url_https": "https://pbs.twimg.com/media/B9KjuPNCMAAx9ip.png", "source_user_id_str": "31719273", "source_status_id": 563692918876418048, "id_str": "563692918125244416", "sizes": {"small": {"h": 182, "resize": "fit", "w": 340}, "large": {"h": 529, "resize": "fit", "w": 987}, "medium": {"h": 321, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [88, 110], "type": "photo", "id": 563692918125244416, "media_url": "http://pbs.twimg.com/media/B9KjuPNCMAAx9ip.png"}], "created_at": "Tue Feb 24 16:33:55 +0000 2015", "id_str": "570260342023917570"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/DanielAndrewMe/statuses/570128765256204288", "html": "<blockquote class=\"twitter-tweet\"><p>The NYC tech boom in one chart <a href=\"http://t.co/4GRnzEcuwR\">http://t.co/4GRnzEcuwR</a> <a href=\"http://t.co/JlM8wX7yQW\">pic.twitter.com/JlM8wX7yQW</a></p>&mdash; Bloomberg Business (@business) <a href=\"https://twitter.com/business/status/569663128193118208\">February 23, 2015</a></blockquote>\n", "author_name": "Daniel Andrew", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/DanielAndrewMe", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 34713362, "source_status_id_str": "569663128193118208", "expanded_url": "http://twitter.com/business/status/569663128193118208/photo/1", "display_url": "pic.twitter.com/JlM8wX7yQW", "url": "http://t.co/JlM8wX7yQW", "media_url_https": "https://pbs.twimg.com/media/B-fZmLXIUAAE2RG.jpg", "source_user_id_str": "34713362", "source_status_id": 569663128193118208, "id_str": "569663127793717248", "sizes": {"large": {"h": 717, "resize": "fit", "w": 1024}, "small": {"h": 238, "resize": "fit", "w": 340}, "medium": {"h": 420, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [68, 90], "type": "photo", "id": 569663127793717248, "media_url": "http://pbs.twimg.com/media/B-fZmLXIUAAE2RG.jpg"}], "created_at": "Tue Feb 24 07:51:04 +0000 2015", "id_str": "570128765256204288"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Press2Today/statuses/570213295736676353", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/hashtag/News?src=hash\">#News</a> - How Happiness Influences Our Health, In One Chart - <a href=\"http://t.co/auNbTzaaSY\">http://t.co/auNbTzaaSY</a> <a href=\"http://t.co/qoAefShZgY\">pic.twitter.com/qoAefShZgY</a></p>&mdash; Breaking_News (@Press2Today) <a href=\"https://twitter.com/Press2Today/status/570213295736676353\">February 24, 2015</a></blockquote>\n", "author_name": "Breaking_News", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Press2Today", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/Press2Today/status/570213295736676353/photo/1", "sizes": {"small": {"h": 680, "resize": "fit", "w": 64}, "large": {"h": 2048, "resize": "fit", "w": 194}, "medium": {"h": 1200, "resize": "fit", "w": 113}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/qoAefShZgY", "media_url_https": "https://pbs.twimg.com/media/B-nN-KCWkAEon-S.jpg", "display_url": "pic.twitter.com/qoAefShZgY", "id_str": "570213295568883713", "indices": [83, 105], "type": "photo", "id": 570213295568883713, "media_url": "http://pbs.twimg.com/media/B-nN-KCWkAEon-S.jpg"}], "created_at": "Tue Feb 24 13:26:58 +0000 2015", "id_str": "570213295736676353"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/kwellum/statuses/570194193949323266", "html": "<blockquote class=\"twitter-tweet\"><p>Who&#39;s In The Office? The American Workday In One Graph <a href=\"http://t.co/S4NYEZA26T\">http://t.co/S4NYEZA26T</a> <a href=\"http://t.co/bc6yYiN5aU\">pic.twitter.com/bc6yYiN5aU</a></p>&mdash; Kirk Wellum (@kwellum) <a href=\"https://twitter.com/kwellum/status/570194193949323266\">February 24, 2015</a></blockquote>\n", "author_name": "Kirk Wellum", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/kwellum", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/kwellum/status/570194193949323266/photo/1", "sizes": {"large": {"h": 553, "w": 671, "resize": "fit"}, "small": {"h": 280, "w": 340, "resize": "fit"}, "medium": {"h": 494, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/bc6yYiN5aU", "media_url_https": "https://pbs.twimg.com/media/B-m8mSuXAAAxM8j.png", "id_str": "570194193886412800", "indices": [78, 100], "media_url": "http://pbs.twimg.com/media/B-m8mSuXAAAxM8j.png", "type": "photo", "id": 570194193886412800, "display_url": "pic.twitter.com/bc6yYiN5aU"}], "created_at": "Tue Feb 24 12:11:04 +0000 2015", "id_str": "570194193949323266"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/TopTrendingNow/statuses/570371200586682368", "html": "<blockquote class=\"twitter-tweet\"><p>Romney&#39;s Spending Dominance In One Chart - <a href=\"http://t.co/O4PUb1NiJY\">http://t.co/O4PUb1NiJY</a> <a href=\"http://t.co/LvapzDOcQC\">pic.twitter.com/LvapzDOcQC</a></p>&mdash; TopTrendingToday (@TopTrendingNow) <a href=\"https://twitter.com/TopTrendingNow/status/570371200586682368\">February 24, 2015</a></blockquote>\n", "author_name": "TopTrendingToday", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/TopTrendingNow", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/TopTrendingNow/status/570371200586682368/photo/1", "sizes": {"small": {"h": 226, "w": 340, "resize": "fit"}, "large": {"h": 236, "w": 355, "resize": "fit"}, "medium": {"h": 236, "w": 355, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/LvapzDOcQC", "media_url_https": "https://pbs.twimg.com/media/B-pdlb5UYAAzNdL.jpg", "id_str": "570371200540499968", "indices": [66, 88], "media_url": "http://pbs.twimg.com/media/B-pdlb5UYAAzNdL.jpg", "type": "photo", "id": 570371200540499968, "display_url": "pic.twitter.com/LvapzDOcQC"}], "created_at": "Tue Feb 24 23:54:25 +0000 2015", "id_str": "570371200586682368"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/rubenfdzvela/statuses/570177244716539904", "html": "<blockquote class=\"twitter-tweet\"><p>If I could only show one graph on the economic history of the world it would be this one.&#10;&#10;<a href=\"http://t.co/4ljjZOhmxT\">http://t.co/4ljjZOhmxT</a> <a href=\"http://t.co/QUug1NaD6K\">pic.twitter.com/QUug1NaD6K</a></p>&mdash; Max Roser (@MaxCRoser) <a href=\"https://twitter.com/MaxCRoser/status/559806509547544578\">January 26, 2015</a></blockquote>\n", "author_name": "Rub\u00e9n Fern\u00e1ndez Vela", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/rubenfdzvela", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 610659001, "source_status_id_str": "559806509547544578", "expanded_url": "http://twitter.com/MaxCRoser/status/559806509547544578/photo/1", "display_url": "pic.twitter.com/QUug1NaD6K", "url": "http://t.co/QUug1NaD6K", "media_url_https": "https://pbs.twimg.com/media/B8TVDefIEAIUGVt.png", "source_user_id_str": "610659001", "source_status_id": 559806509547544578, "id_str": "559806509400723458", "sizes": {"small": {"h": 263, "w": 340, "resize": "fit"}, "large": {"h": 793, "w": 1024, "resize": "fit"}, "medium": {"h": 465, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [139, 140], "type": "photo", "id": 559806509400723458, "media_url": "http://pbs.twimg.com/media/B8TVDefIEAIUGVt.png"}], "created_at": "Tue Feb 24 11:03:43 +0000 2015", "id_str": "570177244716539904"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/TrevorZaucha/statuses/570307892471050240", "html": "<blockquote class=\"twitter-tweet\"><p>Can you summarize the NBA season in one chart? We&#39;ve given it a shot: <a href=\"http://t.co/iTxZHQ77Gw\">http://t.co/iTxZHQ77Gw</a> <a href=\"http://t.co/cKCMaJX1eN\">pic.twitter.com/cKCMaJX1eN</a></p>&mdash; FiveThirtyEight (@FiveThirtyEight) <a href=\"https://twitter.com/FiveThirtyEight/status/569311133972062208\">February 22, 2015</a></blockquote>\n", "author_name": "Trevor Zaucha", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/TrevorZaucha", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 2303751216, "source_status_id_str": "569311133972062208", "expanded_url": "http://twitter.com/FiveThirtyEight/status/569311133972062208/photo/1", "display_url": "pic.twitter.com/cKCMaJX1eN", "url": "http://t.co/cKCMaJX1eN", "media_url_https": "https://pbs.twimg.com/media/B-YQNR2IYAAIhTB.png", "source_user_id_str": "2303751216", "source_status_id": 569311133972062208, "id_str": "569160223223734272", "sizes": {"large": {"h": 406, "w": 520, "resize": "fit"}, "small": {"h": 265, "w": 340, "resize": "fit"}, "medium": {"h": 406, "w": 520, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [114, 136], "type": "photo", "id": 569160223223734272, "media_url": "http://pbs.twimg.com/media/B-YQNR2IYAAIhTB.png"}], "created_at": "Tue Feb 24 19:42:52 +0000 2015", "id_str": "570307892471050240"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/seedjb/statuses/570105695498051584", "html": "<blockquote class=\"twitter-tweet\"><p>The difficulty of making an accurate 10-year budget forecast in one chart <a href=\"http://t.co/3KKmXQ18qw\">http://t.co/3KKmXQ18qw</a> <a href=\"http://t.co/gLXeFGpiuk\">pic.twitter.com/gLXeFGpiuk</a></p>&mdash; Nick Timiraos (@NickTimiraos) <a href=\"https://twitter.com/NickTimiraos/status/569983550168141824\">February 23, 2015</a></blockquote>\n", "author_name": "David J. Bermejo", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/seedjb", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 59603406, "source_status_id_str": "569983550168141824", "expanded_url": "http://twitter.com/NickTimiraos/status/569983550168141824/photo/1", "display_url": "pic.twitter.com/gLXeFGpiuk", "url": "http://t.co/gLXeFGpiuk", "media_url_https": "https://pbs.twimg.com/media/B-j9BGUIIAASLgT.jpg", "source_user_id_str": "59603406", "source_status_id": 569983550168141824, "id_str": "569983548179095552", "sizes": {"small": {"h": 226, "w": 340, "resize": "fit"}, "large": {"h": 369, "w": 553, "resize": "fit"}, "medium": {"h": 369, "w": 553, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [115, 137], "type": "photo", "id": 569983548179095552, "media_url": "http://pbs.twimg.com/media/B-j9BGUIIAASLgT.jpg"}], "created_at": "Tue Feb 24 06:19:24 +0000 2015", "id_str": "570105695498051584"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ChilangoVC/statuses/570300308057927680", "html": "<blockquote class=\"twitter-tweet\"><p>Here\u2019s Twitter\u2019s Slowing User Growth In One Chart via <a href=\"https://twitter.com/socialnerdia\">@socialnerdia</a> <a href=\"http://t.co/O0qzUgrhiZ\">http://t.co/O0qzUgrhiZ</a> <a href=\"http://t.co/utXOOp8rRo\">pic.twitter.com/utXOOp8rRo</a></p>&mdash; Chilango Ventures (@ChilangoVC) <a href=\"https://twitter.com/ChilangoVC/status/570300308057927680\">February 24, 2015</a></blockquote>\n", "author_name": "Chilango Ventures", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ChilangoVC", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ChilangoVC/status/570300308057927680/photo/1", "sizes": {"small": {"h": 155, "w": 340, "resize": "fit"}, "large": {"h": 366, "w": 800, "resize": "fit"}, "medium": {"h": 274, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/utXOOp8rRo", "media_url_https": "https://pbs.twimg.com/media/B-odG4IUEAAOTMy.jpg", "id_str": "570300306799464448", "indices": [91, 113], "media_url": "http://pbs.twimg.com/media/B-odG4IUEAAOTMy.jpg", "type": "photo", "id": 570300306799464448, "display_url": "pic.twitter.com/utXOOp8rRo"}], "created_at": "Tue Feb 24 19:12:43 +0000 2015", "id_str": "570300308057927680"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/TRPerri/statuses/570249672364822528", "html": "<blockquote class=\"twitter-tweet\"><p>How to tell if your experience of sexual assault is valid in one chart <a href=\"http://t.co/GAxiciT1q3\">http://t.co/GAxiciT1q3</a> <a href=\"http://t.co/oaXJcbOQWd\">pic.twitter.com/oaXJcbOQWd</a></p>&mdash; Huffington Post (@HuffingtonPost) <a href=\"https://twitter.com/HuffingtonPost/status/564030845045182465\">February 7, 2015</a></blockquote>\n", "author_name": "TR Perri", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/TRPerri", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 14511951, "source_status_id_str": "564030845045182465", "expanded_url": "http://twitter.com/HuffingtonPost/status/564030845045182465/photo/1", "display_url": "pic.twitter.com/oaXJcbOQWd", "url": "http://t.co/oaXJcbOQWd", "media_url_https": "https://pbs.twimg.com/media/B9PXEK2IMAAyZtZ.jpg", "source_user_id_str": "14511951", "source_status_id": 564030845045182465, "id_str": "564030844982276096", "sizes": {"large": {"h": 512, "w": 1024, "resize": "fit"}, "small": {"h": 170, "w": 340, "resize": "fit"}, "medium": {"h": 300, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [114, 136], "type": "photo", "id": 564030844982276096, "media_url": "http://pbs.twimg.com/media/B9PXEK2IMAAyZtZ.jpg"}], "created_at": "Tue Feb 24 15:51:31 +0000 2015", "id_str": "570249672364822528"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/shepmcallister/statuses/570305805792235520", "html": "<blockquote class=\"twitter-tweet\"><p>All the reasons to buy a thing, in one chart. <a href=\"http://t.co/1fQ4dhg2z3\">pic.twitter.com/1fQ4dhg2z3</a></p>&mdash; Shep McAllister (@shepmcallister) <a href=\"https://twitter.com/shepmcallister/status/570305805792235520\">February 24, 2015</a></blockquote>\n", "author_name": "Shep McAllister", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/shepmcallister", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/shepmcallister/status/570305805792235520/photo/1", "sizes": {"large": {"h": 1000, "w": 1000, "resize": "fit"}, "small": {"h": 340, "w": 340, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/1fQ4dhg2z3", "media_url_https": "https://pbs.twimg.com/media/B-oiG7_UYAA0VL-.jpg", "id_str": "570305805393616896", "indices": [46, 68], "media_url": "http://pbs.twimg.com/media/B-oiG7_UYAA0VL-.jpg", "type": "photo", "id": 570305805393616896, "display_url": "pic.twitter.com/1fQ4dhg2z3"}], "created_at": "Tue Feb 24 19:34:34 +0000 2015", "id_str": "570305805792235520"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/eclubproject/statuses/570360103615930368", "html": "<blockquote class=\"twitter-tweet\"><p>\u201c<a href=\"https://twitter.com/ezraklein\">@ezraklein</a>: The spending cuts in Ryan\u2019s budget, in one chart: <a href=\"http://t.co/R68UnO7QFk\">http://t.co/R68UnO7QFk</a> <a href=\"http://t.co/KbDhRxfhCi\">pic.twitter.com/KbDhRxfhCi</a>\u201d</p>&mdash; larryirving (@larry_irving) <a href=\"https://twitter.com/larry_irving/status/454300886362517504\">April 10, 2014</a></blockquote>\n", "author_name": "Eclubdigitalproject ", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/eclubproject", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 18622869, "source_status_id_str": "454300152438616064", "expanded_url": "http://twitter.com/ezraklein/status/454300152438616064/photo/1", "display_url": "pic.twitter.com/KbDhRxfhCi", "url": "http://t.co/KbDhRxfhCi", "media_url_https": "https://pbs.twimg.com/media/Bk3_lN-CIAAFRLL.png", "source_user_id_str": "18622869", "source_status_id": 454300152438616064, "id_str": "454300152304377856", "sizes": {"small": {"h": 254, "w": 340, "resize": "fit"}, "large": {"h": 767, "w": 1024, "resize": "fit"}, "medium": {"h": 449, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [104, 126], "type": "photo", "id": 454300152304377856, "media_url": "http://pbs.twimg.com/media/Bk3_lN-CIAAFRLL.png"}], "created_at": "Tue Feb 24 23:10:20 +0000 2015", "id_str": "570360103615930368"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/JRussellMI/statuses/570303476942516224", "html": "<blockquote class=\"twitter-tweet\"><p>Why dynamic scoring is important, in one chart: <a href=\"http://t.co/eKodaqEntl\">http://t.co/eKodaqEntl</a> <a href=\"http://t.co/GlKuXUjBbA\">pic.twitter.com/GlKuXUjBbA</a></p>&mdash; Jason Russell (@JRussellMI) <a href=\"https://twitter.com/JRussellMI/status/570303476942516224\">February 24, 2015</a></blockquote>\n", "author_name": "Jason Russell", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/JRussellMI", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/JRussellMI/status/570303476942516224/photo/1", "sizes": {"small": {"h": 208, "w": 340, "resize": "fit"}, "large": {"h": 380, "w": 620, "resize": "fit"}, "medium": {"h": 367, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/GlKuXUjBbA", "media_url_https": "https://pbs.twimg.com/media/B-oLxYrUcAANFYW.jpg", "id_str": "570281245881430016", "indices": [71, 93], "media_url": "http://pbs.twimg.com/media/B-oLxYrUcAANFYW.jpg", "type": "photo", "id": 570281245881430016, "display_url": "pic.twitter.com/GlKuXUjBbA"}], "created_at": "Tue Feb 24 19:25:19 +0000 2015", "id_str": "570303476942516224"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/rrinva/statuses/570248463943741440", "html": "<blockquote class=\"twitter-tweet\"><p>The power of market share on risk, in one chart. <a href=\"https://twitter.com/hashtag/infosec?src=hash\">#infosec</a> <a href=\"https://twitter.com/hashtag/hpsr?src=hash\">#hpsr</a> More at <a href=\"http://t.co/TzXVXqpnDQ\">http://t.co/TzXVXqpnDQ</a> <a href=\"http://t.co/DcSvUMtrq4\">pic.twitter.com/DcSvUMtrq4</a></p>&mdash; Rob Roy (@rrinva) <a href=\"https://twitter.com/rrinva/status/570248463943741440\">February 24, 2015</a></blockquote>\n", "author_name": "Rob Roy", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/rrinva", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/rrinva/status/570248463943741440/photo/1", "sizes": {"small": {"h": 200, "w": 340, "resize": "fit"}, "large": {"h": 568, "w": 960, "resize": "fit"}, "medium": {"h": 354, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/DcSvUMtrq4", "media_url_https": "https://pbs.twimg.com/media/B-nt9LJUUAIID1m.jpg", "id_str": "570248463058751490", "indices": [95, 117], "media_url": "http://pbs.twimg.com/media/B-nt9LJUUAIID1m.jpg", "type": "photo", "id": 570248463058751490, "display_url": "pic.twitter.com/DcSvUMtrq4"}], "created_at": "Tue Feb 24 15:46:43 +0000 2015", "id_str": "570248463943741440"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ChombaTumelo/statuses/570355857352888322", "html": "<blockquote class=\"twitter-tweet\"><p>Old? Young? Well-educated? In one graph <a href=\"https://twitter.com/TobinGrant\">@TobinGrant</a> shows how mark division in U.S. religion <a href=\"http://t.co/F2RH3P7RI4\">http://t.co/F2RH3P7RI4</a> <a href=\"http://t.co/1f1gWL0FsS\">pic.twitter.com/1f1gWL0FsS</a></p>&mdash; Religion NewsService (@RNS) <a href=\"https://twitter.com/RNS/status/567769978889334784\">February 17, 2015</a></blockquote>\n", "author_name": "Chomba_TC", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ChombaTumelo", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 27741349, "source_status_id_str": "567769978889334784", "expanded_url": "http://twitter.com/RNS/status/567769978889334784/photo/1", "display_url": "pic.twitter.com/1f1gWL0FsS", "url": "http://t.co/1f1gWL0FsS", "media_url_https": "https://pbs.twimg.com/media/B-DNt3QCUAIagzZ.png", "source_user_id_str": "27741349", "source_status_id": 567769978889334784, "id_str": "567679740857700354", "sizes": {"small": {"h": 340, "w": 340, "resize": "fit"}, "large": {"h": 618, "w": 618, "resize": "fit"}, "medium": {"h": 600, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [125, 140], "type": "photo", "id": 567679740857700354, "media_url": "http://pbs.twimg.com/media/B-DNt3QCUAIagzZ.png"}], "created_at": "Tue Feb 24 22:53:27 +0000 2015", "id_str": "570355857352888322"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/4Nia_Baochau96/statuses/570161051968212993", "html": "<blockquote class=\"twitter-tweet\"><p>[!!!] 4Minute on YinYueTai Vchart top: 4 songs in one chart(include Sohyun song with hit maker) <a href=\"https://twitter.com/hashtag/%EB%AF%B8%EC%B3%90?src=hash\">#\ubbf8\uccd0</a> by <a href=\"https://twitter.com/hashtag/%ED%8F%AC%EB%AF%B8%EB%8B%9B?src=hash\">#\ud3ec\ubbf8\ub2db</a> 4mfraffle <a href=\"http://t.co/bdn787C53a\">pic.twitter.com/bdn787C53a</a></p>&mdash; nguyen bao chau (@4Nia_Baochau96) <a href=\"https://twitter.com/4Nia_Baochau96/status/570161051968212993\">February 24, 2015</a></blockquote>\n", "author_name": "nguyen bao chau", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/4Nia_Baochau96", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/4Nia_Baochau96/status/570161051968212993/photo/1", "sizes": {"large": {"h": 564, "w": 1024, "resize": "fit"}, "small": {"h": 187, "w": 340, "resize": "fit"}, "medium": {"h": 330, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/bdn787C53a", "media_url_https": "https://pbs.twimg.com/media/B-mec-YVIAAvDQL.jpg", "id_str": "570161048457650176", "indices": [118, 140], "media_url": "http://pbs.twimg.com/media/B-mec-YVIAAvDQL.jpg", "type": "photo", "id": 570161048457650176, "display_url": "pic.twitter.com/bdn787C53a"}], "created_at": "Tue Feb 24 09:59:22 +0000 2015", "id_str": "570161051968212993"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/JeffersonObama/statuses/570209831249952768", "html": "<blockquote class=\"twitter-tweet\"><p>Europe on her knees to please the Kremlin invading Ukraine...explained in one chart about Russian Gas dependency. <a href=\"http://t.co/fw5XfHlVhS\">pic.twitter.com/fw5XfHlVhS</a></p>&mdash; Jeff Gauvin (@JeffersonObama) <a href=\"https://twitter.com/JeffersonObama/status/570209831249952768\">February 24, 2015</a></blockquote>\n", "author_name": "Jeff Gauvin", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/JeffersonObama", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/JeffersonObama/status/570209831249952768/photo/1", "sizes": {"large": {"h": 749, "w": 687, "resize": "fit"}, "small": {"h": 370, "w": 340, "resize": "fit"}, "medium": {"h": 654, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/fw5XfHlVhS", "media_url_https": "https://pbs.twimg.com/media/B-nK0MfUMAAwvqV.jpg", "id_str": "570209825893658624", "indices": [114, 136], "media_url": "http://pbs.twimg.com/media/B-nK0MfUMAAwvqV.jpg", "type": "photo", "id": 570209825893658624, "display_url": "pic.twitter.com/fw5XfHlVhS"}], "created_at": "Tue Feb 24 13:13:12 +0000 2015", "id_str": "570209831249952768"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/PensionDialog/statuses/570339718816083969", "html": "<blockquote class=\"twitter-tweet\"><p>NJ considers a cash balance pension plan. Who already has one in one chart <a href=\"http://t.co/Y3nRnZlWBU\">http://t.co/Y3nRnZlWBU</a> <a href=\"http://t.co/mieaqNlEIQ\">pic.twitter.com/mieaqNlEIQ</a></p>&mdash; NASRA (@PensionDialog) <a href=\"https://twitter.com/PensionDialog/status/570339718816083969\">February 24, 2015</a></blockquote>\n", "author_name": "NASRA", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/PensionDialog", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/PensionDialog/status/570339718816083969/photo/1", "sizes": {"small": {"h": 169, "w": 340, "resize": "fit"}, "large": {"h": 511, "w": 1024, "resize": "fit"}, "medium": {"h": 299, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/mieaqNlEIQ", "media_url_https": "https://pbs.twimg.com/media/B-pA88HUYAE_HR8.png", "id_str": "570339718488940545", "indices": [98, 120], "media_url": "http://pbs.twimg.com/media/B-pA88HUYAE_HR8.png", "type": "photo", "id": 570339718488940545, "display_url": "pic.twitter.com/mieaqNlEIQ"}], "created_at": "Tue Feb 24 21:49:20 +0000 2015", "id_str": "570339718816083969"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ThisIsFusion/statuses/570316164280258561", "html": "<blockquote class=\"twitter-tweet\"><p>How America\u2019s electorate is becoming less white, in just one chart: <a href=\"http://t.co/SzSnjlKhC6\">http://t.co/SzSnjlKhC6</a> <a href=\"http://t.co/cJwjH1PX0h\">pic.twitter.com/cJwjH1PX0h</a></p>&mdash; Fusion (@ThisIsFusion) <a href=\"https://twitter.com/ThisIsFusion/status/570316164280258561\">February 24, 2015</a></blockquote>\n", "author_name": "Fusion", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ThisIsFusion", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ThisIsFusion/status/570316164280258561/photo/1", "sizes": {"large": {"h": 375, "w": 620, "resize": "fit"}, "small": {"h": 205, "w": 340, "resize": "fit"}, "medium": {"h": 362, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/cJwjH1PX0h", "media_url_https": "https://pbs.twimg.com/media/B-orh5OXAAAo5mm.png", "id_str": "570316164112515072", "indices": [91, 113], "media_url": "http://pbs.twimg.com/media/B-orh5OXAAAo5mm.png", "type": "photo", "id": 570316164112515072, "display_url": "pic.twitter.com/cJwjH1PX0h"}], "created_at": "Tue Feb 24 20:15:44 +0000 2015", "id_str": "570316164280258561"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/foshizzlerizzle/statuses/570250097914712064", "html": "<blockquote class=\"twitter-tweet\"><p>The myth that there are more black men in prison than in college, debunked in one chart <a href=\"http://t.co/GRKPv7TyzL\">http://t.co/GRKPv7TyzL</a> <a href=\"http://t.co/3ue5CIQ93O\">pic.twitter.com/3ue5CIQ93O</a></p>&mdash; deray mckesson (@deray) <a href=\"https://twitter.com/deray/status/567109919166320640\">February 15, 2015</a></blockquote>\n", "author_name": "Darriah Johnson", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/foshizzlerizzle", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 29417304, "source_status_id_str": "567109919166320640", "expanded_url": "http://twitter.com/deray/status/567109919166320640/photo/1", "display_url": "pic.twitter.com/3ue5CIQ93O", "url": "http://t.co/3ue5CIQ93O", "media_url_https": "https://pbs.twimg.com/media/B97HdlxCQAATx1f.jpg", "source_user_id_str": "29417304", "source_status_id": 567109919166320640, "id_str": "567109914263175168", "sizes": {"large": {"h": 594, "w": 719, "resize": "fit"}, "small": {"h": 280, "w": 340, "resize": "fit"}, "medium": {"h": 495, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [122, 140], "type": "photo", "id": 567109914263175168, "media_url": "http://pbs.twimg.com/media/B97HdlxCQAATx1f.jpg"}], "created_at": "Tue Feb 24 15:53:12 +0000 2015", "id_str": "570250097914712064"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/alexSLUHockey/statuses/570097297431891968", "html": "<blockquote class=\"twitter-tweet\"><p>The Gender Wage Gap Is A Chasm For Women Of Color, In One Chart <a href=\"http://t.co/7zZ7xttsp1\">http://t.co/7zZ7xttsp1</a> <a href=\"https://twitter.com/hashtag/PatriciaArquette?src=hash\">#PatriciaArquette</a> <a href=\"http://t.co/xIdcq0R16R\">pic.twitter.com/xIdcq0R16R</a></p>&mdash; UltraViolet (@UltraViolet) <a href=\"https://twitter.com/UltraViolet/status/569869362443612162\">February 23, 2015</a></blockquote>\n", "author_name": "Alex Smith", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/alexSLUHockey", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 410249471, "source_status_id_str": "569869362443612162", "expanded_url": "http://twitter.com/UltraViolet/status/569869362443612162/photo/1", "display_url": "pic.twitter.com/xIdcq0R16R", "url": "http://t.co/xIdcq0R16R", "media_url_https": "https://pbs.twimg.com/media/B-iVKk4CQAAIvcw.png", "source_user_id_str": "410249471", "source_status_id": 569869362443612162, "id_str": "569869361792303104", "sizes": {"large": {"h": 613, "w": 600, "resize": "fit"}, "small": {"h": 347, "w": 340, "resize": "fit"}, "medium": {"h": 613, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [122, 140], "type": "photo", "id": 569869361792303104, "media_url": "http://pbs.twimg.com/media/B-iVKk4CQAAIvcw.png"}], "created_at": "Tue Feb 24 05:46:02 +0000 2015", "id_str": "570097297431891968"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/RchristuSF/statuses/570256060163821568", "html": "<blockquote class=\"twitter-tweet\"><p>How Happiness Influences Our Health, In One Chart <a href=\"http://t.co/xrMXnKDvyS\">http://t.co/xrMXnKDvyS</a> via <a href=\"https://twitter.com/HealthyLiving\">@HealthyLiving</a> <a href=\"http://t.co/Y6Sisvti4v\">pic.twitter.com/Y6Sisvti4v</a></p>&mdash; Rachel Christu (@RchristuSF) <a href=\"https://twitter.com/RchristuSF/status/570256060163821568\">February 24, 2015</a></blockquote>\n", "author_name": "Rachel Christu ", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/RchristuSF", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/RchristuSF/status/570256060163821568/photo/1", "sizes": {"small": {"h": 252, "w": 340, "resize": "fit"}, "large": {"h": 441, "w": 593, "resize": "fit"}, "medium": {"h": 441, "w": 593, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/Y6Sisvti4v", "media_url_https": "https://pbs.twimg.com/media/B-n02vWUUAAcXt7.png", "id_str": "570256049099264000", "indices": [92, 114], "media_url": "http://pbs.twimg.com/media/B-n02vWUUAAcXt7.png", "type": "photo", "id": 570256049099264000, "display_url": "pic.twitter.com/Y6Sisvti4v"}], "created_at": "Tue Feb 24 16:16:54 +0000 2015", "id_str": "570256060163821568"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/zoporg/statuses/570218176094609408", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"http://t.co/mleCS37OZm\">http://t.co/mleCS37OZm</a> How Happiness Influences Our Health, In One Chart <a href=\"http://t.co/Zfzz4kTt2C\">pic.twitter.com/Zfzz4kTt2C</a></p>&mdash; Zop.Org (@zoporg) <a href=\"https://twitter.com/zoporg/status/570218176094609408\">February 24, 2015</a></blockquote>\n", "author_name": "Zop.Org", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/zoporg", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/zoporg/status/570218176094609408/photo/1", "sizes": {"large": {"h": 512, "w": 1024, "resize": "fit"}, "small": {"h": 170, "w": 340, "resize": "fit"}, "medium": {"h": 300, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/Zfzz4kTt2C", "media_url_https": "https://pbs.twimg.com/media/B-nSaPIXIAAk9qN.jpg", "id_str": "570218176019111936", "indices": [73, 95], "media_url": "http://pbs.twimg.com/media/B-nSaPIXIAAk9qN.jpg", "type": "photo", "id": 570218176019111936, "display_url": "pic.twitter.com/Zfzz4kTt2C"}], "created_at": "Tue Feb 24 13:46:21 +0000 2015", "id_str": "570218176094609408"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Kenkinna/statuses/570306922626355202", "html": "<blockquote class=\"twitter-tweet\"><p>Everything you need to know about cyberterrorism in one chart <a href=\"http://t.co/a4AECZgQ5a\">pic.twitter.com/a4AECZgQ5a</a></p>&mdash; Eli Dourado (@elidourado) <a href=\"https://twitter.com/elidourado/status/463677884079820800\">May 6, 2014</a></blockquote>\n", "author_name": "Ken kinna", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Kenkinna", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 851361, "source_status_id_str": "463677884079820800", "expanded_url": "http://twitter.com/elidourado/status/463677884079820800/photo/1", "display_url": "pic.twitter.com/a4AECZgQ5a", "url": "http://t.co/a4AECZgQ5a", "media_url_https": "https://pbs.twimg.com/media/Bm9QlCsIAAAiZIL.png", "source_user_id_str": "851361", "source_status_id": 463677884079820800, "id_str": "463677883949776896", "sizes": {"small": {"h": 156, "w": 340, "resize": "fit"}, "large": {"h": 472, "w": 1024, "resize": "fit"}, "medium": {"h": 277, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [78, 100], "type": "photo", "id": 463677883949776896, "media_url": "http://pbs.twimg.com/media/Bm9QlCsIAAAiZIL.png"}], "created_at": "Tue Feb 24 19:39:00 +0000 2015", "id_str": "570306922626355202"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/squarelyrooted/statuses/570266325475569664", "html": "<blockquote class=\"twitter-tweet\"><p>Via <a href=\"https://twitter.com/aaronwiener\">@aaronwiener</a>, the last decade+ of DC demographics in one chart: <a href=\"https://t.co/wvBYtRVxZu\">https://t.co/wvBYtRVxZu</a> <a href=\"http://t.co/bd6VKyFdeT\">pic.twitter.com/bd6VKyFdeT</a></p>&mdash; This Square Beat (@squarelyrooted) <a href=\"https://twitter.com/squarelyrooted/status/570266325475569664\">February 24, 2015</a></blockquote>\n", "author_name": "This Square Beat", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/squarelyrooted", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/squarelyrooted/status/570266325475569664/photo/1", "sizes": {"small": {"h": 341, "w": 340, "resize": "fit"}, "large": {"h": 636, "w": 634, "resize": "fit"}, "medium": {"h": 601, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/bd6VKyFdeT", "media_url_https": "https://pbs.twimg.com/media/B-n-M3jUUAAWKJ4.png", "id_str": "570266324863045632", "indices": [92, 114], "media_url": "http://pbs.twimg.com/media/B-n-M3jUUAAWKJ4.png", "type": "photo", "id": 570266324863045632, "display_url": "pic.twitter.com/bd6VKyFdeT"}], "created_at": "Tue Feb 24 16:57:41 +0000 2015", "id_str": "570266325475569664"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/PickardJE/statuses/570126023527964672", "html": "<blockquote class=\"twitter-tweet\"><p>The moral case against ring-fencing pensioner benefits in one graph.&#10;<a href=\"http://t.co/Pet9EIewL3\">http://t.co/Pet9EIewL3</a> <a href=\"http://t.co/K87V5TV1zj\">pic.twitter.com/K87V5TV1zj</a></p>&mdash; Jim Pickard (@PickardJE) <a href=\"https://twitter.com/PickardJE/status/570126023527964672\">February 24, 2015</a></blockquote>\n", "author_name": "Jim Pickard", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/PickardJE", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/PickardJE/status/570126023527964672/photo/1", "sizes": {"small": {"h": 185, "w": 340, "resize": "fit"}, "large": {"h": 558, "w": 1024, "resize": "fit"}, "medium": {"h": 327, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/K87V5TV1zj", "media_url_https": "https://pbs.twimg.com/media/B-l-mP7WsAAUeYG.jpg", "id_str": "570126023414689792", "indices": [92, 114], "media_url": "http://pbs.twimg.com/media/B-l-mP7WsAAUeYG.jpg", "type": "photo", "id": 570126023414689792, "display_url": "pic.twitter.com/K87V5TV1zj"}], "created_at": "Tue Feb 24 07:40:11 +0000 2015", "id_str": "570126023527964672"}], "2015-02-25": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/zoporg/statuses/570650800051130368", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"http://t.co/k3VQBzCDz6\">http://t.co/k3VQBzCDz6</a> How To Tell If You&#39;re On A Date -- In One Chart <a href=\"http://t.co/HaHXiJdClN\">pic.twitter.com/HaHXiJdClN</a></p>&mdash; Zop.Org (@zoporg) <a href=\"https://twitter.com/zoporg/status/570650800051130368\">February 25, 2015</a></blockquote>\n", "author_name": "Zop.Org", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/zoporg", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/zoporg/status/570650800051130368/photo/1", "sizes": {"large": {"h": 512, "resize": "fit", "w": 1024}, "small": {"h": 170, "resize": "fit", "w": 340}, "medium": {"h": 300, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/HaHXiJdClN", "media_url_https": "https://pbs.twimg.com/media/B-tb4QgW8AAR8Uz.jpg", "display_url": "pic.twitter.com/HaHXiJdClN", "id_str": "570650799853989888", "indices": [71, 93], "type": "photo", "id": 570650799853989888, "media_url": "http://pbs.twimg.com/media/B-tb4QgW8AAR8Uz.jpg"}], "created_at": "Wed Feb 25 18:25:27 +0000 2015", "id_str": "570650800051130368"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/AlDudley3/statuses/570516635590610944", "html": "<blockquote class=\"twitter-tweet\"><p>Cause of death <a href=\"https://twitter.com/hashtag/everydata?src=hash\">#everydata</a> MT <a href=\"https://twitter.com/thejournal_ie\">@thejournal_ie</a>: things most likely to kill you in one graph: <a href=\"http://t.co/WP637t794v\">http://t.co/WP637t794v</a> <a href=\"http://t.co/3XmS2GIXdz\">pic.twitter.com/3XmS2GIXdz</a></p>&mdash; Everydata (@Everydata) <a href=\"https://twitter.com/Everydata/status/566405816765657088\">February 14, 2015</a></blockquote>\n", "author_name": "West Coast Informer", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/AlDudley3", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 150246405, "source_status_id_str": "566152301727850498", "expanded_url": "http://twitter.com/thejournal_ie/status/566152301727850498/photo/1", "display_url": "pic.twitter.com/3XmS2GIXdz", "url": "http://t.co/3XmS2GIXdz", "media_url_https": "https://pbs.twimg.com/media/B9tghMnCMAA1RiE.png", "source_user_id_str": "150246405", "source_status_id": 566152301727850498, "id_str": "566152301602025472", "sizes": {"large": {"h": 500, "resize": "fit", "w": 586}, "small": {"h": 290, "resize": "fit", "w": 340}, "medium": {"h": 500, "resize": "fit", "w": 586}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 566152301602025472, "media_url": "http://pbs.twimg.com/media/B9tghMnCMAA1RiE.png"}], "created_at": "Wed Feb 25 09:32:20 +0000 2015", "id_str": "570516635590610944"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/wntlu/statuses/570467972600483840", "html": "<blockquote class=\"twitter-tweet\"><p>The devastating impact of vaccine deniers, in one chart <a href=\"http://t.co/sEORBVcoaT\">http://t.co/sEORBVcoaT</a> <a href=\"http://t.co/sivdaYKkw0\">pic.twitter.com/sivdaYKkw0</a></p>&mdash; Chris Mooney (@chriscmooney) <a href=\"https://twitter.com/chriscmooney/status/558294450095783938\">January 22, 2015</a></blockquote>\n", "author_name": "Winston Lu", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/wntlu", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 49164309, "source_status_id_str": "558294450095783938", "expanded_url": "http://twitter.com/chriscmooney/status/558294450095783938/photo/1", "display_url": "pic.twitter.com/sivdaYKkw0", "url": "http://t.co/sivdaYKkw0", "media_url_https": "https://pbs.twimg.com/media/B7911nsCIAAbbur.jpg", "source_user_id_str": "49164309", "source_status_id": 558294450095783938, "id_str": "558294442864418816", "sizes": {"large": {"h": 1025, "w": 923, "resize": "fit"}, "small": {"h": 377, "w": 340, "resize": "fit"}, "medium": {"h": 666, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [97, 119], "type": "photo", "id": 558294442864418816, "media_url": "http://pbs.twimg.com/media/B7911nsCIAAbbur.jpg"}], "created_at": "Wed Feb 25 06:18:58 +0000 2015", "id_str": "570467972600483840"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Geoffreytsmith/statuses/570630921738706944", "html": "<blockquote class=\"twitter-tweet\"><p>The fatal cultural gap in one graph. Others will never accept or understand why Greece can&#39;t collect its taxes. <a href=\"http://t.co/EXuf4dnUEo\">pic.twitter.com/EXuf4dnUEo</a></p>&mdash; Geoffrey Smith (@Geoffreytsmith) <a href=\"https://twitter.com/Geoffreytsmith/status/570630921738706944\">February 25, 2015</a></blockquote>\n", "author_name": "Geoffrey Smith", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Geoffreytsmith", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/Geoffreytsmith/status/570630921738706944/photo/1", "sizes": {"large": {"h": 2048, "w": 1003, "resize": "fit"}, "small": {"h": 680, "w": 333, "resize": "fit"}, "medium": {"h": 1200, "w": 588, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/EXuf4dnUEo", "media_url_https": "https://pbs.twimg.com/media/B-tJzMTWkAAaJY0.jpg", "id_str": "570630921617051648", "indices": [112, 134], "media_url": "http://pbs.twimg.com/media/B-tJzMTWkAAaJY0.jpg", "type": "photo", "id": 570630921617051648, "display_url": "pic.twitter.com/EXuf4dnUEo"}], "created_at": "Wed Feb 25 17:06:28 +0000 2015", "id_str": "570630921738706944"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/maryhippychick/statuses/570529364913360896", "html": "<blockquote class=\"twitter-tweet\"><p>The devastating impact of the anti-vaccine movement in one graph. (via <a href=\"https://twitter.com/washingtonpost\">@washingtonpost</a>) <a href=\"http://t.co/6IuHOdfrng\">pic.twitter.com/6IuHOdfrng</a></p>&mdash; Rachel Zarrell (@rachelzarrell) <a href=\"https://twitter.com/rachelzarrell/status/558359017480003586\">January 22, 2015</a></blockquote>\n", "author_name": "maryhippychick", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/maryhippychick", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 14653034, "source_status_id_str": "558359017480003586", "expanded_url": "http://twitter.com/rachelzarrell/status/558359017480003586/photo/1", "display_url": "pic.twitter.com/6IuHOdfrng", "url": "http://t.co/6IuHOdfrng", "media_url_https": "https://pbs.twimg.com/media/B7-wczHCMAI_pV2.png", "source_user_id_str": "14653034", "source_status_id": 558359017480003586, "id_str": "558358887619768322", "sizes": {"large": {"h": 663, "w": 635, "resize": "fit"}, "small": {"h": 354, "w": 340, "resize": "fit"}, "medium": {"h": 626, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [107, 129], "type": "photo", "id": 558358887619768322, "media_url": "http://pbs.twimg.com/media/B7-wczHCMAI_pV2.png"}], "created_at": "Wed Feb 25 10:22:55 +0000 2015", "id_str": "570529364913360896"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/isave2invest/statuses/570595825870630912", "html": "<blockquote class=\"twitter-tweet\"><p>Neo-Keynesian <a href=\"https://twitter.com/hashtag/MoneySupply?src=hash\">#MoneySupply</a> expansion and asset <a href=\"https://twitter.com/hashtag/inflation?src=hash\">#inflation</a> in one chart&#10;<a href=\"https://twitter.com/hashtag/gold?src=hash\">#gold</a> <a href=\"https://twitter.com/hashtag/ZIRP?src=hash\">#ZIRP</a> <a href=\"https://twitter.com/hashtag/NIRP?src=hash\">#NIRP</a> <a href=\"https://twitter.com/hashtag/BrettonWoods?src=hash\">#BrettonWoods</a> <a href=\"http://t.co/pMrVFTaTMr\">pic.twitter.com/pMrVFTaTMr</a></p>&mdash; Canadian Investor (@isave2invest) <a href=\"https://twitter.com/isave2invest/status/570595825870630912\">February 25, 2015</a></blockquote>\n", "author_name": "Canadian Investor", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/isave2invest", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/isave2invest/status/570595825870630912/photo/1", "sizes": {"large": {"h": 449, "w": 750, "resize": "fit"}, "small": {"h": 203, "w": 340, "resize": "fit"}, "medium": {"h": 359, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/pMrVFTaTMr", "media_url_https": "https://pbs.twimg.com/media/B-sp4U-UYAAj-0K.jpg", "id_str": "570595825472004096", "indices": [103, 125], "media_url": "http://pbs.twimg.com/media/B-sp4U-UYAAj-0K.jpg", "type": "photo", "id": 570595825472004096, "display_url": "pic.twitter.com/pMrVFTaTMr"}], "created_at": "Wed Feb 25 14:47:00 +0000 2015", "id_str": "570595825870630912"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/totallysmashing/statuses/570649393507889152", "html": "<blockquote class=\"twitter-tweet\"><p>How To Tell If You&#39;re On A Date -- In One Chart <a href=\"http://t.co/9knaGpdLO0\">http://t.co/9knaGpdLO0</a> <a href=\"http://t.co/xle617Xezn\">pic.twitter.com/xle617Xezn</a></p>&mdash; Totally Smashing (@totallysmashing) <a href=\"https://twitter.com/totallysmashing/status/570649393507889152\">February 25, 2015</a></blockquote>\n", "author_name": "Totally Smashing", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/totallysmashing", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/totallysmashing/status/570649393507889152/photo/1", "sizes": {"small": {"h": 440, "w": 340, "resize": "fit"}, "large": {"h": 1325, "w": 1024, "resize": "fit"}, "medium": {"h": 776, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/xle617Xezn", "media_url_https": "https://pbs.twimg.com/media/B-tamYUUAAAGHcJ.png", "id_str": "570649393201676288", "indices": [71, 93], "media_url": "http://pbs.twimg.com/media/B-tamYUUAAAGHcJ.png", "type": "photo", "id": 570649393201676288, "display_url": "pic.twitter.com/xle617Xezn"}], "created_at": "Wed Feb 25 18:19:52 +0000 2015", "id_str": "570649393507889152"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Equality1975/statuses/570598222999130112", "html": "<blockquote class=\"twitter-tweet\"><p>The 2012 presidential election, in one graph: <a href=\"http://t.co/YEkH7skw\">pic.twitter.com/YEkH7skw</a></p>&mdash; Rachel Maddow MSNBC (@maddow) <a href=\"https://twitter.com/maddow/status/265528599031984129\">November 5, 2012</a></blockquote>\n", "author_name": "Heather Steele", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Equality1975", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 16129920, "source_status_id_str": "265528599031984129", "expanded_url": "http://twitter.com/maddow/status/265528599031984129/photo/1", "display_url": "pic.twitter.com/YEkH7skw", "url": "http://t.co/YEkH7skw", "media_url_https": "https://pbs.twimg.com/media/A69Y2p9CMAAQLmS.jpg", "source_user_id_str": "16129920", "source_status_id": 265528599031984129, "id_str": "265528599036178432", "sizes": {"small": {"h": 234, "w": 340, "resize": "fit"}, "large": {"h": 345, "w": 500, "resize": "fit"}, "medium": {"h": 345, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [58, 78], "type": "photo", "id": 265528599036178432, "media_url": "http://pbs.twimg.com/media/A69Y2p9CMAAQLmS.jpg"}], "created_at": "Wed Feb 25 14:56:32 +0000 2015", "id_str": "570598222999130112"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ShaunPort/statuses/570597067023740928", "html": "<blockquote class=\"twitter-tweet\"><p>Britain&#39;s 300-year history of booms,wars and financial crises in one chart &gt; Bank of England assets <a href=\"https://twitter.com/thenutmegteam\">@thenutmegteam</a> <a href=\"http://t.co/fY8ZhZow6q\">pic.twitter.com/fY8ZhZow6q</a></p>&mdash; Shaun Port (@ShaunPort) <a href=\"https://twitter.com/ShaunPort/status/570597067023740928\">February 25, 2015</a></blockquote>\n", "author_name": "Shaun Port", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ShaunPort", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ShaunPort/status/570597067023740928/photo/1", "sizes": {"small": {"h": 182, "w": 340, "resize": "fit"}, "large": {"h": 550, "w": 1024, "resize": "fit"}, "medium": {"h": 322, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/fY8ZhZow6q", "media_url_https": "https://pbs.twimg.com/media/B-sqX8kWsAAmbnq.png", "id_str": "570596368676466688", "indices": [118, 140], "media_url": "http://pbs.twimg.com/media/B-sqX8kWsAAmbnq.png", "type": "photo", "id": 570596368676466688, "display_url": "pic.twitter.com/fY8ZhZow6q"}], "created_at": "Wed Feb 25 14:51:56 +0000 2015", "id_str": "570597067023740928"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/justjogging999/statuses/570575634554085376", "html": "<blockquote class=\"twitter-tweet\"><p>Unemployment rates in Europe in one graph. <a href=\"http://t.co/2CtnJdCSJW\">pic.twitter.com/2CtnJdCSJW</a></p>&mdash; jeroen blokland (@jsblokland) <a href=\"https://twitter.com/jsblokland/status/567038252738420736\">February 15, 2015</a></blockquote>\n", "author_name": "John Connor", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/justjogging999", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 51689310, "source_status_id_str": "565816244956565504", "expanded_url": "http://twitter.com/jsblokland/status/565816244956565504/photo/1", "display_url": "pic.twitter.com/2CtnJdCSJW", "url": "http://t.co/2CtnJdCSJW", "media_url_https": "https://pbs.twimg.com/media/B9ou4ELCYAAyPSz.png", "source_user_id_str": "51689310", "source_status_id": 565816244956565504, "id_str": "565816243916005376", "sizes": {"small": {"h": 173, "w": 340, "resize": "fit"}, "large": {"h": 524, "w": 1024, "resize": "fit"}, "medium": {"h": 307, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [59, 81], "type": "photo", "id": 565816243916005376, "media_url": "http://pbs.twimg.com/media/B9ou4ELCYAAyPSz.png"}], "created_at": "Wed Feb 25 13:26:46 +0000 2015", "id_str": "570575634554085376"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SusanCombs/statuses/570657236009136128", "html": "<blockquote class=\"twitter-tweet\"><p>The first European settlers of America, in one chart: <a href=\"http://t.co/SqgpREnzME\">http://t.co/SqgpREnzME</a> <a href=\"http://t.co/8sw0Kf83X8\">pic.twitter.com/8sw0Kf83X8</a></p>&mdash; Susan Combs (@SusanCombs) <a href=\"https://twitter.com/SusanCombs/status/570657236009136128\">February 25, 2015</a></blockquote>\n", "author_name": "Susan Combs", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SusanCombs", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SusanCombs/status/570657236009136128/photo/1", "sizes": {"small": {"h": 680, "w": 295, "resize": "fit"}, "large": {"h": 2048, "w": 889, "resize": "fit"}, "medium": {"h": 1200, "w": 521, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/8sw0Kf83X8", "media_url_https": "https://pbs.twimg.com/media/B-thu4OUUAA20ow.png", "id_str": "570657235786813440", "indices": [77, 99], "media_url": "http://pbs.twimg.com/media/B-thu4OUUAA20ow.png", "type": "photo", "id": 570657235786813440, "display_url": "pic.twitter.com/8sw0Kf83X8"}], "created_at": "Wed Feb 25 18:51:02 +0000 2015", "id_str": "570657236009136128"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/erickomoto/statuses/570694822807252993", "html": "<blockquote class=\"twitter-tweet\"><p>Source of so many issues explained in one graph <a href=\"http://t.co/0GaUSCpU8J\">pic.twitter.com/0GaUSCpU8J</a></p>&mdash; Eric (@eriiiic) <a href=\"https://twitter.com/eriiiic/status/557492434054045696\">January 20, 2015</a></blockquote>\n", "author_name": "eo", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/erickomoto", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 19533817, "source_status_id_str": "557491108914417664", "expanded_url": "http://twitter.com/TomChivers/status/557491108914417664/photo/1", "display_url": "pic.twitter.com/0GaUSCpU8J", "url": "http://t.co/0GaUSCpU8J", "media_url_https": "https://pbs.twimg.com/media/B7yab8UCIAEzpUx.png", "source_user_id_str": "19533817", "source_status_id": 557491108914417664, "id_str": "557490258724397057", "sizes": {"small": {"h": 330, "w": 340, "resize": "fit"}, "large": {"h": 525, "w": 540, "resize": "fit"}, "medium": {"h": 525, "w": 540, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [61, 83], "type": "photo", "id": 557490258724397057, "media_url": "http://pbs.twimg.com/media/B7yab8UCIAEzpUx.png"}], "created_at": "Wed Feb 25 21:20:23 +0000 2015", "id_str": "570694822807252993"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/liana_maciovan/statuses/570545845751418880", "html": "<blockquote class=\"twitter-tweet\"><p>The decline of the semicolon, in one chart <a href=\"http://t.co/o5UmpPOsGH\">http://t.co/o5UmpPOsGH</a> via <a href=\"https://twitter.com/TylerVigen\">@TylerVigen</a> <a href=\"http://t.co/CfMo0OGkyZ\">pic.twitter.com/CfMo0OGkyZ</a></p>&mdash; Know More (@knowmorewp) <a href=\"https://twitter.com/knowmorewp/status/471372097592492033\">May 27, 2014</a></blockquote>\n", "author_name": "Liana Maciovan", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/liana_maciovan", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 1921350434, "source_status_id_str": "471372097592492033", "expanded_url": "http://twitter.com/knowmorewp/status/471372097592492033/photo/1", "display_url": "pic.twitter.com/CfMo0OGkyZ", "url": "http://t.co/CfMo0OGkyZ", "media_url_https": "https://pbs.twimg.com/media/BoqmbLdCEAA3nvz.png", "source_user_id_str": "1921350434", "source_status_id": 471372097592492033, "id_str": "471372096874876928", "sizes": {"large": {"h": 542, "w": 994, "resize": "fit"}, "small": {"h": 185, "w": 340, "resize": "fit"}, "medium": {"h": 327, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [98, 120], "type": "photo", "id": 471372096874876928, "media_url": "http://pbs.twimg.com/media/BoqmbLdCEAA3nvz.png"}], "created_at": "Wed Feb 25 11:28:24 +0000 2015", "id_str": "570545845751418880"}], "2015-02-26": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ampp3d/statuses/571092194045652992", "html": "<blockquote class=\"twitter-tweet\"><p>Why politicians care about pensioners in one graph <a href=\"https://twitter.com/hashtag/bbcqt?src=hash\">#bbcqt</a> <a href=\"http://t.co/JJvauG0Iqy\">pic.twitter.com/JJvauG0Iqy</a></p>&mdash; Ampp3d (@ampp3d) <a href=\"https://twitter.com/ampp3d/status/571092194045652992\">February 26, 2015</a></blockquote>\n", "author_name": "Ampp3d", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ampp3d", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ampp3d/status/571092194045652992/photo/1", "sizes": {"large": {"h": 567, "resize": "fit", "w": 813}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 418, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/JJvauG0Iqy", "media_url_https": "https://pbs.twimg.com/media/B-ztTuaVEAALTpl.png", "display_url": "pic.twitter.com/JJvauG0Iqy", "id_str": "571092175900971008", "indices": [58, 80], "type": "photo", "id": 571092175900971008, "media_url": "http://pbs.twimg.com/media/B-ztTuaVEAALTpl.png"}], "created_at": "Thu Feb 26 23:39:24 +0000 2015", "id_str": "571092194045652992"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/BL_Owens/statuses/571076428248309760", "html": "<blockquote class=\"twitter-tweet\"><p>Why I don&#39;t trust any government in Canada to sensibly manage natural resources, in one chart. via <a href=\"https://twitter.com/Can_ada\">@Can_ada</a>&#10;<a href=\"http://t.co/0oTgpBMT7K\">pic.twitter.com/0oTgpBMT7K</a>&quot;</p>&mdash; Brian Owens (@BL_Owens) <a href=\"https://twitter.com/BL_Owens/status/571076428248309760\">February 26, 2015</a></blockquote>\n", "author_name": "Brian Owens", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/BL_Owens", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 282894960, "source_status_id_str": "521764002569793536", "expanded_url": "http://twitter.com/Can_ada/status/521764002569793536/photo/1", "display_url": "pic.twitter.com/0oTgpBMT7K", "url": "http://t.co/0oTgpBMT7K", "media_url_https": "https://pbs.twimg.com/media/Bz2tlyUCEAATofc.jpg", "source_user_id_str": "282894960", "source_status_id": 521764002569793536, "id_str": "521763996517404672", "sizes": {"small": {"h": 267, "resize": "fit", "w": 340}, "large": {"h": 805, "resize": "fit", "w": 1024}, "medium": {"h": 471, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [108, 130], "type": "photo", "id": 521763996517404672, "media_url": "http://pbs.twimg.com/media/Bz2tlyUCEAATofc.jpg"}], "created_at": "Thu Feb 26 22:36:45 +0000 2015", "id_str": "571076428248309760"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/voxdotcom/statuses/571093616396861440", "html": "<blockquote class=\"twitter-tweet\"><p>The graying of President Obama&#39;s hair, in one chart <a href=\"http://t.co/5KmK61Yvev\">http://t.co/5KmK61Yvev</a> <a href=\"http://t.co/xs8AR89trA\">pic.twitter.com/xs8AR89trA</a></p>&mdash; Vox (@voxdotcom) <a href=\"https://twitter.com/voxdotcom/status/571093616396861440\">February 26, 2015</a></blockquote>\n", "author_name": "Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/voxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/voxdotcom/status/571093616396861440/photo/1", "sizes": {"large": {"h": 502, "resize": "fit", "w": 751}, "small": {"h": 227, "resize": "fit", "w": 340}, "medium": {"h": 401, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/xs8AR89trA", "media_url_https": "https://pbs.twimg.com/media/B-zunkVVEAARrW-.png", "display_url": "pic.twitter.com/xs8AR89trA", "id_str": "571093616304656384", "indices": [75, 97], "type": "photo", "id": 571093616304656384, "media_url": "http://pbs.twimg.com/media/B-zunkVVEAARrW-.png"}], "created_at": "Thu Feb 26 23:45:03 +0000 2015", "id_str": "571093616396861440"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/oneVoxdotcom/statuses/571015652951105536", "html": "<blockquote class=\"twitter-tweet\"><p>The graying of President Obama&#39;s hair, in one chart <a href=\"http://t.co/NH1lFZJ4o4\">http://t.co/NH1lFZJ4o4</a> <a href=\"http://t.co/8HZhQ0F2KK\">pic.twitter.com/8HZhQ0F2KK</a></p>&mdash; one Vox (@oneVoxdotcom) <a href=\"https://twitter.com/oneVoxdotcom/status/571015652951105536\">February 26, 2015</a></blockquote>\n", "author_name": "one Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/oneVoxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/oneVoxdotcom/status/571015652951105536/photo/1", "sizes": {"large": {"h": 267, "resize": "fit", "w": 400}, "small": {"h": 226, "resize": "fit", "w": 340}, "medium": {"h": 267, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/8HZhQ0F2KK", "media_url_https": "https://pbs.twimg.com/media/B-yntf5WwAEljP_.png", "display_url": "pic.twitter.com/8HZhQ0F2KK", "id_str": "571015652867227649", "indices": [75, 97], "type": "photo", "id": 571015652867227649, "media_url": "http://pbs.twimg.com/media/B-yntf5WwAEljP_.png"}], "created_at": "Thu Feb 26 18:35:15 +0000 2015", "id_str": "571015652951105536"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Matty100_/statuses/571035469166673920", "html": "<blockquote class=\"twitter-tweet\"><p>Biggie Breakfast In One Chart <a href=\"http://t.co/3MNUZdUG2p\">pic.twitter.com/3MNUZdUG2p</a></p>&mdash; Wu-Tang Financial (@Wu_Tang_Finance) <a href=\"https://twitter.com/Wu_Tang_Finance/status/556137462657855488\">January 16, 2015</a></blockquote>\n", "author_name": "Matt", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Matty100_", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 553713584, "source_status_id_str": "556137462657855488", "expanded_url": "http://twitter.com/Wu_Tang_Finance/status/556137462657855488/photo/1", "display_url": "pic.twitter.com/3MNUZdUG2p", "url": "http://t.co/3MNUZdUG2p", "media_url_https": "https://pbs.twimg.com/media/B7fMEpkCAAABVmT.jpg", "source_user_id_str": "553713584", "source_status_id": 556137462657855488, "id_str": "556137459252068352", "sizes": {"small": {"h": 218, "resize": "fit", "w": 340}, "large": {"h": 380, "resize": "fit", "w": 592}, "medium": {"h": 380, "resize": "fit", "w": 592}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [51, 73], "type": "photo", "id": 556137459252068352, "media_url": "http://pbs.twimg.com/media/B7fMEpkCAAABVmT.jpg"}], "created_at": "Thu Feb 26 19:53:59 +0000 2015", "id_str": "571035469166673920"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/price4limos/statuses/571080908184252416", "html": "<blockquote class=\"twitter-tweet\"><p>How To Tell If You&#39;re On A Date -- In One Chart via <a href=\"https://twitter.com/HuffPost\">@HuffPost</a> <a href=\"http://t.co/4Vk0nIDDEB\">http://t.co/4Vk0nIDDEB</a> <a href=\"http://t.co/yqzpYn07OP\">pic.twitter.com/yqzpYn07OP</a></p>&mdash; Price 4 Limo (@price4limos) <a href=\"https://twitter.com/price4limos/status/571080908184252416\">February 26, 2015</a></blockquote>\n", "author_name": "Price 4 Limo", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/price4limos", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/price4limos/status/571080908184252416/photo/1", "sizes": {"small": {"h": 440, "resize": "fit", "w": 340}, "large": {"h": 800, "resize": "fit", "w": 618}, "medium": {"h": 776, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/yqzpYn07OP", "media_url_https": "https://pbs.twimg.com/media/B-zjDyIUIAAtAIx.png", "display_url": "pic.twitter.com/yqzpYn07OP", "id_str": "571080906904969216", "indices": [85, 107], "type": "photo", "id": 571080906904969216, "media_url": "http://pbs.twimg.com/media/B-zjDyIUIAAtAIx.png"}], "created_at": "Thu Feb 26 22:54:33 +0000 2015", "id_str": "571080908184252416"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/jsblokland/statuses/571054799199854592", "html": "<blockquote class=\"twitter-tweet\"><p>Global lowflation in one graph. by <a href=\"https://twitter.com/EconEconomics\">@EconEconomics</a> <a href=\"http://t.co/wuJxwaTP5c\">pic.twitter.com/wuJxwaTP5c</a></p>&mdash; jeroen blokland (@jsblokland) <a href=\"https://twitter.com/jsblokland/status/571054799199854592\">February 26, 2015</a></blockquote>\n", "author_name": "jeroen blokland", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/jsblokland", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 59486068, "source_status_id_str": "571026446531108866", "expanded_url": "http://twitter.com/EconEconomics/status/571026446531108866/photo/1", "display_url": "pic.twitter.com/wuJxwaTP5c", "url": "http://t.co/wuJxwaTP5c", "media_url_https": "https://pbs.twimg.com/media/B-yxhwmW0AACLpy.png", "source_user_id_str": "59486068", "source_status_id": 571026446531108866, "id_str": "571026446308790272", "sizes": {"large": {"h": 662, "resize": "fit", "w": 595}, "small": {"h": 378, "resize": "fit", "w": 340}, "medium": {"h": 662, "resize": "fit", "w": 595}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [50, 72], "type": "photo", "id": 571026446308790272, "media_url": "http://pbs.twimg.com/media/B-yxhwmW0AACLpy.png"}], "created_at": "Thu Feb 26 21:10:48 +0000 2015", "id_str": "571054799199854592"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/mindtheway_/statuses/571030693679116289", "html": "<blockquote class=\"twitter-tweet\"><p>All the benefits of meditation and mindfulness according to science-in one chart: <a href=\"http://t.co/pffFuntXV7\">http://t.co/pffFuntXV7</a> <a href=\"https://twitter.com/lifehacker\">@lifehacker</a> <a href=\"http://t.co/CBwkGIol0Z\">pic.twitter.com/CBwkGIol0Z</a></p>&mdash; Mind The Way (@mindtheway_) <a href=\"https://twitter.com/mindtheway_/status/571030693679116289\">February 26, 2015</a></blockquote>\n", "author_name": "Mind The Way", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/mindtheway_", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/mindtheway_/status/571030693679116289/photo/1", "sizes": {"small": {"h": 145, "w": 340, "resize": "fit"}, "large": {"h": 147, "w": 343, "resize": "fit"}, "medium": {"h": 147, "w": 343, "resize": "fit"}, "thumb": {"h": 147, "w": 150, "resize": "crop"}}, "url": "http://t.co/CBwkGIol0Z", "media_url_https": "https://pbs.twimg.com/media/B-y1YwgUEAAxjoF.jpg", "id_str": "571030689711132672", "indices": [117, 139], "media_url": "http://pbs.twimg.com/media/B-y1YwgUEAAxjoF.jpg", "type": "photo", "id": 571030689711132672, "display_url": "pic.twitter.com/CBwkGIol0Z"}], "created_at": "Thu Feb 26 19:35:01 +0000 2015", "id_str": "571030693679116289"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SteveRothwellAP/statuses/570956794727694336", "html": "<blockquote class=\"twitter-tweet\"><p>The stock market is NOT the economy, in one chart. Albert Edwards <a href=\"https://twitter.com/SocieteGenerale\">@SocieteGenerale</a> still bearish.<a href=\"https://twitter.com/hashtag/stocks?src=hash\">#stocks</a> <a href=\"http://t.co/ghiLi80ypk\">pic.twitter.com/ghiLi80ypk</a></p>&mdash; Steve Rothwell (@SteveRothwellAP) <a href=\"https://twitter.com/SteveRothwellAP/status/570956794727694336\">February 26, 2015</a></blockquote>\n", "author_name": "Steve Rothwell", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SteveRothwellAP", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SteveRothwellAP/status/570956794727694336/photo/1", "sizes": {"large": {"h": 318, "w": 523, "resize": "fit"}, "small": {"h": 206, "w": 340, "resize": "fit"}, "medium": {"h": 318, "w": 523, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ghiLi80ypk", "media_url_https": "https://pbs.twimg.com/media/B-xyLe7XAAATWLY.png", "id_str": "570956794375372800", "indices": [105, 127], "media_url": "http://pbs.twimg.com/media/B-xyLe7XAAATWLY.png", "type": "photo", "id": 570956794375372800, "display_url": "pic.twitter.com/ghiLi80ypk"}], "created_at": "Thu Feb 26 14:41:22 +0000 2015", "id_str": "570956794727694336"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SBarlow_ROB/statuses/571012453892542464", "html": "<blockquote class=\"twitter-tweet\"><p>U.S more deflationary than Europe? <a href=\"http://t.co/SgvBVKNIAY\">http://t.co/SgvBVKNIAY</a>? <a href=\"http://t.co/2kQbU1de8E\">pic.twitter.com/2kQbU1de8E</a></p>&mdash; Scott Barlow (@SBarlow_ROB) <a href=\"https://twitter.com/SBarlow_ROB/status/571012453892542464\">February 26, 2015</a></blockquote>\n", "author_name": "Scott Barlow", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SBarlow_ROB", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SBarlow_ROB/status/571012453892542464/photo/1", "sizes": {"large": {"h": 419, "w": 634, "resize": "fit"}, "small": {"h": 224, "w": 340, "resize": "fit"}, "medium": {"h": 396, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/2kQbU1de8E", "media_url_https": "https://pbs.twimg.com/media/B-ykzMRUcAAmYsp.jpg", "id_str": "571012452143362048", "indices": [59, 81], "media_url": "http://pbs.twimg.com/media/B-ykzMRUcAAmYsp.jpg", "type": "photo", "id": 571012452143362048, "display_url": "pic.twitter.com/2kQbU1de8E"}], "created_at": "Thu Feb 26 18:22:32 +0000 2015", "id_str": "571012453892542464"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/deshiindian/statuses/570788259254575105", "html": "<blockquote class=\"twitter-tweet\"><p>70%world below average&#10;1chart showing all world&#39;s countries ranked by how big &amp; rich they are <a href=\"http://t.co/4W8tyy73Rd\">http://t.co/4W8tyy73Rd</a> <a href=\"http://t.co/68Ktgf8pAj\">pic.twitter.com/68Ktgf8pAj</a></p>&mdash; Red Indian (@deshiindian) <a href=\"https://twitter.com/deshiindian/status/570788259254575105\">February 26, 2015</a></blockquote>\n", "author_name": "Red Indian", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/deshiindian", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/deshiindian/status/570788259254575105/photo/1", "sizes": {"small": {"h": 254, "w": 340, "resize": "fit"}, "large": {"h": 449, "w": 599, "resize": "fit"}, "medium": {"h": 449, "w": 599, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/68Ktgf8pAj", "media_url_https": "https://pbs.twimg.com/media/B-vY5XQUUAAViK9.png", "id_str": "570788257799098368", "indices": [121, 143], "media_url": "http://pbs.twimg.com/media/B-vY5XQUUAAViK9.png", "type": "photo", "id": 570788257799098368, "display_url": "pic.twitter.com/68Ktgf8pAj"}], "created_at": "Thu Feb 26 03:31:40 +0000 2015", "id_str": "570788259254575105"}], "2015-02-27": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Davos/statuses/571195549950615552", "html": "<blockquote class=\"twitter-tweet\"><p>Visualising the world economy and population in one chart <a href=\"http://t.co/4Cj9W5OFgn\">http://t.co/4Cj9W5OFgn</a> <a href=\"http://t.co/a9Pnj2EYyd\">pic.twitter.com/a9Pnj2EYyd</a></p>&mdash; World Economic Forum (@Davos) <a href=\"https://twitter.com/Davos/status/571195549950615552\">February 27, 2015</a></blockquote>\n", "author_name": "World Economic Forum", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Davos", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/Davos/status/571195549950615552/photo/1", "sizes": {"large": {"h": 607, "resize": "fit", "w": 1024}, "small": {"h": 201, "resize": "fit", "w": 340}, "medium": {"h": 356, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/a9Pnj2EYyd", "media_url_https": "https://pbs.twimg.com/media/B-1LU4VXIAELeQ9.jpg", "display_url": "pic.twitter.com/a9Pnj2EYyd", "id_str": "571195549837369345", "indices": [81, 103], "type": "photo", "id": 571195549837369345, "media_url": "http://pbs.twimg.com/media/B-1LU4VXIAELeQ9.jpg"}], "created_at": "Fri Feb 27 06:30:06 +0000 2015", "id_str": "571195549950615552"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SBNationNBA/statuses/571335256655007745", "html": "<blockquote class=\"twitter-tweet\"><p>The Mavericks\u2019 roster overhaul in one chart. <a href=\"http://t.co/GUtcjBS7lx\">http://t.co/GUtcjBS7lx</a> <a href=\"http://t.co/jyvry8DB94\">pic.twitter.com/jyvry8DB94</a></p>&mdash; SB Nation NBA (@SBNationNBA) <a href=\"https://twitter.com/SBNationNBA/status/571335256655007745\">February 27, 2015</a></blockquote>\n", "author_name": "SB Nation NBA", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SBNationNBA", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SBNationNBA/status/571335256655007745/photo/1", "sizes": {"small": {"h": 262, "resize": "fit", "w": 340}, "large": {"h": 612, "resize": "fit", "w": 792}, "medium": {"h": 463, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/jyvry8DB94", "media_url_https": "https://pbs.twimg.com/media/B-3E77DXAAEKNdm.jpg", "display_url": "pic.twitter.com/jyvry8DB94", "id_str": "571329261489029121", "indices": [68, 90], "type": "photo", "id": 571329261489029121, "media_url": "http://pbs.twimg.com/media/B-3E77DXAAEKNdm.jpg"}], "created_at": "Fri Feb 27 15:45:14 +0000 2015", "id_str": "571335256655007745"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/browbeat/statuses/571363120683229185", "html": "<blockquote class=\"twitter-tweet\"><p>The only two (OK, three) kinds of people, in one chart: <a href=\"http://t.co/2PBR8iqCqD\">http://t.co/2PBR8iqCqD</a> <a href=\"http://t.co/h3o9ZDhOa8\">pic.twitter.com/h3o9ZDhOa8</a></p>&mdash; Brow Beat (@browbeat) <a href=\"https://twitter.com/browbeat/status/571363120683229185\">February 27, 2015</a></blockquote>\n", "author_name": "Brow Beat", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/browbeat", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/browbeat/status/571363120683229185/photo/1", "sizes": {"large": {"h": 421, "resize": "fit", "w": 590}, "small": {"h": 242, "resize": "fit", "w": 340}, "medium": {"h": 421, "resize": "fit", "w": 590}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/h3o9ZDhOa8", "media_url_https": "https://pbs.twimg.com/media/B-3juvyUMAA7eTV.jpg", "display_url": "pic.twitter.com/h3o9ZDhOa8", "id_str": "571363119986913280", "indices": [79, 101], "type": "photo", "id": 571363119986913280, "media_url": "http://pbs.twimg.com/media/B-3juvyUMAA7eTV.jpg"}], "created_at": "Fri Feb 27 17:35:58 +0000 2015", "id_str": "571363120683229185"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/adrixcanom/statuses/571446760482025472", "html": "<blockquote class=\"twitter-tweet\"><p>\ud83d\ude33 \u201c<a href=\"https://twitter.com/HealthyLiving\">@HealthyLiving</a>: All the ways your phone is messing up your life, in one chart <a href=\"http://t.co/miQk9r4bRO\">http://t.co/miQk9r4bRO</a> <a href=\"http://t.co/pzU6lI1qtd\">pic.twitter.com/pzU6lI1qtd</a>\u201d</p>&mdash; Ver\u00f3nica Vel\u00e1zquez Z (@verovelz) <a href=\"https://twitter.com/verovelz/status/570065652263751680\">February 24, 2015</a></blockquote>\n", "author_name": "Adriana Cano", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/adrixcanom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 23674342, "source_status_id_str": "552011691924656128", "expanded_url": "http://twitter.com/HealthyLiving/status/552011691924656128/photo/1", "display_url": "pic.twitter.com/pzU6lI1qtd", "url": "http://t.co/pzU6lI1qtd", "media_url_https": "https://pbs.twimg.com/media/B6kjtYRIcAAJt8U.jpg", "source_user_id_str": "23674342", "source_status_id": 552011691924656128, "id_str": "552011691844988928", "sizes": {"large": {"h": 512, "resize": "fit", "w": 1024}, "small": {"h": 170, "resize": "fit", "w": 340}, "medium": {"h": 300, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [118, 140], "type": "photo", "id": 552011691844988928, "media_url": "http://pbs.twimg.com/media/B6kjtYRIcAAJt8U.jpg"}], "created_at": "Fri Feb 27 23:08:19 +0000 2015", "id_str": "571446760482025472"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Donegal777/statuses/571297129123094530", "html": "<blockquote class=\"twitter-tweet\"><p>A tale of two deflations, in one chart | FT Alphaville <a href=\"http://t.co/NlValI7y2e\">http://t.co/NlValI7y2e</a> <a href=\"http://t.co/9xdtWznyWB\">pic.twitter.com/9xdtWznyWB</a></p>&mdash; Louis Curran (@Donegal777) <a href=\"https://twitter.com/Donegal777/status/571297129123094530\">February 27, 2015</a></blockquote>\n", "author_name": "Louis Curran", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Donegal777", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/Donegal777/status/571297129123094530/photo/1", "sizes": {"small": {"h": 237, "w": 340, "resize": "fit"}, "large": {"h": 409, "w": 586, "resize": "fit"}, "medium": {"h": 409, "w": 586, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/9xdtWznyWB", "media_url_https": "https://pbs.twimg.com/media/B-2nsANW0AAsLT0.jpg", "id_str": "571297102158024704", "indices": [78, 100], "media_url": "http://pbs.twimg.com/media/B-2nsANW0AAsLT0.jpg", "type": "photo", "id": 571297102158024704, "display_url": "pic.twitter.com/9xdtWznyWB"}], "created_at": "Fri Feb 27 13:13:44 +0000 2015", "id_str": "571297129123094530"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/MsSilviaSantos/statuses/571191799823228928", "html": "<blockquote class=\"twitter-tweet\" data-conversation=\"none\"><p>Great info!&quot;<a href=\"https://twitter.com/PensionFacts\">@PensionFacts</a>: Income inequality in California. In one chart from <a href=\"https://twitter.com/capitalandmain\">@capitalandmain</a> <a href=\"http://t.co/X6GVcRXuQF\">http://t.co/X6GVcRXuQF</a> <a href=\"http://t.co/X6hLM6S0gf\">pic.twitter.com/X6hLM6S0gf</a>\u201d</p>&mdash; Silvia Santos (@MsSilviaSantos) <a href=\"https://twitter.com/MsSilviaSantos/status/571191799823228928\">February 27, 2015</a></blockquote>\n", "author_name": "Silvia Santos", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/MsSilviaSantos", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 262507563, "source_status_id_str": "569185073284517890", "expanded_url": "http://twitter.com/PensionFacts/status/569185073284517890/photo/1", "display_url": "pic.twitter.com/X6hLM6S0gf", "url": "http://t.co/X6hLM6S0gf", "media_url_https": "https://pbs.twimg.com/media/B-YmzuRCQAAaVaO.jpg", "source_user_id_str": "262507563", "source_status_id": 569185073284517890, "id_str": "569185072943611904", "sizes": {"large": {"h": 2048, "w": 823, "resize": "fit"}, "small": {"h": 680, "w": 273, "resize": "fit"}, "medium": {"h": 1200, "w": 482, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [117, 139], "type": "photo", "id": 569185072943611904, "media_url": "http://pbs.twimg.com/media/B-YmzuRCQAAaVaO.jpg"}], "created_at": "Fri Feb 27 06:15:11 +0000 2015", "id_str": "571191799823228928"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/mcwm/statuses/571434627744731136", "html": "<blockquote class=\"twitter-tweet\"><p>.<a href=\"https://twitter.com/qz\">@qz</a>&#39;s cake preferences, in one chart <a href=\"http://t.co/KWKgVCM877\">pic.twitter.com/KWKgVCM877</a></p>&mdash; Mike Murphy (@mcwm) <a href=\"https://twitter.com/mcwm/status/571434627744731136\">February 27, 2015</a></blockquote>\n", "author_name": "Mike Murphy", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/mcwm", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/mcwm/status/571434627744731136/photo/1", "sizes": {"large": {"h": 681, "w": 510, "resize": "fit"}, "small": {"h": 454, "w": 340, "resize": "fit"}, "medium": {"h": 681, "w": 510, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/KWKgVCM877", "media_url_https": "https://pbs.twimg.com/media/B-4kxCoVEAARWFT.jpg", "id_str": "571434627660845056", "indices": [38, 60], "media_url": "http://pbs.twimg.com/media/B-4kxCoVEAARWFT.jpg", "type": "photo", "id": 571434627660845056, "display_url": "pic.twitter.com/KWKgVCM877"}], "created_at": "Fri Feb 27 22:20:06 +0000 2015", "id_str": "571434627744731136"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/WestWingReport/statuses/571327301704507392", "html": "<blockquote class=\"twitter-tweet\"><p>GOP Congress explained in one chart: Americans who are &quot;consistently conservative&quot; vote more often than libs (Pew) <a href=\"http://t.co/8REBJLbyAY\">pic.twitter.com/8REBJLbyAY</a></p>&mdash; West Wing Reports (@WestWingReport) <a href=\"https://twitter.com/WestWingReport/status/571327301704507392\">February 27, 2015</a></blockquote>\n", "author_name": "West Wing Reports", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/WestWingReport", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/WestWingReport/status/571327301704507392/photo/1", "sizes": {"large": {"h": 598, "w": 662, "resize": "fit"}, "small": {"h": 307, "w": 340, "resize": "fit"}, "medium": {"h": 541, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/8REBJLbyAY", "media_url_https": "https://pbs.twimg.com/media/B-3DJx1UcAEyqmD.png", "id_str": "571327300509134849", "indices": [115, 137], "media_url": "http://pbs.twimg.com/media/B-3DJx1UcAEyqmD.png", "type": "photo", "id": 571327300509134849, "display_url": "pic.twitter.com/8REBJLbyAY"}], "created_at": "Fri Feb 27 15:13:38 +0000 2015", "id_str": "571327301704507392"}], "2015-03-01": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/janakejane/statuses/571934912846041091", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/hashtag/auspol?src=hash\">#auspol</a> RT <a href=\"https://twitter.com/smurray38\">@smurray38</a> All you need to know about anonymous political donations in one chart <a href=\"http://t.co/0bypLP7nVG\">pic.twitter.com/0bypLP7nVG</a> <a href=\"https://twitter.com/hashtag/nswpol?src=hash\">#nswpol</a> <a href=\"https://twitter.com/hashtag/ICAC?src=hash\">#ICAC</a></p>&mdash; Tom Baxter (@tombaxter) <a href=\"https://twitter.com/tombaxter/status/507449598466875392\">September 4, 2014</a></blockquote>\n", "author_name": "Tamara", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/janakejane", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 51958185, "source_status_id_str": "506632745733222400", "expanded_url": "http://twitter.com/smurray38/status/506632745733222400/photo/1", "display_url": "pic.twitter.com/0bypLP7nVG", "url": "http://t.co/0bypLP7nVG", "media_url_https": "https://pbs.twimg.com/media/BwfrzD4CEAAIkJZ.jpg", "source_user_id_str": "51958185", "source_status_id": 506632745733222400, "id_str": "506632745548648448", "sizes": {"large": {"h": 457, "resize": "fit", "w": 704}, "small": {"h": 220, "resize": "fit", "w": 340}, "medium": {"h": 389, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [107, 129], "type": "photo", "id": 506632745548648448, "media_url": "http://pbs.twimg.com/media/BwfrzD4CEAAIkJZ.jpg"}], "created_at": "Sun Mar 01 07:28:03 +0000 2015", "id_str": "571934912846041091"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/oneVoxdotcom/statuses/572079942651015168", "html": "<blockquote class=\"twitter-tweet\"><p>130 years of facial hair trends, in one chart <a href=\"http://t.co/VlQvmJP5Ar\">http://t.co/VlQvmJP5Ar</a> <a href=\"http://t.co/X14GZkjQCI\">pic.twitter.com/X14GZkjQCI</a></p>&mdash; one Vox (@oneVoxdotcom) <a href=\"https://twitter.com/oneVoxdotcom/status/572079942651015168\">March 1, 2015</a></blockquote>\n", "author_name": "one Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/oneVoxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/oneVoxdotcom/status/572079942651015168/photo/1", "sizes": {"small": {"h": 226, "resize": "fit", "w": 340}, "large": {"h": 267, "resize": "fit", "w": 400}, "medium": {"h": 267, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/X14GZkjQCI", "media_url_https": "https://pbs.twimg.com/media/B_BvrUKWsAAMkS9.jpg", "display_url": "pic.twitter.com/X14GZkjQCI", "id_str": "572079942613250048", "indices": [69, 91], "type": "photo", "id": 572079942613250048, "media_url": "http://pbs.twimg.com/media/B_BvrUKWsAAMkS9.jpg"}], "created_at": "Sun Mar 01 17:04:21 +0000 2015", "id_str": "572079942651015168"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/conradhackett/statuses/572102236039348224", "html": "<blockquote class=\"twitter-tweet\"><p>How gerrymandering can change election outcomes, in one chart&#10;&#10;<a href=\"http://t.co/cQLC6JRPSc\">http://t.co/cQLC6JRPSc</a> <a href=\"http://t.co/JqMrYsRtqo\">pic.twitter.com/JqMrYsRtqo</a></p>&mdash; Conrad Hackett (@conradhackett) <a href=\"https://twitter.com/conradhackett/status/572102236039348224\">March 1, 2015</a></blockquote>\n", "author_name": "Conrad Hackett", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/conradhackett", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/conradhackett/status/572102236039348224/photo/1", "sizes": {"large": {"h": 356, "resize": "fit", "w": 480}, "small": {"h": 252, "resize": "fit", "w": 340}, "medium": {"h": 356, "resize": "fit", "w": 480}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/JqMrYsRtqo", "media_url_https": "https://pbs.twimg.com/media/B_CD89RVIAEv0Oi.jpg", "display_url": "pic.twitter.com/JqMrYsRtqo", "id_str": "572102235938693121", "indices": [86, 108], "type": "photo", "id": 572102235938693121, "media_url": "http://pbs.twimg.com/media/B_CD89RVIAEv0Oi.jpg"}], "created_at": "Sun Mar 01 18:32:56 +0000 2015", "id_str": "572102236039348224"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/philmc29/statuses/572020582994198529", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/chriskkenny\">@chriskkenny</a> nails Triggs in one chart. Why do the &quot;compassionate left&quot; defend a decision to delay the inquiry? <a href=\"http://t.co/8K0bhMPqYe\">pic.twitter.com/8K0bhMPqYe</a></p>&mdash; Optimistic Gopher (@philmc29) <a href=\"https://twitter.com/philmc29/status/572020582994198529\">March 1, 2015</a></blockquote>\n", "author_name": "Optimistic Gopher", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/philmc29", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/philmc29/status/572020582994198529/photo/1", "sizes": {"large": {"h": 180, "resize": "fit", "w": 320}, "small": {"h": 180, "resize": "fit", "w": 320}, "medium": {"h": 180, "resize": "fit", "w": 320}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/8K0bhMPqYe", "media_url_https": "https://pbs.twimg.com/media/B_A5r7cU0AAaR4c.jpg", "display_url": "pic.twitter.com/8K0bhMPqYe", "id_str": "572020579529707520", "indices": [112, 134], "type": "photo", "id": 572020579529707520, "media_url": "http://pbs.twimg.com/media/B_A5r7cU0AAaR4c.jpg"}], "created_at": "Sun Mar 01 13:08:29 +0000 2015", "id_str": "572020582994198529"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/cdewayneharris/statuses/572044378774102016", "html": "<blockquote class=\"twitter-tweet\"><p>Oh, Scott Walker... | The past nine CPAC straw polls, in one graph <a href=\"http://t.co/uUlZCX8lF0\">http://t.co/uUlZCX8lF0</a> <a href=\"http://t.co/jNtp4WH4gA\">pic.twitter.com/jNtp4WH4gA</a></p>&mdash; Christopher Harris (@cdewayneharris) <a href=\"https://twitter.com/cdewayneharris/status/572044378774102016\">March 1, 2015</a></blockquote>\n", "author_name": "Christopher Harris", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/cdewayneharris", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/cdewayneharris/status/572044378774102016/photo/1", "sizes": {"large": {"h": 668, "resize": "fit", "w": 480}, "small": {"h": 473, "resize": "fit", "w": 340}, "medium": {"h": 668, "resize": "fit", "w": 480}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/jNtp4WH4gA", "media_url_https": "https://pbs.twimg.com/media/B_BPUzjXIAAyzSe.jpg", "display_url": "pic.twitter.com/jNtp4WH4gA", "id_str": "572044371530555392", "indices": [90, 112], "type": "photo", "id": 572044371530555392, "media_url": "http://pbs.twimg.com/media/B_BPUzjXIAAyzSe.jpg"}], "created_at": "Sun Mar 01 14:43:02 +0000 2015", "id_str": "572044378774102016"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/NewsInTweetsCom/statuses/572013300155748352", "html": "<blockquote class=\"twitter-tweet\"><p>Huffington Post: How to tell if you&#39;re on a date -- in one chart ... - <a href=\"http://t.co/ZKcebxIM1C\">http://t.co/ZKcebxIM1C</a> <a href=\"https://twitter.com/hashtag/NewsInTweets?src=hash\">#NewsInTweets</a> <a href=\"http://t.co/MqjWm7xXQs\">pic.twitter.com/MqjWm7xXQs</a></p>&mdash; World News In Tweets (@NewsInTweetsCom) <a href=\"https://twitter.com/NewsInTweetsCom/status/572013300155748352\">March 1, 2015</a></blockquote>\n", "author_name": "World News In Tweets", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/NewsInTweetsCom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/NewsInTweetsCom/status/572013300155748352/photo/1", "sizes": {"small": {"h": 48, "w": 48, "resize": "fit"}, "large": {"h": 48, "w": 48, "resize": "fit"}, "medium": {"h": 48, "w": 48, "resize": "fit"}, "thumb": {"h": 48, "w": 48, "resize": "crop"}}, "url": "http://t.co/MqjWm7xXQs", "media_url_https": "https://pbs.twimg.com/media/B_AzENiU4AALHJ9.png", "id_str": "572013300122181632", "indices": [108, 130], "media_url": "http://pbs.twimg.com/media/B_AzENiU4AALHJ9.png", "type": "photo", "id": 572013300122181632, "display_url": "pic.twitter.com/MqjWm7xXQs"}], "created_at": "Sun Mar 01 12:39:32 +0000 2015", "id_str": "572013300155748352"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/AltaTerraLiving/statuses/571876580378591232", "html": "<blockquote class=\"twitter-tweet\"><p>How long fruits and veggies stay fresh...all in one chart. :) <a href=\"http://t.co/OTOYdKbkC6\">pic.twitter.com/OTOYdKbkC6</a></p>&mdash; ApartmentHomeLiving (@AptHomeLiving) <a href=\"https://twitter.com/AptHomeLiving/status/568101575803179008\">February 18, 2015</a></blockquote>\n", "author_name": "Alta Terra", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/AltaTerraLiving", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 14133514, "source_status_id_str": "568101575803179008", "expanded_url": "http://twitter.com/AptHomeLiving/status/568101575803179008/photo/1", "display_url": "pic.twitter.com/OTOYdKbkC6", "url": "http://t.co/OTOYdKbkC6", "media_url_https": "https://pbs.twimg.com/media/B-JNX10IIAED9me.png", "source_user_id_str": "14133514", "source_status_id": 568101575803179008, "id_str": "568101574980149249", "sizes": {"large": {"h": 1200, "w": 600, "resize": "fit"}, "small": {"h": 680, "w": 340, "resize": "fit"}, "medium": {"h": 1200, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [81, 103], "type": "photo", "id": 568101574980149249, "media_url": "http://pbs.twimg.com/media/B-JNX10IIAED9me.png"}], "created_at": "Sun Mar 01 03:36:16 +0000 2015", "id_str": "571876580378591232"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/TheFix/statuses/572023663035338753", "html": "<blockquote class=\"twitter-tweet\"><p>The past nine CPAC straw polls, in one graph. <a href=\"http://t.co/nCyLQyHjaS\">http://t.co/nCyLQyHjaS</a> <a href=\"http://t.co/SNYuuuVsEs\">pic.twitter.com/SNYuuuVsEs</a></p>&mdash; Chris Cillizza (@TheFix) <a href=\"https://twitter.com/TheFix/status/572023663035338753\">March 1, 2015</a></blockquote>\n", "author_name": "Chris Cillizza", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/TheFix", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/TheFix/status/572023663035338753/photo/1", "sizes": {"large": {"h": 569, "w": 677, "resize": "fit"}, "small": {"h": 285, "w": 340, "resize": "fit"}, "medium": {"h": 504, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/SNYuuuVsEs", "media_url_https": "https://pbs.twimg.com/media/B_A8fY6WsAAJZvd.png", "id_str": "572023662636871680", "indices": [69, 91], "media_url": "http://pbs.twimg.com/media/B_A8fY6WsAAJZvd.png", "type": "photo", "id": 572023662636871680, "display_url": "pic.twitter.com/SNYuuuVsEs"}], "created_at": "Sun Mar 01 13:20:43 +0000 2015", "id_str": "572023663035338753"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/BrandOneCulture/statuses/572136190314479617", "html": "<blockquote class=\"twitter-tweet\"><p>Evolution of <a href=\"https://twitter.com/hashtag/Typography?src=hash\">#Typography</a>: eras\ud83d\udd1b1452 until Today in one \ud83c\udd92 chart&#10;&#10;<a href=\"https://twitter.com/hashtag/Font?src=hash\">#Font</a> <a href=\"https://twitter.com/hashtag/Design?src=hash\">#Design</a> <a href=\"http://t.co/5oeGi4aO51\">pic.twitter.com/5oeGi4aO51</a></p>&mdash; MBC (@BrandOneCulture) <a href=\"https://twitter.com/BrandOneCulture/status/572136190314479617\">March 1, 2015</a></blockquote>\n", "author_name": "MBC", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/BrandOneCulture", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/BrandOneCulture/status/572136190314479617/photo/1", "sizes": {"large": {"h": 1194, "w": 600, "resize": "fit"}, "small": {"h": 676, "w": 340, "resize": "fit"}, "medium": {"h": 1194, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/5oeGi4aO51", "media_url_https": "https://pbs.twimg.com/media/B_Ci1W1WoAEMfrw.jpg", "id_str": "572136190222180353", "indices": [78, 100], "media_url": "http://pbs.twimg.com/media/B_Ci1W1WoAEMfrw.jpg", "type": "photo", "id": 572136190222180353, "display_url": "pic.twitter.com/5oeGi4aO51"}], "created_at": "Sun Mar 01 20:47:52 +0000 2015", "id_str": "572136190314479617"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ChillaxedJohn/statuses/571959762096541696", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/chriskkenny\">@chriskkenny</a> nails <a href=\"https://twitter.com/GillianTriggs\">@GillianTriggs</a> hypocrisy in one graph <a href=\"http://t.co/tBnA1v6aho\">pic.twitter.com/tBnA1v6aho</a></p>&mdash; Australia FIRST (@ChillaxedJohn) <a href=\"https://twitter.com/ChillaxedJohn/status/571959762096541696\">March 1, 2015</a></blockquote>\n", "author_name": "Australia FIRST", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ChillaxedJohn", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ChillaxedJohn/status/571959762096541696/photo/1", "sizes": {"large": {"h": 764, "w": 1024, "resize": "fit"}, "small": {"h": 253, "w": 340, "resize": "fit"}, "medium": {"h": 447, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/tBnA1v6aho", "media_url_https": "https://pbs.twimg.com/media/B_ACWUnVEAAuxSV.jpg", "id_str": "571959735190097920", "indices": [57, 79], "media_url": "http://pbs.twimg.com/media/B_ACWUnVEAAuxSV.jpg", "type": "photo", "id": 571959735190097920, "display_url": "pic.twitter.com/tBnA1v6aho"}], "created_at": "Sun Mar 01 09:06:48 +0000 2015", "id_str": "571959762096541696"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/voxdotcom/statuses/572078937481867264", "html": "<blockquote class=\"twitter-tweet\"><p>130 years of facial hair trends, in one chart <a href=\"http://t.co/PZkvIyfQJa\">http://t.co/PZkvIyfQJa</a> <a href=\"http://t.co/2f9DV6d3SI\">pic.twitter.com/2f9DV6d3SI</a></p>&mdash; Vox (@voxdotcom) <a href=\"https://twitter.com/voxdotcom/status/572078937481867264\">March 1, 2015</a></blockquote>\n", "author_name": "Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/voxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/voxdotcom/status/572078937481867264/photo/1", "sizes": {"large": {"h": 568, "w": 1024, "resize": "fit"}, "small": {"h": 188, "w": 340, "resize": "fit"}, "medium": {"h": 333, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/2f9DV6d3SI", "media_url_https": "https://pbs.twimg.com/media/B_BuwziW0AE3HcQ.jpg", "id_str": "572078937423138817", "indices": [69, 91], "media_url": "http://pbs.twimg.com/media/B_BuwziW0AE3HcQ.jpg", "type": "photo", "id": 572078937423138817, "display_url": "pic.twitter.com/2f9DV6d3SI"}], "created_at": "Sun Mar 01 17:00:22 +0000 2015", "id_str": "572078937481867264"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Reddy/statuses/572154458576060416", "html": "<blockquote class=\"twitter-tweet\"><p>U.S. immigration across two centuries: Where most immigrants came from, in one chart <a href=\"http://t.co/BGu0kpvMl0\">http://t.co/BGu0kpvMl0</a> <a href=\"http://t.co/yrFXMC5YrO\">pic.twitter.com/yrFXMC5YrO</a></p>&mdash; Sudeep Reddy (@Reddy) <a href=\"https://twitter.com/Reddy/status/572154458576060416\">March 1, 2015</a></blockquote>\n", "author_name": "Sudeep Reddy", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Reddy", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/Reddy/status/572154458576060416/photo/1", "sizes": {"small": {"h": 201, "w": 340, "resize": "fit"}, "large": {"h": 496, "w": 834, "resize": "fit"}, "medium": {"h": 356, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/yrFXMC5YrO", "media_url_https": "https://pbs.twimg.com/media/B_CcgS9UwAAYWW-.png", "id_str": "572129231334850560", "indices": [108, 130], "media_url": "http://pbs.twimg.com/media/B_CcgS9UwAAYWW-.png", "type": "photo", "id": 572129231334850560, "display_url": "pic.twitter.com/yrFXMC5YrO"}], "created_at": "Sun Mar 01 22:00:27 +0000 2015", "id_str": "572154458576060416"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Adam___McGregor/statuses/572046950830374912", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/jameskirkup\">@jameskirkup</a>: Ed Miliband and the rise of career politicians, in one chart: <a href=\"http://t.co/dA01eazNgk\">http://t.co/dA01eazNgk</a>\u2026 <a href=\"http://t.co/7OgIRqlATz\">pic.twitter.com/7OgIRqlATz</a></p>&mdash; A. McGregor Politics (@Adam___McGregor) <a href=\"https://twitter.com/Adam___McGregor/status/572046950830374912\">March 1, 2015</a></blockquote>\n", "author_name": "A. McGregor Politics", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Adam___McGregor", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 19647329, "source_status_id_str": "562266045122367488", "expanded_url": "http://twitter.com/jameskirkup/status/562266045122367488/photo/1", "display_url": "pic.twitter.com/7OgIRqlATz", "url": "http://t.co/7OgIRqlATz", "media_url_https": "https://pbs.twimg.com/media/B82R_OiIYAA_TdC.jpg", "source_user_id_str": "19647329", "source_status_id": 562266045122367488, "id_str": "562266043910217728", "sizes": {"small": {"h": 226, "w": 340, "resize": "fit"}, "large": {"h": 683, "w": 1024, "resize": "fit"}, "medium": {"h": 400, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [100, 122], "type": "photo", "id": 562266043910217728, "media_url": "http://pbs.twimg.com/media/B82R_OiIYAA_TdC.jpg"}], "created_at": "Sun Mar 01 14:53:15 +0000 2015", "id_str": "572046950830374912"}], "2015-03-03": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Cepeda/statuses/572819362509410304", "html": "<blockquote class=\"twitter-tweet\"><p>The GOP field, in one chart. <a href=\"http://t.co/yoSBuHSbZu\">http://t.co/yoSBuHSbZu</a> <a href=\"http://t.co/iJqqYKRU0P\">pic.twitter.com/iJqqYKRU0P</a></p>&mdash; Nate Silver (@NateSilver538) <a href=\"https://twitter.com/NateSilver538/status/554828433680007170\">January 13, 2015</a></blockquote>\n", "author_name": "Jose Cepeda", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Cepeda", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 16017475, "source_status_id_str": "554828433680007170", "expanded_url": "http://twitter.com/NateSilver538/status/554828433680007170/photo/1", "display_url": "pic.twitter.com/iJqqYKRU0P", "url": "http://t.co/iJqqYKRU0P", "media_url_https": "https://pbs.twimg.com/media/B7MlhSkCUAAG4ks.png", "source_user_id_str": "16017475", "source_status_id": 554828433680007170, "id_str": "554828432945598464", "sizes": {"small": {"h": 341, "resize": "fit", "w": 340}, "large": {"h": 1029, "resize": "fit", "w": 1024}, "medium": {"h": 602, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [71, 93], "type": "photo", "id": 554828432945598464, "media_url": "http://pbs.twimg.com/media/B7MlhSkCUAAG4ks.png"}], "created_at": "Tue Mar 03 18:02:33 +0000 2015", "id_str": "572819362509410304"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/VladoBotsvadze/statuses/572842322943193089", "html": "<blockquote class=\"twitter-tweet\"><p>Complex Social Media Landscape in One Chart. <a href=\"https://twitter.com/hashtag/SocialMedia?src=hash\">#SocialMedia</a> <a href=\"http://t.co/TU9J9e115U\">pic.twitter.com/TU9J9e115U</a></p>&mdash; Vladimer Botsvadze (@VladoBotsvadze) <a href=\"https://twitter.com/VladoBotsvadze/status/572842322943193089\">March 3, 2015</a></blockquote>\n", "author_name": "Vladimer Botsvadze", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/VladoBotsvadze", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/VladoBotsvadze/status/572842322943193089/photo/1", "sizes": {"large": {"h": 826, "resize": "fit", "w": 736}, "small": {"h": 381, "resize": "fit", "w": 340}, "medium": {"h": 673, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/TU9J9e115U", "media_url_https": "https://pbs.twimg.com/media/B_MlDkeU8AAAoVy.jpg", "display_url": "pic.twitter.com/TU9J9e115U", "id_str": "572842320866897920", "indices": [58, 80], "type": "photo", "id": 572842320866897920, "media_url": "http://pbs.twimg.com/media/B_MlDkeU8AAAoVy.jpg"}], "created_at": "Tue Mar 03 19:33:47 +0000 2015", "id_str": "572842322943193089"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/MetroMagNZ/statuses/572617179293593601", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/GenerationZer0\">@GenerationZer0</a>&#39;s Essential Transport Budget in one graph <a href=\"https://twitter.com/hashtag/LTP2015?src=hash\">#LTP2015</a> <a href=\"https://twitter.com/hashtag/AKLConversations?src=hash\">#AKLConversations</a> <a href=\"http://t.co/IVotakAYTC\">pic.twitter.com/IVotakAYTC</a></p>&mdash; Metro (@MetroMagNZ) <a href=\"https://twitter.com/MetroMagNZ/status/572617179293593601\">March 3, 2015</a></blockquote>\n", "author_name": "Metro", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/MetroMagNZ", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/MetroMagNZ/status/572617179293593601/photo/1", "sizes": {"large": {"h": 724, "resize": "fit", "w": 1024}, "small": {"h": 240, "resize": "fit", "w": 340}, "medium": {"h": 424, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/IVotakAYTC", "media_url_https": "https://pbs.twimg.com/media/B_JYShBUsAA9_Bi.jpg", "display_url": "pic.twitter.com/IVotakAYTC", "id_str": "572617177754284032", "indices": [85, 107], "type": "photo", "id": 572617177754284032, "media_url": "http://pbs.twimg.com/media/B_JYShBUsAA9_Bi.jpg"}], "created_at": "Tue Mar 03 04:39:08 +0000 2015", "id_str": "572617179293593601"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/AEInews/statuses/572827209720852480", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/hashtag/Putin?src=hash\">#Putin</a>&#39;s popularity, examined in one chart <a href=\"http://t.co/5hfSSVQGJK\">pic.twitter.com/5hfSSVQGJK</a></p>&mdash; AEI Media Services (@AEInews) <a href=\"https://twitter.com/AEInews/status/572827209720852480\">March 3, 2015</a></blockquote>\n", "author_name": "AEI Media Services", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/AEInews", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/AEInews/status/572827209720852480/photo/1", "sizes": {"large": {"h": 635, "resize": "fit", "w": 899}, "small": {"h": 239, "resize": "fit", "w": 340}, "medium": {"h": 423, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/5hfSSVQGJK", "media_url_https": "https://pbs.twimg.com/media/B_MXTCZUoAAja9U.jpg", "display_url": "pic.twitter.com/5hfSSVQGJK", "id_str": "572827193434218496", "indices": [43, 65], "type": "photo", "id": 572827193434218496, "media_url": "http://pbs.twimg.com/media/B_MXTCZUoAAja9U.jpg"}], "created_at": "Tue Mar 03 18:33:44 +0000 2015", "id_str": "572827209720852480"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/mattyglesias/statuses/572773459106897920", "html": "<blockquote class=\"twitter-tweet\"><p>Jeb Bush&#39;s Florida, in one chart <a href=\"http://t.co/obzK5eVYQk\">http://t.co/obzK5eVYQk</a> <a href=\"http://t.co/U4asTf9V4s\">pic.twitter.com/U4asTf9V4s</a></p>&mdash; Matt Yglesias (@mattyglesias) <a href=\"https://twitter.com/mattyglesias/status/572773459106897920\">March 3, 2015</a></blockquote>\n", "author_name": "Matt Yglesias", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/mattyglesias", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/mattyglesias/status/572773459106897920/photo/1", "sizes": {"large": {"h": 542, "resize": "fit", "w": 1023}, "small": {"h": 180, "resize": "fit", "w": 340}, "medium": {"h": 317, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/U4asTf9V4s", "media_url_https": "https://pbs.twimg.com/media/B_LmbSMWsAE4TXW.png", "display_url": "pic.twitter.com/U4asTf9V4s", "id_str": "572773459043987457", "indices": [56, 78], "type": "photo", "id": 572773459043987457, "media_url": "http://pbs.twimg.com/media/B_LmbSMWsAE4TXW.png"}], "created_at": "Tue Mar 03 15:00:08 +0000 2015", "id_str": "572773459106897920"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/dashdashado/statuses/572820596796592128", "html": "<blockquote class=\"twitter-tweet\" data-conversation=\"none\"><p>Infographic <a href=\"https://twitter.com/google\">@Google</a> hits, in one chart. <a href=\"http://t.co/AvQFTPor7r\">pic.twitter.com/AvQFTPor7r</a></p>&mdash; Arthur David Olson (@dashdashado) <a href=\"https://twitter.com/dashdashado/status/572820596796592128\">March 3, 2015</a></blockquote>\n", "author_name": "Arthur David Olson", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/dashdashado", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/dashdashado/status/572820596796592128/photo/1", "sizes": {"small": {"h": 174, "resize": "fit", "w": 340}, "large": {"h": 499, "resize": "fit", "w": 972}, "medium": {"h": 308, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/AvQFTPor7r", "media_url_https": "https://pbs.twimg.com/media/B_MRTAzUQAAjuD2.jpg", "display_url": "pic.twitter.com/AvQFTPor7r", "id_str": "572820595936608256", "indices": [40, 62], "type": "photo", "id": 572820595936608256, "media_url": "http://pbs.twimg.com/media/B_MRTAzUQAAjuD2.jpg"}], "created_at": "Tue Mar 03 18:07:27 +0000 2015", "id_str": "572820596796592128"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/edwingardner/statuses/572744179996106752", "html": "<blockquote class=\"twitter-tweet\"><p>Economists are terrible at predictions, in one chart \u2014 <a href=\"https://twitter.com/voxdotcom\">@Voxdotcom</a> \u2014 <a href=\"http://t.co/BYi0JZBQpQ\">http://t.co/BYi0JZBQpQ</a> <a href=\"http://t.co/dJs4pP0l0Q\">pic.twitter.com/dJs4pP0l0Q</a></p>&mdash; Robert Went (@went1955) <a href=\"https://twitter.com/went1955/status/545674479352168449\">December 18, 2014</a></blockquote>\n", "author_name": "Edwin Gardner", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/edwingardner", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 124506375, "source_status_id_str": "545674479352168449", "expanded_url": "http://twitter.com/went1955/status/545674479352168449/photo/1", "display_url": "pic.twitter.com/dJs4pP0l0Q", "url": "http://t.co/dJs4pP0l0Q", "media_url_https": "https://pbs.twimg.com/media/B5KgCrGIIAA4RPr.jpg", "source_user_id_str": "124506375", "source_status_id": 545674479352168449, "id_str": "545674472653856768", "sizes": {"large": {"h": 438, "w": 709, "resize": "fit"}, "small": {"h": 210, "w": 340, "resize": "fit"}, "medium": {"h": 370, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [105, 127], "type": "photo", "id": 545674472653856768, "media_url": "http://pbs.twimg.com/media/B5KgCrGIIAA4RPr.jpg"}], "created_at": "Tue Mar 03 13:03:48 +0000 2015", "id_str": "572744179996106752"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/contently/statuses/572758389752668164", "html": "<blockquote class=\"twitter-tweet\"><p>.<a href=\"https://twitter.com/facebook\">@facebook</a> now drives\u2014wait for it\u20141/4 of all web traffic. Why that&#39;s so important: <a href=\"http://t.co/5kTJMbOHia\">http://t.co/5kTJMbOHia</a> <a href=\"http://t.co/ciCjN0cL9z\">pic.twitter.com/ciCjN0cL9z</a></p>&mdash; Contently (@contently) <a href=\"https://twitter.com/contently/status/572758389752668164\">March 3, 2015</a></blockquote>\n", "author_name": "Contently", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/contently", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/contently/status/572758389752668164/photo/1", "sizes": {"small": {"h": 178, "w": 340, "resize": "fit"}, "large": {"h": 536, "w": 1024, "resize": "fit"}, "medium": {"h": 314, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ciCjN0cL9z", "media_url_https": "https://pbs.twimg.com/media/B_JXzwEUoAAsG35.png", "id_str": "572616649217449984", "indices": [106, 128], "media_url": "http://pbs.twimg.com/media/B_JXzwEUoAAsG35.png", "type": "photo", "id": 572616649217449984, "display_url": "pic.twitter.com/ciCjN0cL9z"}], "created_at": "Tue Mar 03 14:00:16 +0000 2015", "id_str": "572758389752668164"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/BioRunUp/statuses/572772826303746048", "html": "<blockquote class=\"twitter-tweet\"><p>Everything you need to know about <a href=\"https://twitter.com/search?q=%24MNKD&amp;src=ctag\">$MNKD</a> <a href=\"https://twitter.com/hashtag/Afrezza?src=hash\">#Afrezza</a> launch in one chart from Goldman Sachs (Projected vs actual sales) <a href=\"http://t.co/sJ1Bhn5XiQ\">pic.twitter.com/sJ1Bhn5XiQ</a></p>&mdash; BioRunUp (@BioRunUp) <a href=\"https://twitter.com/BioRunUp/status/572772826303746048\">March 3, 2015</a></blockquote>\n", "author_name": "BioRunUp", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/BioRunUp", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/BioRunUp/status/572772826303746048/photo/1", "sizes": {"large": {"h": 382, "w": 630, "resize": "fit"}, "small": {"h": 206, "w": 340, "resize": "fit"}, "medium": {"h": 363, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/sJ1Bhn5XiQ", "media_url_https": "https://pbs.twimg.com/media/B_Ll2bAUwAIOCKc.jpg", "id_str": "572772825754288130", "indices": [116, 138], "media_url": "http://pbs.twimg.com/media/B_Ll2bAUwAIOCKc.jpg", "type": "photo", "id": 572772825754288130, "display_url": "pic.twitter.com/sJ1Bhn5XiQ"}], "created_at": "Tue Mar 03 14:57:38 +0000 2015", "id_str": "572772826303746048"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/BlissTabitha/statuses/572580089180758016", "html": "<blockquote class=\"twitter-tweet\" data-conversation=\"none\"><p>All major world religions in one chart. One of these things is not like the others... <a href=\"https://twitter.com/2ANow\">@2ANow</a> <a href=\"http://t.co/guOUTNeOqu\">pic.twitter.com/guOUTNeOqu</a></p>&mdash; Tabitha Bliss (@BlissTabitha) <a href=\"https://twitter.com/BlissTabitha/status/572580089180758016\">March 3, 2015</a></blockquote>\n", "author_name": "Tabitha Bliss", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/BlissTabitha", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/BlissTabitha/status/572580089180758016/photo/1", "sizes": {"small": {"h": 453, "w": 340, "resize": "fit"}, "large": {"h": 801, "w": 600, "resize": "fit"}, "medium": {"h": 801, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/guOUTNeOqu", "media_url_https": "https://pbs.twimg.com/media/B_I2jptU4AAt8qR.jpg", "id_str": "572580088748761088", "indices": [93, 115], "media_url": "http://pbs.twimg.com/media/B_I2jptU4AAt8qR.jpg", "type": "photo", "id": 572580088748761088, "display_url": "pic.twitter.com/guOUTNeOqu"}], "created_at": "Tue Mar 03 02:11:45 +0000 2015", "id_str": "572580089180758016"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/fastFT/statuses/572576528644624385", "html": "<blockquote class=\"twitter-tweet\"><p>Why household demand in Japan continues to slump, in one chart.&#10;(Note, however, recent progress) <a href=\"http://t.co/FdAaVLQ4kz\">pic.twitter.com/FdAaVLQ4kz</a></p>&mdash; fastFT (@fastFT) <a href=\"https://twitter.com/fastFT/status/572576528644624385\">March 3, 2015</a></blockquote>\n", "author_name": "fastFT", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/fastFT", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/fastFT/status/572576528644624385/photo/1", "sizes": {"large": {"h": 440, "w": 750, "resize": "fit"}, "small": {"h": 199, "w": 340, "resize": "fit"}, "medium": {"h": 352, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/FdAaVLQ4kz", "media_url_https": "https://pbs.twimg.com/media/B_IzUa7XIAAmG5T.png", "id_str": "572576528548175872", "indices": [97, 119], "media_url": "http://pbs.twimg.com/media/B_IzUa7XIAAmG5T.png", "type": "photo", "id": 572576528548175872, "display_url": "pic.twitter.com/FdAaVLQ4kz"}], "created_at": "Tue Mar 03 01:57:37 +0000 2015", "id_str": "572576528644624385"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SarahRapp/statuses/572713989647560704", "html": "<blockquote class=\"twitter-tweet\"><p>Gender inequality in one chart (via <a href=\"https://twitter.com/nytimes\">@nytimes</a>) <a href=\"http://t.co/ZZklRV8jF6\">pic.twitter.com/ZZklRV8jF6</a></p>&mdash; Sarah Rappaport (@SarahRapp) <a href=\"https://twitter.com/SarahRapp/status/572713989647560704\">March 3, 2015</a></blockquote>\n", "author_name": "Sarah Rappaport", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SarahRapp", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SarahRapp/status/572713989647560704/photo/1", "sizes": {"small": {"h": 167, "w": 340, "resize": "fit"}, "large": {"h": 295, "w": 600, "resize": "fit"}, "medium": {"h": 295, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ZZklRV8jF6", "media_url_https": "https://pbs.twimg.com/media/B_KwVqtU8AA7HUE.jpg", "id_str": "572713988917620736", "indices": [46, 68], "media_url": "http://pbs.twimg.com/media/B_KwVqtU8AA7HUE.jpg", "type": "photo", "id": 572713988917620736, "display_url": "pic.twitter.com/ZZklRV8jF6"}], "created_at": "Tue Mar 03 11:03:50 +0000 2015", "id_str": "572713989647560704"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ryanmartin/statuses/572555238776942592", "html": "<blockquote class=\"twitter-tweet\"><p>Gerrymandering explained in one chart. <a href=\"http://t.co/QgQQ6klRAc\">http://t.co/QgQQ6klRAc</a> <a href=\"http://t.co/YYohDW7hhV\">pic.twitter.com/YYohDW7hhV</a></p>&mdash; Ryan Martin (@ryanmartin) <a href=\"https://twitter.com/ryanmartin/status/572555238776942592\">March 3, 2015</a></blockquote>\n", "author_name": "Ryan Martin", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ryanmartin", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ryanmartin/status/572555238776942592/photo/1", "sizes": {"small": {"h": 251, "w": 340, "resize": "fit"}, "large": {"h": 461, "w": 624, "resize": "fit"}, "medium": {"h": 443, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/YYohDW7hhV", "media_url_https": "https://pbs.twimg.com/media/B_If9L_XIAAu57X.png", "id_str": "572555238680502272", "indices": [62, 84], "media_url": "http://pbs.twimg.com/media/B_If9L_XIAAu57X.png", "type": "photo", "id": 572555238680502272, "display_url": "pic.twitter.com/YYohDW7hhV"}], "created_at": "Tue Mar 03 00:33:01 +0000 2015", "id_str": "572555238776942592"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/NicFildes/statuses/572699941983932416", "html": "<blockquote class=\"twitter-tweet\"><p>Samsung&#39;s woes in one chart - Apple takes the crown for the first time in 4Q according to Gartner <a href=\"https://twitter.com/hashtag/MWC15?src=hash\">#MWC15</a> <a href=\"http://t.co/Nym1tQ79Ht\">pic.twitter.com/Nym1tQ79Ht</a></p>&mdash; Nic Fildes (@NicFildes) <a href=\"https://twitter.com/NicFildes/status/572699941983932416\">March 3, 2015</a></blockquote>\n", "author_name": "Nic Fildes", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/NicFildes", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/NicFildes/status/572699941983932416/photo/1", "sizes": {"small": {"h": 606, "w": 340, "resize": "fit"}, "large": {"h": 1024, "w": 574, "resize": "fit"}, "medium": {"h": 1024, "w": 574, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/Nym1tQ79Ht", "media_url_https": "https://pbs.twimg.com/media/B_KjjfYXEAEI0tp.jpg", "id_str": "572699932743897089", "indices": [105, 127], "media_url": "http://pbs.twimg.com/media/B_KjjfYXEAEI0tp.jpg", "type": "photo", "id": 572699932743897089, "display_url": "pic.twitter.com/Nym1tQ79Ht"}], "created_at": "Tue Mar 03 10:08:01 +0000 2015", "id_str": "572699941983932416"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/DanteB4u/statuses/572859944124346368", "html": "<blockquote class=\"twitter-tweet\"><p>Compare <a href=\"https://twitter.com/hashtag/Israeli?src=hash\">#Israeli</a> Apartheid in <a href=\"https://twitter.com/hashtag/Palestine?src=hash\">#Palestine</a> to that of <a href=\"https://twitter.com/hashtag/SouthAfrica?src=hash\">#SouthAfrica</a> previously, in one chart: h/t <a href=\"https://twitter.com/tmoptimist\">@tmoptimist</a> <a href=\"https://twitter.com/hashtag/BDS?src=hash\">#BDS</a> <a href=\"http://t.co/wCFYwpLp9U\">pic.twitter.com/wCFYwpLp9U</a></p>&mdash; Dante Boykin (@DanteB4u) <a href=\"https://twitter.com/DanteB4u/status/572859944124346368\">March 3, 2015</a></blockquote>\n", "author_name": "Dante Boykin", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/DanteB4u", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 63144098, "source_status_id_str": "496057127245340672", "expanded_url": "http://twitter.com/DanteB4u/status/496057127245340672/photo/1", "display_url": "pic.twitter.com/wCFYwpLp9U", "url": "http://t.co/wCFYwpLp9U", "media_url_https": "https://pbs.twimg.com/media/BuJZU9RCYAAbBue.jpg", "source_user_id_str": "63144098", "source_status_id": 496057127245340672, "id_str": "496057125542453248", "sizes": {"small": {"h": 604, "w": 340, "resize": "fit"}, "large": {"h": 1024, "w": 576, "resize": "fit"}, "medium": {"h": 1024, "w": 576, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [112, 134], "type": "photo", "id": 496057125542453248, "media_url": "http://pbs.twimg.com/media/BuJZU9RCYAAbBue.jpg"}], "created_at": "Tue Mar 03 20:43:48 +0000 2015", "id_str": "572859944124346368"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/reportedly/statuses/572898369875525632", "html": "<blockquote class=\"twitter-tweet\" data-conversation=\"none\"><p><a href=\"https://twitter.com/hashtag/ChinaPollution?src=hash\">#ChinaPollution</a> of &quot;particulate matter&quot; demonstrated in one chart. Via <a href=\"https://twitter.com/Upworthy\">@upworthy</a> <a href=\"http://t.co/wsJcI084Eo\">http://t.co/wsJcI084Eo</a> <a href=\"https://twitter.com/hashtag/environment?src=hash\">#environment</a> <a href=\"http://t.co/Pnq07WHHEt\">pic.twitter.com/Pnq07WHHEt</a></p>&mdash; reported.ly (@reportedly) <a href=\"https://twitter.com/reportedly/status/572898369875525632\">March 3, 2015</a></blockquote>\n", "author_name": "reported.ly", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/reportedly", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/reportedly/status/572898369875525632/photo/1", "sizes": {"large": {"h": 383, "w": 774, "resize": "fit"}, "small": {"h": 168, "w": 340, "resize": "fit"}, "medium": {"h": 296, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/Pnq07WHHEt", "media_url_https": "https://pbs.twimg.com/media/B_NX_9_VEAE1DQH.jpg", "display_url": "pic.twitter.com/Pnq07WHHEt", "id_str": "572898334089744385", "indices": [117, 139], "type": "photo", "id": 572898334089744385, "media_url": "http://pbs.twimg.com/media/B_NX_9_VEAE1DQH.jpg"}], "created_at": "Tue Mar 03 23:16:29 +0000 2015", "id_str": "572898369875525632"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/jsblokland/statuses/572856881217069056", "html": "<blockquote class=\"twitter-tweet\"><p>Demographic change in one chart. via <a href=\"https://twitter.com/MaxCRoser\">@MaxCRoser</a> <a href=\"http://t.co/BwyUgvxzCC\">pic.twitter.com/BwyUgvxzCC</a></p>&mdash; jeroen blokland (@jsblokland) <a href=\"https://twitter.com/jsblokland/status/572856881217069056\">March 3, 2015</a></blockquote>\n", "author_name": "jeroen blokland", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/jsblokland", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 610659001, "source_status_id_str": "572309893052555264", "expanded_url": "http://twitter.com/MaxCRoser/status/572309893052555264/photo/1", "display_url": "pic.twitter.com/BwyUgvxzCC", "url": "http://t.co/BwyUgvxzCC", "media_url_https": "https://pbs.twimg.com/media/B_FA0L2XIAEjki8.png", "source_user_id_str": "610659001", "source_status_id": 572309893052555264, "id_str": "572309892930936833", "sizes": {"small": {"h": 143, "w": 340, "resize": "fit"}, "large": {"h": 421, "w": 1000, "resize": "fit"}, "medium": {"h": 252, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [48, 70], "type": "photo", "id": 572309892930936833, "media_url": "http://pbs.twimg.com/media/B_FA0L2XIAEjki8.png"}], "created_at": "Tue Mar 03 20:31:38 +0000 2015", "id_str": "572856881217069056"}], "2015-03-02": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/BowDownToPotato/statuses/572418929261350913", "html": "<blockquote class=\"twitter-tweet\"><p>&quot;<a href=\"https://twitter.com/HuffPostCollege\">@HuffPostCollege</a>: How to tell if your experience of sexual assault is valid in one chart <a href=\"http://t.co/uJO4Q6T6Iy\">http://t.co/uJO4Q6T6Iy</a> <a href=\"http://t.co/jxBnEhEIVJ\">pic.twitter.com/jxBnEhEIVJ</a>&quot;</p>&mdash; Allysa Leonard (@BowDownToPotato) <a href=\"https://twitter.com/BowDownToPotato/status/572418929261350913\">March 2, 2015</a></blockquote>\n", "author_name": "Allysa Leonard", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/BowDownToPotato", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 101896529, "source_status_id_str": "563131135811936257", "expanded_url": "http://twitter.com/HuffPostCollege/status/563131135811936257/photo/1", "display_url": "pic.twitter.com/jxBnEhEIVJ", "url": "http://t.co/jxBnEhEIVJ", "media_url_https": "https://pbs.twimg.com/media/B9CkucPCQAERIGQ.png", "source_user_id_str": "101896529", "source_status_id": 563131135811936257, "id_str": "563131071181504513", "sizes": {"small": {"h": 425, "resize": "fit", "w": 340}, "large": {"h": 1162, "resize": "fit", "w": 929}, "medium": {"h": 750, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [113, 135], "type": "photo", "id": 563131071181504513, "media_url": "http://pbs.twimg.com/media/B9CkucPCQAERIGQ.png"}], "created_at": "Mon Mar 02 15:31:22 +0000 2015", "id_str": "572418929261350913"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/voxdotcom/statuses/572489077141995521", "html": "<blockquote class=\"twitter-tweet\"><p>The growing partisan gap on Israel, in one chart <a href=\"http://t.co/c3ZLHjhtwr\">http://t.co/c3ZLHjhtwr</a> <a href=\"http://t.co/x56HaNj5pS\">pic.twitter.com/x56HaNj5pS</a></p>&mdash; Vox (@voxdotcom) <a href=\"https://twitter.com/voxdotcom/status/572489077141995521\">March 2, 2015</a></blockquote>\n", "author_name": "Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/voxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/voxdotcom/status/572489077141995521/photo/1", "sizes": {"large": {"h": 524, "resize": "fit", "w": 891}, "small": {"h": 199, "resize": "fit", "w": 340}, "medium": {"h": 352, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/x56HaNj5pS", "media_url_https": "https://pbs.twimg.com/media/B_HjyEeWwAADWl2.png", "display_url": "pic.twitter.com/x56HaNj5pS", "id_str": "572489076986789888", "indices": [72, 94], "type": "photo", "id": 572489076986789888, "media_url": "http://pbs.twimg.com/media/B_HjyEeWwAADWl2.png"}], "created_at": "Mon Mar 02 20:10:06 +0000 2015", "id_str": "572489077141995521"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/oneVoxdotcom/statuses/572491330267553792", "html": "<blockquote class=\"twitter-tweet\"><p>The growing partisan gap on Israel, in one chart <a href=\"http://t.co/ydhjczSx47\">http://t.co/ydhjczSx47</a> <a href=\"http://t.co/qVGiIMOAPh\">pic.twitter.com/qVGiIMOAPh</a></p>&mdash; one Vox (@oneVoxdotcom) <a href=\"https://twitter.com/oneVoxdotcom/status/572491330267553792\">March 2, 2015</a></blockquote>\n", "author_name": "one Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/oneVoxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/oneVoxdotcom/status/572491330267553792/photo/1", "sizes": {"small": {"h": 226, "resize": "fit", "w": 340}, "large": {"h": 267, "resize": "fit", "w": 400}, "medium": {"h": 267, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "url": "http://t.co/qVGiIMOAPh", "media_url_https": "https://pbs.twimg.com/media/B_Hl1NsXEAA2Rws.jpg", "display_url": "pic.twitter.com/qVGiIMOAPh", "id_str": "572491330024312832", "indices": [72, 94], "type": "photo", "id": 572491330024312832, "media_url": "http://pbs.twimg.com/media/B_Hl1NsXEAA2Rws.jpg"}], "created_at": "Mon Mar 02 20:19:04 +0000 2015", "id_str": "572491330267553792"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/JRussellMI/statuses/572473736831602690", "html": "<blockquote class=\"twitter-tweet\"><p>The US has a spending problem, not a revenue problem, in one chart: <a href=\"http://t.co/PFzsi9seaS\">http://t.co/PFzsi9seaS</a> <a href=\"http://t.co/I4Aeq5NqhX\">pic.twitter.com/I4Aeq5NqhX</a></p>&mdash; Jason Russell (@JRussellMI) <a href=\"https://twitter.com/JRussellMI/status/572473736831602690\">March 2, 2015</a></blockquote>\n", "author_name": "Jason Russell", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/JRussellMI", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/JRussellMI/status/572473736831602690/photo/1", "sizes": {"large": {"h": 369, "w": 620, "resize": "fit"}, "small": {"h": 202, "w": 340, "resize": "fit"}, "medium": {"h": 357, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/I4Aeq5NqhX", "media_url_https": "https://pbs.twimg.com/media/B_HVt1wVEAA1hE-.jpg", "id_str": "572473611153379328", "indices": [91, 113], "media_url": "http://pbs.twimg.com/media/B_HVt1wVEAA1hE-.jpg", "type": "photo", "id": 572473611153379328, "display_url": "pic.twitter.com/I4Aeq5NqhX"}], "created_at": "Mon Mar 02 19:09:09 +0000 2015", "id_str": "572473736831602690"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Janet_Xue/statuses/572526260968026113", "html": "<blockquote class=\"twitter-tweet\"><p>How two decades of globalization have changed the world, in one chart&#10;&#10;<a href=\"http://t.co/2rB8MNs5JY\">http://t.co/2rB8MNs5JY</a> <a href=\"http://t.co/qIY2MMob4g\">pic.twitter.com/qIY2MMob4g</a></p>&mdash; Conrad Hackett (@conradhackett) <a href=\"https://twitter.com/conradhackett/status/565414940211941378\">February 11, 2015</a></blockquote>\n", "author_name": "JanetXue", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Janet_Xue", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 71643224, "source_status_id_str": "565414940211941378", "expanded_url": "http://twitter.com/conradhackett/status/565414940211941378/photo/1", "display_url": "pic.twitter.com/qIY2MMob4g", "url": "http://t.co/qIY2MMob4g", "media_url_https": "https://pbs.twimg.com/media/B9jB5HIIYAI3Cza.png", "source_user_id_str": "71643224", "source_status_id": 565414940211941378, "id_str": "565414940144852994", "sizes": {"small": {"h": 260, "w": 340, "resize": "fit"}, "large": {"h": 432, "w": 563, "resize": "fit"}, "medium": {"h": 432, "w": 563, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [113, 135], "type": "photo", "id": 565414940144852994, "media_url": "http://pbs.twimg.com/media/B9jB5HIIYAI3Cza.png"}], "created_at": "Mon Mar 02 22:37:52 +0000 2015", "id_str": "572526260968026113"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/went1955/statuses/572522432420040706", "html": "<blockquote class=\"twitter-tweet\"><p>Being &quot;rich&quot; has a fluid definition: How Americans define &quot;rich,&quot; in one chart \u2014 <a href=\"https://twitter.com/voxdotcom\">@Voxdotcom</a> \u2014 <a href=\"http://t.co/W3Zb7jME0D\">http://t.co/W3Zb7jME0D</a> <a href=\"http://t.co/7tNN83RDQW\">pic.twitter.com/7tNN83RDQW</a></p>&mdash; Robert Went (@went1955) <a href=\"https://twitter.com/went1955/status/572522432420040706\">March 2, 2015</a></blockquote>\n", "author_name": "Robert Went", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/went1955", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/went1955/status/572522432420040706/photo/1", "sizes": {"large": {"h": 520, "w": 777, "resize": "fit"}, "small": {"h": 227, "w": 340, "resize": "fit"}, "medium": {"h": 401, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/7tNN83RDQW", "media_url_https": "https://pbs.twimg.com/media/B_ICHQVVEAEFTHa.jpg", "id_str": "572522426296242177", "indices": [117, 139], "media_url": "http://pbs.twimg.com/media/B_ICHQVVEAEFTHa.jpg", "type": "photo", "id": 572522426296242177, "display_url": "pic.twitter.com/7tNN83RDQW"}], "created_at": "Mon Mar 02 22:22:39 +0000 2015", "id_str": "572522432420040706"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/DanGraziano/statuses/572502508171595776", "html": "<blockquote class=\"twitter-tweet\"><p>See how manufacturers are hurting Android in one chart <a href=\"http://t.co/BvZu8yVlJB\">pic.twitter.com/BvZu8yVlJB</a></p>&mdash; Dan Graziano (@DanGraziano) <a href=\"https://twitter.com/DanGraziano/status/572502508171595776\">March 2, 2015</a></blockquote>\n", "author_name": "Dan Graziano", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/DanGraziano", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/DanGraziano/status/572502508171595776/photo/1", "sizes": {"small": {"h": 144, "w": 340, "resize": "fit"}, "large": {"h": 424, "w": 1000, "resize": "fit"}, "medium": {"h": 254, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/BvZu8yVlJB", "media_url_https": "https://pbs.twimg.com/media/B_Hv_2cXIAAHgFn.jpg", "id_str": "572502507878031360", "indices": [55, 77], "media_url": "http://pbs.twimg.com/media/B_Hv_2cXIAAHgFn.jpg", "type": "photo", "id": 572502507878031360, "display_url": "pic.twitter.com/BvZu8yVlJB"}], "created_at": "Mon Mar 02 21:03:29 +0000 2015", "id_str": "572502508171595776"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/voxdotcom/statuses/572241170136346625", "html": "<blockquote class=\"twitter-tweet\"><p>130 years of facial hair trends, in one chart <a href=\"http://t.co/TdnFCT2nWF\">http://t.co/TdnFCT2nWF</a> <a href=\"http://t.co/QfMqWg2UJP\">pic.twitter.com/QfMqWg2UJP</a></p>&mdash; Vox (@voxdotcom) <a href=\"https://twitter.com/voxdotcom/status/572241170136346625\">March 2, 2015</a></blockquote>\n", "author_name": "Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/voxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/voxdotcom/status/572241170136346625/photo/1", "sizes": {"small": {"h": 188, "w": 340, "resize": "fit"}, "large": {"h": 444, "w": 799, "resize": "fit"}, "medium": {"h": 333, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/QfMqWg2UJP", "media_url_https": "https://pbs.twimg.com/media/B_ECT_FU0AAIQnY.png", "id_str": "572241170027302912", "indices": [69, 91], "media_url": "http://pbs.twimg.com/media/B_ECT_FU0AAIQnY.png", "type": "photo", "id": 572241170027302912, "display_url": "pic.twitter.com/QfMqWg2UJP"}], "created_at": "Mon Mar 02 03:45:01 +0000 2015", "id_str": "572241170136346625"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SurvivalMantra/statuses/572489804165718016", "html": "<blockquote class=\"twitter-tweet\"><p>The Distributed Energy Storage Industry In One C <a href=\"http://t.co/lKkIWjszIG\">http://t.co/lKkIWjszIG</a> <a href=\"https://twitter.com/hashtag/survivalfromdeprivationofresources?src=hash\">#survivalfromdeprivationofresources</a> <a href=\"http://t.co/RdCX80ISth\">pic.twitter.com/RdCX80ISth</a></p>&mdash; SurvivalMantra.Com (@SurvivalMantra) <a href=\"https://twitter.com/SurvivalMantra/status/572489804165718016\">March 2, 2015</a></blockquote>\n", "author_name": "SurvivalMantra.Com", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SurvivalMantra", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SurvivalMantra/status/572489804165718016/photo/1", "sizes": {"large": {"h": 307, "w": 480, "resize": "fit"}, "small": {"h": 217, "w": 340, "resize": "fit"}, "medium": {"h": 307, "w": 480, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/RdCX80ISth", "media_url_https": "https://pbs.twimg.com/media/B_HkcZEU8AAmvrd.png", "id_str": "572489804069269504", "indices": [109, 131], "media_url": "http://pbs.twimg.com/media/B_HkcZEU8AAmvrd.png", "type": "photo", "id": 572489804069269504, "display_url": "pic.twitter.com/RdCX80ISth"}], "created_at": "Mon Mar 02 20:13:00 +0000 2015", "id_str": "572489804165718016"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/oneVoxdotcom/statuses/572491321514061824", "html": "<blockquote class=\"twitter-tweet\"><p>How Americans define &quot;rich,&quot; in one chart <a href=\"http://t.co/M0alTum4y8\">http://t.co/M0alTum4y8</a> <a href=\"http://t.co/tw6QZQs5ti\">pic.twitter.com/tw6QZQs5ti</a></p>&mdash; one Vox (@oneVoxdotcom) <a href=\"https://twitter.com/oneVoxdotcom/status/572491321514061824\">March 2, 2015</a></blockquote>\n", "author_name": "one Vox", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/oneVoxdotcom", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/oneVoxdotcom/status/572491321514061824/photo/1", "sizes": {"small": {"h": 226, "w": 340, "resize": "fit"}, "large": {"h": 267, "w": 400, "resize": "fit"}, "medium": {"h": 267, "w": 400, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/tw6QZQs5ti", "media_url_https": "https://pbs.twimg.com/media/B_Hl0tgXAAA6nMa.jpg", "id_str": "572491321384042496", "indices": [65, 87], "media_url": "http://pbs.twimg.com/media/B_Hl0tgXAAA6nMa.jpg", "type": "photo", "id": 572491321384042496, "display_url": "pic.twitter.com/tw6QZQs5ti"}], "created_at": "Mon Mar 02 20:19:02 +0000 2015", "id_str": "572491321514061824"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/tinchomaximino/statuses/572259140397101056", "html": "<blockquote class=\"twitter-tweet\"><p>&quot;The public\u2019s rising punitiveness appears to be a fundamental determinant of the incarc. rate&quot; <a href=\"http://t.co/i4aGFV20FN\">http://t.co/i4aGFV20FN</a> <a href=\"http://t.co/OWyxFnzMVC\">pic.twitter.com/OWyxFnzMVC</a></p>&mdash; Brendan Nyhan (@BrendanNyhan) <a href=\"https://twitter.com/BrendanNyhan/status/567166248522633217\">February 16, 2015</a></blockquote>\n", "author_name": "Martin Maximino", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/tinchomaximino", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 84653850, "source_status_id_str": "567166248522633217", "expanded_url": "http://twitter.com/BrendanNyhan/status/567166248522633217/photo/1", "display_url": "pic.twitter.com/OWyxFnzMVC", "url": "http://t.co/OWyxFnzMVC", "media_url_https": "https://pbs.twimg.com/media/B976snFCQAE-YMn.png", "source_user_id_str": "84653850", "source_status_id": 567166248522633217, "id_str": "567166247406551041", "sizes": {"small": {"h": 265, "w": 340, "resize": "fit"}, "large": {"h": 799, "w": 1024, "resize": "fit"}, "medium": {"h": 468, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [139, 140], "type": "photo", "id": 567166247406551041, "media_url": "http://pbs.twimg.com/media/B976snFCQAE-YMn.png"}], "created_at": "Mon Mar 02 04:56:25 +0000 2015", "id_str": "572259140397101056"}], "2015-03-05": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/jsblokland/statuses/573411949251338240", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/hashtag/Italy?src=hash\">#Italy</a>&#39;s lost decade in one chart! <a href=\"https://twitter.com/hashtag/GDP?src=hash\">#GDP</a> <a href=\"http://t.co/flXbz3qDbc\">pic.twitter.com/flXbz3qDbc</a></p>&mdash; jeroen blokland (@jsblokland) <a href=\"https://twitter.com/jsblokland/status/573411949251338240\">March 5, 2015</a></blockquote>\n", "author_name": "jeroen blokland", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/jsblokland", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/jsblokland/status/573411949251338240/photo/1", "sizes": {"small": {"h": 187, "w": 340, "resize": "fit"}, "large": {"h": 563, "w": 1024, "resize": "fit"}, "medium": {"h": 330, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/flXbz3qDbc", "media_url_https": "https://pbs.twimg.com/media/B_UrIP1U0AA1_lW.png", "display_url": "pic.twitter.com/flXbz3qDbc", "id_str": "573411948248748032", "indices": [40, 62], "type": "photo", "id": 573411948248748032, "media_url": "http://pbs.twimg.com/media/B_UrIP1U0AA1_lW.png"}], "created_at": "Thu Mar 05 09:17:16 +0000 2015", "id_str": "573411949251338240"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/zackbeauchamp/statuses/573475574091509760", "html": "<blockquote class=\"twitter-tweet\"><p>The great IQ convergence, in one chart <a href=\"http://t.co/3q8ojOEOXK\">http://t.co/3q8ojOEOXK</a> <a href=\"http://t.co/HlWudaEWmd\">pic.twitter.com/HlWudaEWmd</a></p>&mdash; Zack Beauchamp (@zackbeauchamp) <a href=\"https://twitter.com/zackbeauchamp/status/573475574091509760\">March 5, 2015</a></blockquote>\n", "author_name": "Zack Beauchamp", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/zackbeauchamp", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/zackbeauchamp/status/573475574091509760/photo/1", "sizes": {"small": {"h": 232, "w": 340, "resize": "fit"}, "large": {"h": 537, "w": 786, "resize": "fit"}, "medium": {"h": 409, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/HlWudaEWmd", "media_url_https": "https://pbs.twimg.com/media/B_Vk_wMWYAIf6n1.png", "display_url": "pic.twitter.com/HlWudaEWmd", "id_str": "573475573990842370", "indices": [62, 84], "type": "photo", "id": 573475573990842370, "media_url": "http://pbs.twimg.com/media/B_Vk_wMWYAIf6n1.png"}], "created_at": "Thu Mar 05 13:30:06 +0000 2015", "id_str": "573475574091509760"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/DecodeDC/statuses/573549294633902080", "html": "<blockquote class=\"twitter-tweet\"><p>The GOP&#39;s takeover of state legislatures in one chart <a href=\"http://t.co/AjEooi3IEJ\">http://t.co/AjEooi3IEJ</a> <a href=\"http://t.co/SVHwkXRgbw\">pic.twitter.com/SVHwkXRgbw</a></p>&mdash; DecodeDC (@DecodeDC) <a href=\"https://twitter.com/DecodeDC/status/573549294633902080\">March 5, 2015</a></blockquote>\n", "author_name": "DecodeDC", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/DecodeDC", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/DecodeDC/status/573549294633902080/photo/1", "sizes": {"large": {"h": 342, "w": 597, "resize": "fit"}, "small": {"h": 194, "w": 340, "resize": "fit"}, "medium": {"h": 342, "w": 597, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/SVHwkXRgbw", "media_url_https": "https://pbs.twimg.com/media/B_WWsFQWEAAy-FM.png", "display_url": "pic.twitter.com/SVHwkXRgbw", "id_str": "573530211628748800", "indices": [77, 99], "type": "photo", "id": 573530211628748800, "media_url": "http://pbs.twimg.com/media/B_WWsFQWEAAy-FM.png"}], "created_at": "Thu Mar 05 18:23:02 +0000 2015", "id_str": "573549294633902080"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/GetStartedSG/statuses/573323956297461761", "html": "<blockquote class=\"twitter-tweet\"><p>Everything you need to know about &#39;House of Cards&#39; season 3 in one chart <a href=\"http://t.co/IIgd3LgnlZ\">http://t.co/IIgd3LgnlZ</a> <a href=\"https://twitter.com/hashtag/makemoney?src=hash\">#makemoney</a> <a href=\"http://t.co/ZWyRe8lDny\">pic.twitter.com/ZWyRe8lDny</a></p>&mdash; GetStarted (@GetStartedSG) <a href=\"https://twitter.com/GetStartedSG/status/573323956297461761\">March 5, 2015</a></blockquote>\n", "author_name": "GetStarted", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/GetStartedSG", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/GetStartedSG/status/573323956297461761/photo/1", "sizes": {"small": {"h": 173, "w": 340, "resize": "fit"}, "large": {"h": 521, "w": 1024, "resize": "fit"}, "medium": {"h": 305, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ZWyRe8lDny", "media_url_https": "https://pbs.twimg.com/media/B_TbGb9VEAAVfUA.jpg", "display_url": "pic.twitter.com/ZWyRe8lDny", "id_str": "573323956213583872", "indices": [107, 129], "type": "photo", "id": 573323956213583872, "media_url": "http://pbs.twimg.com/media/B_TbGb9VEAAVfUA.jpg"}], "created_at": "Thu Mar 05 03:27:37 +0000 2015", "id_str": "573323956297461761"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/uglygame/statuses/573440159888359424", "html": "<blockquote class=\"twitter-tweet\"><p>The inexorable decline of competitiveness in English football in one graph. <a href=\"https://twitter.com/hashtag/premierleague?src=hash\">#premierleague</a> <a href=\"http://t.co/VAcVIaae4I\">pic.twitter.com/VAcVIaae4I</a></p>&mdash; theuglygame (@uglygame) <a href=\"https://twitter.com/uglygame/status/573440159888359424\">March 5, 2015</a></blockquote>\n", "author_name": "theuglygame", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/uglygame", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/uglygame/status/573440159888359424/photo/1", "sizes": {"small": {"h": 117, "w": 340, "resize": "fit"}, "large": {"h": 353, "w": 1024, "resize": "fit"}, "medium": {"h": 207, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/VAcVIaae4I", "media_url_https": "https://pbs.twimg.com/media/B_VEyTqWwAACYtt.png", "display_url": "pic.twitter.com/VAcVIaae4I", "id_str": "573440158621679616", "indices": [91, 113], "type": "photo", "id": 573440158621679616, "media_url": "http://pbs.twimg.com/media/B_VEyTqWwAACYtt.png"}], "created_at": "Thu Mar 05 11:09:22 +0000 2015", "id_str": "573440159888359424"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/a_cup_o_joe/statuses/573325073244794880", "html": "<blockquote class=\"twitter-tweet\"><p>The life of an average American summed up in one chart. Via <a href=\"https://twitter.com/waitbutwhy\">@waitbutwhy</a> <a href=\"https://twitter.com/hashtag/DataIsBeautiful?src=hash\">#DataIsBeautiful</a> <a href=\"http://t.co/0Sk3wIwomH\">pic.twitter.com/0Sk3wIwomH</a></p>&mdash; Joe Fenton (@a_cup_o_joe) <a href=\"https://twitter.com/a_cup_o_joe/status/573325073244794880\">March 5, 2015</a></blockquote>\n", "author_name": "Joe Fenton", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/a_cup_o_joe", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/a_cup_o_joe/status/573325073244794880/photo/1", "sizes": {"large": {"h": 805, "w": 640, "resize": "fit"}, "small": {"h": 427, "w": 340, "resize": "fit"}, "medium": {"h": 754, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/0Sk3wIwomH", "media_url_https": "https://pbs.twimg.com/media/B_TAsYTU8AE6Wu9.jpg", "display_url": "pic.twitter.com/0Sk3wIwomH", "id_str": "573294921253187585", "indices": [90, 112], "type": "photo", "id": 573294921253187585, "media_url": "http://pbs.twimg.com/media/B_TAsYTU8AE6Wu9.jpg"}], "created_at": "Thu Mar 05 03:32:03 +0000 2015", "id_str": "573325073244794880"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/businessinsider/statuses/573323108305772544", "html": "<blockquote class=\"twitter-tweet\"><p>Everything you need to know about &#39;House of Cards&#39; season 3 in one chart <a href=\"http://t.co/Kb4zH0Pw4n\">http://t.co/Kb4zH0Pw4n</a> <a href=\"http://t.co/52In0CZwnl\">pic.twitter.com/52In0CZwnl</a></p>&mdash; Business Insider (@businessinsider) <a href=\"https://twitter.com/businessinsider/status/573323108305772544\">March 5, 2015</a></blockquote>\n", "author_name": "Business Insider", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/businessinsider", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/businessinsider/status/573323108305772544/photo/1", "sizes": {"small": {"h": 170, "w": 340, "resize": "fit"}, "large": {"h": 512, "w": 1024, "resize": "fit"}, "medium": {"h": 300, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/52In0CZwnl", "media_url_https": "https://pbs.twimg.com/media/B_TaVE9WoAAljb7.png", "display_url": "pic.twitter.com/52In0CZwnl", "id_str": "573323108226080768", "indices": [96, 118], "type": "photo", "id": 573323108226080768, "media_url": "http://pbs.twimg.com/media/B_TaVE9WoAAljb7.png"}], "created_at": "Thu Mar 05 03:24:15 +0000 2015", "id_str": "573323108305772544"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/landryst/statuses/573623921938972673", "html": "<blockquote class=\"twitter-tweet\"><p>The Discouraging <a href=\"https://twitter.com/hashtag/Highered?src=hash\">#Highered</a> Humanities Job Market, in One Chart <a href=\"http://t.co/iiMYNy3ePv\">http://t.co/iiMYNy3ePv</a> via <a href=\"https://twitter.com/RadHertz\">@RadHertz</a> <a href=\"http://t.co/aEAkgEWK4D\">pic.twitter.com/aEAkgEWK4D</a></p>&mdash; Stephen Landry (@landryst) <a href=\"https://twitter.com/landryst/status/573623921938972673\">March 5, 2015</a></blockquote>\n", "author_name": "Stephen Landry", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/landryst", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/landryst/status/573623921938972673/photo/1", "sizes": {"large": {"h": 554, "w": 659, "resize": "fit"}, "small": {"h": 285, "w": 340, "resize": "fit"}, "medium": {"h": 504, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/aEAkgEWK4D", "media_url_https": "https://pbs.twimg.com/media/B_Xr6uAW8AAFlBz.jpg", "display_url": "pic.twitter.com/aEAkgEWK4D", "id_str": "573623921574080512", "indices": [100, 122], "type": "photo", "id": 573623921574080512, "media_url": "http://pbs.twimg.com/media/B_Xr6uAW8AAFlBz.jpg"}], "created_at": "Thu Mar 05 23:19:35 +0000 2015", "id_str": "573623921938972673"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/vctv_images/statuses/573487492709621760", "html": "<blockquote class=\"twitter-tweet\"><p>Outsmarting The DMV Line In One Chart <a href=\"http://t.co/xZQxG89zvE\">pic.twitter.com/xZQxG89zvE</a></p>&mdash; Images (@vctv_images) <a href=\"https://twitter.com/vctv_images/status/573487492709621760\">March 5, 2015</a></blockquote>\n", "author_name": "Images", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/vctv_images", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/vctv_images/status/573487492709621760/photo/1", "sizes": {"large": {"h": 420, "w": 620, "resize": "fit"}, "small": {"h": 230, "w": 340, "resize": "fit"}, "medium": {"h": 406, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/xZQxG89zvE", "media_url_https": "https://pbs.twimg.com/media/B_Vv1gmXEAAyXle.png", "display_url": "pic.twitter.com/xZQxG89zvE", "id_str": "573487492634185728", "indices": [38, 60], "type": "photo", "id": 573487492634185728, "media_url": "http://pbs.twimg.com/media/B_Vv1gmXEAAyXle.png"}], "created_at": "Thu Mar 05 14:17:27 +0000 2015", "id_str": "573487492709621760"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/WAYTROOFFLIFE/statuses/573532554147594241", "html": "<blockquote class=\"twitter-tweet\"><p>UK&#39;s Food Bank Problem in One Graph&#10;<a href=\"http://t.co/5JB2f01hzc\">http://t.co/5JB2f01hzc</a> <a href=\"http://t.co/dfH0NhOYVv\">pic.twitter.com/dfH0NhOYVv</a> MT <a href=\"https://twitter.com/Independent\">@Independent</a></p>&mdash; Prison_Health (@Prison_Health) <a href=\"https://twitter.com/Prison_Health/status/542156707406045184\">December 9, 2014</a></blockquote>\n", "author_name": "kid4meus", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/WAYTROOFFLIFE", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 16973333, "source_status_id_str": "541994124313104384", "expanded_url": "http://twitter.com/Independent/status/541994124313104384/photo/1", "display_url": "pic.twitter.com/dfH0NhOYVv", "url": "http://t.co/dfH0NhOYVv", "media_url_https": "https://pbs.twimg.com/media/B4WMlG-CEAA9hsQ.jpg", "source_user_id_str": "16973333", "source_status_id": 541994124313104384, "id_str": "541993899321856000", "sizes": {"small": {"h": 205, "w": 340, "resize": "fit"}, "large": {"h": 375, "w": 620, "resize": "fit"}, "medium": {"h": 362, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [78, 100], "type": "photo", "id": 541993899321856000, "media_url": "http://pbs.twimg.com/media/B4WMlG-CEAA9hsQ.jpg"}], "created_at": "Thu Mar 05 17:16:31 +0000 2015", "id_str": "573532554147594241"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Birdyword/statuses/573439940970807296", "html": "<blockquote class=\"twitter-tweet\"><p>Why India is a big deal right now, in one chart (Goldman) <a href=\"http://t.co/3EPF4VLMRf\">pic.twitter.com/3EPF4VLMRf</a></p>&mdash; Mike Bird (@Birdyword) <a href=\"https://twitter.com/Birdyword/status/573439940970807296\">March 5, 2015</a></blockquote>\n", "author_name": "Mike Bird", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Birdyword", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/Birdyword/status/573439940970807296/photo/1", "sizes": {"small": {"h": 222, "w": 340, "resize": "fit"}, "large": {"h": 669, "w": 1024, "resize": "fit"}, "medium": {"h": 392, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/3EPF4VLMRf", "media_url_https": "https://pbs.twimg.com/media/B_VEllOWkAASFGk.png", "display_url": "pic.twitter.com/3EPF4VLMRf", "id_str": "573439939997765632", "indices": [58, 80], "type": "photo", "id": 573439939997765632, "media_url": "http://pbs.twimg.com/media/B_VEllOWkAASFGk.png"}], "created_at": "Thu Mar 05 11:08:30 +0000 2015", "id_str": "573439940970807296"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/JayLow/statuses/573542131551371265", "html": "<blockquote class=\"twitter-tweet\"><p>Understanding <a href=\"https://twitter.com/HillaryClinton\">@HillaryClinton</a>&#39;s private e-mail scheme in one chart: <a href=\"http://t.co/B3kHam9Hh1\">pic.twitter.com/B3kHam9Hh1</a> via <a href=\"https://twitter.com/GOP\">@GOP</a> <a href=\"https://twitter.com/hashtag/EmailGate?src=hash\">#EmailGate</a></p>&mdash; Justin LoFranco (@JayLow) <a href=\"https://twitter.com/JayLow/status/573542131551371265\">March 5, 2015</a></blockquote>\n", "author_name": "Justin LoFranco", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/JayLow", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 11134252, "source_status_id_str": "573513336094064640", "expanded_url": "http://twitter.com/GOP/status/573513336094064640/photo/1", "display_url": "pic.twitter.com/B3kHam9Hh1", "url": "http://t.co/B3kHam9Hh1", "media_url_https": "https://pbs.twimg.com/media/B_WHVyoXEAAxGMq.png", "source_user_id_str": "11134252", "source_status_id": 573513336094064640, "id_str": "573513335997665280", "sizes": {"small": {"h": 170, "w": 340, "resize": "fit"}, "large": {"h": 512, "w": 1024, "resize": "fit"}, "medium": {"h": 300, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [68, 90], "type": "photo", "id": 573513335997665280, "media_url": "http://pbs.twimg.com/media/B_WHVyoXEAAxGMq.png"}], "created_at": "Thu Mar 05 17:54:34 +0000 2015", "id_str": "573542131551371265"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ChadAldeman/statuses/573540650081206272", "html": "<blockquote class=\"twitter-tweet\"><p>Back-loaded teacher salaries, in one graph: <a href=\"http://t.co/mGtx219nMq\">http://t.co/mGtx219nMq</a> <a href=\"http://t.co/mcZeRsq0gv\">pic.twitter.com/mcZeRsq0gv</a></p>&mdash; Chad Aldeman (@ChadAldeman) <a href=\"https://twitter.com/ChadAldeman/status/573540650081206272\">March 5, 2015</a></blockquote>\n", "author_name": "Chad Aldeman", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ChadAldeman", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ChadAldeman/status/573540650081206272/photo/1", "sizes": {"small": {"h": 190, "w": 340, "resize": "fit"}, "large": {"h": 447, "w": 799, "resize": "fit"}, "medium": {"h": 335, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/mcZeRsq0gv", "media_url_https": "https://pbs.twimg.com/media/B_WgLnzWwAE-3xO.png", "display_url": "pic.twitter.com/mcZeRsq0gv", "id_str": "573540649082994689", "indices": [67, 89], "type": "photo", "id": 573540649082994689, "media_url": "http://pbs.twimg.com/media/B_WgLnzWwAE-3xO.png"}], "created_at": "Thu Mar 05 17:48:41 +0000 2015", "id_str": "573540650081206272"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SkyNews/statuses/573439757985906688", "html": "<blockquote class=\"twitter-tweet\"><p>Politicians keep saying &quot;if you vote for X you get Y&quot; so <a href=\"https://twitter.com/joetidy\">@joetidy</a> put them all in one graph <a href=\"http://t.co/tmG9E3sfly\">http://t.co/tmG9E3sfly</a> <a href=\"http://t.co/xPvZMjZjut\">pic.twitter.com/xPvZMjZjut</a></p>&mdash; Sky News (@SkyNews) <a href=\"https://twitter.com/SkyNews/status/573439757985906688\">March 5, 2015</a></blockquote>\n", "author_name": "Sky News", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SkyNews", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SkyNews/status/573439757985906688/photo/1", "sizes": {"small": {"h": 209, "w": 340, "resize": "fit"}, "large": {"h": 616, "w": 1000, "resize": "fit"}, "medium": {"h": 369, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/xPvZMjZjut", "media_url_https": "https://pbs.twimg.com/media/B_VEYNSUoAAyOQL.jpg", "display_url": "pic.twitter.com/xPvZMjZjut", "id_str": "573439710233665536", "indices": [115, 137], "type": "photo", "id": 573439710233665536, "media_url": "http://pbs.twimg.com/media/B_VEYNSUoAAyOQL.jpg"}], "created_at": "Thu Mar 05 11:07:46 +0000 2015", "id_str": "573439757985906688"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/QuentinSauzay/statuses/573446277071028224", "html": "<blockquote class=\"twitter-tweet\"><p>Nairobi traffic jams explained in one graph (Botma &amp; Papendrecht, TU Delft 1991 &amp; Transitec SA) <a href=\"http://t.co/74UpOsJPtu\">pic.twitter.com/74UpOsJPtu</a></p>&mdash; Quentin Sauzay (@QuentinSauzay) <a href=\"https://twitter.com/QuentinSauzay/status/573446277071028224\">March 5, 2015</a></blockquote>\n", "author_name": "Quentin Sauzay", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/QuentinSauzay", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/QuentinSauzay/status/573446277071028224/photo/1", "sizes": {"small": {"h": 215, "w": 340, "resize": "fit"}, "large": {"h": 592, "w": 936, "resize": "fit"}, "medium": {"h": 379, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/74UpOsJPtu", "media_url_https": "https://pbs.twimg.com/media/B_VKWWkUoAAw-Df.png", "display_url": "pic.twitter.com/74UpOsJPtu", "id_str": "573446275435110400", "indices": [104, 126], "type": "photo", "id": 573446275435110400, "media_url": "http://pbs.twimg.com/media/B_VKWWkUoAAw-Df.png"}], "created_at": "Thu Mar 05 11:33:41 +0000 2015", "id_str": "573446277071028224"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/vctv_images/statuses/573484380380872704", "html": "<blockquote class=\"twitter-tweet\"><p>Outsmarting The DMV Line In One Chart <a href=\"http://t.co/wevhcULl3v\">pic.twitter.com/wevhcULl3v</a></p>&mdash; Images (@vctv_images) <a href=\"https://twitter.com/vctv_images/status/573484380380872704\">March 5, 2015</a></blockquote>\n", "author_name": "Images", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/vctv_images", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/vctv_images/status/573484380380872704/photo/1", "sizes": {"large": {"h": 292, "w": 560, "resize": "fit"}, "small": {"h": 177, "w": 340, "resize": "fit"}, "medium": {"h": 292, "w": 560, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/wevhcULl3v", "media_url_https": "https://pbs.twimg.com/media/B_VtAWVXEAAOZH2.jpg", "display_url": "pic.twitter.com/wevhcULl3v", "id_str": "573484380322205696", "indices": [38, 60], "type": "photo", "id": 573484380322205696, "media_url": "http://pbs.twimg.com/media/B_VtAWVXEAAOZH2.jpg"}], "created_at": "Thu Mar 05 14:05:05 +0000 2015", "id_str": "573484380380872704"}], "2015-03-04": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ryanlcooper/statuses/573170696609771520", "html": "<blockquote class=\"twitter-tweet\"><p>The Reagan Revolution, in one graph <a href=\"http://t.co/19F76spcHP\">http://t.co/19F76spcHP</a> by <a href=\"https://twitter.com/asymptosis\">@asymptosis</a> <a href=\"http://t.co/Ax2hFsb5XE\">pic.twitter.com/Ax2hFsb5XE</a></p>&mdash; Ryan Cooper (@ryanlcooper) <a href=\"https://twitter.com/ryanlcooper/status/573170696609771520\">March 4, 2015</a></blockquote>\n", "author_name": "Ryan Cooper", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ryanlcooper", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ryanlcooper/status/573170696609771520/photo/1", "sizes": {"large": {"h": 322, "w": 477, "resize": "fit"}, "small": {"h": 229, "w": 340, "resize": "fit"}, "medium": {"h": 322, "w": 477, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/Ax2hFsb5XE", "media_url_https": "https://pbs.twimg.com/media/B_RPrZkVAAA3ctA.png", "display_url": "pic.twitter.com/Ax2hFsb5XE", "id_str": "573170659599122432", "indices": [74, 96], "type": "photo", "id": 573170659599122432, "media_url": "http://pbs.twimg.com/media/B_RPrZkVAAA3ctA.png"}], "created_at": "Wed Mar 04 17:18:37 +0000 2015", "id_str": "573170696609771520"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/WarOnTheRocks/statuses/573134964092489729", "html": "<blockquote class=\"twitter-tweet\"><p>Why you should support us, in one graph. Donate now <a href=\"https://t.co/TV2Yqdadsg\">https://t.co/TV2Yqdadsg</a> <a href=\"http://t.co/ow4cqbM6qV\">pic.twitter.com/ow4cqbM6qV</a></p>&mdash; War On The Rocks (@WarOnTheRocks) <a href=\"https://twitter.com/WarOnTheRocks/status/573134964092489729\">March 4, 2015</a></blockquote>\n", "author_name": "War On The Rocks", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/WarOnTheRocks", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/WarOnTheRocks/status/573134964092489729/photo/1", "sizes": {"large": {"h": 326, "w": 600, "resize": "fit"}, "small": {"h": 184, "w": 340, "resize": "fit"}, "medium": {"h": 326, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ow4cqbM6qV", "media_url_https": "https://pbs.twimg.com/media/B_QvNkmW8AIzQRZ.jpg", "display_url": "pic.twitter.com/ow4cqbM6qV", "id_str": "573134962792263682", "indices": [76, 98], "type": "photo", "id": 573134962792263682, "media_url": "http://pbs.twimg.com/media/B_QvNkmW8AIzQRZ.jpg"}], "created_at": "Wed Mar 04 14:56:38 +0000 2015", "id_str": "573134964092489729"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/pastordan/statuses/573114863809118208", "html": "<blockquote class=\"twitter-tweet\"><p>US politics in one chart: RT <a href=\"https://twitter.com/publicreligion\">@publicreligion</a>: <a href=\"http://t.co/zIPjdXO2Qg\">http://t.co/zIPjdXO2Qg</a> <a href=\"http://t.co/vi1KYHrJvv\">pic.twitter.com/vi1KYHrJvv</a></p>&mdash; pastordan (@pastordan) <a href=\"https://twitter.com/pastordan/status/573114863809118208\">March 4, 2015</a></blockquote>\n", "author_name": "pastordan", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/pastordan", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 102737967, "source_status_id_str": "573113315175620608", "expanded_url": "http://twitter.com/publicreligion/status/573113315175620608/photo/1", "display_url": "pic.twitter.com/vi1KYHrJvv", "url": "http://t.co/vi1KYHrJvv", "media_url_https": "https://pbs.twimg.com/media/B_QbheaU0AIEiVE.png", "source_user_id_str": "102737967", "source_status_id": 573113315175620608, "id_str": "573113314496008194", "sizes": {"large": {"h": 908, "w": 600, "resize": "fit"}, "small": {"h": 514, "w": 340, "resize": "fit"}, "medium": {"h": 908, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [70, 92], "type": "photo", "id": 573113314496008194, "media_url": "http://pbs.twimg.com/media/B_QbheaU0AIEiVE.png"}], "created_at": "Wed Mar 04 13:36:46 +0000 2015", "id_str": "573114863809118208"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/HornMusicOther/statuses/573167890112749570", "html": "<blockquote class=\"twitter-tweet\"><p>The entire history of the English Language in one chart OMFG I\u2019m in nerd heaven: <a href=\"http://t.co/C3xODLZE38\">pic.twitter.com/C3xODLZE38</a></p>&mdash; Anne Holden (@adholden) <a href=\"https://twitter.com/adholden/status/517456246006226944\">October 1, 2014</a></blockquote>\n", "author_name": "Caleb Smith", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/HornMusicOther", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 1580631, "source_status_id_str": "517456246006226944", "expanded_url": "http://twitter.com/adholden/status/517456246006226944/photo/1", "display_url": "pic.twitter.com/C3xODLZE38", "url": "http://t.co/C3xODLZE38", "media_url_https": "https://pbs.twimg.com/media/By5ftq9IYAAfv1g.png", "source_user_id_str": "1580631", "source_status_id": 517456246006226944, "id_str": "517456245423628288", "sizes": {"small": {"h": 186, "w": 340, "resize": "fit"}, "large": {"h": 348, "w": 636, "resize": "fit"}, "medium": {"h": 328, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [95, 117], "type": "photo", "id": 517456245423628288, "media_url": "http://pbs.twimg.com/media/By5ftq9IYAAfv1g.png"}], "created_at": "Wed Mar 04 17:07:28 +0000 2015", "id_str": "573167890112749570"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/jf_daoust/statuses/573176683366371328", "html": "<blockquote class=\"twitter-tweet\"><p>Probability of being spoiled by friends in one graph. <a href=\"https://twitter.com/hashtag/HouseOfCards?src=hash\">#HouseOfCards</a> <a href=\"http://t.co/X6HxNTTcOJ\">pic.twitter.com/X6HxNTTcOJ</a></p>&mdash; Jean-Fran\u00e7ois Daoust (@jf_daoust) <a href=\"https://twitter.com/jf_daoust/status/573176683366371328\">March 4, 2015</a></blockquote>\n", "author_name": "Jean-Fran\u00e7ois Daoust", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/jf_daoust", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/jf_daoust/status/573176683366371328/photo/1", "sizes": {"small": {"h": 240, "w": 340, "resize": "fit"}, "large": {"h": 450, "w": 635, "resize": "fit"}, "medium": {"h": 425, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/X6HxNTTcOJ", "media_url_https": "https://pbs.twimg.com/media/B_RVJ_oVEAEsPD7.png", "display_url": "pic.twitter.com/X6HxNTTcOJ", "id_str": "573176682770665473", "indices": [68, 90], "type": "photo", "id": 573176682770665473, "media_url": "http://pbs.twimg.com/media/B_RVJ_oVEAEsPD7.png"}], "created_at": "Wed Mar 04 17:42:25 +0000 2015", "id_str": "573176683366371328"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/hausenw/statuses/573241107372494850", "html": "<blockquote class=\"twitter-tweet\"><p>Of 10,885 <a href=\"https://twitter.com/hashtag/climatechange?src=hash\">#climatechange</a> studies published 2013 ..read more: <a href=\"http://t.co/ZbnZA9xM7Z\">http://t.co/ZbnZA9xM7Z</a> \u2026 &#10;<a href=\"http://t.co/gT1ERp8Zjt\">pic.twitter.com/gT1ERp8Zjt</a>&#10;<a href=\"https://twitter.com/hashtag/globalwarming?src=hash\">#globalwarming</a></p>&mdash; Doghause (@hausenw) <a href=\"https://twitter.com/hausenw/status/573241107372494850\">March 4, 2015</a></blockquote>\n", "author_name": "Doghause", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/hausenw", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 299273962, "source_status_id_str": "448978236328800256", "expanded_url": "http://twitter.com/Laurie_Garrett/status/448978236328800256/photo/1", "display_url": "pic.twitter.com/gT1ERp8Zjt", "url": "http://t.co/gT1ERp8Zjt", "media_url_https": "https://pbs.twimg.com/media/BjsXU8ECcAAg-1m.png", "source_user_id_str": "299273962", "source_status_id": 448978236328800256, "id_str": "448978236341383168", "sizes": {"small": {"h": 276, "w": 340, "resize": "fit"}, "large": {"h": 613, "w": 754, "resize": "fit"}, "medium": {"h": 487, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [87, 109], "type": "photo", "id": 448978236341383168, "media_url": "http://pbs.twimg.com/media/BjsXU8ECcAAg-1m.png"}], "created_at": "Wed Mar 04 21:58:24 +0000 2015", "id_str": "573241107372494850"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/pixable/statuses/573116092719210496", "html": "<blockquote class=\"twitter-tweet\"><p>The decline of originality in Hollywood explained in one chart <a href=\"http://t.co/30kIFQC5Nx\">http://t.co/30kIFQC5Nx</a> <a href=\"http://t.co/i0DV2Hp3rp\">pic.twitter.com/i0DV2Hp3rp</a></p>&mdash; Pixable (@pixable) <a href=\"https://twitter.com/pixable/status/573116092719210496\">March 4, 2015</a></blockquote>\n", "author_name": "Pixable", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/pixable", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/pixable/status/573116092719210496/photo/1", "sizes": {"large": {"h": 1168, "w": 1010, "resize": "fit"}, "small": {"h": 393, "w": 340, "resize": "fit"}, "medium": {"h": 693, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/i0DV2Hp3rp", "media_url_https": "https://pbs.twimg.com/media/B_QeDKQWsAA-G3F.jpg", "display_url": "pic.twitter.com/i0DV2Hp3rp", "id_str": "573116092224286720", "indices": [86, 108], "type": "photo", "id": 573116092224286720, "media_url": "http://pbs.twimg.com/media/B_QeDKQWsAA-G3F.jpg"}], "created_at": "Wed Mar 04 13:41:39 +0000 2015", "id_str": "573116092719210496"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/UniGalactic/statuses/572914900583858176", "html": "<blockquote class=\"twitter-tweet\"><p>Petrodollar Mercantilism Explained In One Chart <a href=\"http://t.co/YZoVllPOJ2\">http://t.co/YZoVllPOJ2</a> <a href=\"http://t.co/nlcAo5E9i4\">pic.twitter.com/nlcAo5E9i4</a></p>&mdash; The Face of HFTs (@UniGalactic) <a href=\"https://twitter.com/UniGalactic/status/572914900583858176\">March 4, 2015</a></blockquote>\n", "author_name": "The Face of HFTs", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/UniGalactic", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/UniGalactic/status/572914900583858176/photo/1", "sizes": {"small": {"h": 270, "w": 340, "resize": "fit"}, "large": {"h": 477, "w": 600, "resize": "fit"}, "medium": {"h": 477, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/nlcAo5E9i4", "media_url_https": "https://pbs.twimg.com/media/B_NnEQkUoAAusJC.png", "display_url": "pic.twitter.com/nlcAo5E9i4", "id_str": "572914900470636544", "indices": [71, 93], "type": "photo", "id": 572914900470636544, "media_url": "http://pbs.twimg.com/media/B_NnEQkUoAAusJC.png"}], "created_at": "Wed Mar 04 00:22:11 +0000 2015", "id_str": "572914900583858176"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/worldbankdata/statuses/573106205205397505", "html": "<blockquote class=\"twitter-tweet\"><p>Mid-week reading: Visualizing the structure of the world economy and population in one chart <a href=\"http://t.co/HIDOHswyAG\">http://t.co/HIDOHswyAG</a> <a href=\"http://t.co/6xRXHsW96M\">pic.twitter.com/6xRXHsW96M</a></p>&mdash; World Bank Data (@worldbankdata) <a href=\"https://twitter.com/worldbankdata/status/573106205205397505\">March 4, 2015</a></blockquote>\n", "author_name": "World Bank Data", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/worldbankdata", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/worldbankdata/status/573106205205397505/photo/1", "sizes": {"large": {"h": 440, "w": 592, "resize": "fit"}, "small": {"h": 252, "w": 340, "resize": "fit"}, "medium": {"h": 440, "w": 592, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/6xRXHsW96M", "media_url_https": "https://pbs.twimg.com/media/B_QVDotW0AAkVAb.jpg", "display_url": "pic.twitter.com/6xRXHsW96M", "id_str": "573106204794343424", "indices": [116, 138], "type": "photo", "id": 573106204794343424, "media_url": "http://pbs.twimg.com/media/B_QVDotW0AAkVAb.jpg"}], "created_at": "Wed Mar 04 13:02:21 +0000 2015", "id_str": "573106205205397505"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/SkidWillie/statuses/573115456178954240", "html": "<blockquote class=\"twitter-tweet\"><p>The Hillary Clinton Presidential Campaign explained in one graph.&#10; <a href=\"https://twitter.com/hashtag/ReadyForHillary?src=hash\">#ReadyForHillary</a> <a href=\"https://twitter.com/hashtag/Hillary2016?src=hash\">#Hillary2016</a> <a href=\"http://t.co/RJaoOhDBKa\">pic.twitter.com/RJaoOhDBKa</a></p>&mdash; scott good (@SkidWillie) <a href=\"https://twitter.com/SkidWillie/status/573115456178954240\">March 4, 2015</a></blockquote>\n", "author_name": "scott good", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/SkidWillie", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/SkidWillie/status/573115456178954240/photo/1", "sizes": {"large": {"h": 371, "w": 500, "resize": "fit"}, "small": {"h": 252, "w": 340, "resize": "fit"}, "medium": {"h": 371, "w": 500, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/RJaoOhDBKa", "media_url_https": "https://pbs.twimg.com/media/B_Qdd6SU8AEK2Cv.jpg", "display_url": "pic.twitter.com/RJaoOhDBKa", "id_str": "573115452282433537", "indices": [98, 120], "type": "photo", "id": 573115452282433537, "media_url": "http://pbs.twimg.com/media/B_Qdd6SU8AEK2Cv.jpg"}], "created_at": "Wed Mar 04 13:39:07 +0000 2015", "id_str": "573115456178954240"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/RacerX30/statuses/573161923287502848", "html": "<blockquote class=\"twitter-tweet\"><p>The Federal Reserve Plan In One Chart <a href=\"http://t.co/N0VKSKvXsT\">pic.twitter.com/N0VKSKvXsT</a></p>&mdash; RacerX30 (@RacerX30) <a href=\"https://twitter.com/RacerX30/status/573161923287502848\">March 4, 2015</a></blockquote>\n", "author_name": "RacerX30", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/RacerX30", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/RacerX30/status/573161923287502848/photo/1", "sizes": {"small": {"h": 311, "w": 340, "resize": "fit"}, "large": {"h": 549, "w": 600, "resize": "fit"}, "medium": {"h": 549, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/N0VKSKvXsT", "media_url_https": "https://pbs.twimg.com/media/B_RHu2sUQAAqiFh.jpg", "display_url": "pic.twitter.com/N0VKSKvXsT", "id_str": "573161922863841280", "indices": [38, 60], "type": "photo", "id": 573161922863841280, "media_url": "http://pbs.twimg.com/media/B_RHu2sUQAAqiFh.jpg"}], "created_at": "Wed Mar 04 16:43:46 +0000 2015", "id_str": "573161923287502848"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/iAmMusicxx/statuses/573266671521042432", "html": "<blockquote class=\"twitter-tweet\" data-conversation=\"none\"><p><a href=\"https://twitter.com/bradwood385\">@bradwood385</a> <a href=\"https://twitter.com/bradwood385\">@bradwood385</a> Your opinion debunked and <a href=\"https://twitter.com/GillianTriggs\">@GillianTriggs</a> <a href=\"https://twitter.com/hashtag/Hypocrite?src=hash\">#Hypocrite</a> discredited in one graph! <a href=\"https://twitter.com/Kon__K\">@Kon__K</a> <a href=\"http://t.co/1mrhK1DApA\">pic.twitter.com/1mrhK1DApA</a></p>&mdash; Real Music (@iAmMusicxx) <a href=\"https://twitter.com/iAmMusicxx/status/573266671521042432\">March 4, 2015</a></blockquote>\n", "author_name": "Real Music", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/iAmMusicxx", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/iAmMusicxx/status/573266671521042432/photo/1", "sizes": {"large": {"h": 764, "w": 1024, "resize": "fit"}, "small": {"h": 253, "w": 340, "resize": "fit"}, "medium": {"h": 447, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/1mrhK1DApA", "media_url_https": "https://pbs.twimg.com/media/B_Sm_xeUoAA4VAG.jpg", "display_url": "pic.twitter.com/1mrhK1DApA", "id_str": "573266667125383168", "indices": [112, 134], "type": "photo", "id": 573266667125383168, "media_url": "http://pbs.twimg.com/media/B_Sm_xeUoAA4VAG.jpg"}], "created_at": "Wed Mar 04 23:39:59 +0000 2015", "id_str": "573266671521042432"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/ShockExchange/statuses/572987887018487808", "html": "<blockquote class=\"twitter-tweet\"><p><a href=\"https://twitter.com/hashtag/Inequality?src=hash\">#Inequality</a> in one chart &gt; <a href=\"http://t.co/rTbhFCg56a\">http://t.co/rTbhFCg56a</a> <a href=\"https://twitter.com/JohnHCochrane\">@JohnHCochrane</a> <a href=\"https://twitter.com/BrankoMilan\">@BrankoMilan</a> <a href=\"https://twitter.com/andrewtghill\">@andrewtghill</a> <a href=\"https://twitter.com/ftalpha\">@ftalpha</a> <a href=\"http://t.co/ZY29iPq0UD\">pic.twitter.com/ZY29iPq0UD</a></p>&mdash; NY Shock Exchange (@ShockExchange) <a href=\"https://twitter.com/ShockExchange/status/572987887018487808\">March 4, 2015</a></blockquote>\n", "author_name": "NY Shock Exchange", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/ShockExchange", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/ShockExchange/status/572987887018487808/photo/1", "sizes": {"large": {"h": 849, "w": 750, "resize": "fit"}, "small": {"h": 384, "w": 340, "resize": "fit"}, "medium": {"h": 679, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ZY29iPq0UD", "media_url_https": "https://pbs.twimg.com/media/B_Opcl9UoAEk2eU.png", "display_url": "pic.twitter.com/ZY29iPq0UD", "id_str": "572987886296932353", "indices": [104, 126], "type": "photo", "id": 572987886296932353, "media_url": "http://pbs.twimg.com/media/B_Opcl9UoAEk2eU.png"}], "created_at": "Wed Mar 04 05:12:12 +0000 2015", "id_str": "572987887018487808"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/OphirGottlieb/statuses/573229443449159680", "html": "<blockquote class=\"twitter-tweet\"><p>The Largest Revenue and Earnings in One Chart. <a href=\"http://t.co/xMNo6edfvO\">http://t.co/xMNo6edfvO</a>&#10;-&#10;Scatter Plots are LIVE (beta)! <a href=\"https://twitter.com/search?q=%24AAPL&amp;src=ctag\">$AAPL</a> <a href=\"https://twitter.com/search?q=%24STUDY&amp;src=ctag\">$STUDY</a> <a href=\"http://t.co/ttsNtJZmR6\">pic.twitter.com/ttsNtJZmR6</a></p>&mdash; Ophir Gottlieb (@OphirGottlieb) <a href=\"https://twitter.com/OphirGottlieb/status/573229443449159680\">March 4, 2015</a></blockquote>\n", "author_name": "Ophir Gottlieb", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/OphirGottlieb", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/OphirGottlieb/status/573229443449159680/photo/1", "sizes": {"large": {"h": 805, "w": 978, "resize": "fit"}, "small": {"h": 279, "w": 340, "resize": "fit"}, "medium": {"h": 493, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ttsNtJZmR6", "media_url_https": "https://pbs.twimg.com/media/B_SFJCBU8AAN6ro.png", "display_url": "pic.twitter.com/ttsNtJZmR6", "id_str": "573229442790649856", "indices": [118, 140], "type": "photo", "id": 573229442790649856, "media_url": "http://pbs.twimg.com/media/B_SFJCBU8AAN6ro.png"}], "created_at": "Wed Mar 04 21:12:04 +0000 2015", "id_str": "573229443449159680"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/kylebuis/statuses/572989389820731392", "html": "<blockquote class=\"twitter-tweet\"><p>This is what I made with the stats from earlier. All agencies in one chart <a href=\"https://twitter.com/hashtag/CaliforniaDrought?src=hash\">#CaliforniaDrought</a>&#10;&#10;<a href=\"http://t.co/LV2sR7Qsh8\">http://t.co/LV2sR7Qsh8</a> <a href=\"http://t.co/sjuLVtbhhD\">pic.twitter.com/sjuLVtbhhD</a></p>&mdash; kylebuis (@kylebuis) <a href=\"https://twitter.com/kylebuis/status/572989389820731392\">March 4, 2015</a></blockquote>\n", "author_name": "kylebuis", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/kylebuis", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/kylebuis/status/572989389820731392/photo/1", "sizes": {"large": {"h": 675, "w": 862, "resize": "fit"}, "small": {"h": 266, "w": 340, "resize": "fit"}, "medium": {"h": 469, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/sjuLVtbhhD", "media_url_https": "https://pbs.twimg.com/media/B_OqlUwVEAA39Iq.jpg", "display_url": "pic.twitter.com/sjuLVtbhhD", "id_str": "572989135809482752", "indices": [118, 140], "type": "photo", "id": 572989135809482752, "media_url": "http://pbs.twimg.com/media/B_OqlUwVEAA39Iq.jpg"}], "created_at": "Wed Mar 04 05:18:10 +0000 2015", "id_str": "572989389820731392"}], "2015-03-06": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/pdunmill/statuses/573973800666152960", "html": "<blockquote class=\"twitter-tweet\"><p>RT <a href=\"https://twitter.com/davecameroon\">@davecameroon</a>: All you need to know about my government&#39;s priorities in one graph! <a href=\"http://t.co/gWOoQu1paG\">pic.twitter.com/gWOoQu1paG</a> <a href=\"https://twitter.com/hashtag/cameronmustgo?src=hash\">#cameronmustgo</a></p>&mdash; Matt Wilson (@mattwi1s0n) <a href=\"https://twitter.com/mattwi1s0n/status/565421600536014849\">February 11, 2015</a></blockquote>\n", "author_name": "Peter Dunmill", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/pdunmill", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 20045013, "source_status_id_str": "565396583563665408", "expanded_url": "http://twitter.com/davecameroon/status/565396583563665408/photo/1", "display_url": "pic.twitter.com/gWOoQu1paG", "url": "http://t.co/gWOoQu1paG", "media_url_https": "https://pbs.twimg.com/media/B9ixMEfIcAEDxQO.jpg", "source_user_id_str": "20045013", "source_status_id": 565396583563665408, "id_str": "565396574155862017", "sizes": {"large": {"h": 654, "w": 610, "resize": "fit"}, "small": {"h": 364, "w": 340, "resize": "fit"}, "medium": {"h": 643, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [102, 124], "type": "photo", "id": 565396574155862017, "media_url": "http://pbs.twimg.com/media/B9ixMEfIcAEDxQO.jpg"}], "created_at": "Fri Mar 06 22:29:52 +0000 2015", "id_str": "573973800666152960"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/pdacosta/statuses/573942606893346816", "html": "<blockquote class=\"twitter-tweet\"><p>Dow Jones musical chairs: Why <a href=\"https://twitter.com/hashtag/Apple?src=hash\">#Apple</a> is in and AT&amp;T is out in one chart <a href=\"http://t.co/m42xrlSWtt\">http://t.co/m42xrlSWtt</a> <a href=\"http://t.co/a0TKO63h0c\">pic.twitter.com/a0TKO63h0c</a></p>&mdash; Pedro da Costa (@pdacosta) <a href=\"https://twitter.com/pdacosta/status/573942606893346816\">March 6, 2015</a></blockquote>\n", "author_name": "Pedro da Costa", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/pdacosta", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/pdacosta/status/573942606893346816/photo/1", "sizes": {"large": {"h": 579, "w": 860, "resize": "fit"}, "small": {"h": 228, "w": 340, "resize": "fit"}, "medium": {"h": 403, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/a0TKO63h0c", "media_url_https": "https://pbs.twimg.com/media/B_cNwncUIAAoYfH.jpg", "display_url": "pic.twitter.com/a0TKO63h0c", "id_str": "573942606385651712", "indices": [99, 121], "type": "photo", "id": 573942606385651712, "media_url": "http://pbs.twimg.com/media/B_cNwncUIAAoYfH.jpg"}], "created_at": "Fri Mar 06 20:25:55 +0000 2015", "id_str": "573942606893346816"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/travelwith2ofus/statuses/573757813543010304", "html": "<blockquote class=\"twitter-tweet\"><p>Everything You Need to Know to Order <a href=\"https://twitter.com/hashtag/Wine?src=hash\">#Wine</a> on a Date in One Chart. <a href=\"http://t.co/IguAO66M35\">http://t.co/IguAO66M35</a> <a href=\"https://twitter.com/thedatereport\">@thedatereport</a> <a href=\"https://twitter.com/winewankers\">@winewankers</a> <a href=\"http://t.co/7iIhY3VStY\">pic.twitter.com/7iIhY3VStY</a></p>&mdash; travelwith2ofus (@travelwith2ofus) <a href=\"https://twitter.com/travelwith2ofus/status/573757813543010304\">March 6, 2015</a></blockquote>\n", "author_name": "travelwith2ofus", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/travelwith2ofus", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/travelwith2ofus/status/573757813543010304/photo/1", "sizes": {"small": {"h": 453, "w": 340, "resize": "fit"}, "large": {"h": 840, "w": 630, "resize": "fit"}, "medium": {"h": 800, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/7iIhY3VStY", "media_url_https": "https://pbs.twimg.com/media/B_ZlsOMWEAA48E8.jpg", "display_url": "pic.twitter.com/7iIhY3VStY", "id_str": "573757812934840320", "indices": [118, 140], "type": "photo", "id": 573757812934840320, "media_url": "http://pbs.twimg.com/media/B_ZlsOMWEAA48E8.jpg"}], "created_at": "Fri Mar 06 08:11:37 +0000 2015", "id_str": "573757813543010304"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/First_Focus/statuses/573945914164826112", "html": "<blockquote class=\"twitter-tweet\"><p>Boys now commit fewer crimes, are more likely to be imprisoned. School-to-prison pipeline -&gt; <a href=\"http://t.co/77ec0zorUI\">http://t.co/77ec0zorUI</a> <a href=\"http://t.co/yF2hU2eCjM\">pic.twitter.com/yF2hU2eCjM</a></p>&mdash; First Focus (@First_Focus) <a href=\"https://twitter.com/First_Focus/status/573945914164826112\">March 6, 2015</a></blockquote>\n", "author_name": "First Focus", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/First_Focus", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/First_Focus/status/573945914164826112/photo/1", "sizes": {"small": {"h": 186, "w": 340, "resize": "fit"}, "large": {"h": 360, "w": 655, "resize": "fit"}, "medium": {"h": 329, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/yF2hU2eCjM", "media_url_https": "https://pbs.twimg.com/media/B_cDCFCUsAAk9eZ.png", "display_url": "pic.twitter.com/yF2hU2eCjM", "id_str": "573930811759570944", "indices": [119, 141], "type": "photo", "id": 573930811759570944, "media_url": "http://pbs.twimg.com/media/B_cDCFCUsAAk9eZ.png"}], "created_at": "Fri Mar 06 20:39:03 +0000 2015", "id_str": "573945914164826112"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/jsblokland/statuses/573787471902871553", "html": "<blockquote class=\"twitter-tweet\"><p>Eurozone outperformance explained in one graph! via <a href=\"https://twitter.com/auaurelija\">@auaurelija</a> <a href=\"http://t.co/3WuwIYsJP8\">pic.twitter.com/3WuwIYsJP8</a></p>&mdash; jeroen blokland (@jsblokland) <a href=\"https://twitter.com/jsblokland/status/573787471902871553\">March 6, 2015</a></blockquote>\n", "author_name": "jeroen blokland", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/jsblokland", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 566637308, "source_status_id_str": "573754025134407680", "expanded_url": "http://twitter.com/auaurelija/status/573754025134407680/photo/1", "display_url": "pic.twitter.com/3WuwIYsJP8", "url": "http://t.co/3WuwIYsJP8", "media_url_https": "https://pbs.twimg.com/media/B_ZiPsNUwAAjSQC.png", "source_user_id_str": "566637308", "source_status_id": 573754025134407680, "id_str": "573754024240922624", "sizes": {"large": {"h": 448, "w": 710, "resize": "fit"}, "small": {"h": 214, "w": 340, "resize": "fit"}, "medium": {"h": 378, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [64, 86], "type": "photo", "id": 573754024240922624, "media_url": "http://pbs.twimg.com/media/B_ZiPsNUwAAjSQC.png"}], "created_at": "Fri Mar 06 10:09:28 +0000 2015", "id_str": "573787471902871553"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/FortuneMagazine/statuses/573868180726247424", "html": "<blockquote class=\"twitter-tweet\"><p>What Apple replacing AT&amp;T does to the Dow explained in one chart <a href=\"http://t.co/xVyT0UA9cn\">http://t.co/xVyT0UA9cn</a> <a href=\"http://t.co/MNX3GLCoiD\">pic.twitter.com/MNX3GLCoiD</a></p>&mdash; Fortune (@FortuneMagazine) <a href=\"https://twitter.com/FortuneMagazine/status/573868180726247424\">March 6, 2015</a></blockquote>\n", "author_name": "Fortune", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/FortuneMagazine", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/FortuneMagazine/status/573868180726247424/photo/1", "sizes": {"small": {"h": 201, "w": 340, "resize": "fit"}, "large": {"h": 485, "w": 820, "resize": "fit"}, "medium": {"h": 354, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/MNX3GLCoiD", "media_url_https": "https://pbs.twimg.com/media/B_bKEeBWcAApS1d.png", "display_url": "pic.twitter.com/MNX3GLCoiD", "id_str": "573868180663332864", "indices": [92, 114], "type": "photo", "id": 573868180663332864, "media_url": "http://pbs.twimg.com/media/B_bKEeBWcAApS1d.png"}], "created_at": "Fri Mar 06 15:30:10 +0000 2015", "id_str": "573868180726247424"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/DiscoverHaku/statuses/573941410325364736", "html": "<blockquote class=\"twitter-tweet\"><p>How Happiness Influences Our Health, In One Chart <a href=\"https://twitter.com/hashtag/Science?src=hash\">#Science</a> <a href=\"http://t.co/r2f5dJfGbC\">http://t.co/r2f5dJfGbC</a> <a href=\"http://t.co/I6LrfNSV3h\">pic.twitter.com/I6LrfNSV3h</a></p>&mdash; Beau Barbour (@DiscoverHaku) <a href=\"https://twitter.com/DiscoverHaku/status/573941410325364736\">March 6, 2015</a></blockquote>\n", "author_name": "Beau Barbour", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/DiscoverHaku", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/DiscoverHaku/status/573941410325364736/photo/1", "sizes": {"small": {"h": 190, "w": 260, "resize": "fit"}, "large": {"h": 190, "w": 260, "resize": "fit"}, "medium": {"h": 190, "w": 260, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/I6LrfNSV3h", "media_url_https": "https://pbs.twimg.com/media/B_cMq-dUwAAzp24.jpg", "display_url": "pic.twitter.com/I6LrfNSV3h", "id_str": "573941409973059584", "indices": [82, 104], "type": "photo", "id": 573941409973059584, "media_url": "http://pbs.twimg.com/media/B_cMq-dUwAAzp24.jpg"}], "created_at": "Fri Mar 06 20:21:10 +0000 2015", "id_str": "573941410325364736"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/juliaoftoronto/statuses/573870676194562048", "html": "<blockquote class=\"twitter-tweet\"><p>The surprising foods that make people sick, in one chart <a href=\"http://t.co/IfKPH6YrEs\">http://t.co/IfKPH6YrEs</a> <a href=\"http://t.co/XWIajRtjSW\">pic.twitter.com/XWIajRtjSW</a></p>&mdash; Julia Belluz (@juliaoftoronto) <a href=\"https://twitter.com/juliaoftoronto/status/573870676194562048\">March 6, 2015</a></blockquote>\n", "author_name": "Julia Belluz", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/juliaoftoronto", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/juliaoftoronto/status/573870676194562048/photo/1", "sizes": {"small": {"h": 232, "w": 340, "resize": "fit"}, "large": {"h": 701, "w": 1024, "resize": "fit"}, "medium": {"h": 411, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/XWIajRtjSW", "media_url_https": "https://pbs.twimg.com/media/B_bMVuXWQAA8l9_.png", "display_url": "pic.twitter.com/XWIajRtjSW", "id_str": "573870676131594240", "indices": [80, 102], "type": "photo", "id": 573870676131594240, "media_url": "http://pbs.twimg.com/media/B_bMVuXWQAA8l9_.png"}], "created_at": "Fri Mar 06 15:40:05 +0000 2015", "id_str": "573870676194562048"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/monkeycageblog/statuses/573856270869991425", "html": "<blockquote class=\"twitter-tweet\"><p>The growing influence of state attorneys general (in one graph): <a href=\"http://t.co/212mC8xxqj\">http://t.co/212mC8xxqj</a> <a href=\"http://t.co/vB5lWSf4u1\">pic.twitter.com/vB5lWSf4u1</a></p>&mdash; The Monkey Cage (@monkeycageblog) <a href=\"https://twitter.com/monkeycageblog/status/573856270869991425\">March 6, 2015</a></blockquote>\n", "author_name": "The Monkey Cage", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/monkeycageblog", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/monkeycageblog/status/573856270869991425/photo/1", "sizes": {"large": {"h": 509, "w": 762, "resize": "fit"}, "small": {"h": 227, "w": 340, "resize": "fit"}, "medium": {"h": 400, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/vB5lWSf4u1", "media_url_https": "https://pbs.twimg.com/media/B_a_PM3VAAAumhb.png", "display_url": "pic.twitter.com/vB5lWSf4u1", "id_str": "573856270408548352", "indices": [88, 110], "type": "photo", "id": 573856270408548352, "media_url": "http://pbs.twimg.com/media/B_a_PM3VAAAumhb.png"}], "created_at": "Fri Mar 06 14:42:51 +0000 2015", "id_str": "573856270869991425"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/OphirGottlieb/statuses/573937809960013824", "html": "<blockquote class=\"twitter-tweet\"><p>This is Amazing: <a href=\"https://twitter.com/search?q=%24GILD&amp;src=ctag\">$GILD</a> <a href=\"https://twitter.com/search?q=%24AMGN&amp;src=ctag\">$AMGN</a> <a href=\"https://twitter.com/search?q=%24BIIB&amp;src=ctag\">$BIIB</a> <a href=\"https://twitter.com/search?q=%24CELG&amp;src=ctag\">$CELG</a> Earnings and Revenue in One Chart&#10;&#10;Chart --&gt; <a href=\"http://t.co/DFndPlLAwK\">http://t.co/DFndPlLAwK</a> <a href=\"http://t.co/ex6PGtVaqN\">pic.twitter.com/ex6PGtVaqN</a></p>&mdash; Ophir Gottlieb (@OphirGottlieb) <a href=\"https://twitter.com/OphirGottlieb/status/573937809960013824\">March 6, 2015</a></blockquote>\n", "author_name": "Ophir Gottlieb", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/OphirGottlieb", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/OphirGottlieb/status/573937809960013824/photo/1", "sizes": {"small": {"h": 253, "w": 340, "resize": "fit"}, "large": {"h": 725, "w": 974, "resize": "fit"}, "medium": {"h": 446, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/ex6PGtVaqN", "media_url_https": "https://pbs.twimg.com/media/B_cJZZjVEAEQ19I.png", "display_url": "pic.twitter.com/ex6PGtVaqN", "id_str": "573937809473474561", "indices": [112, 134], "type": "photo", "id": 573937809473474561, "media_url": "http://pbs.twimg.com/media/B_cJZZjVEAEQ19I.png"}], "created_at": "Fri Mar 06 20:06:51 +0000 2015", "id_str": "573937809960013824"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/JAYZTOP10/statuses/573759213135994880", "html": "<blockquote class=\"twitter-tweet\"><p>A scale of 1 to sf \u201c<a href=\"https://twitter.com/voxdotcom\">@voxdotcom</a>: The most liberal and conservative big cities in America: <a href=\"http://t.co/uUaj6sNRBA\">http://t.co/uUaj6sNRBA</a> <a href=\"http://t.co/M71OqtUduV\">pic.twitter.com/M71OqtUduV</a>\u201d</p>&mdash; Dustin Moskovitz (@moskov) <a href=\"https://twitter.com/moskov/status/498566228013637632\">August 10, 2014</a></blockquote>\n", "author_name": "TOP 10", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/JAYZTOP10", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 2347049341, "source_status_id_str": "498525438277218304", "expanded_url": "http://twitter.com/voxdotcom/status/498525438277218304/photo/1", "display_url": "pic.twitter.com/M71OqtUduV", "url": "http://t.co/M71OqtUduV", "media_url_https": "https://pbs.twimg.com/media/BusePqDCAAEYKAn.png", "source_user_id_str": "2347049341", "source_status_id": 498525438277218304, "id_str": "498525438088445953", "sizes": {"large": {"h": 875, "w": 608, "resize": "fit"}, "small": {"h": 489, "w": 340, "resize": "fit"}, "medium": {"h": 863, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [124, 140], "type": "photo", "id": 498525438088445953, "media_url": "http://pbs.twimg.com/media/BusePqDCAAEYKAn.png"}], "created_at": "Fri Mar 06 08:17:10 +0000 2015", "id_str": "573759213135994880"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/_haengel/statuses/573789163478192128", "html": "<blockquote class=\"twitter-tweet\"><p>Finally!! Growing Pain is no 2 in Daum Chart. At least they reached the top 10 in one chart. &#10;(Cr. Topaz) <a href=\"http://t.co/jjetgdUpfI\">pic.twitter.com/jjetgdUpfI</a></p>&mdash; Chanty in disguise. (@_haengel) <a href=\"https://twitter.com/_haengel/status/573789163478192128\">March 6, 2015</a></blockquote>\n", "author_name": "Chanty in disguise.", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/_haengel", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/_haengel/status/573789163478192128/photo/1", "sizes": {"large": {"h": 297, "w": 1004, "resize": "fit"}, "small": {"h": 100, "w": 340, "resize": "fit"}, "medium": {"h": 177, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/jjetgdUpfI", "media_url_https": "https://pbs.twimg.com/media/B_aCM4oWAAATkj_.jpg", "display_url": "pic.twitter.com/jjetgdUpfI", "id_str": "573789160407957504", "indices": [106, 128], "type": "photo", "id": 573789160407957504, "media_url": "http://pbs.twimg.com/media/B_aCM4oWAAATkj_.jpg"}], "created_at": "Fri Mar 06 10:16:11 +0000 2015", "id_str": "573789163478192128"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/IHATH_dat_dank/statuses/573762948566499328", "html": "<blockquote class=\"twitter-tweet\" data-conversation=\"none\"><p>\u201c<a href=\"https://twitter.com/ZackRutstein\">@ZackRutstein</a>: Why I hate everyone at Penn State in one graph <a href=\"http://t.co/RjDuGDHD96\">http://t.co/RjDuGDHD96</a> <a href=\"http://t.co/pxYHcjsRMy\">pic.twitter.com/pxYHcjsRMy</a>\u201dReally pop is 2x the next genre</p>&mdash; Ian (@IHATH_dat_dank) <a href=\"https://twitter.com/IHATH_dat_dank/status/573762948566499328\">March 6, 2015</a></blockquote>\n", "author_name": "Ian", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/IHATH_dat_dank", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 409119132, "source_status_id_str": "512574632021733376", "expanded_url": "http://twitter.com/ZackRutstein/status/512574632021733376/photo/1", "display_url": "pic.twitter.com/pxYHcjsRMy", "url": "http://t.co/pxYHcjsRMy", "media_url_https": "https://pbs.twimg.com/media/Bx0H6TsCQAAkl64.jpg", "source_user_id_str": "409119132", "source_status_id": 512574632021733376, "id_str": "512574630888882176", "sizes": {"small": {"h": 239, "w": 340, "resize": "fit"}, "large": {"h": 455, "w": 646, "resize": "fit"}, "medium": {"h": 422, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [86, 108], "type": "photo", "id": 512574630888882176, "media_url": "http://pbs.twimg.com/media/Bx0H6TsCQAAkl64.jpg"}], "created_at": "Fri Mar 06 08:32:01 +0000 2015", "id_str": "573762948566499328"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/MidweztMarauder/statuses/573867738667597824", "html": "<blockquote class=\"twitter-tweet\"><p>All conference tourney dates and times in one chart (via <a href=\"https://twitter.com/Fancred\">@fancred</a>) <a href=\"http://t.co/W2Iy2fJseZ\">pic.twitter.com/W2Iy2fJseZ</a></p>&mdash; Derek (@MidweztMarauder) <a href=\"https://twitter.com/MidweztMarauder/status/573867738667597824\">March 6, 2015</a></blockquote>\n", "author_name": "Derek ", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/MidweztMarauder", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/MidweztMarauder/status/573867738667597824/photo/1", "sizes": {"small": {"h": 249, "w": 340, "resize": "fit"}, "large": {"h": 550, "w": 750, "resize": "fit"}, "medium": {"h": 439, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/W2Iy2fJseZ", "media_url_https": "https://pbs.twimg.com/media/B_bJexcVEAA6EJ4.png", "display_url": "pic.twitter.com/W2Iy2fJseZ", "id_str": "573867533041733632", "indices": [67, 89], "type": "photo", "id": 573867533041733632, "media_url": "http://pbs.twimg.com/media/B_bJexcVEAA6EJ4.png"}], "created_at": "Fri Mar 06 15:28:25 +0000 2015", "id_str": "573867738667597824"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/comebackdecade/statuses/573864737756176384", "html": "<blockquote class=\"twitter-tweet\"><p>&quot;Failed&quot; Stimulus and &quot;Job Killing&quot; Obamacare in One Chart <a href=\"http://t.co/TfV4Zmjdgv\">pic.twitter.com/TfV4Zmjdgv</a></p>&mdash; Comeback Decade (@comebackdecade) <a href=\"https://twitter.com/comebackdecade/status/573864737756176384\">March 6, 2015</a></blockquote>\n", "author_name": "Comeback Decade", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/comebackdecade", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/comebackdecade/status/573864737756176384/photo/1", "sizes": {"small": {"h": 513, "w": 340, "resize": "fit"}, "large": {"h": 600, "w": 397, "resize": "fit"}, "medium": {"h": 600, "w": 397, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/TfV4Zmjdgv", "media_url_https": "https://pbs.twimg.com/media/B_bG8BxUgAAw8Fe.png", "display_url": "pic.twitter.com/TfV4Zmjdgv", "id_str": "573864737106067456", "indices": [59, 81], "type": "photo", "id": 573864737106067456, "media_url": "http://pbs.twimg.com/media/B_bG8BxUgAAw8Fe.png"}], "created_at": "Fri Mar 06 15:16:30 +0000 2015", "id_str": "573864737756176384"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/owillis/statuses/573843116039536640", "html": "<blockquote class=\"twitter-tweet\" data-conversation=\"none\"><p>obamacare destroys the us economy, in one chart <a href=\"http://t.co/PBtqPfLmNV\">pic.twitter.com/PBtqPfLmNV</a> via <a href=\"https://twitter.com/ddiamond\">@ddiamond</a></p>&mdash; Oliver Willis (@owillis) <a href=\"https://twitter.com/owillis/status/573843116039536640\">March 6, 2015</a></blockquote>\n", "author_name": "Oliver Willis", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/owillis", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 16868756, "source_status_id_str": "573842496876363777", "expanded_url": "http://twitter.com/ddiamond/status/573842496876363777/photo/1", "display_url": "pic.twitter.com/PBtqPfLmNV", "url": "http://t.co/PBtqPfLmNV", "media_url_https": "https://pbs.twimg.com/media/B_aytWnWQAEZlNT.png", "source_user_id_str": "16868756", "source_status_id": 573842496876363777, "id_str": "573842494770790401", "sizes": {"large": {"h": 657, "w": 798, "resize": "fit"}, "small": {"h": 279, "w": 340, "resize": "fit"}, "medium": {"h": 493, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [48, 70], "type": "photo", "id": 573842494770790401, "media_url": "http://pbs.twimg.com/media/B_aytWnWQAEZlNT.png"}], "created_at": "Fri Mar 06 13:50:35 +0000 2015", "id_str": "573843116039536640"}], "2015-02-28": [{"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/bcessay/statuses/571700541656604672", "html": "<blockquote class=\"twitter-tweet\"><p>How Happiness Influences Our Health, In One Chart <a href=\"http://t.co/JmtWgmLWxP\">http://t.co/JmtWgmLWxP</a> <a href=\"http://t.co/90QfQDNZKB\">pic.twitter.com/90QfQDNZKB</a></p>&mdash; mjdeen (@bcessay) <a href=\"https://twitter.com/bcessay/status/571700541656604672\">February 28, 2015</a></blockquote>\n", "author_name": "mjdeen", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/bcessay", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/bcessay/status/571700541656604672/photo/1", "sizes": {"small": {"h": 680, "resize": "fit", "w": 65}, "large": {"h": 1024, "resize": "fit", "w": 98}, "medium": {"h": 1024, "resize": "fit", "w": 98}, "thumb": {"h": 150, "resize": "crop", "w": 98}}, "url": "http://t.co/90QfQDNZKB", "media_url_https": "https://pbs.twimg.com/media/B-8WnGBXAAAMzsk.jpg", "display_url": "pic.twitter.com/90QfQDNZKB", "id_str": "571700538586365952", "indices": [73, 95], "type": "photo", "id": 571700538586365952, "media_url": "http://pbs.twimg.com/media/B-8WnGBXAAAMzsk.jpg"}], "created_at": "Sat Feb 28 15:56:45 +0000 2015", "id_str": "571700541656604672"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/19winston84/statuses/571627380621627392", "html": "<blockquote class=\"twitter-tweet\"><p>COUNTERPUNCH: &quot;40 Years of Economic Policy in One Chart&quot;&#10;<a href=\"http://t.co/sru6DbdPLK\">http://t.co/sru6DbdPLK</a> <a href=\"http://t.co/zaFSbXNscG\">pic.twitter.com/zaFSbXNscG</a></p>&mdash; Jehu (@Damn_Jehu) <a href=\"https://twitter.com/Damn_Jehu/status/555752188799356929\">January 15, 2015</a></blockquote>\n", "author_name": "Winston Smith", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/19winston84", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 15141042, "source_status_id_str": "555752188799356929", "expanded_url": "http://twitter.com/Damn_Jehu/status/555752188799356929/photo/1", "display_url": "pic.twitter.com/zaFSbXNscG", "url": "http://t.co/zaFSbXNscG", "media_url_https": "https://pbs.twimg.com/media/B7ZtpInCMAAXiCf.png", "source_user_id_str": "15141042", "source_status_id": 555752188799356929, "id_str": "555752157480103936", "sizes": {"large": {"h": 289, "resize": "fit", "w": 510}, "small": {"h": 192, "resize": "fit", "w": 340}, "medium": {"h": 289, "resize": "fit", "w": 510}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [95, 117], "type": "photo", "id": 555752157480103936, "media_url": "http://pbs.twimg.com/media/B7ZtpInCMAAXiCf.png"}], "created_at": "Sat Feb 28 11:06:02 +0000 2015", "id_str": "571627380621627392"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/nachin19483/statuses/571788259497512960", "html": "<blockquote class=\"twitter-tweet\"><p>UCL 14/15 - 4 Parameters (goals; assists; dribbles; key passes) in one chart. Find your hero people :) <a href=\"http://t.co/XPH6NJhNcb\">pic.twitter.com/XPH6NJhNcb</a></p>&mdash; erdi (@erMESSIdi) <a href=\"https://twitter.com/erMESSIdi/status/568112111051800578\">February 18, 2015</a></blockquote>\n", "author_name": "nacho s", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/nachin19483", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"source_user_id": 1281591470, "source_status_id_str": "568112111051800578", "expanded_url": "http://twitter.com/erMESSIdi/status/568112111051800578/photo/1", "display_url": "pic.twitter.com/XPH6NJhNcb", "url": "http://t.co/XPH6NJhNcb", "media_url_https": "https://pbs.twimg.com/media/B-JW8htIYAEdzSy.png", "source_user_id_str": "1281591470", "source_status_id": 568112111051800578, "id_str": "568112100841906177", "sizes": {"small": {"h": 203, "w": 340, "resize": "fit"}, "large": {"h": 533, "w": 890, "resize": "fit"}, "medium": {"h": 358, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "indices": [118, 140], "type": "photo", "id": 568112100841906177, "media_url": "http://pbs.twimg.com/media/B-JW8htIYAEdzSy.png"}], "created_at": "Sat Feb 28 21:45:19 +0000 2015", "id_str": "571788259497512960"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/BoxerDave/statuses/571677142364377088", "html": "<blockquote class=\"twitter-tweet\"><p>Childhood lead exposure &amp; violence in one graph. <a href=\"http://t.co/pxx3iJ9CIn\">pic.twitter.com/pxx3iJ9CIn</a></p>&mdash; BoxerDave (@BoxerDave) <a href=\"https://twitter.com/BoxerDave/status/571677142364377088\">February 28, 2015</a></blockquote>\n", "author_name": "BoxerDave", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/BoxerDave", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/BoxerDave/status/571677142364377088/photo/1", "sizes": {"large": {"h": 760, "w": 615, "resize": "fit"}, "small": {"h": 420, "w": 340, "resize": "fit"}, "medium": {"h": 741, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/pxx3iJ9CIn", "media_url_https": "https://pbs.twimg.com/media/B-8BVQCWsAAZbHG.jpg", "id_str": "571677142293065728", "indices": [53, 75], "media_url": "http://pbs.twimg.com/media/B-8BVQCWsAAZbHG.jpg", "type": "photo", "id": 571677142293065728, "display_url": "pic.twitter.com/pxx3iJ9CIn"}], "created_at": "Sat Feb 28 14:23:46 +0000 2015", "id_str": "571677142364377088"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/Jon_Ferrara/statuses/571639765700886528", "html": "<blockquote class=\"twitter-tweet\"><p>Who&#39;s In The Office? The American Workday In One Graph <a href=\"http://t.co/d7WKdvN3vG\">http://t.co/d7WKdvN3vG</a> <a href=\"https://twitter.com/hashtag/Productivity?src=hash\">#Productivity</a> <a href=\"http://t.co/14iWva4GHE\">pic.twitter.com/14iWva4GHE</a></p>&mdash; Jon Ferrara (@Jon_Ferrara) <a href=\"https://twitter.com/Jon_Ferrara/status/571639765700886528\">February 28, 2015</a></blockquote>\n", "author_name": "Jon Ferrara", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/Jon_Ferrara", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/Jon_Ferrara/status/571639765700886528/photo/1", "sizes": {"small": {"h": 170, "w": 340, "resize": "fit"}, "large": {"h": 512, "w": 1024, "resize": "fit"}, "medium": {"h": 300, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/14iWva4GHE", "media_url_https": "https://pbs.twimg.com/media/B-7fVpBW4AArWTI.png", "id_str": "571639765604425728", "indices": [92, 114], "media_url": "http://pbs.twimg.com/media/B-7fVpBW4AArWTI.png", "type": "photo", "id": 571639765604425728, "display_url": "pic.twitter.com/14iWva4GHE"}], "created_at": "Sat Feb 28 11:55:15 +0000 2015", "id_str": "571639765700886528"}, {"embed": {"provider_url": "https://twitter.com", "url": "https://twitter.com/OscarMacDonald/statuses/571469755623849984", "html": "<blockquote class=\"twitter-tweet\"><p>RT mateagold: The plummeting campaign finance enforcement at the FEC, in one chart, by Pos\u2026 <a href=\"http://t.co/R6aXJoVbD6\">http://t.co/R6aXJoVbD6</a> <a href=\"http://t.co/mxQOiLDIdR\">pic.twitter.com/mxQOiLDIdR</a></p>&mdash; Oscar MacDonald (@OscarMacDonald) <a href=\"https://twitter.com/OscarMacDonald/status/571469755623849984\">February 28, 2015</a></blockquote>\n", "author_name": "Oscar MacDonald", "height": null, "width": 550, "version": "1.0", "author_url": "https://twitter.com/OscarMacDonald", "provider_name": "Twitter", "cache_age": "3153600000", "type": "rich"}, "media": [{"expanded_url": "http://twitter.com/OscarMacDonald/status/571469755623849984/photo/1", "sizes": {"small": {"h": 255, "w": 340, "resize": "fit"}, "large": {"h": 768, "w": 1024, "resize": "fit"}, "medium": {"h": 450, "w": 600, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "url": "http://t.co/mxQOiLDIdR", "media_url_https": "https://pbs.twimg.com/media/B-5EtwCXEAAoagf.jpg", "id_str": "571469755502235648", "indices": [115, 137], "media_url": "http://pbs.twimg.com/media/B-5EtwCXEAAoagf.jpg", "type": "photo", "id": 571469755502235648, "display_url": "pic.twitter.com/mxQOiLDIdR"}], "created_at": "Sat Feb 28 00:39:41 +0000 2015", "id_str": "571469755623849984"}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment