Last active
April 7, 2016 20:58
-
-
Save tmcw/3756442 to your computer and use it in GitHub Desktop.
Song Treemap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { margin:0; padding:0; } | |
.cell { | |
border: solid 1px white; | |
font: 9px sans-serif; | |
line-height: 10px; | |
overflow: hidden; | |
position: absolute; | |
text-indent: 2px; | |
} | |
</style> | |
<body> | |
<div id='chart'></div> | |
<script src="https://d3js.org/d3.v2.min.js?2.10.0"></script> | |
<script> | |
d3.json('songs.json', function(json) { | |
var nodes = { | |
name: 'songs', | |
children: [] | |
}; | |
var artists = {}; | |
for (var i = 0; i < json.length; i++) { | |
if (json[i].artist) { | |
if (!artists[json[i].artist]) artists[json[i].artist] = { | |
name: json[i].artist, | |
children: [] | |
}; | |
artists[json[i].artist].children.push({ | |
name: json[i].name | |
}); | |
} | |
} | |
for (var i in artists) { | |
artists[i].children = d3.nest() | |
.key(function(d) { return d.name; }) | |
.rollup(function(d) { | |
return d.length; | |
}) | |
.entries(artists[i].children) | |
.map(function(d) { | |
d.size = d.values; | |
d.name = d.key; | |
return d; | |
}); | |
nodes.children.push(artists[i]); | |
} | |
var width = 640, | |
height = 1000, | |
color = d3.scale.category20c(); | |
var treemap = d3.layout.treemap() | |
.size([width, height]) | |
.sticky(true) | |
.value(function(d) { return d.size; }); | |
var div = d3.select("#chart").append("div") | |
.style("position", "relative") | |
.style("width", width + "px") | |
.style("height", height + "px"); | |
div.data([nodes]).selectAll("div") | |
.data(treemap.nodes) | |
.enter().append("div") | |
.attr("class", "cell") | |
.style("background", function(d) { return d.children ? color(d.name) : null; }) | |
.call(cell) | |
.text(function(d) { return d.children ? null : d.name; }); | |
function cell() { | |
this | |
.style("left", function(d) { return d.x + "px"; }) | |
.style("top", function(d) { return d.y + "px"; }) | |
.style("width", function(d) { return Math.max(0, d.dx - 1) + "px"; }) | |
.style("height", function(d) { return Math.max(0, d.dy - 1) + "px"; }); | |
} | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 305735, | |
"id" : "-3974601144822760366", | |
"minute" : 1346251623.030315, | |
"name" : "20120225 181005", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 335666, | |
"id" : "-3502845128881303090", | |
"minute" : 1346251623.993445, | |
"name" : "20120225 180428", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 58745, | |
"id" : "7385827981983478450", | |
"minute" : 1346251624.552915, | |
"name" : "20120225 175928", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 61995, | |
"id" : "-3245505077607333318", | |
"minute" : 1346251625.104193, | |
"name" : "20120212 113219", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 661890, | |
"id" : "-2281571012025288826", | |
"minute" : 1346262029.671684, | |
"name" : "Vertigo (If it's a Crime)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 331937, | |
"id" : "-3324765232696960045", | |
"minute" : 1346262691.713171, | |
"name" : "I Feel Evil Creeping In", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 331937, | |
"id" : "-3324765232696960045", | |
"minute" : 1346263016.586514, | |
"name" : "I Feel Evil Creeping In", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 331937, | |
"id" : "-3324765232696960045", | |
"minute" : 1346266954.752899, | |
"name" : "I Feel Evil Creeping In", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 467330, | |
"id" : "2292684146104930966", | |
"minute" : 1346266961.945868, | |
"name" : "To a Bond", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 420519, | |
"id" : "6656426696211252974", | |
"minute" : 1346266965.385993, | |
"name" : "In the Rushes", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 327026, | |
"id" : "6318638875724180313", | |
"minute" : 1346266966.381591, | |
"name" : "Life In Jail", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 195030, | |
"id" : "237034892677769801", | |
"minute" : 1346266968.036729, | |
"name" : "Creeper", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 246204, | |
"id" : "-2379371075907283665", | |
"minute" : 1346266969.451946, | |
"name" : "Pieces of You", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 214021, | |
"id" : "-5153997959900749187", | |
"minute" : 1346266981.460683, | |
"name" : "Inch Of Dust", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 287268, | |
"id" : "6367535945888915547", | |
"minute" : 1346267195.521031, | |
"name" : "Swept Inside", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 73116, | |
"id" : "-688107584377038783", | |
"minute" : 1346267482.774662, | |
"name" : "In Evening Air", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 223712, | |
"id" : "-469461956490237872", | |
"minute" : 1346267555.778267, | |
"name" : "An Apology", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2562799899758683296", | |
"minute" : 1346267779.455749, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2562799899758683296", | |
"minute" : 1346267890.836982, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2562799899758683296", | |
"minute" : 1346267944.442375, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "9032608747272737927", | |
"minute" : 1346268030.067923, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 273554, | |
"id" : "-4242164038839891521", | |
"minute" : 1346268345.548483, | |
"name" : "Walking Through That Door", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Greatest", | |
"artist" : "Cat Power", | |
"duration" : 104515, | |
"id" : "-6717937994889595878", | |
"minute" : 1346268619.100433, | |
"name" : "Islands", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346268723.500664, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 214021, | |
"id" : "-5153997959900749187", | |
"minute" : 1346275606.080058, | |
"name" : "Inch Of Dust", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 287268, | |
"id" : "6367535945888915547", | |
"minute" : 1346275606.640599, | |
"name" : "Swept Inside", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 73116, | |
"id" : "-688107584377038783", | |
"minute" : 1346275606.830971, | |
"name" : "In Evening Air", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 73116, | |
"id" : "-688107584377038783", | |
"minute" : 1346275617.504859, | |
"name" : "In Evening Air", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 73116, | |
"id" : "-688107584377038783", | |
"minute" : 1346277527.965869, | |
"name" : "In Evening Air", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 223712, | |
"id" : "-469461956490237872", | |
"minute" : 1346277591.175096, | |
"name" : "An Apology", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2562799899758683296", | |
"minute" : 1346277814.890318, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "9032608747272737927", | |
"minute" : 1346278008.829631, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "9032608747272737927", | |
"minute" : 1346278090.442956, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "9032608747272737927", | |
"minute" : 1346286430.556051, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 420519, | |
"id" : "6656426696211252974", | |
"minute" : 1346287486.587905, | |
"name" : "In the Rushes", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 327026, | |
"id" : "6318638875724180313", | |
"minute" : 1346287907.132552, | |
"name" : "Life In Jail", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 311222, | |
"id" : "-4819613080993466061", | |
"minute" : 1346288234.099712, | |
"name" : "Kids Don't Know Shit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 195030, | |
"id" : "237034892677769801", | |
"minute" : 1346288545.322174, | |
"name" : "Creeper", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 195030, | |
"id" : "237034892677769801", | |
"minute" : 1346288689.865919, | |
"name" : "Creeper", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 195030, | |
"id" : "237034892677769801", | |
"minute" : 1346289090.955091, | |
"name" : "Creeper", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 275200, | |
"id" : "-7509617884469144130", | |
"minute" : 1346289141.551397, | |
"name" : "Abominable Snow", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 275200, | |
"id" : "-7509617884469144130", | |
"minute" : 1346289290.907517, | |
"name" : "Abominable Snow", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 275200, | |
"id" : "-7509617884469144130", | |
"minute" : 1346291415.358718, | |
"name" : "Abominable Snow", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 203128, | |
"id" : "-1386833836073876900", | |
"minute" : 1346291541.859683, | |
"name" : "J'aime Vous Voire Quitter", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 246204, | |
"id" : "-2379371075907283665", | |
"minute" : 1346291744.942557, | |
"name" : "Pieces of You", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 338703, | |
"id" : "2280319259278774489", | |
"minute" : 1346291991.101796, | |
"name" : "The Arm", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 54047, | |
"id" : "8206116630847087238", | |
"minute" : 1346292329.72848, | |
"name" : "(Untitled)", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 274677, | |
"id" : "-9139804255821686626", | |
"minute" : 1346292383.740841, | |
"name" : "Grease", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 196963, | |
"id" : "-9154046676805508353", | |
"minute" : 1346292658.371167, | |
"name" : "Tybee Island", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 246465, | |
"id" : "6972909346472039851", | |
"minute" : 1346292855.261553, | |
"name" : "Balance", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 379428, | |
"id" : "-9138172969495485953", | |
"minute" : 1346293101.688597, | |
"name" : "Close To None", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 245838, | |
"id" : "631613386929846709", | |
"minute" : 1346293481.065672, | |
"name" : "Give Us The Wind", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 344267, | |
"id" : "1680729443600613931", | |
"minute" : 1346293726.842967, | |
"name" : "Where I Found You", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 88398, | |
"id" : "1318311892896284090", | |
"minute" : 1346294071.060665, | |
"name" : "Open", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 195239, | |
"id" : "2061709012687216199", | |
"minute" : 1346294159.401381, | |
"name" : "The Great Fire", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 238942, | |
"id" : "-5580499875436572955", | |
"minute" : 1346294354.590967, | |
"name" : "Before The Bridge", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 291526, | |
"id" : "-1183402847677178919", | |
"minute" : 1346294593.52042, | |
"name" : "On The Water", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 291526, | |
"id" : "-1183402847677178919", | |
"minute" : 1346294601.155178, | |
"name" : "On The Water", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346336331.67335, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346336331.724747, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Power", | |
"artist" : "Q And Not U", | |
"duration" : 280581, | |
"id" : "-6286672699228683342", | |
"minute" : 1346342562.523629, | |
"name" : "Tag-Tag", | |
"rating" : null | |
}, | |
{ | |
"album" : "Power", | |
"artist" : "Q And Not U", | |
"duration" : 167262, | |
"id" : "-46561523502245648", | |
"minute" : 1346342567.455031, | |
"name" : "X-Polynation", | |
"rating" : null | |
}, | |
{ | |
"album" : "Histories", | |
"artist" : "Pueblo", | |
"duration" : 145031, | |
"id" : "-1549543746759934420", | |
"minute" : 1346342569.966259, | |
"name" : "Lungs", | |
"rating" : null | |
}, | |
{ | |
"album" : "Histories", | |
"artist" : "Pueblo", | |
"duration" : 160966, | |
"id" : "-6257769950297465667", | |
"minute" : 1346342715.116518, | |
"name" : "2020202020", | |
"rating" : null | |
}, | |
{ | |
"album" : "Histories", | |
"artist" : "Pueblo", | |
"duration" : 214073, | |
"id" : "1911634013546298953", | |
"minute" : 1346342875.949732, | |
"name" : "Come Summer", | |
"rating" : null | |
}, | |
{ | |
"album" : "Thomas Macwright's Album", | |
"artist" : "Pueblo", | |
"duration" : 208483, | |
"id" : "-3710953027381435039", | |
"minute" : 1346342906.091979, | |
"name" : "Lies", | |
"rating" : null | |
}, | |
{ | |
"album" : "Histories", | |
"artist" : "Pueblo", | |
"duration" : 427833, | |
"id" : "5679219683316292511", | |
"minute" : 1346343114.632598, | |
"name" : "inin (live)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Histories", | |
"artist" : "Pueblo", | |
"duration" : 427833, | |
"id" : "5679219683316292511", | |
"minute" : 1346343532.831351, | |
"name" : "inin (live)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Histories", | |
"artist" : "Pueblo", | |
"duration" : 427833, | |
"id" : "5679219683316292511", | |
"minute" : 1346362680.870659, | |
"name" : "inin (live)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Histories", | |
"artist" : "Pueblo", | |
"duration" : 160966, | |
"id" : "-6257769950297465667", | |
"minute" : 1346362684.468047, | |
"name" : "2020202020", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : "Promised You A Miracle (12\")", | |
"duration" : 296751, | |
"id" : "-1753864208176785294", | |
"minute" : 1346362688.091245, | |
"name" : "Simple Minds", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Presidents Of The United States Of America", | |
"artist" : "The Presidents Of The United States Of America", | |
"duration" : 196884, | |
"id" : "-2068852480746619073", | |
"minute" : 1346362984.862269, | |
"name" : "Candy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 286484, | |
"id" : "588337019545478664", | |
"minute" : 1346362990.718754, | |
"name" : "Machine Gun", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 93283, | |
"id" : "-2497899767232699711", | |
"minute" : 1346363277.316129, | |
"name" : "Deep Water", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 387840, | |
"id" : "2221526992069623379", | |
"minute" : 1346363370.59457, | |
"name" : "We Carry On", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 210625, | |
"id" : "-6234882523104896865", | |
"minute" : 1346363758.382382, | |
"name" : "Plastic", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 271020, | |
"id" : "2339251517488329095", | |
"minute" : 1346363968.986357, | |
"name" : "The Rip", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 271020, | |
"id" : "2339251517488329095", | |
"minute" : 1346364138.395261, | |
"name" : "The Rip", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 199653, | |
"id" : "-7229526940537446795", | |
"minute" : 1346364239.975768, | |
"name" : "Nylon Smile", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 238785, | |
"id" : "-7947563917020026859", | |
"minute" : 1346364439.576509, | |
"name" : "Hunter", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 300826, | |
"id" : "-6216646433887106808", | |
"minute" : 1346364678.353136, | |
"name" : "Silence", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 300826, | |
"id" : "-6216646433887106808", | |
"minute" : 1346364728.349947, | |
"name" : "Silence", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346367780.934299, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346367780.947168, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 141426, | |
"id" : "2905818003222880241", | |
"minute" : 1346372310.837695, | |
"name" : "Track 01", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 165982, | |
"id" : "8851441316989561858", | |
"minute" : 1346372452.361063, | |
"name" : "heavy metal ROUGH ", | |
"rating" : null | |
}, | |
{ | |
"album" : "Mastered v1 Redbook", | |
"artist" : "Teen Mom", | |
"duration" : 167648, | |
"id" : "8635253386870104039", | |
"minute" : 1346372480.646081, | |
"name" : "Heavy Metal", | |
"rating" : null | |
}, | |
{ | |
"album" : "Mastered v1 Redbook", | |
"artist" : "Teen Mom", | |
"duration" : 167648, | |
"id" : "8635253386870104039", | |
"minute" : 1346372642.209466, | |
"name" : "Heavy Metal", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346440175.032365, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346449967.727365, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 141426, | |
"id" : "2905818003222880241", | |
"minute" : 1346455858.091558, | |
"name" : "Track 01", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 247771, | |
"id" : "3401089925962372195", | |
"minute" : 1346455867.750779, | |
"name" : "First Impressions", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 390896, | |
"id" : "5383778067920820882", | |
"minute" : 1346456115.590195, | |
"name" : "Druid Fluid", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 282827, | |
"id" : "-7625452987721976113", | |
"minute" : 1346456506.484766, | |
"name" : "Butterfly's Day Out", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 346122, | |
"id" : "-8996609843670661471", | |
"minute" : 1346456789.263035, | |
"name" : "Mama", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 121521, | |
"id" : "8694295697631329511", | |
"minute" : 1346457135.324468, | |
"name" : "Chief Sitting In The Rain", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 347324, | |
"id" : "3438060502655149696", | |
"minute" : 1346457256.774437, | |
"name" : "Appalachia Waltz", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 184346, | |
"id" : "8246129824157988747", | |
"minute" : 1346457604.02612, | |
"name" : "The Green Groves Of Erin\/The Flowers Of Red Hill", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 521848, | |
"id" : "8056248699481689245", | |
"minute" : 1346457788.336052, | |
"name" : "Autumn Sweater (Remix By Kevin Shields)", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 521848, | |
"id" : "8056248699481689245", | |
"minute" : 1346457804.958431, | |
"name" : "Autumn Sweater (Remix By Kevin Shields)", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 293773, | |
"id" : "329329296777497732", | |
"minute" : 1346458310.165308, | |
"name" : "Weather Sky", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 185547, | |
"id" : "6403510673729155768", | |
"minute" : 1346458603.921127, | |
"name" : "Decora (Live Acoustic)", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 185547, | |
"id" : "6403510673729155768", | |
"minute" : 1346458682.903124, | |
"name" : "Decora (Live Acoustic)", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 219324, | |
"id" : "-1619959137479156605", | |
"minute" : 1346458789.444027, | |
"name" : "Pencil Test", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 271281, | |
"id" : "-2750322635155064618", | |
"minute" : 1346459008.782011, | |
"name" : "Stay Away From Heaven", | |
"rating" : null | |
}, | |
{ | |
"album" : "Prisoners of Love: A Smattering Of Scintillating Senescent Songs 1985-2003 plus A Smattering Of Outtakes And Rarities", | |
"artist" : "Yo La Tengo", | |
"duration" : 319738, | |
"id" : "-7277501887221244451", | |
"minute" : 1346459280.017559, | |
"name" : "Autumn Sweater", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 708675, | |
"id" : "-7906978859332623186", | |
"minute" : 1346459599.709837, | |
"name" : "The Story Of Yo La Tango", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 258507, | |
"id" : "4995366720917190050", | |
"minute" : 1346460308.376623, | |
"name" : "Point And Shoot", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 220055, | |
"id" : "2212507536322111005", | |
"minute" : 1346460566.896207, | |
"name" : "Song For Mahila", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 184032, | |
"id" : "2477975928921610682", | |
"minute" : 1346460786.921586, | |
"name" : "The Weakest Part", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 181812, | |
"id" : "152330340057023919", | |
"minute" : 1346460970.892481, | |
"name" : "Watch Out for Me Ronnie", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 195787, | |
"id" : "-2167539614426681045", | |
"minute" : 1346461152.739, | |
"name" : "I Should Have Know Better", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 531356, | |
"id" : "9053586954491417003", | |
"minute" : 1346461348.450139, | |
"name" : "Daphnia", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 196362, | |
"id" : "-7504922232535050979", | |
"minute" : 1346461879.829859, | |
"name" : "Sometimes I Don't Get You", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 310439, | |
"id" : "-4842639332272828076", | |
"minute" : 1346462076.189391, | |
"name" : "The Room Got Heavy", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 276793, | |
"id" : "2830310071930554714", | |
"minute" : 1346462386.60574, | |
"name" : "The Race Is On Again", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 268120, | |
"id" : "1421975904588418369", | |
"minute" : 1346462663.395616, | |
"name" : "Black Flowers", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 245864, | |
"id" : "-3178441818857413289", | |
"minute" : 1346462931.461365, | |
"name" : "Mr. Tough", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 254223, | |
"id" : "-292542777740686024", | |
"minute" : 1346463177.313821, | |
"name" : "I Feel Like Going Home", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 182622, | |
"id" : "-1405098258844295198", | |
"minute" : 1346463431.495069, | |
"name" : "Beanbag Chair", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 647000, | |
"id" : "2191064287472661113", | |
"minute" : 1346463614.154119, | |
"name" : "Pass The Hatchet, I Think I'm Goodkind", | |
"rating" : null | |
}, | |
{ | |
"album" : "I Am Not Afraid Of You And I Will Beat Your Ass", | |
"artist" : "Yo La Tengo", | |
"duration" : 647000, | |
"id" : "2191064287472661113", | |
"minute" : 1346463805.855816, | |
"name" : "Pass The Hatchet, I Think I'm Goodkind", | |
"rating" : null | |
}, | |
{ | |
"album" : "Fragile", | |
"artist" : "YES", | |
"duration" : 182804, | |
"id" : "-2821886839666490464", | |
"minute" : 1346463814.706054, | |
"name" : "Mood for a day", | |
"rating" : null | |
}, | |
{ | |
"album" : "Odd Blood", | |
"artist" : "Yeasayer", | |
"duration" : 160600, | |
"id" : "6798724973051186788", | |
"minute" : 1346463815.375409, | |
"name" : "Grizelda", | |
"rating" : null | |
}, | |
{ | |
"album" : "Odd Blood", | |
"artist" : "Yeasayer", | |
"duration" : 277786, | |
"id" : "-5609203807614605826", | |
"minute" : 1346463976.150975, | |
"name" : "Mondegreen", | |
"rating" : null | |
}, | |
{ | |
"album" : "Odd Blood", | |
"artist" : "Yeasayer", | |
"duration" : 155193, | |
"id" : "-5965692106219897482", | |
"minute" : 1346464253.89576, | |
"name" : "Strange Reunions", | |
"rating" : null | |
}, | |
{ | |
"album" : "Odd Blood", | |
"artist" : "Yeasayer", | |
"duration" : 228466, | |
"id" : "4974664240752773049", | |
"minute" : 1346464409.057712, | |
"name" : "Rome", | |
"rating" : null | |
}, | |
{ | |
"album" : "Odd Blood", | |
"artist" : "Yeasayer", | |
"duration" : 300591, | |
"id" : "613779881444615390", | |
"minute" : 1346464637.547964, | |
"name" : "Love Me Girl", | |
"rating" : null | |
}, | |
{ | |
"album" : "Odd Blood", | |
"artist" : "Yeasayer", | |
"duration" : 323604, | |
"id" : "6892384125753316921", | |
"minute" : 1346464937.220641, | |
"name" : "O.N.E.", | |
"rating" : null | |
}, | |
{ | |
"album" : "Odd Blood", | |
"artist" : "Yeasayer", | |
"duration" : 323604, | |
"id" : "6892384125753316921", | |
"minute" : 1346465117.309634, | |
"name" : "O.N.E.", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 93283, | |
"id" : "-2497899767232699711", | |
"minute" : 1346505762.233174, | |
"name" : "Deep Water", | |
"rating" : null | |
}, | |
{ | |
"album" : "Disintegration", | |
"artist" : "The Cure", | |
"duration" : 562442, | |
"id" : "-3270573144234445899", | |
"minute" : 1346505855.627285, | |
"name" : "The Same Deep Water As You", | |
"rating" : null | |
}, | |
{ | |
"album" : "Disintegration", | |
"artist" : "The Cure", | |
"duration" : 562442, | |
"id" : "-3270573144234445899", | |
"minute" : 1346505856.785363, | |
"name" : "The Same Deep Water As You", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 286484, | |
"id" : "588337019545478664", | |
"minute" : 1346505866.596035, | |
"name" : "Machine Gun", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 387840, | |
"id" : "2221526992069623379", | |
"minute" : 1346505870.835891, | |
"name" : "We Carry On", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 387840, | |
"id" : "2221526992069623379", | |
"minute" : 1346505879.693167, | |
"name" : "We Carry On", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 387840, | |
"id" : "2221526992069623379", | |
"minute" : 1346505883.481805, | |
"name" : "We Carry On", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 166739, | |
"id" : "-1375905348016641526", | |
"minute" : 1346505895.042439, | |
"name" : "Misty Mountain", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 357433, | |
"id" : "-8792420531458709214", | |
"minute" : 1346505898.326893, | |
"name" : "Dancing Gods", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 220943, | |
"id" : "-5914581677380826217", | |
"minute" : 1346505901.382122, | |
"name" : "Dust", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 161280, | |
"id" : "7228241914763156321", | |
"minute" : 1346505904.065217, | |
"name" : "Whirly-Bird", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 210285, | |
"id" : "-584718600906996404", | |
"minute" : 1346505905.891066, | |
"name" : "Velvet Cave", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 247954, | |
"id" : "-1045046797185837825", | |
"minute" : 1346505911.562248, | |
"name" : "Program", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 251611, | |
"id" : "615424765854860427", | |
"minute" : 1346505913.404624, | |
"name" : "Lovefingers", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 176013, | |
"id" : "-3995315529453145653", | |
"minute" : 1346505915.933497, | |
"name" : "Seagreen Serenades", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 169613, | |
"id" : "-8763734798462061885", | |
"minute" : 1346505916.434038, | |
"name" : "Oscillations", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 169613, | |
"id" : "-8763734798462061885", | |
"minute" : 1346505985.967432, | |
"name" : "Oscillations", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 161280, | |
"id" : "7228241914763156321", | |
"minute" : 1346506038.619182, | |
"name" : "Whirly-Bird", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 166739, | |
"id" : "-1375905348016641526", | |
"minute" : 1346506043.141905, | |
"name" : "Misty Mountain", | |
"rating" : null | |
}, | |
{ | |
"album" : "Silver Apples", | |
"artist" : "Silver Apples", | |
"duration" : 166739, | |
"id" : "-1375905348016641526", | |
"minute" : 1346506048.42835, | |
"name" : "Misty Mountain", | |
"rating" : null | |
}, | |
{ | |
"album" : "All Eyez on Me Disc 1", | |
"artist" : "2 Pac", | |
"duration" : 386037, | |
"id" : "-6585140443436605257", | |
"minute" : 1346506080.979895, | |
"name" : "California Love (Remix)", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Zombies", | |
"artist" : "The Zombies", | |
"duration" : 130037, | |
"id" : "-2401725229827366265", | |
"minute" : 1346506391.879559, | |
"name" : "Tell Her No", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Zombies", | |
"artist" : "The Zombies", | |
"duration" : 130037, | |
"id" : "-2401725229827366265", | |
"minute" : 1346506517.044566, | |
"name" : "Tell Her No", | |
"rating" : null | |
}, | |
{ | |
"album" : "B-Sides and Rarities", | |
"artist" : "Cake", | |
"duration" : 176013, | |
"id" : "5056066986321346781", | |
"minute" : 1346506522.593573, | |
"name" : "02 Ruby, Don't Take Your To Town", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : null, | |
"minute" : 1346506698.739554, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "A Girl Called Dusty", | |
"artist" : "Dusty Springfield", | |
"duration" : 187402, | |
"id" : "-1249309659743180393", | |
"minute" : 1346506705.30811, | |
"name" : "Twenty-Four Hours from Tulsa", | |
"rating" : null | |
}, | |
{ | |
"album" : "Will The Circle Be Unbroken - Volume 1 (CD 1\/2)", | |
"artist" : "Nitty Gritty Dirt Band", | |
"duration" : 267049, | |
"id" : "-4858539634488084112", | |
"minute" : 1346506838.216106, | |
"name" : "Keep On The Sunny Side", | |
"rating" : null | |
}, | |
{ | |
"album" : "Young Forever", | |
"artist" : "Aberfeldy", | |
"duration" : 179774, | |
"id" : "-7811388679854828507", | |
"minute" : 1346506986.825429, | |
"name" : "A Friend Like You", | |
"rating" : null | |
}, | |
{ | |
"album" : "Young Forever", | |
"artist" : "Aberfeldy", | |
"duration" : 197459, | |
"id" : "5914754540915337459", | |
"minute" : 1346507100.141719, | |
"name" : "Vegetarian Restaurant", | |
"rating" : null | |
}, | |
{ | |
"album" : "Young Forever", | |
"artist" : "Aberfeldy", | |
"duration" : 150491, | |
"id" : "4359232610434390542", | |
"minute" : 1346507124.97398, | |
"name" : "Love Is An Arrow", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Best Party Ever", | |
"artist" : "The Boy Least Likely To", | |
"duration" : 258716, | |
"id" : "9150954917782911084", | |
"minute" : 1346507191.227236, | |
"name" : "I'm Glad I Hitched My Apple Wagon To Your Star", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : "Grover", | |
"duration" : 303647, | |
"id" : "-6043962509754215548", | |
"minute" : 1346507297.797329, | |
"name" : "She's a Hit on Me", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 212244, | |
"id" : "3987372124655998114", | |
"minute" : 1346507366.499018, | |
"name" : "Elmo's Wish", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 212244, | |
"id" : "3987372124655998114", | |
"minute" : 1346507426.359547, | |
"name" : "Elmo's Wish", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 641750, | |
"id" : "2375851241683564865", | |
"minute" : 1346775963.446895, | |
"name" : "Emotion Road", | |
"rating" : null | |
}, | |
{ | |
"album" : "Soul Journey", | |
"artist" : "Gillian Welch", | |
"duration" : 256078, | |
"id" : "7459819643874155142", | |
"minute" : 1346775964.001674, | |
"name" : "Look At Miss Ohio", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 641750, | |
"id" : "2375851241683564865", | |
"minute" : 1346776220.1651, | |
"name" : "Emotion Road", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 641750, | |
"id" : "2375851241683564865", | |
"minute" : 1346776475.259816, | |
"name" : "Emotion Road", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 191007, | |
"id" : "3787035627263250772", | |
"minute" : 1346776556.165468, | |
"name" : "McCoojah & Kizmit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 191007, | |
"id" : "3787035627263250772", | |
"minute" : 1346776556.366756, | |
"name" : "McCoojah & Kizmit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 255425, | |
"id" : "2823033567792651955", | |
"minute" : 1346776747.575652, | |
"name" : "Brave New Christmas", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 221413, | |
"id" : "1413533742794297295", | |
"minute" : 1346777003.039084, | |
"name" : "Bunz Therapy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 245368, | |
"id" : "-8252220262358410024", | |
"minute" : 1346777224.474435, | |
"name" : "Alligator Missions", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 275774, | |
"id" : "501496527634621330", | |
"minute" : 1346777469.909548, | |
"name" : "Super Plus Ice", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 210128, | |
"id" : "-7239727814019447546", | |
"minute" : 1346777745.718425, | |
"name" : "Building Rockets", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 212244, | |
"id" : "3987372124655998114", | |
"minute" : 1346777955.83562, | |
"name" : "Elmo's Wish", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 291291, | |
"id" : "-8671232750720721563", | |
"minute" : 1346778168.149772, | |
"name" : "Shadow Grip", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 291291, | |
"id" : "-8671232750720721563", | |
"minute" : 1346778280.744069, | |
"name" : "Shadow Grip", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 291291, | |
"id" : "87a997c1608edd65", | |
"minute" : 1346778753.257739, | |
"name" : "Shadow Grip", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bloodsongs", | |
"artist" : "Gil Mantera's Party Dream", | |
"duration" : 257593, | |
"id" : "a9ac29171262499d", | |
"minute" : 1346778755.017952, | |
"name" : "Buffalo Tears", | |
"rating" : null | |
}, | |
{ | |
"album" : "Various", | |
"artist" : "The Get Up Kids", | |
"duration" : 204016, | |
"id" : "1595599ae038f18a", | |
"minute" : 1346778755.5667, | |
"name" : "Close To Me", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : "Gerard Abate", | |
"duration" : 175046, | |
"id" : "fe653d31f8b02dfe", | |
"minute" : 1346778959.751591, | |
"name" : "10-17 - When Our Love Goes", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : "Gerard Abate", | |
"duration" : 175046, | |
"id" : "-115618930593092098", | |
"minute" : 1346779095.199909, | |
"name" : "10-17 - When Our Love Goes", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : "Gerard Abate", | |
"duration" : 257332, | |
"id" : "-731880698421301662", | |
"minute" : 1346779096.305007, | |
"name" : "04-11-16 - We Fall Through the Groun", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : "Gerard Abate", | |
"duration" : 181890, | |
"id" : "5937226443235827925", | |
"minute" : 1346779096.77788, | |
"name" : "04-11-07 - Burning Thought (so-so)", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : "George Thorogood", | |
"duration" : 294739, | |
"id" : "-7654537447294596061", | |
"minute" : 1346779118.004695, | |
"name" : "Bad To The Bone", | |
"rating" : null | |
}, | |
{ | |
"album" : "Listen, 5th Edition CD 6", | |
"artist" : "George Gershwin", | |
"duration" : 84897, | |
"id" : "-8577311893077064308", | |
"minute" : 1346779118.363298, | |
"name" : "Prelude No. 1", | |
"rating" : null | |
}, | |
{ | |
"album" : "Listen, 5th Edition CD 6", | |
"artist" : "George Gershwin", | |
"duration" : 84897, | |
"id" : "88F744471D68858C", | |
"minute" : 1346779322.973008, | |
"name" : "Prelude No. 1", | |
"rating" : null | |
}, | |
{ | |
"album" : "Mahoney Driving Mix Vol. 1", | |
"artist" : "George Baker Selection", | |
"duration" : 197623, | |
"id" : "B456028789ECB7D1", | |
"minute" : 1346779323.727188, | |
"name" : "Little Green Bag", | |
"rating" : null | |
}, | |
{ | |
"album" : "Listen, 5th Edition (Disc 2)", | |
"artist" : "Georg Friedrich Händel", | |
"duration" : 228675, | |
"id" : "EA0DB26C77823C31", | |
"minute" : 1346779324.008977, | |
"name" : "Messiah, \"Hallelujah Chorus\"", | |
"rating" : null | |
}, | |
{ | |
"album" : "Listen, 5th Edition (Disc 2)", | |
"artist" : "Georg Friedrich Händel", | |
"duration" : 228675, | |
"id" : "EA0DB26C77823C31", | |
"minute" : 1346779325.563255, | |
"name" : "Messiah, \"Hallelujah Chorus\"", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 411141, | |
"id" : "BF59FFC6BEC42861", | |
"minute" : 1346782918.171784, | |
"name" : "God_", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 112848, | |
"id" : "20A629E55F667EFE", | |
"minute" : 1346783329.505731, | |
"name" : "Undeclared", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 374622, | |
"id" : "B8C28C93ED3987C3", | |
"minute" : 1346783442.376437, | |
"name" : "The Season", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 244114, | |
"id" : "506743A07BEF026C", | |
"minute" : 1346783817.029772, | |
"name" : "Ashley", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 374282, | |
"id" : "95B681B47E673214", | |
"minute" : 1346784061.166405, | |
"name" : "Jodi", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 168594, | |
"id" : "E0BF4BA79CDEF91F", | |
"minute" : 1346784435.576135, | |
"name" : "Park Song", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 374778, | |
"id" : "AEAE52FAC569F967", | |
"minute" : 1346784604.129923, | |
"name" : "Paint the Rust", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 89129, | |
"id" : "4D8D85DAE24539CA", | |
"minute" : 1346784979.024539, | |
"name" : "It's That Time Again", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 224130, | |
"id" : "C219C0667FA0BD4D", | |
"minute" : 1346785068.110924, | |
"name" : "Winter", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 441965, | |
"id" : "A6D0DEC77CB9668A", | |
"minute" : 1346785292.265173, | |
"name" : "Joe's Waltz", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 282592, | |
"id" : "215CCF8F2A189D73", | |
"minute" : 1346785734.29825, | |
"name" : "Fools", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 55066, | |
"id" : "E611AC9AA9FFB5D3", | |
"minute" : 1346786016.911201, | |
"name" : "Eyelids", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 280163, | |
"id" : "81EE53D0EB163462", | |
"minute" : 1346786071.959849, | |
"name" : "Red and Purple", | |
"rating" : null | |
}, | |
{ | |
"album" : "Visiter", | |
"artist" : "The Dodos", | |
"duration" : 128888, | |
"id" : "692A0F0B3FE4834A", | |
"minute" : 1346786352.152823, | |
"name" : "Walking", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 376659, | |
"id" : "955DC14F892C9135", | |
"minute" : 1346786481.006997, | |
"name" : "A Time To Die", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 244062, | |
"id" : "D80A9D9792360EE8", | |
"minute" : 1346786857.728801, | |
"name" : "Acorn Factory", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 383738, | |
"id" : "93F4B80C51EE6B99", | |
"minute" : 1346787101.840383, | |
"name" : "Troll Nacht", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 327862, | |
"id" : "B73D7A3861260CD9", | |
"minute" : 1346787485.66518, | |
"name" : "Two Medicines", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 279353, | |
"id" : "F1E936BCC2676DB6", | |
"minute" : 1346787813.558248, | |
"name" : "This Is A Business", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 287634, | |
"id" : "55AF39EDB3F8FA4C", | |
"minute" : 1346788092.965474, | |
"name" : "The Strums", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 258664, | |
"id" : "E4B5E7727F182E78", | |
"minute" : 1346788380.683159, | |
"name" : "Fables", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 279902, | |
"id" : "C7CE851C3C77788F", | |
"minute" : 1346788639.357402, | |
"name" : "Longform", | |
"rating" : null | |
}, | |
{ | |
"album" : "Time To Die", | |
"artist" : "The Dodos", | |
"duration" : 319451, | |
"id" : "B86352149F117809", | |
"minute" : 1346788919.338352, | |
"name" : "Small Deaths", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 261590, | |
"id" : "E2F93B81FC922F16", | |
"minute" : 1346789238.850466, | |
"name" : "Don't Stop", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 284473, | |
"id" : "460D79AF212102F6", | |
"minute" : 1346789500.438233, | |
"name" : "Companions", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 285779, | |
"id" : "FFB7EA189C0F74E3", | |
"minute" : 1346789785.04753, | |
"name" : "Hunting Season", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 276062, | |
"id" : "85306EA8DAB1D871", | |
"minute" : 1346790070.921645, | |
"name" : "When Will You Go", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 225567, | |
"id" : "1773C4A884D98AD3", | |
"minute" : 1346790346.974754, | |
"name" : "Don't Try And Hide It", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 191503, | |
"id" : "5A3CD48B0925BFB", | |
"minute" : 1346790572.63694, | |
"name" : "Sleep", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 370024, | |
"id" : "F0405B27DA47CF50", | |
"minute" : 1346790764.175833, | |
"name" : "Good", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 363650, | |
"id" : "5C4312C157955FD4", | |
"minute" : 1346791134.201517, | |
"name" : "Going Under", | |
"rating" : null | |
}, | |
{ | |
"album" : "No Color", | |
"artist" : "Dodos", | |
"duration" : 262034, | |
"id" : "C7B3B95BBF33CD0A", | |
"minute" : 1346791497.978448, | |
"name" : "Black Night", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 240640, | |
"id" : "238B5D2FFECFAE92", | |
"minute" : 1346791760.12224, | |
"name" : "In Mind", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 518844, | |
"id" : "2306A1EF54B84E99", | |
"minute" : 1346792000.79597, | |
"name" : "Executioner Blues", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 216816, | |
"id" : "6C7832772BE25F8F", | |
"minute" : 1346792519.750366, | |
"name" : "You, You’re Awesome", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 318432, | |
"id" : "A0C981CE2D8B02A", | |
"minute" : 1346792736.609877, | |
"name" : "Herstory Of Glory", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 307382, | |
"id" : "E51DD71474E35FA4", | |
"minute" : 1346793055.138137, | |
"name" : "A Tender History In Rust", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 303020, | |
"id" : "3556D6F763FFDC81", | |
"minute" : 1346793362.541206, | |
"name" : "The Universe!", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 548257, | |
"id" : "F06AE3CAE48BCBA4", | |
"minute" : 1346793665.639075, | |
"name" : "A With Living", | |
"rating" : null | |
}, | |
{ | |
"album" : "You, You're A History In Rust", | |
"artist" : "Do Make Say Think", | |
"duration" : 456071, | |
"id" : "4CA25F22F741F168", | |
"minute" : 1346794213.970758, | |
"name" : "Bound To Be That Way", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Other Truths", | |
"artist" : "Do Make Say Think", | |
"duration" : 489038, | |
"id" : "DF06325C9BB2DBC5", | |
"minute" : 1346794670.244913, | |
"name" : "04-Think", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Other Truths", | |
"artist" : "Do Make Say Think", | |
"duration" : 764133, | |
"id" : "487100AF7E5AA047", | |
"minute" : 1346795159.382996, | |
"name" : "03-Say", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Other Truths", | |
"artist" : "Do Make Say Think", | |
"duration" : 729547, | |
"id" : "57D233085856AEDB", | |
"minute" : 1346795923.804904, | |
"name" : "02-Make", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Other Truths", | |
"artist" : "Do Make Say Think", | |
"duration" : 640078, | |
"id" : "E66548A419E38A2D", | |
"minute" : 1346796653.618622, | |
"name" : "01-Do", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1346797198.64256, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1346797198.653975, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1346868017.630309, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 154932, | |
"id" : "AB1DA46C83A9B638", | |
"minute" : 1346868175.205488, | |
"name" : "The Radio's Hot Sun", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 337162, | |
"id" : "B75F65997A09CB0E", | |
"minute" : 1346868330.324363, | |
"name" : "Dumb Animals", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 180767, | |
"id" : "35E0E4F36FC32A91", | |
"minute" : 1346868667.647294, | |
"name" : "Dead + Rural", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 321201, | |
"id" : "88CCB898C5D7CB8C", | |
"minute" : 1346868848.398067, | |
"name" : "Sing! Captain", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 180192, | |
"id" : "B722E596E061D2F9", | |
"minute" : 1346869169.718456, | |
"name" : "Cannot Get Started", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 270262, | |
"id" : "B7940529B3B2D783", | |
"minute" : 1346869349.941435, | |
"name" : "Snakes on the Ladder", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 298631, | |
"id" : "89CA6B7E0D5C86B2", | |
"minute" : 1346869620.311985, | |
"name" : "Handsome Furs Hate This City", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 215797, | |
"id" : "AF952E57F7D3488F", | |
"minute" : 1346869918.980849, | |
"name" : "Hearts of Iron", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 236643, | |
"id" : "94DFAB3CCD16B399", | |
"minute" : 1346870134.939376, | |
"name" : "What We Had", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1346870371.551608, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 154932, | |
"id" : "AB1DA46C83A9B638", | |
"minute" : 1346870541.199187, | |
"name" : "The Radio's Hot Sun", | |
"rating" : null | |
}, | |
{ | |
"album" : "Sound Kapital", | |
"artist" : "Handsome Furs", | |
"duration" : 225776, | |
"id" : "920864084B8E3982", | |
"minute" : 1346870548.813526, | |
"name" : "Memories of the Future", | |
"rating" : null | |
}, | |
{ | |
"album" : "Sound Kapital", | |
"artist" : "Handsome Furs", | |
"duration" : 246726, | |
"id" : "30F4BE160C130499", | |
"minute" : 1346870774.711827, | |
"name" : "Bury Me Standing", | |
"rating" : null | |
}, | |
{ | |
"album" : "Sound Kapital", | |
"artist" : "Handsome Furs", | |
"duration" : 198870, | |
"id" : "599562B9ADED6775", | |
"minute" : 1346871021.542343, | |
"name" : "Damage", | |
"rating" : null | |
}, | |
{ | |
"album" : "Sound Kapital", | |
"artist" : "Handsome Furs", | |
"duration" : 282880, | |
"id" : "DE5F5384FD37F7B0", | |
"minute" : 1346871220.392278, | |
"name" : "When I Get Back", | |
"rating" : null | |
}, | |
{ | |
"album" : "Sound Kapital", | |
"artist" : "Handsome Furs", | |
"duration" : 317727, | |
"id" : "4B2AC2B05906E9E7", | |
"minute" : 1346871503.381879, | |
"name" : "What About Us", | |
"rating" : null | |
}, | |
{ | |
"album" : "Plague Park", | |
"artist" : "Handsome Furs", | |
"duration" : 154932, | |
"id" : "AB1DA46C83A9B638", | |
"minute" : 1346871821.175426, | |
"name" : "The Radio's Hot Sun", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 277211, | |
"id" : "2F3F05B7EFB9FD80", | |
"minute" : 1346871832.779152, | |
"name" : "Adult Education [Promotional 12\"]", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 252238, | |
"id" : "8A10F045B57100FB", | |
"minute" : 1346871834.277398, | |
"name" : "Out Of Touch [Single Version]", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 277211, | |
"id" : "2F3F05B7EFB9FD80", | |
"minute" : 1346872086.772533, | |
"name" : "Adult Education [Promotional 12\"]", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 260101, | |
"id" : "1DCF51FE416AE0C3", | |
"minute" : 1346872364.005851, | |
"name" : "Say It Isn't So", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 260101, | |
"id" : "1DCF51FE416AE0C3", | |
"minute" : 1346872544.786442, | |
"name" : "Say It Isn't So", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 260101, | |
"id" : "1DCF51FE416AE0C3", | |
"minute" : 1346876793.719462, | |
"name" : "Say It Isn't So", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 207934, | |
"id" : "E07A7A94DE4FCBCE", | |
"minute" : 1346876794.01524, | |
"name" : "Family Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 260911, | |
"id" : "B8C674C82CBFD5DB", | |
"minute" : 1346876794.172703, | |
"name" : "One On One", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 274573, | |
"id" : "AC58A59CB0E5D1E5", | |
"minute" : 1346876794.333928, | |
"name" : "Maneater", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 220708, | |
"id" : "A081D2D296FDB7ED", | |
"minute" : 1346876794.531264, | |
"name" : "Did It In A Minute", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 311902, | |
"id" : "8A54043EEE2623D7", | |
"minute" : 1346876794.705733, | |
"name" : "I Can't Go For That (No Can Do)", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Very Best Of", | |
"artist" : "Hall & Oates", | |
"duration" : 311902, | |
"id" : "8A54043EEE2623D7", | |
"minute" : 1346876794.771482, | |
"name" : "I Can't Go For That (No Can Do)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Walkability", | |
"artist" : "Way Yes", | |
"duration" : 206683, | |
"id" : "85EEF1AB8C0EBBE4", | |
"minute" : 1346882613.874714, | |
"name" : "Singing", | |
"rating" : null | |
}, | |
{ | |
"album" : "Herringbone", | |
"artist" : "Way Yes", | |
"duration" : 131613, | |
"id" : "F85061AE3F037C2E", | |
"minute" : 1346882821.006493, | |
"name" : "Spicy Ice Cream", | |
"rating" : null | |
}, | |
{ | |
"album" : "Herringbone", | |
"artist" : "Way Yes", | |
"duration" : 180000, | |
"id" : "677C2DCF2CEED5D5", | |
"minute" : 1346882952.626907, | |
"name" : "Cinnamon", | |
"rating" : null | |
}, | |
{ | |
"album" : "Walkability", | |
"artist" : "Way Yes", | |
"duration" : 186725, | |
"id" : "16F2D896EE8B2845", | |
"minute" : 1346883132.695027, | |
"name" : "Gino", | |
"rating" : null | |
}, | |
{ | |
"album" : "Walkability", | |
"artist" : "Way Yes", | |
"duration" : 163686, | |
"id" : "EEC009EE29E99D9E", | |
"minute" : 1346883319.542694, | |
"name" : "Walkability", | |
"rating" : null | |
}, | |
{ | |
"album" : "Walkability", | |
"artist" : "Way Yes", | |
"duration" : 163686, | |
"id" : "EEC009EE29E99D9E", | |
"minute" : 1346883448.089219, | |
"name" : "Walkability", | |
"rating" : null | |
}, | |
{ | |
"album" : "Walkability", | |
"artist" : "Way Yes", | |
"duration" : 163686, | |
"id" : "EEC009EE29E99D9E", | |
"minute" : 1346883476.901496, | |
"name" : "Walkability", | |
"rating" : null | |
}, | |
{ | |
"album" : "Walkability", | |
"artist" : "Way Yes", | |
"duration" : 300930, | |
"id" : "2AC71F9D6042CFAB", | |
"minute" : 1346883512.310745, | |
"name" : "Important", | |
"rating" : null | |
}, | |
{ | |
"album" : "Herringbone", | |
"artist" : "Way Yes", | |
"duration" : 115373, | |
"id" : "1939210C55D4B601", | |
"minute" : 1346883813.34733, | |
"name" : "Plastic Crystal Skull Spoons", | |
"rating" : null | |
}, | |
{ | |
"album" : "Walkability", | |
"artist" : "Way Yes", | |
"duration" : 297699, | |
"id" : "E318F179577A8FD3", | |
"minute" : 1346883928.795947, | |
"name" : "Ties", | |
"rating" : null | |
}, | |
{ | |
"album" : "Herringbone", | |
"artist" : "Way Yes", | |
"duration" : 186133, | |
"id" : "6DA1B3CF4AD22C6E", | |
"minute" : 1346884226.581815, | |
"name" : "Color Blind", | |
"rating" : null | |
}, | |
{ | |
"album" : "Herringbone", | |
"artist" : "Way Yes", | |
"duration" : 93360, | |
"id" : "BBAE55BE30F18155", | |
"minute" : 1346884412.80719, | |
"name" : "Drus", | |
"rating" : null | |
}, | |
{ | |
"album" : "Herringbone", | |
"artist" : "Way Yes", | |
"duration" : 190760, | |
"id" : "70CC1F54284C3C8E", | |
"minute" : 1346884506.197168, | |
"name" : "Johanna", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1346884697.006161, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Yellow House", | |
"artist" : "Grizzly Bear", | |
"duration" : 199836, | |
"id" : "D93B21B06053399A", | |
"minute" : 1346884709.306839, | |
"name" : "Reprise", | |
"rating" : null | |
}, | |
{ | |
"album" : "Yellow House", | |
"artist" : "Grizzly Bear", | |
"duration" : 346906, | |
"id" : "3E4D0265A89F649", | |
"minute" : 1346884909.293957, | |
"name" : "On A Neck, On A Spit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Uncommon Ritual", | |
"artist" : "Edgar Meyer with Bela Fleck and Mike Marshall", | |
"duration" : 240483, | |
"id" : "8E9D6FF191DDAB6A", | |
"minute" : 1346885153.556773, | |
"name" : "Big Country", | |
"rating" : null | |
}, | |
{ | |
"album" : "Uncommon Ritual", | |
"artist" : "Edgar Meyer with Bela Fleck and Mike Marshall", | |
"duration" : 202344, | |
"id" : "1E27475E4EE6D699", | |
"minute" : 1346885394.100228, | |
"name" : "By The River", | |
"rating" : null | |
}, | |
{ | |
"album" : "Uncommon Ritual", | |
"artist" : "Edgar Meyer with Bela Fleck and Mike Marshall", | |
"duration" : 202344, | |
"id" : "1E27475E4EE6D699", | |
"minute" : 1346885541.481623, | |
"name" : "By The River", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1346942832.061586, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Daytrotter Session - 1\/7\/2010", | |
"artist" : "Yoni Wolf", | |
"duration" : 92839, | |
"id" : "95388B27DAC2B80A", | |
"minute" : 1346962797.066859, | |
"name" : "These Hands", | |
"rating" : null | |
}, | |
{ | |
"album" : "Daytrotter Session - 1\/7\/2010", | |
"artist" : "Yoni Wolf", | |
"duration" : 111751, | |
"id" : "FC0D93D2862AE00B", | |
"minute" : 1346962889.955733, | |
"name" : "January Twenty Something", | |
"rating" : null | |
}, | |
{ | |
"album" : "Daytrotter Session - 1\/7\/2010", | |
"artist" : "Yoni Wolf", | |
"duration" : 301923, | |
"id" : "B830001D9839F1BF", | |
"minute" : 1346963001.682112, | |
"name" : "Against Me", | |
"rating" : null | |
}, | |
{ | |
"album" : "Daytrotter Session - 1\/7\/2010", | |
"artist" : "Yoni Wolf", | |
"duration" : 20924, | |
"id" : "6859ED92BB562658", | |
"minute" : 1346963303.727564, | |
"name" : "Welcome to Daytrotter", | |
"rating" : null | |
}, | |
{ | |
"album" : "This Bird Has Flown: A 40th Anniversary Tribute To The Beatles' Rubber Soul", | |
"artist" : "Yonder Mountain String Band", | |
"duration" : 133590, | |
"id" : "43084B69E43D0B2B", | |
"minute" : 1346963324.567145, | |
"name" : "Think For Yourself", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 293773, | |
"id" : "4920340248D4C84", | |
"minute" : 1346963431.41684, | |
"name" : "Weather Sky", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 521848, | |
"id" : "6FCD8B8222CF0C9D", | |
"minute" : 1346963433.285473, | |
"name" : "Autumn Sweater (Remix By Kevin Shields)", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 293773, | |
"id" : "4920340248D4C84", | |
"minute" : 1346963955.432299, | |
"name" : "Weather Sky", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 185547, | |
"id" : "58DDD707CF0C72B8", | |
"minute" : 1346964249.30602, | |
"name" : "Decora (Live Acoustic)", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 219324, | |
"id" : "E984BFBF53E81C83", | |
"minute" : 1346964434.854898, | |
"name" : "Pencil Test", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Smattering Of Outtakes And Rarities: 1986-2002", | |
"artist" : "Yo La Tengo", | |
"duration" : 271281, | |
"id" : "D9D4E42299DDB8D6", | |
"minute" : 1346964654.232444, | |
"name" : "Stay Away From Heaven", | |
"rating" : null | |
}, | |
{ | |
"album" : "Prisoners of Love: A Smattering Of Scintillating Senescent Songs 1985-2003 plus A Smattering Of Outtakes And Rarities", | |
"artist" : "Yo La Tengo", | |
"duration" : 319738, | |
"id" : "9B011E9767F15DDD", | |
"minute" : 1346964925.580067, | |
"name" : "Autumn Sweater", | |
"rating" : null | |
}, | |
{ | |
"album" : "Prisoners of Love: A Smattering Of Scintillating Senescent Songs 1985-2003 plus A Smattering Of Outtakes And Rarities", | |
"artist" : "Yo La Tengo", | |
"duration" : 319738, | |
"id" : "9B011E9767F15DDD", | |
"minute" : 1346965214.706347, | |
"name" : "Autumn Sweater", | |
"rating" : null | |
}, | |
{ | |
"album" : "Elephant Shell", | |
"artist" : "Tokyo Police Club", | |
"duration" : 141165, | |
"id" : "89B9C55C9DEFDCBD", | |
"minute" : 1346971517.983905, | |
"name" : "The Baskervilles", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 212140, | |
"id" : "D2577075EDE9EF33", | |
"minute" : 1346971534.976929, | |
"name" : "Petersburg, Liberty Theater, 1914", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 212140, | |
"id" : "D2577075EDE9EF33", | |
"minute" : 1346971688.552437, | |
"name" : "Petersburg, Liberty Theater, 1914", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 212140, | |
"id" : "D2577075EDE9EF33", | |
"minute" : 1346978252.710261, | |
"name" : "Petersburg, Liberty Theater, 1914", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 180009, | |
"id" : "B8D1A7770D501F56", | |
"minute" : 1346978469.424735, | |
"name" : "The Freedom", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 279588, | |
"id" : "2D66F48056C9085", | |
"minute" : 1346978649.45749, | |
"name" : "The Partisan But He's Got To Know", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 193619, | |
"id" : "CAEF8E3931883557", | |
"minute" : 1346978929.140712, | |
"name" : "All Fires", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 260440, | |
"id" : "E4F6550F7459EFB4", | |
"minute" : 1346979122.709778, | |
"name" : "A Venue Called Rubella", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 284734, | |
"id" : "24FC4193EAADFD38", | |
"minute" : 1346979383.208449, | |
"name" : "City Calls", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 129906, | |
"id" : "99E20AD4B969523D", | |
"minute" : 1346979667.974597, | |
"name" : "Nubile Days", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 220499, | |
"id" : "CDE6EDF7CD65C7E8", | |
"minute" : 1346979797.92058, | |
"name" : "Widow's Walk", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beast Moans", | |
"artist" : "Swan Lake", | |
"duration" : 220499, | |
"id" : "CDE6EDF7CD65C7E8", | |
"minute" : 1346979910.370666, | |
"name" : "Widow's Walk", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 131317, | |
"id" : "5FDBCEF04E192F33", | |
"minute" : 1347027768.748928, | |
"name" : "Futile Devices", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 403696, | |
"id" : "59086F757F0DEE0A", | |
"minute" : 1347027899.752002, | |
"name" : "Too Much", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 479764, | |
"id" : "500408E086A2EC94", | |
"minute" : 1347028303.608773, | |
"name" : "Age of Adz", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 300878, | |
"id" : "94174C788ABDC8B1", | |
"minute" : 1347028783.575433, | |
"name" : "I Walked", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 295627, | |
"id" : "19A933FED7E2F505", | |
"minute" : 1347029084.511844, | |
"name" : "Now That I'm Older", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 310230, | |
"id" : "FC664D16017BF7B4", | |
"minute" : 1347029380.165073, | |
"name" : "Get Real Get Right", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 144352, | |
"id" : "75EB522F1FE15C3D", | |
"minute" : 1347029690.519982, | |
"name" : "Bad Communication", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 326060, | |
"id" : "3C1A2FB5350E1139", | |
"minute" : 1347029834.865175, | |
"name" : "Vesuvius", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 175072, | |
"id" : "9B5CE7F15AF78AEA", | |
"minute" : 1347030161.018511, | |
"name" : "All for Myself", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 386847, | |
"id" : "16FD3CAA185ED0E7", | |
"minute" : 1347030336.071382, | |
"name" : "I Want To Be Well", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 1534798, | |
"id" : "6C29B11145681A2B", | |
"minute" : 1347030723.069099, | |
"name" : "Impossible Soul", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 1534798, | |
"id" : "6C29B11145681A2B", | |
"minute" : 1347032164.645338, | |
"name" : "Impossible Soul", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 1534798, | |
"id" : "6C29B11145681A2B", | |
"minute" : 1347034139.253788, | |
"name" : "Impossible Soul", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 1534798, | |
"id" : "6C29B11145681A2B", | |
"minute" : 1347034231.491181, | |
"name" : "Impossible Soul", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 1534798, | |
"id" : "6C29B11145681A2B", | |
"minute" : 1347034261.746103, | |
"name" : "Impossible Soul", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347034307.634552, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "The Age of Adz", | |
"artist" : "Sufjan Stevens", | |
"duration" : 131317, | |
"id" : "5FDBCEF04E192F33", | |
"minute" : 1347034358.108061, | |
"name" : "Futile Devices", | |
"rating" : null | |
}, | |
{ | |
"album" : "ABC", | |
"artist" : "The Jackson 5", | |
"duration" : 177606, | |
"id" : "BFD056DF2A094334", | |
"minute" : 1347034362.777301, | |
"name" : "2-4-6-8", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 244976, | |
"id" : "CB1B41B3A7827E7E", | |
"minute" : 1347034365.529197, | |
"name" : "The Strangers", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 215510, | |
"id" : "688CB28354C4634E", | |
"minute" : 1347034610.692812, | |
"name" : "Save Me From What I Want", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 210860, | |
"id" : "3FFBDBD998023422", | |
"minute" : 1347034826.221268, | |
"name" : "The Neighbors", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 135079, | |
"id" : "5918E50F0C5CA1FA", | |
"minute" : 1347035037.084422, | |
"name" : "Actor Out Of Work", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 251428, | |
"id" : "169B3A9617C17405", | |
"minute" : 1347035172.134396, | |
"name" : "Black Rainbow", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 181786, | |
"id" : "8E1A798EA3185B2E", | |
"minute" : 1347035423.705845, | |
"name" : "Laughing With A Mouth Of Blood", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 204251, | |
"id" : "2A61AE56003AE853", | |
"minute" : 1347035605.534041, | |
"name" : "Marrow", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 223320, | |
"id" : "C07A362EF2939740", | |
"minute" : 1347035809.810439, | |
"name" : "The Bed", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 245080, | |
"id" : "23EAC2BD0DFA8833", | |
"minute" : 1347036033.210476, | |
"name" : "The Party", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 324257, | |
"id" : "5EF2931D8CAE3E27", | |
"minute" : 1347036278.327789, | |
"name" : "Just The Same But Brand New", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actor", | |
"artist" : "St. Vincent", | |
"duration" : 115513, | |
"id" : "EAAAD72A7918ECC2", | |
"minute" : 1347036602.665355, | |
"name" : "The Sequel", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 292623, | |
"id" : "D5D3617538A2396", | |
"minute" : 1347036718.232126, | |
"name" : "Baltimore", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 352287, | |
"id" : "D29D6AAF01EB4DB9", | |
"minute" : 1347037010.892235, | |
"name" : "Denton", | |
"rating" : 80 | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 262138, | |
"id" : "202DEA85B9D5BB33", | |
"minute" : 1347037363.302518, | |
"name" : "Chapelhill", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 214935, | |
"id" : "4ECEBDA508CA41DB", | |
"minute" : 1347037625.477684, | |
"name" : "Ybor City", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 375013, | |
"id" : "90579540E9D1E6B2", | |
"minute" : 1347037840.481866, | |
"name" : "Covington", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 248084, | |
"id" : "EEC873841F6DE8A1", | |
"minute" : 1347038215.678573, | |
"name" : "Chicago", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 248084, | |
"id" : "EEC873841F6DE8A1", | |
"minute" : 1347038403.745791, | |
"name" : "Chicago", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 157701, | |
"id" : "F165BD83FC6B9E45", | |
"minute" : 1347049462.142999, | |
"name" : "Black Poppies", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 176013, | |
"id" : "B92848488D2337BA", | |
"minute" : 1347049482.92491, | |
"name" : "Sometimes", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 156943, | |
"id" : "471E5A838C56A10", | |
"minute" : 1347049659.003413, | |
"name" : "Youth", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 226377, | |
"id" : "DFAE0D5EFC63F35", | |
"minute" : 1347049815.96529, | |
"name" : "Vacation", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 184946, | |
"id" : "F692ED735DEDAF79", | |
"minute" : 1347050042.336273, | |
"name" : "Lazy Day", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 140251, | |
"id" : "7FA6C2251E7E4C5F", | |
"minute" : 1347050227.296817, | |
"name" : "Twelve Roses", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 184215, | |
"id" : "13B20EBC2E2262B6", | |
"minute" : 1347050367.561796, | |
"name" : "Daydream", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 285962, | |
"id" : "9F3AADCF3B897DDA", | |
"minute" : 1347050551.804078, | |
"name" : "Golden Age", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 246465, | |
"id" : "FDA0537EB9F87ADE", | |
"minute" : 1347050837.750469, | |
"name" : "Window View", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 165302, | |
"id" : "5DEB8262FAD61DD2", | |
"minute" : 1347051084.272974, | |
"name" : "The Horse", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 185652, | |
"id" : "F70985AB23E2A012", | |
"minute" : 1347051249.627203, | |
"name" : "Wide Awake", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach Fossils", | |
"artist" : "Beach Fossils", | |
"duration" : 96000, | |
"id" : "837B118A80B7DAF8", | |
"minute" : 1347051435.254994, | |
"name" : "Gathering", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 175177, | |
"id" : "950BD2A6042BAE1B", | |
"minute" : 1347051531.229342, | |
"name" : "Saltwater", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 222119, | |
"id" : "8F30844817A19B0B", | |
"minute" : 1347051706.390843, | |
"name" : "Tokyo Witch", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 222119, | |
"id" : "8F30844817A19B0B", | |
"minute" : 1347051767.571496, | |
"name" : "Tokyo Witch", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 222119, | |
"id" : "8F30844817A19B0B", | |
"minute" : 1347053189.870653, | |
"name" : "Tokyo Witch", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 271438, | |
"id" : "B702E273637F4143", | |
"minute" : 1347053352.269333, | |
"name" : "Apple Orchard", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 199471, | |
"id" : "F488F755D17CF020", | |
"minute" : 1347053623.729049, | |
"name" : "Master of None", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 270080, | |
"id" : "EE7FE6D50DE82EFE", | |
"minute" : 1347053823.268859, | |
"name" : "Auburn and Ivory", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 215719, | |
"id" : "99DDFF00C347387C", | |
"minute" : 1347054093.396642, | |
"name" : "Childhood", | |
"rating" : null | |
}, | |
{ | |
"album" : "Beach House", | |
"artist" : "Beach House", | |
"duration" : 215719, | |
"id" : "99DDFF00C347387C", | |
"minute" : 1347054095.373976, | |
"name" : "Childhood", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347057406.879526, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347057406.934916, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 273554, | |
"id" : "C520CE485A0309BF", | |
"minute" : 1347209031.887981, | |
"name" : "Walking Through That Door", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "7D5A45CC80471487", | |
"minute" : 1347209033.392236, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2390E4EE3785E4A0", | |
"minute" : 1347209033.500247, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "7D5A45CC80471487", | |
"minute" : 1347209034.484478, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2390E4EE3785E4A0", | |
"minute" : 1347209035.879011, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 223712, | |
"id" : "F97C22D67FD6E850", | |
"minute" : 1347209044.644846, | |
"name" : "An Apology", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 73116, | |
"id" : "F67359CC39F45841", | |
"minute" : 1347209048.059503, | |
"name" : "In Evening Air", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 287268, | |
"id" : "585E0834C53D605B", | |
"minute" : 1347209049.279341, | |
"name" : "Swept Inside", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 214021, | |
"id" : "B87952299B07227D", | |
"minute" : 1347209057.698719, | |
"name" : "Inch Of Dust", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 247536, | |
"id" : "AA8B7D68A74F8C52", | |
"minute" : 1347209059.972961, | |
"name" : "Vireo's Eye", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 335046, | |
"id" : "4F8CE7571ADFE064", | |
"minute" : 1347209063.845136, | |
"name" : "As I Fall", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 291526, | |
"id" : "EF93B56146041BD9", | |
"minute" : 1347209065.312585, | |
"name" : "On The Water", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 238942, | |
"id" : "B28E14EE177DCEE5", | |
"minute" : 1347209067.947575, | |
"name" : "Before The Bridge", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 195239, | |
"id" : "1C9CA96C73715E47", | |
"minute" : 1347209071.546933, | |
"name" : "The Great Fire", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 88398, | |
"id" : "124B95AE8F417DBA", | |
"minute" : 1347209074.007527, | |
"name" : "Open", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 344267, | |
"id" : "17532686295AC22B", | |
"minute" : 1347209076.504096, | |
"name" : "Where I Found You", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 245838, | |
"id" : "8C3F1076B55B9B5", | |
"minute" : 1347209078.024033, | |
"name" : "Give Us The Wind", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 379428, | |
"id" : "812EB019B12521FF", | |
"minute" : 1347209079.939279, | |
"name" : "Close To None", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 246465, | |
"id" : "60C4C01B477795AB", | |
"minute" : 1347209081.314228, | |
"name" : "Balance", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 196963, | |
"id" : "80F64B0C33A9A2FF", | |
"minute" : 1347209088.246622, | |
"name" : "Tybee Island", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 274677, | |
"id" : "8128E4743F25189E", | |
"minute" : 1347209089.581999, | |
"name" : "Grease", | |
"rating" : null | |
}, | |
{ | |
"album" : "On The Water", | |
"artist" : "Future Islands", | |
"duration" : 54047, | |
"id" : "71E1FB990F10E286", | |
"minute" : 1347209091.745814, | |
"name" : "(Untitled)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Return to the Sea", | |
"artist" : "Islands", | |
"duration" : 571088, | |
"id" : "7FC6BB0E21E88577", | |
"minute" : 1347209094.965281, | |
"name" : "Swans (Life After Death)", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 273554, | |
"id" : "C520CE485A0309BF", | |
"minute" : 1347209098.252257, | |
"name" : "Walking Through That Door", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 273554, | |
"id" : "C520CE485A0309BF", | |
"minute" : 1347209099.656539, | |
"name" : "Walking Through That Door", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 273554, | |
"id" : "C520CE485A0309BF", | |
"minute" : 1347228136.821614, | |
"name" : "Walking Through That Door", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "7D5A45CC80471487", | |
"minute" : 1347228411.092381, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "7D5A45CC80471487", | |
"minute" : 1347228650.539439, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 315480, | |
"id" : "7D5A45CC80471487", | |
"minute" : 1347228691.593546, | |
"name" : "Long Flight", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2390E4EE3785E4A0", | |
"minute" : 1347228770.938039, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "In Evening Air", | |
"artist" : "Future Islands", | |
"duration" : 193985, | |
"id" : "2390E4EE3785E4A0", | |
"minute" : 1347228773.648892, | |
"name" : "Tin Man", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347231120.631669, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347231120.674469, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "A.M.", | |
"artist" : "Wilco", | |
"duration" : 179644, | |
"id" : "619C8E8AEDD1606F", | |
"minute" : 1347239425.669382, | |
"name" : "I Must Be High", | |
"rating" : null | |
}, | |
{ | |
"album" : "Have One On Me", | |
"artist" : "Joanna Newsom", | |
"duration" : 263000, | |
"id" : "51334EE1943AA8C7", | |
"minute" : 1347239432.924439, | |
"name" : "Jackrabbits", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Have One On Me", | |
"artist" : "Joanna Newsom", | |
"duration" : 482664, | |
"id" : "E45500EB20B6FB8", | |
"minute" : 1347239696.187708, | |
"name" : "Go Long", | |
"rating" : 60 | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 268564, | |
"id" : "27D6A9F1DE327C18", | |
"minute" : 1347239719.761463, | |
"name" : "Strange Mercy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 265116, | |
"id" : "66F192518C171A04", | |
"minute" : 1347239721.158605, | |
"name" : "Surgeon", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 213629, | |
"id" : "E10E5BDD74E0E47D", | |
"minute" : 1347239986.452845, | |
"name" : "Northern Lights", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 268564, | |
"id" : "27D6A9F1DE327C18", | |
"minute" : 1347240200.154338, | |
"name" : "Strange Mercy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 253257, | |
"id" : "9C91E6062276B3DE", | |
"minute" : 1347240468.708571, | |
"name" : "Neutered Fruit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 208927, | |
"id" : "3340A0B759BD2894", | |
"minute" : 1347240722.074726, | |
"name" : "Champagne Year", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 243591, | |
"id" : "A71F1952821F5C14", | |
"minute" : 1347240931.00863, | |
"name" : "Dilettante", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 196284, | |
"id" : "83AD2063F420A39D", | |
"minute" : 1347241174.644129, | |
"name" : "Hysterical Strength", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 208091, | |
"id" : "A4172676AA52615A", | |
"minute" : 1347241371.007734, | |
"name" : "Year Of The Tiger", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St Vincent", | |
"duration" : 265116, | |
"id" : "2B8EFE596B4719CB", | |
"minute" : 1347241579.135216, | |
"name" : "Surgeon", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 52638, | |
"id" : "AE16B8475F5E2BC6", | |
"minute" : 1347241797.371571, | |
"name" : "recording22", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : 109643, | |
"id" : "D3D3E10C78215DB0", | |
"minute" : 1347241850.147042, | |
"name" : "recording25", | |
"rating" : null | |
}, | |
{ | |
"album" : "Demo", | |
"artist" : "Dylan Kelly", | |
"duration" : 240117, | |
"id" : "986CAD7EE03C9DF3", | |
"minute" : 1347241856.121378, | |
"name" : "friendz", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Year Of Hibernation", | |
"artist" : "Youth Lagoon", | |
"duration" : 250096, | |
"id" : "A438F0E1F961B743", | |
"minute" : 1347241856.913464, | |
"name" : "Afternoon", | |
"rating" : null | |
}, | |
{ | |
"album" : "One Cello X 16", | |
"artist" : "Zoe Keating", | |
"duration" : 273973, | |
"id" : "FB906C3F5291CE12", | |
"minute" : 1347242107.138815, | |
"name" : "Arrival", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Year Of Hibernation", | |
"artist" : "Youth Lagoon", | |
"duration" : 224809, | |
"id" : "4AB7D774463D0A13", | |
"minute" : 1347242381.267456, | |
"name" : "Cannons", | |
"rating" : null | |
}, | |
{ | |
"album" : "One Cello X 16", | |
"artist" : "Zoe Keating", | |
"duration" : 268373, | |
"id" : "D232F05A2F64716F", | |
"minute" : 1347242606.116544, | |
"name" : "Coda", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Year Of Hibernation", | |
"artist" : "Youth Lagoon", | |
"duration" : 319660, | |
"id" : "1FEF672C656D8212", | |
"minute" : 1347242874.60675, | |
"name" : "Daydream", | |
"rating" : null | |
}, | |
{ | |
"album" : "One Cello X 16", | |
"artist" : "Zoe Keating", | |
"duration" : 491573, | |
"id" : "83B4356A84E6C002", | |
"minute" : 1347243194.370721, | |
"name" : "Exurgency", | |
"rating" : null | |
}, | |
{ | |
"album" : "One Cello X 16", | |
"artist" : "Zoe Keating", | |
"duration" : 491573, | |
"id" : "83B4356A84E6C002", | |
"minute" : 1347243547.598994, | |
"name" : "Exurgency", | |
"rating" : 80 | |
}, | |
{ | |
"album" : "One Cello X 16", | |
"artist" : "Zoe Keating", | |
"duration" : 491573, | |
"id" : "83B4356A84E6C002", | |
"minute" : 1347243548.152058, | |
"name" : "Exurgency", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "One Cello x 16: Natoma", | |
"artist" : "Zoe Keating", | |
"duration" : 500893, | |
"id" : "42196579766BAFCC", | |
"minute" : 1347243686.165021, | |
"name" : "Fern", | |
"rating" : null | |
}, | |
{ | |
"album" : "One Cello x 16: Natoma", | |
"artist" : "Zoe Keating", | |
"duration" : 427120, | |
"id" : "42C5CB99CD2F14E3", | |
"minute" : 1347244187.237192, | |
"name" : "Frozen Angels", | |
"rating" : null | |
}, | |
{ | |
"album" : "One Cello x 16: Natoma", | |
"artist" : "Zoe Keating", | |
"duration" : 427120, | |
"id" : "42C5CB99CD2F14E3", | |
"minute" : 1347244356.876666, | |
"name" : "Frozen Angels", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347284384.378207, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347284384.390075, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 265116, | |
"id" : "66F192518C171A04", | |
"minute" : 1347292812.395807, | |
"name" : "Surgeon", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 265116, | |
"id" : "66F192518C171A04", | |
"minute" : 1347292950.581429, | |
"name" : "Surgeon", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 265116, | |
"id" : "66F192518C171A04", | |
"minute" : 1347295368.708428, | |
"name" : "Surgeon", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 242311, | |
"id" : "FDAEA4D1A54A8AED", | |
"minute" : 1347295468.825619, | |
"name" : "Heart Skipped A Beat", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 127973, | |
"id" : "51BD6F16C14DABDB", | |
"minute" : 1347295476.037303, | |
"name" : "Intro", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 177136, | |
"id" : "E52651C868D7239A", | |
"minute" : 1347295604.094891, | |
"name" : "VCR", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 202004, | |
"id" : "FF684BBF99C12638", | |
"minute" : 1347295781.220933, | |
"name" : "Crystalised", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 160783, | |
"id" : "2CB66C48235466AA", | |
"minute" : 1347295983.295839, | |
"name" : "Islands", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 242311, | |
"id" : "FDAEA4D1A54A8AED", | |
"minute" : 1347296144.034126, | |
"name" : "Heart Skipped A Beat", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 158302, | |
"id" : "B8C43C6F566B1914", | |
"minute" : 1347296386.389143, | |
"name" : "Fantasy", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 270288, | |
"id" : "103DECFE81712D99", | |
"minute" : 1347296544.640294, | |
"name" : "Shelter", | |
"rating" : null | |
}, | |
{ | |
"album" : "xx", | |
"artist" : "The xx", | |
"duration" : 270288, | |
"id" : "103DECFE81712D99", | |
"minute" : 1347296753.822701, | |
"name" : "Shelter", | |
"rating" : null | |
}, | |
{ | |
"album" : "Actual Fucking", | |
"artist" : "Cex", | |
"duration" : 292623, | |
"id" : "D5D3617538A2396", | |
"minute" : 1347297079.546043, | |
"name" : "Baltimore", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 235624, | |
"id" : "749D80260768951C", | |
"minute" : 1347297082.554168, | |
"name" : "Rainbowarriors", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 217103, | |
"id" : "A1A2DEA4F37239FE", | |
"minute" : 1347297318.387926, | |
"name" : "Promise", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 97880, | |
"id" : "BE183DE577DE1976", | |
"minute" : 1347297535.443788, | |
"name" : "Bloody Twins", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 302315, | |
"id" : "F8C878A7CD9F2CD7", | |
"minute" : 1347297633.350181, | |
"name" : "Japan", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 178991, | |
"id" : "D9611776064ED3B1", | |
"minute" : 1347297935.718628, | |
"name" : "Sunshine", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 157701, | |
"id" : "F165BD83FC6B9E45", | |
"minute" : 1347298114.77249, | |
"name" : "Black Poppies", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 290246, | |
"id" : "A0D793FCBF08C2F1", | |
"minute" : 1347298272.420668, | |
"name" : "Werewolf", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 362109, | |
"id" : "5B2EF3DDF3693E", | |
"minute" : 1347298562.750709, | |
"name" : "Animals", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 176613, | |
"id" : "B704F095BD5DC559", | |
"minute" : 1347298924.987581, | |
"name" : "Houses", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 168463, | |
"id" : "E644E154CBF8F7F0", | |
"minute" : 1347299048.420382, | |
"name" : "Raphael", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 46889, | |
"id" : "24A9E291CD7B383F", | |
"minute" : 1347299048.690993, | |
"name" : "Girl and the Geese", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 696372, | |
"id" : "307E46C61C087453", | |
"minute" : 1347299095.67555, | |
"name" : "Miracle", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 696372, | |
"id" : "307E46C61C087453", | |
"minute" : 1347299745.266188, | |
"name" : "Miracle", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Adventures of Ghosthorse and Stillborn", | |
"artist" : "CocoRosie", | |
"duration" : 696372, | |
"id" : "307E46C61C087453", | |
"minute" : 1347302831.275826, | |
"name" : "Miracle", | |
"rating" : null | |
}, | |
{ | |
"album" : "African sun", | |
"artist" : "Abdullah Ibrahim", | |
"duration" : 373681, | |
"id" : "F441B731CB7999E0", | |
"minute" : 1347302886.824474, | |
"name" : "African sun", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ágætis Byrjun", | |
"artist" : "Sigur Rós", | |
"duration" : 430262, | |
"id" : "D3BCF2C7A4407FE3", | |
"minute" : 1347302914.615799, | |
"name" : "Hjartað hamast", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Ágætis Byrjun", | |
"artist" : "Sigur Rós", | |
"duration" : 617848, | |
"id" : "9D35F56D157B5D67", | |
"minute" : 1347303345.193178, | |
"name" : "Viðrar vel til loftárása", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ágætis Byrjun", | |
"artist" : "Sigur Rós", | |
"duration" : 617848, | |
"id" : "9D35F56D157B5D67", | |
"minute" : 1347303794.767992, | |
"name" : "Viðrar vel til loftárása", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 415164, | |
"id" : "E1D9EE18341A544B", | |
"minute" : 1347373098.631932, | |
"name" : "Teeth Like God's Shoeshine", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 244506, | |
"id" : "E11283C8251F4262", | |
"minute" : 1347373420.18186, | |
"name" : "Heart Cooks Brain", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 244506, | |
"id" : "E11283C8251F4262", | |
"minute" : 1347373420.738308, | |
"name" : "Heart Cooks Brain", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 425874, | |
"id" : "52FED2B61293D7C4", | |
"minute" : 1347373420.783199, | |
"name" : "Lounge (Closing Time)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 425874, | |
"id" : "52FED2B61293D7C4", | |
"minute" : 1347373421.051426, | |
"name" : "Lounge (Closing Time)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 158328, | |
"id" : "F6F3E1EE13B79761", | |
"minute" : 1347373847.23751, | |
"name" : "Jesus Christ Was An Only Child", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 260806, | |
"id" : "32378E6C8D3F5B8C", | |
"minute" : 1347374005.61944, | |
"name" : "Doin' The Cockroach", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 378853, | |
"id" : "5DFECDBEB311542A", | |
"minute" : 1347374266.559578, | |
"name" : "Cowboy Dan", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 349570, | |
"id" : "F3944C5C655BA5F4", | |
"minute" : 1347374645.516384, | |
"name" : "Trailer Trash", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 153155, | |
"id" : "3788CF13B0A07DE", | |
"minute" : 1347374795.25723, | |
"name" : "Out Of Gas", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 224679, | |
"id" : "FA996F39DCA2434A", | |
"minute" : 1347374948.675245, | |
"name" : "Long Distance Drunk", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 144692, | |
"id" : "871C2FA3AE5CD77F", | |
"minute" : 1347375173.405802, | |
"name" : "Shit Luck", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 659304, | |
"id" : "9232C4768D8FE6A3", | |
"minute" : 1347375318.139531, | |
"name" : "Truckers Atlas", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 659304, | |
"id" : "9232C4768D8FE6A3", | |
"minute" : 1347375888.470642, | |
"name" : "Truckers Atlas", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 659304, | |
"id" : "9232C4768D8FE6A3", | |
"minute" : 1347375972.426157, | |
"name" : "Truckers Atlas", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 250435, | |
"id" : "4142981101ADD0EB", | |
"minute" : 1347376062.015803, | |
"name" : "Convenient Parking", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 211644, | |
"id" : "64F31251C4F2D9B8", | |
"minute" : 1347376312.472093, | |
"name" : "Polar Opposites", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 211644, | |
"id" : "64F31251C4F2D9B8", | |
"minute" : 1347376503.079328, | |
"name" : "Polar Opposites", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 211644, | |
"id" : "64F31251C4F2D9B8", | |
"minute" : 1347383284.095532, | |
"name" : "Polar Opposites", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 175882, | |
"id" : "F7379604A0911EF", | |
"minute" : 1347383305.581443, | |
"name" : "Bankrupt On Selling", | |
"rating" : null | |
}, | |
{ | |
"album" : "Lonesome Crowded West", | |
"artist" : "Modest Mouse", | |
"duration" : 413022, | |
"id" : "D4D1AED0CA41899B", | |
"minute" : 1347383481.51126, | |
"name" : "Styrofoam Boots - It's All Nice On Ice, Alright", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347383894.713629, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Bluegrass Tibute to Modest Mouse: Something You've Never Heard Before", | |
"artist" : "Ironhorse", | |
"duration" : 258742, | |
"id" : "47F57913547DCC77", | |
"minute" : 1347400060.491541, | |
"name" : "Ocean Breathes Salty", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bluegrass Tibute to Modest Mouse: Something You've Never Heard Before", | |
"artist" : "Ironhorse", | |
"duration" : 265456, | |
"id" : "BE97B8CD54D4DB72", | |
"minute" : 1347400319.558945, | |
"name" : "3rd Planet", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bluegrass Tibute to Modest Mouse: Something You've Never Heard Before", | |
"artist" : "Ironhorse", | |
"duration" : 265456, | |
"id" : "BE97B8CD54D4DB72", | |
"minute" : 1347400518.080126, | |
"name" : "3rd Planet", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bluegrass Tibute to Modest Mouse: Something You've Never Heard Before", | |
"artist" : "Ironhorse", | |
"duration" : 265456, | |
"id" : "BE97B8CD54D4DB72", | |
"minute" : 1347468661.862628, | |
"name" : "3rd Planet", | |
"rating" : null | |
}, | |
{ | |
"album" : "Bluegrass Tibute to Modest Mouse: Something You've Never Heard Before", | |
"artist" : "Ironhorse", | |
"duration" : 206942, | |
"id" : "A66D7BEF0ED72461", | |
"minute" : 1347468729.773193, | |
"name" : "Polar Opposites", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 184346, | |
"id" : "727023629CB0F78B", | |
"minute" : 1347468739.412601, | |
"name" : "The Green Groves Of Erin\/The Flowers Of Red Hill", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 347324, | |
"id" : "2FB671CFC10FA680", | |
"minute" : 1347468924.015833, | |
"name" : "Appalachia Waltz", | |
"rating" : null | |
}, | |
{ | |
"album" : "Appalachia Waltz", | |
"artist" : "Yo Yo Ma, Edgar Meyer, Mark O'Conner", | |
"duration" : 347324, | |
"id" : "2FB671CFC10FA680", | |
"minute" : 1347468966.156829, | |
"name" : "Appalachia Waltz", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347473742.786009, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 338703, | |
"id" : "1FA55248DFCB10D9", | |
"minute" : 1347480016.677721, | |
"name" : "The Arm", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 246204, | |
"id" : "DEFAC69CE7B5152F", | |
"minute" : 1347480355.626116, | |
"name" : "Pieces of You", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 203128, | |
"id" : "ECC0F9F94E53025C", | |
"minute" : 1347480601.749926, | |
"name" : "J'aime Vous Voire Quitter", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 275200, | |
"id" : "97C87A525D4BD5BE", | |
"minute" : 1347480804.94144, | |
"name" : "Abominable Snow", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 195030, | |
"id" : "34A1DFAA16E6A49", | |
"minute" : 1347481080.142534, | |
"name" : "Creeper", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 311222, | |
"id" : "BD1D4B70308EF933", | |
"minute" : 1347481275.242953, | |
"name" : "Kids Don't Know Shit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 327026, | |
"id" : "57B0509473836B59", | |
"minute" : 1347481586.502956, | |
"name" : "Life In Jail", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 327026, | |
"id" : "57B0509473836B59", | |
"minute" : 1347481660.567217, | |
"name" : "Life In Jail", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 327026, | |
"id" : "57B0509473836B59", | |
"minute" : 1347481661.387488, | |
"name" : "Life In Jail", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 420519, | |
"id" : "5C6060D01D1946EE", | |
"minute" : 1347481914.706684, | |
"name" : "In the Rushes", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 306834, | |
"id" : "58971146019032B7", | |
"minute" : 1347482335.271131, | |
"name" : "We Swim", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 467330, | |
"id" : "1FD140156EC11296", | |
"minute" : 1347482642.16977, | |
"name" : "To a Bond", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 467330, | |
"id" : "1FD140156EC11296", | |
"minute" : 1347482857.605285, | |
"name" : "To a Bond", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 467330, | |
"id" : "1FD140156EC11296", | |
"minute" : 1347541602.839004, | |
"name" : "To a Bond", | |
"rating" : null | |
}, | |
{ | |
"album" : "Arm's Way", | |
"artist" : "Islands", | |
"duration" : 331937, | |
"id" : "D1DC0FA2DF875BD3", | |
"minute" : 1347541855.490804, | |
"name" : "I Feel Evil Creeping In", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 173714, | |
"id" : "F6ED780090AE1BCB", | |
"minute" : 1347541969.703758, | |
"name" : "Hallways", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 166191, | |
"id" : "652858819B2CDFB", | |
"minute" : 1347542143.529142, | |
"name" : "Can't Feel My Face", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 220421, | |
"id" : "C1FD061B4F4CDBBC", | |
"minute" : 1347542309.783109, | |
"name" : "Lonely Love", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 247902, | |
"id" : "74DBF0013BAFF657", | |
"minute" : 1347542530.276894, | |
"name" : "Oh Maria", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 199366, | |
"id" : "5D9F4D98F6954FB4", | |
"minute" : 1347542778.24464, | |
"name" : "Cold Again", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 199366, | |
"id" : "5D9F4D98F6954FB4", | |
"minute" : 1347542936.865688, | |
"name" : "Cold Again", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 199366, | |
"id" : "5D9F4D98F6954FB4", | |
"minute" : 1347548968.099361, | |
"name" : "Cold Again", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 200176, | |
"id" : "F859DF8F08DBFAD5", | |
"minute" : 1347549012.276568, | |
"name" : "Don't I Love You", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 152084, | |
"id" : "D37A32FC7EAFE516", | |
"minute" : 1347549212.485451, | |
"name" : "Same Thing", | |
"rating" : null | |
}, | |
{ | |
"album" : "Facing Future", | |
"artist" : "Israel Kamakawiwo'ole", | |
"duration" : 200897, | |
"id" : "9A5206DD5C01E3DD", | |
"minute" : 1347549364.569493, | |
"name" : "Ka Huila Wai", | |
"rating" : null | |
}, | |
{ | |
"album" : "Facing Future", | |
"artist" : "Israel Kamakawiwo'ole", | |
"duration" : 200897, | |
"id" : "9A5206DD5C01E3DD", | |
"minute" : 1347549377.471787, | |
"name" : "Ka Huila Wai", | |
"rating" : null | |
}, | |
{ | |
"album" : "Facing Future", | |
"artist" : "Israel Kamakawiwo'ole", | |
"duration" : 200897, | |
"id" : "9A5206DD5C01E3DD", | |
"minute" : 1347550731.390696, | |
"name" : "Ka Huila Wai", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 17789, | |
"id" : "76DE845431EBFC35", | |
"minute" : 1347550736.405736, | |
"name" : "Intro", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 130507, | |
"id" : "78ECFC711EDA8F6B", | |
"minute" : 1347550754.189332, | |
"name" : "Let's Take It Back", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 161985, | |
"id" : "21881DF465AA93D1", | |
"minute" : 1347550884.784988, | |
"name" : "Reckless Driving", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 161985, | |
"id" : "21881DF465AA93D1", | |
"minute" : 1347550955.975852, | |
"name" : "Reckless Driving", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 161985, | |
"id" : "21881DF465AA93D1", | |
"minute" : 1347551080.119983, | |
"name" : "Reckless Driving", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 153730, | |
"id" : "D2C16ED039127791", | |
"minute" : 1347551172.389772, | |
"name" : "Nothing Like This", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 163970, | |
"id" : "6337A4B8E5E3800D", | |
"minute" : 1347551326.214505, | |
"name" : "The $", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 49475, | |
"id" : "CFE7E263684CF2CB", | |
"minute" : 1347551490.145189, | |
"name" : "Interlude", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 145110, | |
"id" : "CE69DCB9B88060B", | |
"minute" : 1347551539.638905, | |
"name" : "Make'em NV", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 45296, | |
"id" : "6ACE989573E0266", | |
"minute" : 1347551684.771633, | |
"name" : "Interlude", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 223242, | |
"id" : "3E3F2041AF37AE9E", | |
"minute" : 1347551729.9955, | |
"name" : "Crushin' (Yeeeeaah!)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 51826, | |
"id" : "E205D11E6333CA48", | |
"minute" : 1347551953.309711, | |
"name" : "Shouts", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 48195, | |
"id" : "BE604FD5EB0C6C6D", | |
"minute" : 1347552005.154897, | |
"name" : "Intro (Alt)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 139755, | |
"id" : "F0DCCEC88A63FCFE", | |
"minute" : 1347552053.304389, | |
"name" : "Wild", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 265404, | |
"id" : "1131D027C59BF1AC", | |
"minute" : 1347552193.120003, | |
"name" : "Take Notice", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 265404, | |
"id" : "1131D027C59BF1AC", | |
"minute" : 1347552432.168784, | |
"name" : "Take Notice", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 265404, | |
"id" : "1131D027C59BF1AC", | |
"minute" : 1347554299.214035, | |
"name" : "Take Notice", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 265404, | |
"id" : "1131D027C59BF1AC", | |
"minute" : 1347554311.373896, | |
"name" : "Take Notice", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 235885, | |
"id" : "F509039B0F46F307", | |
"minute" : 1347554315.521209, | |
"name" : "This Is Not A Song", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 285257, | |
"id" : "C47B0ED631C4945B", | |
"minute" : 1347554551.569407, | |
"name" : "Never Go Solo", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 185469, | |
"id" : "677045F57312ABC", | |
"minute" : 1347554836.871096, | |
"name" : "No Crying", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 173714, | |
"id" : "F6ED780090AE1BCB", | |
"minute" : 1347555022.389882, | |
"name" : "Hallways", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 173714, | |
"id" : "F6ED780090AE1BCB", | |
"minute" : 1347555152.686335, | |
"name" : "Hallways", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 173714, | |
"id" : "F6ED780090AE1BCB", | |
"minute" : 1347557380.662099, | |
"name" : "Hallways", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 166191, | |
"id" : "652858819B2CDFB", | |
"minute" : 1347557426.326635, | |
"name" : "Can't Feel My Face", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 220421, | |
"id" : "C1FD061B4F4CDBBC", | |
"minute" : 1347557592.516334, | |
"name" : "Lonely Love", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 247902, | |
"id" : "74DBF0013BAFF657", | |
"minute" : 1347557813.020487, | |
"name" : "Oh Maria", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 247902, | |
"id" : "74DBF0013BAFF657", | |
"minute" : 1347557898.909398, | |
"name" : "Oh Maria", | |
"rating" : null | |
}, | |
{ | |
"album" : "A Sleep & A Forgetting", | |
"artist" : "Islands", | |
"duration" : 247902, | |
"id" : "74DBF0013BAFF657", | |
"minute" : 1347560055.377204, | |
"name" : "Oh Maria", | |
"rating" : null | |
}, | |
{ | |
"album" : "Facing Future", | |
"artist" : "Israel Kamakawiwo'ole", | |
"duration" : 296308, | |
"id" : "9084585DA9A442C4", | |
"minute" : 1347560058.556886, | |
"name" : "Take Me Home Country Road", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 107206, | |
"id" : "74F7BFF353C5BE2B", | |
"minute" : 1347560060.610717, | |
"name" : "Shouts (Alt)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ruff Draft", | |
"artist" : "J Dilla", | |
"duration" : 107206, | |
"id" : "D9D25A1B960E081F", | |
"minute" : 1347560061.878566, | |
"name" : "Shoults (Alt) (Instrumental)", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 197694, | |
"id" : "1E588A46E4718484", | |
"minute" : 1347560062.504821, | |
"name" : "E=MC2 featuring Commono", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 194586, | |
"id" : "2445A668010CC00B", | |
"minute" : 1347560067.155234, | |
"name" : "Love featuring Pharoahe Monch", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 208378, | |
"id" : "1FF2926586E28D78", | |
"minute" : 1347560261.812949, | |
"name" : "Baby featuring Madlib and Guilty Simpson", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 336875, | |
"id" : "A4D843E6C53B984F", | |
"minute" : 1347560470.200993, | |
"name" : "So Far to Go featuring Common and D'Angelo", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 336875, | |
"id" : "A4D843E6C53B984F", | |
"minute" : 1347560569.721733, | |
"name" : "So Far to Go featuring Common and D'Angelo", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 336875, | |
"id" : "A4D843E6C53B984F", | |
"minute" : 1347560598.256969, | |
"name" : "So Far to Go featuring Common and D'Angelo", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 164728, | |
"id" : "3A4D4C979D6295EE", | |
"minute" : 1347560837.948175, | |
"name" : "Jungle Love featuring Med and Guilty Simpson", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 134164, | |
"id" : "83B1ABFAE8D8C758", | |
"minute" : 1347561002.652965, | |
"name" : "Over the Breaks", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 137613, | |
"id" : "6848A4B8F5073539", | |
"minute" : 1347561136.881801, | |
"name" : "Body Movin' featuring J Rocc and Karriem Riggins", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 195343, | |
"id" : "3E597BCFDAA6B720", | |
"minute" : 1347561274.453782, | |
"name" : "Dime Piece featuring Dwele (Remix)", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 214935, | |
"id" : "4FBC6AC65AAB9D1F", | |
"minute" : 1347561469.862879, | |
"name" : "Love Movin' featuring Black Thought", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Shining", | |
"artist" : "J Dilla", | |
"duration" : 232594, | |
"id" : "A4FD91E84C09AA26", | |
"minute" : 1347561684.827753, | |
"name" : "Won't Do", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 12721, | |
"id" : "4FD9390CCDF72B58", | |
"minute" : 1347561917.428646, | |
"name" : "Donuts (Outro)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 177162, | |
"id" : "D5A20B8ABD151468", | |
"minute" : 1347561930.06968, | |
"name" : "Workinonit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 98560, | |
"id" : "EE50AB934CE156FC", | |
"minute" : 1347562107.306682, | |
"name" : "Waves", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 35683, | |
"id" : "FCEC094A4C71D79E", | |
"minute" : 1347562205.833667, | |
"name" : "Light My Fire", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 49946, | |
"id" : "186004C1FB927786", | |
"minute" : 1347562241.395765, | |
"name" : "The New", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 99082, | |
"id" : "87A3927A1191F0D3", | |
"minute" : 1347562291.359703, | |
"name" : "Stop", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 84035, | |
"id" : "75AD8831CB782FEE", | |
"minute" : 1347562390.4094, | |
"name" : "People", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 112535, | |
"id" : "7A6D8CA6B978F10D", | |
"minute" : 1347562474.457887, | |
"name" : "The Diff'rence", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 91141, | |
"id" : "7737A46ECCF36622", | |
"minute" : 1347562586.925241, | |
"name" : "Mash", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 98768, | |
"id" : "E6D23F87417E4AF1", | |
"minute" : 1347562678.030624, | |
"name" : "Time: The Donut the Heart", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 81188, | |
"id" : "FB5156CE41CC834C", | |
"minute" : 1347562776.83865, | |
"name" : "Glazed", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 104620, | |
"id" : "1AD958E4890EF51B", | |
"minute" : 1347562857.901478, | |
"name" : "Airworks", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 115330, | |
"id" : "6C09CC442626CA55", | |
"minute" : 1347562962.52544, | |
"name" : "Lightworks", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 115330, | |
"id" : "6C09CC442626CA55", | |
"minute" : 1347563005.13053, | |
"name" : "Lightworks", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 115330, | |
"id" : "6C09CC442626CA55", | |
"minute" : 1347570055.625504, | |
"name" : "Lightworks", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 61440, | |
"id" : "EB34C90B777B8F05", | |
"minute" : 1347570129.957063, | |
"name" : "Stepson of the Clapper", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 77008, | |
"id" : "BBB6D4320BEFA9F2", | |
"minute" : 1347570191.415992, | |
"name" : "The Twister (Huh, What)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 71053, | |
"id" : "44B07F8D5FD1C48F", | |
"minute" : 1347570268.371524, | |
"name" : "One Eleven", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 107337, | |
"id" : "6D5CE92C4913C111", | |
"minute" : 1347570339.458831, | |
"name" : "Two Can Win", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 119431, | |
"id" : "C6185561D7542E0E", | |
"minute" : 1347570446.788372, | |
"name" : "Don't Cry", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 113763, | |
"id" : "DD4E125F1306A5", | |
"minute" : 1347570566.111309, | |
"name" : "Anti-American Graffiti", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 79568, | |
"id" : "4E86C696C6D89632", | |
"minute" : 1347570679.908292, | |
"name" : "Geek Down", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 54204, | |
"id" : "BF34873AB053BB4F", | |
"minute" : 1347570759.372669, | |
"name" : "Thunder", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 65227, | |
"id" : "CDCEC43C90A23E20", | |
"minute" : 1347570813.560391, | |
"name" : "Gobstopper", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 78288, | |
"id" : "487D4A612A4B5A93", | |
"minute" : 1347570878.794351, | |
"name" : "One for Ghost", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 76460, | |
"id" : "92A2ECE09D2A9165", | |
"minute" : 1347570957.021275, | |
"name" : "Dilla Says Go", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 75102, | |
"id" : "D8D9DA364E2CF284", | |
"minute" : 1347571033.468639, | |
"name" : "Walkinonit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 83826, | |
"id" : "12DC2CA3FA2A1C86", | |
"minute" : 1347571108.531724, | |
"name" : "The Factory", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 60917, | |
"id" : "BB42F9E0920D1CFD", | |
"minute" : 1347571192.297725, | |
"name" : "U-Love", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 76773, | |
"id" : "624C162EA6855498", | |
"minute" : 1347571253.164958, | |
"name" : "Hi.", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 87614, | |
"id" : "E3C4A000B6A61244", | |
"minute" : 1347571329.952154, | |
"name" : "Bye.", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 99657, | |
"id" : "4AD8206E7846DB23", | |
"minute" : 1347571417.544221, | |
"name" : "Last Donut of the Night", | |
"rating" : null | |
}, | |
{ | |
"album" : "Donuts", | |
"artist" : "J Dilla (Jay Dee)", | |
"duration" : 71706, | |
"id" : "7EB90E054B84B788", | |
"minute" : 1347571517.190601, | |
"name" : "Donuts (Intro)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Several Shades Of Why", | |
"artist" : "J Mascis", | |
"duration" : 190275, | |
"id" : "32C60002C41C8741", | |
"minute" : 1347571588.801803, | |
"name" : "Listen to Me", | |
"rating" : null | |
}, | |
{ | |
"album" : "Several Shades Of Why", | |
"artist" : "J Mascis", | |
"duration" : 190275, | |
"id" : "32C60002C41C8741", | |
"minute" : 1347571711.911089, | |
"name" : "Listen to Me", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Several Shades Of Why", | |
"artist" : "J Mascis", | |
"duration" : 295209, | |
"id" : "CC7D95A57EC09581", | |
"minute" : 1347571779.111922, | |
"name" : "Several Shades of Why", | |
"rating" : null | |
}, | |
{ | |
"album" : "Several Shades Of Why", | |
"artist" : "J Mascis", | |
"duration" : 193750, | |
"id" : "56DF9C55AA97BC3", | |
"minute" : 1347572074.381441, | |
"name" : "Not Enough", | |
"rating" : null | |
}, | |
{ | |
"album" : "Several Shades Of Why", | |
"artist" : "J Mascis", | |
"duration" : 287817, | |
"id" : "D29E271928DFBCCC", | |
"minute" : 1347572268.228165, | |
"name" : "Very Nervous and Love", | |
"rating" : null | |
}, | |
{ | |
"album" : "Several Shades Of Why", | |
"artist" : "J Mascis", | |
"duration" : 290951, | |
"id" : "F580AB42985DECD0", | |
"minute" : 1347572556.071665, | |
"name" : "Is It Done", | |
"rating" : null | |
}, | |
{ | |
"album" : "Several Shades Of Why", | |
"artist" : "J Mascis", | |
"duration" : 290951, | |
"id" : "F580AB42985DECD0", | |
"minute" : 1347572677.930766, | |
"name" : "Is It Done", | |
"rating" : null | |
}, | |
{ | |
"album" : "Collision Course", | |
"artist" : "Jay-Z And Linkin Park", | |
"duration" : 156368, | |
"id" : "232814353230DEA7", | |
"minute" : 1347574725.628531, | |
"name" : "Big Pimpin'\/Papercut", | |
"rating" : null | |
}, | |
{ | |
"album" : "Collision Course", | |
"artist" : "Jay-Z And Linkin Park", | |
"duration" : 211226, | |
"id" : "A5322973283FDFE8", | |
"minute" : 1347574882.110394, | |
"name" : "Jigga What\/Faint", | |
"rating" : null | |
}, | |
{ | |
"album" : "Collision Course", | |
"artist" : "Jay-Z And Linkin Park", | |
"duration" : 205322, | |
"id" : "C5B8A0F42D325ED3", | |
"minute" : 1347575093.344828, | |
"name" : "Numb\/Encore", | |
"rating" : null | |
}, | |
{ | |
"album" : "Collision Course", | |
"artist" : "Jay-Z And Linkin Park", | |
"duration" : 164911, | |
"id" : "55C54150908157CB", | |
"minute" : 1347575298.749033, | |
"name" : "Izzo\/In The End", | |
"rating" : null | |
}, | |
{ | |
"album" : "Collision Course", | |
"artist" : "Jay-Z And Linkin Park", | |
"duration" : 295888, | |
"id" : "E0A7B7987F5033CF", | |
"minute" : 1347575463.626511, | |
"name" : "Points Of Authority\/99 Problem", | |
"rating" : null | |
}, | |
{ | |
"album" : "Basement Style", | |
"artist" : "Jaya The Cat", | |
"duration" : 176039, | |
"id" : "3AE6BE9EEEF29F6D", | |
"minute" : 1347575759.588334, | |
"name" : "The Wilderness", | |
"rating" : null | |
}, | |
{ | |
"album" : "Basement Style", | |
"artist" : "Jaya The Cat", | |
"duration" : 176039, | |
"id" : "3AE6BE9EEEF29F6D", | |
"minute" : 1347575803.96411, | |
"name" : "The Wilderness", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347576350.821501, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347576350.828248, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "One Shot '80 - Vol.4", | |
"artist" : "A-Ha", | |
"duration" : 224391, | |
"id" : "FD3C27E3923302D7", | |
"minute" : 1347636004.251863, | |
"name" : "Take On Me", | |
"rating" : null | |
}, | |
{ | |
"album" : "Little Plastic Castle", | |
"artist" : "Ani DiFranco", | |
"duration" : 240487, | |
"id" : "880D40ACEFCFCFCD", | |
"minute" : 1347636011.478812, | |
"name" : "Fuel", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 169325, | |
"id" : "4FD7F1FF26BBCF5", | |
"minute" : 1347636015.823788, | |
"name" : "Amplifiers", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 253675, | |
"id" : "673778FE1B2935A7", | |
"minute" : 1347636185.240965, | |
"name" : "Te Amo", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 166347, | |
"id" : "E388E389EC37B213", | |
"minute" : 1347636438.871976, | |
"name" : "Parallax", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 249547, | |
"id" : "7B1AA862152C777A", | |
"minute" : 1347636605.187182, | |
"name" : "Modern Aquatic Nightsongs", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 185887, | |
"id" : "20D2F802B00F2C46", | |
"minute" : 1347636854.785673, | |
"name" : "Mona Lisa", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 167575, | |
"id" : "2F26B458A9580A97", | |
"minute" : 1347637040.654747, | |
"name" : "Praying Man", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 275200, | |
"id" : "75DCA634E4ACEC97", | |
"minute" : 1347637208.200269, | |
"name" : "Doldrums", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 297639, | |
"id" : "A186AC72B864C9A3", | |
"minute" : 1347637483.500101, | |
"name" : "My Angel Is Broken", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 297639, | |
"id" : "A186AC72B864C9A3", | |
"minute" : 1347637500.555819, | |
"name" : "My Angel Is Broken", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 297639, | |
"id" : "A186AC72B864C9A3", | |
"minute" : 1347637502.690615, | |
"name" : "My Angel Is Broken", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 384679, | |
"id" : "731C0F4AE83F3512", | |
"minute" : 1347637783.533388, | |
"name" : "Terra Incognita", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 384679, | |
"id" : "731C0F4AE83F3512", | |
"minute" : 1347637976.553395, | |
"name" : "Terra Incognita", | |
"rating" : null | |
}, | |
{ | |
"album" : "Parallax", | |
"artist" : "Atlas Sound", | |
"duration" : 384679, | |
"id" : "731C0F4AE83F3512", | |
"minute" : 1347725123.194563, | |
"name" : "Terra Incognita", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Brandenburg Concertos CD1 (Neville Marriner, Academy of St Martin)", | |
"artist" : "Bach", | |
"duration" : 307382, | |
"id" : "924157CEC9A76E5E", | |
"minute" : 1347725136.480873, | |
"name" : "Brandenburg Concerto No. 2 in F Major - 1. Allegro", | |
"rating" : null | |
}, | |
{ | |
"album" : "The Brandenburg Concertos CD1 (Neville Marriner, Academy of St Martin)", | |
"artist" : "Bach", | |
"duration" : 307382, | |
"id" : "924157CEC9A76E5E", | |
"minute" : 1347725139.732575, | |
"name" : "Brandenburg Concerto No. 2 in F Major - 1. Allegro", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 324832, | |
"id" : "D26E5C1BE80B3FE2", | |
"minute" : 1347725169.876859, | |
"name" : "Drover", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 330605, | |
"id" : "AB9F7A8C87E6B666", | |
"minute" : 1347725494.88061, | |
"name" : "Baby's Breath", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 333217, | |
"id" : "E48B954B223FD868", | |
"minute" : 1347725825.578637, | |
"name" : "America!", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 333217, | |
"id" : "E48B954B223FD868", | |
"minute" : 1347726034.471172, | |
"name" : "America!", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 333217, | |
"id" : "E48B954B223FD868", | |
"minute" : 1347726202.831069, | |
"name" : "America!", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 353253, | |
"id" : "7A931DBFA10CE3BB", | |
"minute" : 1347726327.639169, | |
"name" : "Universal Applicant", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 353253, | |
"id" : "7A931DBFA10CE3BB", | |
"minute" : 1347726405.258637, | |
"name" : "Universal Applicant", | |
"rating" : null | |
}, | |
{ | |
"album" : "Apocalypse", | |
"artist" : "Bill Callahan", | |
"duration" : 353253, | |
"id" : "7A931DBFA10CE3BB", | |
"minute" : 1347726889.933483, | |
"name" : "Universal Applicant", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 86099, | |
"id" : "6B3EC131C0965599", | |
"minute" : 1347726898.979576, | |
"name" : "Show Me Forgiveness", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 86099, | |
"id" : "6B3EC131C0965599", | |
"minute" : 1347726934.842792, | |
"name" : "Show Me Forgiveness", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 86099, | |
"id" : "6B3EC131C0965599", | |
"minute" : 1347823922.607061, | |
"name" : "Show Me Forgiveness", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 283533, | |
"id" : "CD96BCAE222DEA81", | |
"minute" : 1347823926.040082, | |
"name" : "Where Is The Line?", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Bjork", | |
"duration" : 196284, | |
"id" : "224A5EB1F3FFD739", | |
"minute" : 1347823928.107636, | |
"name" : "Vokuro", | |
"rating" : null | |
}, | |
{ | |
"album" : "Homogenic", | |
"artist" : "Bjork", | |
"duration" : 305658, | |
"id" : "9ABB683C0073E5F6", | |
"minute" : 1347823935.304466, | |
"name" : "Joga", | |
"rating" : null | |
}, | |
{ | |
"album" : "Homogenic", | |
"artist" : "Bjork", | |
"duration" : 199235, | |
"id" : "122CA70F90E4BBC6", | |
"minute" : 1347824241.116289, | |
"name" : "Pluto", | |
"rating" : null | |
}, | |
{ | |
"album" : "Homogenic", | |
"artist" : "Bjork", | |
"duration" : 198008, | |
"id" : "640D850296F6978", | |
"minute" : 1347824440.420694, | |
"name" : "Unravel", | |
"rating" : null | |
}, | |
{ | |
"album" : "Homogenic", | |
"artist" : "Bjork", | |
"duration" : 269244, | |
"id" : "2D20F85D4C50A89E", | |
"minute" : 1347824638.522449, | |
"name" : "5 Years", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 209031, | |
"id" : "81C67BE921FCF3D0", | |
"minute" : 1347824907.980279, | |
"name" : "Pleasure Is All Mine", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 86099, | |
"id" : "6B3EC131C0965599", | |
"minute" : 1347825117.105583, | |
"name" : "Show Me Forgiveness", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 283533, | |
"id" : "CD96BCAE222DEA81", | |
"minute" : 1347825203.341469, | |
"name" : "Where Is The Line?", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Bjork", | |
"duration" : 196284, | |
"id" : "224A5EB1F3FFD739", | |
"minute" : 1347825487.065438, | |
"name" : "Vokuro", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 115304, | |
"id" : "E48DD27A089C00AD", | |
"minute" : 1347825539.597827, | |
"name" : "Öll Birtan", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 249547, | |
"id" : "A649B26168749CC5", | |
"minute" : 1347825544.091633, | |
"name" : "Who Is It", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 193828, | |
"id" : "967F8F5CE0D32B85", | |
"minute" : 1347825545.983361, | |
"name" : "Oceania", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 206027, | |
"id" : "FA678071B725DEDE", | |
"minute" : 1347825739.999011, | |
"name" : "Submarine", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 298501, | |
"id" : "371F6AF0FFE741B9", | |
"minute" : 1347825742.468654, | |
"name" : "Sonnet \/ Unrealities IX", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 121835, | |
"id" : "9BC98A2B493E5ACD", | |
"minute" : 1347826041.170128, | |
"name" : "Desired Constellation", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 250906, | |
"id" : "E4E31683568B3EC4", | |
"minute" : 1347826163.026277, | |
"name" : "Ancestors", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 244584, | |
"id" : "6B22C57CAA1936D1", | |
"minute" : 1347826414.06824, | |
"name" : "Mouth's Cradle", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 86961, | |
"id" : "C8C0AF6FBF498A95", | |
"minute" : 1347826658.727718, | |
"name" : "Miðvikudags", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 244584, | |
"id" : "6A54526B445203D6", | |
"minute" : 1347826745.66011, | |
"name" : "Triumph Of The Heart", | |
"rating" : null | |
}, | |
{ | |
"album" : "Medulla", | |
"artist" : "Björk", | |
"duration" : 244584, | |
"id" : "6A54526B445203D6", | |
"minute" : 1347826897.932668, | |
"name" : "Triumph Of The Heart", | |
"rating" : null | |
}, | |
{ | |
"album" : "10997", | |
"artist" : "mary rose cook", | |
"duration" : 158081, | |
"id" : "C0DAF407923B7E78", | |
"minute" : 1347851735.53732, | |
"name" : "Argentina", | |
"rating" : null | |
}, | |
{ | |
"album" : "10997", | |
"artist" : "mary rose cook", | |
"duration" : 217174, | |
"id" : "25B5C5273F033783", | |
"minute" : 1347851894.414868, | |
"name" : "Somaliland", | |
"rating" : null | |
}, | |
{ | |
"album" : "10997", | |
"artist" : "mary rose cook", | |
"duration" : 154782, | |
"id" : "6F63077385104468", | |
"minute" : 1347852111.66225, | |
"name" : "Barcelona", | |
"rating" : null | |
}, | |
{ | |
"album" : "10997", | |
"artist" : "mary rose cook", | |
"duration" : 214063, | |
"id" : "E065A7DFA2C48A0A", | |
"minute" : 1347852266.530894, | |
"name" : "Nicaragua", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 174680, | |
"id" : "3F8F926009C80992", | |
"minute" : 1347852480.646586, | |
"name" : "Bye Bye Baby", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 174680, | |
"id" : "3F8F926009C80992", | |
"minute" : 1347852485.875788, | |
"name" : "Bye Bye Baby", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 174680, | |
"id" : "3F8F926009C80992", | |
"minute" : 1347900909.503718, | |
"name" : "Bye Bye Baby", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 168228, | |
"id" : "73ED0EE4F35B594B", | |
"minute" : 1347901079.167977, | |
"name" : "I Don't want To Take A Chance", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 161462, | |
"id" : "39D36363C6BDA124", | |
"minute" : 1347901247.482444, | |
"name" : "Strange Love", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 161462, | |
"id" : "39D36363C6BDA124", | |
"minute" : 1347901295.574968, | |
"name" : "Strange Love", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 161462, | |
"id" : "39D36363C6BDA124", | |
"minute" : 1347901354.382491, | |
"name" : "Strange Love", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 161462, | |
"id" : "39D36363C6BDA124", | |
"minute" : 1347901390.455667, | |
"name" : "Strange Love", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 146755, | |
"id" : "3C5C7B5B9DF6294C", | |
"minute" : 1347901445.411071, | |
"name" : "The One Who Really Loves You", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 161645, | |
"id" : "C7D7B41E7AFA097B", | |
"minute" : 1347901592.234737, | |
"name" : "You Beat Me To The Punch", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 140591, | |
"id" : "71062F3413BE6D74", | |
"minute" : 1347901753.89044, | |
"name" : "Old Love (Let's Try Again)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 166582, | |
"id" : "2B31DC2761F24781", | |
"minute" : 1347901894.539926, | |
"name" : "Two Lovers", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 165746, | |
"id" : "108FD695C3C39930", | |
"minute" : 1347902061.10242, | |
"name" : "Operator", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 174288, | |
"id" : "A0A9B696284B490D", | |
"minute" : 1347902226.911831, | |
"name" : "Laughing Boy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 168594, | |
"id" : "89CED923A241D2E5", | |
"minute" : 1347902401.316547, | |
"name" : "Two Wrongs Don't Make A Right", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 150569, | |
"id" : "6615D971F1B6AB89", | |
"minute" : 1347902569.910537, | |
"name" : "Goodbye And Good Luck", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 166138, | |
"id" : "68A1FD7375785C33", | |
"minute" : 1347902720.688386, | |
"name" : "Your Old Stand By", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 176326, | |
"id" : "526BA18AC9112CF2", | |
"minute" : 1347902886.832184, | |
"name" : "What Love Has Joined Together", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 152111, | |
"id" : "C353B3BBDB883F14", | |
"minute" : 1347903063.233954, | |
"name" : "You Lost The Sweetest Boy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 172930, | |
"id" : "155D0C2880F389F2", | |
"minute" : 1347903215.47446, | |
"name" : "Whats Easy For Two Is So Hard", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 168280, | |
"id" : "FF29DFBAC09B07EB", | |
"minute" : 1347903388.494967, | |
"name" : "My Guy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 160444, | |
"id" : "9670F19ED5D8816C", | |
"minute" : 1347903556.803706, | |
"name" : "Oh Little Boy (What Did You Do To Me)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 149054, | |
"id" : "FD14198C45ADB77A", | |
"minute" : 1347903717.336736, | |
"name" : "Once Upon A Time (Duet With Marvin Gaye)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 143124, | |
"id" : "6C6F62F245DE355", | |
"minute" : 1347903866.442645, | |
"name" : "What's The Matter With You Baby (Duet With Marvin Gaye)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 143124, | |
"id" : "6C6F62F245DE355", | |
"minute" : 1347903898.72838, | |
"name" : "What's The Matter With You Baby (Duet With Marvin Gaye)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 143124, | |
"id" : "6C6F62F245DE355", | |
"minute" : 1347904292.675205, | |
"name" : "What's The Matter With You Baby (Duet With Marvin Gaye)", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 160417, | |
"id" : "68F4376B29F120B8", | |
"minute" : 1347904403.711809, | |
"name" : "Whisper You Love Me Boy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 160835, | |
"id" : "6E22E5467E46B88A", | |
"minute" : 1347904564.15157, | |
"name" : "I'll Be Available", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 136333, | |
"id" : "217A50B2EDBC476E", | |
"minute" : 1347904725.031504, | |
"name" : "When I'm Gone", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 136333, | |
"id" : "217A50B2EDBC476E", | |
"minute" : 1347904847.961416, | |
"name" : "When I'm Gone", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 136333, | |
"id" : "217A50B2EDBC476E", | |
"minute" : 1347907793.408782, | |
"name" : "When I'm Gone", | |
"rating" : null | |
}, | |
{ | |
"album" : "Ultimate Collection", | |
"artist" : "Mary Wells", | |
"duration" : 129018, | |
"id" : "496B568FD2AD1605", | |
"minute" : 1347907807.021774, | |
"name" : "Use Your Head", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 175830, | |
"id" : "FDDCF9884E95CCD3", | |
"minute" : 1347907816.922918, | |
"name" : "Chloe In The Afternoon", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 208666, | |
"id" : "2BDD743C672119E2", | |
"minute" : 1347907818.938212, | |
"name" : "Cheerleader", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 265116, | |
"id" : "66F192518C171A04", | |
"minute" : 1347908027.776834, | |
"name" : "Surgeon", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 213629, | |
"id" : "E10E5BDD74E0E47D", | |
"minute" : 1347908293.063746, | |
"name" : "Northern Lights", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 268564, | |
"id" : "27D6A9F1DE327C18", | |
"minute" : 1347908506.698823, | |
"name" : "Strange Mercy", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 253257, | |
"id" : "9C91E6062276B3DE", | |
"minute" : 1347908775.320293, | |
"name" : "Neutered Fruit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 253257, | |
"id" : "9C91E6062276B3DE", | |
"minute" : 1347908921.835941, | |
"name" : "Neutered Fruit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 253257, | |
"id" : "9C91E6062276B3DE", | |
"minute" : 1347908958.926384, | |
"name" : "Neutered Fruit", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 208927, | |
"id" : "3340A0B759BD2894", | |
"minute" : 1347909067.748038, | |
"name" : "Champagne Year", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 243591, | |
"id" : "A71F1952821F5C14", | |
"minute" : 1347909276.801703, | |
"name" : "Dilettante", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 196284, | |
"id" : "83AD2063F420A39D", | |
"minute" : 1347909520.485917, | |
"name" : "Hysterical Strength", | |
"rating" : null | |
}, | |
{ | |
"album" : "Strange Mercy", | |
"artist" : "St. Vincent", | |
"duration" : 208091, | |
"id" : "A4172676AA52615A", | |
"minute" : 1347909717.010783, | |
"name" : "Year Of The Tiger", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347909924.978019, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347920336.013062, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 347846, | |
"id" : "55CFEA8145B38B0A", | |
"minute" : 1347929613.333614, | |
"name" : "Threads", | |
"rating" : null | |
}, | |
{ | |
"album" : "Dummy", | |
"artist" : "Portishead", | |
"duration" : 229272, | |
"id" : "99721A58A347032A", | |
"minute" : 1347929961.759221, | |
"name" : "It's a Fire", | |
"rating" : null | |
}, | |
{ | |
"album" : "Dummy", | |
"artist" : "Portishead", | |
"duration" : 229272, | |
"id" : "99721A58A347032A", | |
"minute" : 1347930060.354045, | |
"name" : "It's a Fire", | |
"rating" : 100 | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 300826, | |
"id" : "A9BA09016DF5C908", | |
"minute" : 1347930191.132425, | |
"name" : "Silence", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 300826, | |
"id" : "A9BA09016DF5C908", | |
"minute" : 1347930278.801222, | |
"name" : "Silence", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 300826, | |
"id" : "A9BA09016DF5C908", | |
"minute" : 1347930541.165481, | |
"name" : "Silence", | |
"rating" : null | |
}, | |
{ | |
"album" : "Third", | |
"artist" : "Portishead", | |
"duration" : 300826, | |
"id" : "A9BA09016DF5C908", | |
"minute" : 1347930541.777701, | |
"name" : "Silence", | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347931949.115999, | |
"name" : null, | |
"rating" : null | |
}, | |
{ | |
"album" : null, | |
"artist" : null, | |
"duration" : null, | |
"id" : "0", | |
"minute" : 1347931949.124212, | |
"name" : null, | |
"rating" : null | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment