hornairs-scrobbler 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/.gitignore +13 -0
  2. data/.loadpath +5 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +19 -0
  5. data/Manifest +75 -0
  6. data/README.rdoc +104 -0
  7. data/Rakefile +10 -0
  8. data/VERSION.yml +5 -0
  9. data/examples/album.rb +20 -0
  10. data/examples/artist.rb +13 -0
  11. data/examples/playlist.rb +7 -0
  12. data/examples/scrobble.rb +31 -0
  13. data/examples/tag.rb +11 -0
  14. data/examples/track.rb +12 -0
  15. data/examples/user.rb +15 -0
  16. data/lib/scrobbler.rb +33 -0
  17. data/lib/scrobbler/album.rb +181 -0
  18. data/lib/scrobbler/artist.rb +165 -0
  19. data/lib/scrobbler/auth.rb +47 -0
  20. data/lib/scrobbler/base.rb +105 -0
  21. data/lib/scrobbler/event.rb +105 -0
  22. data/lib/scrobbler/geo.rb +27 -0
  23. data/lib/scrobbler/helper/image.rb +52 -0
  24. data/lib/scrobbler/helper/streamable.rb +40 -0
  25. data/lib/scrobbler/library.rb +112 -0
  26. data/lib/scrobbler/playing.rb +49 -0
  27. data/lib/scrobbler/playlist.rb +87 -0
  28. data/lib/scrobbler/radio.rb +12 -0
  29. data/lib/scrobbler/rest.rb +47 -0
  30. data/lib/scrobbler/scrobble.rb +116 -0
  31. data/lib/scrobbler/session.rb +9 -0
  32. data/lib/scrobbler/shout.rb +21 -0
  33. data/lib/scrobbler/simpleauth.rb +60 -0
  34. data/lib/scrobbler/tag.rb +113 -0
  35. data/lib/scrobbler/track.rb +152 -0
  36. data/lib/scrobbler/user.rb +222 -0
  37. data/lib/scrobbler/venue.rb +67 -0
  38. data/setup.rb +1585 -0
  39. data/tasks/jeweler.rake +15 -0
  40. data/tasks/rdoc.rake +7 -0
  41. data/tasks/tests.rake +13 -0
  42. data/tasks/yardoc.rake +8 -0
  43. data/test/fixtures/xml/album/info.xml +43 -0
  44. data/test/fixtures/xml/artist/fans.xml +52 -0
  45. data/test/fixtures/xml/artist/info.xml +58 -0
  46. data/test/fixtures/xml/artist/similar.xml +1004 -0
  47. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  48. data/test/fixtures/xml/artist/toptags.xml +19 -0
  49. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  50. data/test/fixtures/xml/auth/session.xml +7 -0
  51. data/test/fixtures/xml/auth/token.xml +3 -0
  52. data/test/fixtures/xml/event/attend.xml +3 -0
  53. data/test/fixtures/xml/event/attendees.xml +53 -0
  54. data/test/fixtures/xml/event/event.xml +35 -0
  55. data/test/fixtures/xml/event/shouts.xml +35 -0
  56. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  57. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  58. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  59. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  60. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  61. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  62. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  63. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  64. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  66. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  67. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  68. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  69. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  70. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  71. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  72. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  73. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  75. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  76. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  77. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  78. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  79. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  80. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  81. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  82. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  83. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  84. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  85. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  86. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  87. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  88. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  89. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  90. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  91. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  92. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  93. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  96. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  97. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  98. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  99. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  100. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  101. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  103. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  104. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  105. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  106. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  107. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  108. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  109. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  110. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  111. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  112. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  113. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  114. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  115. data/test/fixtures/xml/tag/similar.xml +254 -0
  116. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  117. data/test/fixtures/xml/tag/topartists.xml +605 -0
  118. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  119. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  120. data/test/fixtures/xml/track/fans.xml +34 -0
  121. data/test/fixtures/xml/track/info.xml +53 -0
  122. data/test/fixtures/xml/track/toptags.xml +504 -0
  123. data/test/fixtures/xml/user/events.xml +401 -0
  124. data/test/fixtures/xml/user/friends.xml +30 -0
  125. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  126. data/test/fixtures/xml/user/neighbours.xml +23 -0
  127. data/test/fixtures/xml/user/playlists.xml +61 -0
  128. data/test/fixtures/xml/user/profile.xml +12 -0
  129. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  130. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  131. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  132. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  133. data/test/fixtures/xml/user/topalbums.xml +61 -0
  134. data/test/fixtures/xml/user/topartists.xml +41 -0
  135. data/test/fixtures/xml/user/toptags.xml +44 -0
  136. data/test/fixtures/xml/user/toptracks.xml +65 -0
  137. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  138. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  139. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  140. data/test/fixtures/xml/venue/events.xml +151 -0
  141. data/test/fixtures/xml/venue/venue.xml +16 -0
  142. data/test/mocks/rest.rb +212 -0
  143. data/test/spec_helper.rb +7 -0
  144. data/test/test_helper.rb +20 -0
  145. data/test/unit/album_spec.rb +52 -0
  146. data/test/unit/artist_spec.rb +130 -0
  147. data/test/unit/auth_spec.rb +36 -0
  148. data/test/unit/event_spec.rb +109 -0
  149. data/test/unit/geo_spec.rb +148 -0
  150. data/test/unit/library_spec.rb +133 -0
  151. data/test/unit/playing_test.rb +53 -0
  152. data/test/unit/playlist_spec.rb +25 -0
  153. data/test/unit/radio_spec.rb +22 -0
  154. data/test/unit/scrobble_spec.rb +55 -0
  155. data/test/unit/scrobble_test.rb +69 -0
  156. data/test/unit/simpleauth_test.rb +45 -0
  157. data/test/unit/tag_spec.rb +101 -0
  158. data/test/unit/track_spec.rb +95 -0
  159. data/test/unit/user_spec.rb +264 -0
  160. data/test/unit/venue_spec.rb +104 -0
  161. metadata +265 -0
@@ -0,0 +1,401 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <events user="mokele" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" total="7">
4
+ <event status="0">
5
+ <id>1030003</id>
6
+ <title>The Mars Volta</title>
7
+
8
+ <artists>
9
+ <artist>The Mars Volta</artist>
10
+ <headliner>The Mars Volta</headliner>
11
+ </artists>
12
+ <venue>
13
+ <id>8796717</id>
14
+ <name>Somerset House</name>
15
+ <location>
16
+ <city>London</city>
17
+ <country>United Kingdom</country>
18
+ <street>Strand</street>
19
+ <postalcode>WC2R 1LA</postalcode>
20
+ <geo:point>
21
+ <geo:lat>51.510732</geo:lat>
22
+ <geo:long>-0.116937</geo:long>
23
+ </geo:point>
24
+ </location>
25
+ <url>http://www.last.fm/venue/8796717</url>
26
+ </venue>
27
+ <startDate>Mon, 13 Jul 2009 19:30:00</startDate>
28
+ <description><![CDATA[<div class="bbcode"><a href="http://www.nme.com/news/nme/44079" rel="nofollow">http://www.nme.com/news/nme/44079</a></div>]]></description>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34/418205.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64/418205.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/418205.jpg</image>
32
+ <attendance>99</attendance>
33
+ <reviews>0</reviews>
34
+ <tag>lastfm:event=1030003</tag>
35
+ <url>http://www.last.fm/event/1030003</url>
36
+ </event>
37
+ <event status="0">
38
+ <id>1022812</id>
39
+ <title>Nine Inch Nails &amp; Jane's Addiction</title>
40
+
41
+ <artists>
42
+ <artist>Nine Inch Nails</artist>
43
+ <artist>Jane's Addiction</artist>
44
+ <artist>Mew</artist>
45
+ <headliner>Nine Inch Nails</headliner>
46
+ </artists>
47
+ <venue>
48
+ <id>8783707</id>
49
+ <name>O2 Arena</name>
50
+ <location>
51
+ <city>London</city>
52
+ <country>United Kingdom</country>
53
+ <street>Peninsular Square</street>
54
+ <postalcode>SE10 0DX</postalcode>
55
+ <geo:point>
56
+ <geo:lat>51.5017382136074</geo:lat>
57
+ <geo:long>0.00310377882291706</geo:long>
58
+ </geo:point>
59
+ </location>
60
+ <url>http://www.last.fm/venue/8783707</url>
61
+ </venue>
62
+ <startDate>Wed, 15 Jul 2009 19:00:00</startDate>
63
+ <description><![CDATA[<div class="bbcode">FAQ:<br />
64
+ 1) What is the lineup?<br />
65
+ Mew 7:00 - 7:30<br />
66
+ Jane’s Addiction 7:45 - 9:15<br />
67
+ Nine Inch Nails 9:30 - 11:00<br />
68
+ 2) When do presales/normal tickets enter?<br />
69
+ NIN.com can pick up tickets at 3pm but must enter immediately and not leave. <br />
70
+ 3) How much is beer in the O2?<br />
71
+ £4.30 for a warm plastic pint.<br />
72
+ <br />
73
+ NINE INCH NAILS have announced their only London show this summer at The O2 arena. The industrial rock legends will play the arena on Wednesday 15 July as part of their mammoth NINJA 2009 world tour. Enigmatic main man, Trent Reznor, has confirmed these will be the last NIN shows for some time, and that they will be &quot;much more raw, spontaneous and less scripted&quot; compared to last year's &quot;Lights in the Sky&quot; tour. &quot;It's time to make NIN disappear for a while&quot; he said.<br />
74
+ <br />
75
+ Nine Inch Nails, who will also be appearing at Sonisphere festival in Knebworth in August will be bringing along some very special guests to open the show, in the form of Jane's Addiction. The LA rockers return to the UK after many years absence with the classic line up of Perry Farrell, Dave Navarro, Eric Avery and Stephen Perkins, to warm up the crowd with classics such as Mountain Song, Ocean Size and Been Caught Stealing.<br />
76
+ <br />
77
+ Tickets go on sale on Friday 17 April at 9am.</div>]]></description>
78
+ <image size="small">http://userserve-ak.last.fm/serve/34/10629345.jpg</image>
79
+ <image size="medium">http://userserve-ak.last.fm/serve/64/10629345.jpg</image>
80
+ <image size="large">http://userserve-ak.last.fm/serve/126/10629345.jpg</image>
81
+ <attendance>346</attendance>
82
+ <reviews>0</reviews>
83
+ <tag>lastfm:event=1022812</tag>
84
+ <url>http://www.last.fm/event/1022812</url>
85
+ </event>
86
+ <event status="1">
87
+ <id>1058232</id>
88
+ <title>Polvo</title>
89
+
90
+ <artists>
91
+ <artist>Polvo</artist>
92
+ <artist>Obits</artist>
93
+ <headliner>Polvo</headliner>
94
+ </artists>
95
+ <venue>
96
+ <id>8826164</id>
97
+ <name>South Street Seaport</name>
98
+ <location>
99
+ <city>New York</city>
100
+ <country>United States</country>
101
+ <street>Fulton St &amp; South St, Pier 17</street>
102
+ <postalcode>10038</postalcode>
103
+ <geo:point>
104
+ <geo:lat>40.706903</geo:lat>
105
+ <geo:long>-74.003716</geo:long>
106
+ </geo:point>
107
+ </location>
108
+ <url>http://www.last.fm/venue/8826164</url>
109
+ </venue>
110
+ <startDate>Fri, 31 Jul 2009 18:00:00</startDate>
111
+ <description><![CDATA[<div class="bbcode">6:00 p.m.<br />
112
+ FREE</div>]]></description>
113
+ <image size="small">http://userserve-ak.last.fm/serve/34/207729.jpg</image>
114
+ <image size="medium">http://userserve-ak.last.fm/serve/64/207729.jpg</image>
115
+ <image size="large">http://userserve-ak.last.fm/serve/126/207729.jpg</image>
116
+ <attendance>25</attendance>
117
+ <reviews>0</reviews>
118
+ <tag>lastfm:event=1058232</tag>
119
+ <url>http://www.last.fm/event/1058232</url>
120
+ </event>
121
+ <event status="1">
122
+ <id>915248</id>
123
+ <title>Field Day 2009</title>
124
+
125
+ <artists>
126
+ <artist>Mogwai</artist>
127
+ <artist>Four Tet</artist>
128
+ <artist>Final Fantasy</artist>
129
+ <artist>Mystery Jets</artist>
130
+ <artist>The Horrors</artist>
131
+ <artist>Fennesz</artist>
132
+ <artist>Little Boots</artist>
133
+ <artist>Skream</artist>
134
+ <artist>Audion</artist>
135
+ <artist>Malcolm Middleton</artist>
136
+ <artist>Juana Molina</artist>
137
+ <artist>Erol Alkan</artist>
138
+ <artist>Toumani Diabate</artist>
139
+ <artist>Rusko</artist>
140
+ <artist>Fanfarlo</artist>
141
+ <artist>Errors</artist>
142
+ <artist>Fake Blood</artist>
143
+ <artist>Aeroplane</artist>
144
+ <artist>Woodpigeon</artist>
145
+ <artist>First Aid Kit</artist>
146
+ <artist>The Big Pink</artist>
147
+ <artist>Santigold</artist>
148
+ <artist>Delphic</artist>
149
+ <artist>Micachu and the Shapes</artist>
150
+ <artist>The Thing</artist>
151
+ <artist>The XX</artist>
152
+ <artist>Temper Trap</artist>
153
+ <artist>S.C.U.M</artist>
154
+ <artist>Wet Paint</artist>
155
+ <artist>Apes and Androids</artist>
156
+ <artist>Wild Geese</artist>
157
+ <headliner>Mogwai</headliner>
158
+ </artists>
159
+ <venue>
160
+ <id>8789850</id>
161
+ <name>Victoria Park</name>
162
+ <location>
163
+ <city>London</city>
164
+ <country>United Kingdom</country>
165
+ <street>Victoria Park</street>
166
+ <postalcode>E9</postalcode>
167
+ <geo:point>
168
+ <geo:lat>51.542837</geo:lat>
169
+ <geo:long>-0.039135</geo:long>
170
+ </geo:point>
171
+ </location>
172
+ <url>http://www.last.fm/venue/8789850</url>
173
+ </venue>
174
+ <startDate>Sat, 01 Aug 2009 11:14:01</startDate>
175
+ <description><![CDATA[<div class="bbcode">Eat Your Own Ears Main Stage<br />
176
+ EAT YOUR OWN EARS DJ'S<br />
177
+ ERRORS<br />
178
+ FENNESZ<br />
179
+ FINAL FANTASY<br />
180
+ FIRST AID KIT<br />
181
+ MOGWAI<br />
182
+ SANTIGOLD<br />
183
+ SKREAM<br />
184
+ THE HORRORS<br />
185
+ THE TEMPER TRAP<br />
186
+ <br />
187
+ Adventures in the Beetroot Field Stage<br />
188
+ APES AND ANDROIDS<br />
189
+ FOUR TET<br />
190
+ MICACHU AND THE SHAPES<br />
191
+ MYSTERY JETS<br />
192
+ S.C.U.M<br />
193
+ THE BIG PINK<br />
194
+ <br />
195
+ Village Mentality Stage<br />
196
+ JAMES YORKSTON<br />
197
+ JUANA MOLINA<br />
198
+ MALCOLM MIDDLETON<br />
199
+ THE THING<br />
200
+ TOUMANI DIABATE<br />
201
+ WET PAINT<br />
202
+ WOODPIGEON<br />
203
+ <br />
204
+ Bugged Out! Stage<br />
205
+ AEROPLANE (DJ SET)<br />
206
+ AUDION (LIVE)<br />
207
+ EROL ALKAN<br />
208
+ FAKE BLOOD<br />
209
+ LITTLE BOOTS (LIVE)<br />
210
+ <br />
211
+ Bloggers Delight Stage<br />
212
+ CASPER C (BLOGGERS DELIGHT)<br />
213
+ NO PAIN IN POP DJS<br />
214
+ RUSKO (DJ SET)<br />
215
+ SKULL JUICE (BLOGGERS DELIGHT)<br />
216
+ THE XX <br />
217
+ <br />
218
+ With many more to be announced soon… <br />
219
+ <br />
220
+ SATURDAY 1st AUGUST 2009 <br />
221
+ VICTORIA PARK / LONDON / E9<br />
222
+ TICKET PRICE: £29.50 + BF<br />
223
+ TIME: 11.30 – 10.30PM <br />
224
+ <br />
225
+ <a href="http://www.fielddayfestivals.com" rel="nofollow">www.fielddayfestivals.com</a> / <a href="http://www.seetickets.com" rel="nofollow">www.seetickets.com</a> / <a href="http://www.ticketweb.co.uk" rel="nofollow">www.ticketweb.co.uk</a><br />
226
+ <br />
227
+ On the Saturday 1st August Field Day returns to Victoria Park for its third annual summer extravaganza. Field Day will be one of this summer’s essential festivals and with early bird tickets already sold out, you need to be quick off the mark to snap up yours before this event sells out. <br />
228
+ <br />
229
+ Kicking off proceedings for 2009, Field Day is ecstatic to announce Mogwai as their headline act. The critically acclaimed Scottish rock group, formed by Stuart Braithwaite and Dominic Aitchison in 1995, have since become one of the most influential and best known names in post-rock, they have curated the ATP Festival, sold out The Albert Hall, London and last year released their sixth album 'The Hawk Is Howling'. <br />
230
+ <br />
231
+ Drawing on influences from Joy Division, Pink Floyd, The Jesus and Mary Chain, My Bloody Valentine and post-rock pioneers Slint, Mogwai are the masters of the soft/loud dynamic, as they create a wall of sound that reaches beyond the tumultuous guitars, discovering twinkling optimism in fragile instrumentation and sensitive synths. The lyric-free songs are awe-inspiring and yet accessible. <br />
232
+ <br />
233
+ Domino Record’s amazing ambient electro wizard, Four Tet, will be returning to Field Day, after his mind-blowing performance at its inaugural event two years ago, to play his first live set in London in over a year. Four Tet will be playing new material as he mixes up gloriously rich synthesizer arpeggios; crisp clusters of disco percussion and melodic flourishes.<br />
234
+ <br />
235
+ Former Arab Strap multi-instrumentalist Malcolm Middleton will also be making an appearance at this year’s Field Day. As part of the now-defunct Falkirk duo, he spent 11 years peddling seedy, sweaty tales of cheap booze, late nights and sexual perversion, and his burgeoning solo career seems to be running along the same thematic lines. Working with numerous luminaries from the Glasgow scene, it’s Malcolm and his songs, however, which are the stars here, confirming Middleton's status as one of the best songwriters of his generation.<br />
236
+ <br />
237
+ With the release of his fourth album, ‘When The Haar Rolls In’, at the end of last year, the softly spoken James Yorkston adds a wonderfully folkish element to Field Day’s line up that will complement its village fete vibe. And adding a large slice of funk to this year’s event is Brooklyn’s eccentric party starters Apes and Androids. With famed live performances involving cheerleaders, giant silver skulls and Korean drum circles, this is a band you don’t want to miss. <br />
238
+ <br />
239
+ Touted as natural successors to the mantle currently held by the likes of Battles, Hot Chip and LCD Soundsystem, Errors have been confirmed for a festival slot, plus Fennesz's pretty and melodic music, mixing bent instrumental pop, synth gurgles, white noise, ethereal vocal samples, serious Morricone vibes and much more will add to the spectacle, whilst Dubstep don DJ Skream will be laying down some deliciously jaw-wobbling bass.<br />
240
+ <br />
241
+ Brought to you by London’s most adventurous and daring promoters - Eat Your Own Ears, Adventures In The Beetroot Field, Bugged Out! – Field Day will bring you the most cutting edge line up of bands and DJs in the 2009 Festival season. The heart of East London will be transformed into a Village Fete; 'Village Mentality', a Village Green area within the festival will supply the masses with some countrified fun and games away from sound systems and stages. Try your luck on the tombola, crack a few nuts on the coconut shy - or just sit on some haybales and stuff your face with homemade cake. Inspired by summer sports days and country fetes - Field Day's very own village green will host stalls and activities throughout the daytime, ranging from sack-racing, to whack-the-rat, Bowling for Bacon and lots more to be announced. Come along, have fun, eat baked goods, and as the country saying goes - &quot;be like an ant in the days of summer”…</div>]]></description>
242
+ <image size="small">http://userserve-ak.last.fm/serve/34/23639819.jpg</image>
243
+ <image size="medium">http://userserve-ak.last.fm/serve/64/23639819.jpg</image>
244
+ <image size="large">http://userserve-ak.last.fm/serve/126/23639819.jpg</image>
245
+ <attendance>471</attendance>
246
+ <reviews>0</reviews>
247
+ <tag>lastfm:event=915248</tag>
248
+ <url>http://www.last.fm/event/915248</url>
249
+ </event>
250
+ <event status="0">
251
+ <id>977575</id>
252
+ <title>Michael Jackson - This Is It!</title>
253
+
254
+ <artists>
255
+ <artist>Michael Jackson</artist>
256
+ <headliner>Michael Jackson</headliner>
257
+ </artists>
258
+ <venue>
259
+ <id>8783707</id>
260
+ <name>O2 Arena</name>
261
+ <location>
262
+ <city>London</city>
263
+ <country>United Kingdom</country>
264
+ <street>Peninsular Square</street>
265
+ <postalcode>SE10 0DX</postalcode>
266
+ <geo:point>
267
+ <geo:lat>51.5017382136074</geo:lat>
268
+ <geo:long>0.00310377882291706</geo:long>
269
+ </geo:point>
270
+ </location>
271
+ <url>http://www.last.fm/venue/8783707</url>
272
+ </venue>
273
+ <startDate>Mon, 17 Aug 2009 18:30:00</startDate>
274
+ <description></description>
275
+ <image size="small">http://userserve-ak.last.fm/serve/34/294895.jpg</image>
276
+ <image size="medium">http://userserve-ak.last.fm/serve/64/294895.jpg</image>
277
+ <image size="large">http://userserve-ak.last.fm/serve/126/294895.jpg</image>
278
+ <attendance>14</attendance>
279
+ <reviews>0</reviews>
280
+ <tag>lastfm:event=977575</tag>
281
+ <url>http://www.last.fm/event/977575</url>
282
+ </event>
283
+ <event status="0">
284
+ <id>1048657</id>
285
+ <title>Deftones</title>
286
+
287
+ <artists>
288
+ <artist>Deftones</artist>
289
+ <headliner>Deftones</headliner>
290
+ </artists>
291
+ <venue>
292
+ <id>9005323</id>
293
+ <name>HMV Forum, Kentish Town, NW5 1JY</name>
294
+ <location>
295
+ <city>London</city>
296
+ <country>United Kingdom</country>
297
+ <street></street>
298
+ <postalcode></postalcode>
299
+ <geo:point>
300
+ <geo:lat>51.552028</geo:lat>
301
+ <geo:long>-0.141917</geo:long>
302
+ </geo:point>
303
+ </location>
304
+ <url>http://www.last.fm/venue/9005323</url>
305
+ </venue>
306
+ <startDate>Thu, 27 Aug 2009 19:00:00</startDate>
307
+ <description><![CDATA[<div class="bbcode"><a href="http://seetickets.com/see/event.asp?startno=20&amp;n|artist=null&amp;e|venaudit=HMV+Forum&amp;filler2=ven-srch&amp;filler1=see&amp;orderby=date" rel="nofollow">http://seetickets.com/see/event.asp?startno=20&amp;n|artist=null&amp;e|venaudit=HMV+Forum&amp;filler2=ven-srch&amp;filler1=see&amp;orderby=date</a></div>]]></description>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34/383723.gif</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64/383723.gif</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/383723.gif</image>
311
+ <attendance>103</attendance>
312
+ <reviews>0</reviews>
313
+ <tag>lastfm:event=1048657</tag>
314
+ <url>http://www.last.fm/event/1048657</url>
315
+ </event>
316
+ <event status="0">
317
+ <id>1028116</id>
318
+ <title>ATP Nightmare Before Christmas curated by My Bloody Valentine</title>
319
+
320
+ <artists>
321
+ <artist>My Bloody Valentine</artist>
322
+ <artist>Sonic Youth</artist>
323
+ <artist>De La Soul</artist>
324
+ <artist>The Horrors</artist>
325
+ <artist>EPMD</artist>
326
+ <artist>Sun Ra Arkestra</artist>
327
+ <headliner>My Bloody Valentine</headliner>
328
+ </artists>
329
+ <venue>
330
+ <id>8790394</id>
331
+ <name>Butlins Holiday Resort</name>
332
+ <location>
333
+ <city>Minehead</city>
334
+ <country>United Kingdom</country>
335
+ <street></street>
336
+ <postalcode>TA24 5SH</postalcode>
337
+ <geo:point>
338
+ <geo:lat>51.206675</geo:lat>
339
+ <geo:long>-3.460693</geo:long>
340
+ </geo:point>
341
+ </location>
342
+ <url>http://www.last.fm/venue/8790394</url>
343
+ </venue>
344
+ <startDate>Fri, 04 Dec 2009 11:26:01</startDate>
345
+ <endDate>Sun, 06 Dec 2009 11:26:01</endDate>
346
+ <description><![CDATA[<div class="bbcode">TICKETS ON SALE NOW - <br />
347
+ <a href="http://www.seetickets.com/see/price.asp?code=389580&amp;filler1=see" rel="nofollow">http://www.seetickets.com/see/price.asp?code=389580&amp;filler1=see</a><br />
348
+ <br />
349
+ After the enormous success of last year’s sold out and mind-blowing UK tour and a brilliant turn as the inaugural curators for ATP New York, we are very pleased to announce that the curators for ATP: Nightmare Before Christmas, 2009 will be:<br />
350
+ <br />
351
+ MY BLOODY VALENTINE!<br />
352
+ <br />
353
+ The event will take place at Butlins Holiday Resort in Minehead, England from December 4th - 6th, 2009.<br />
354
+ <br />
355
+ So far confirmed to join the legendary sonic sculptors are:<br />
356
+ <br />
357
+ <a href="http://ws.audioscrobbler.com/music/Sonic+Youth" class="bbcode_artist">Sonic Youth</a><br />
358
+ <a href="http://ws.audioscrobbler.com/music/De+La+Soul" class="bbcode_artist">De La Soul</a><br />
359
+ <a href="http://ws.audioscrobbler.com/music/EPMD" class="bbcode_artist">EPMD</a><br />
360
+ <a href="http://ws.audioscrobbler.com/music/+noredirect/Sun+Ra+Arkestra" class="bbcode_artist">Sun Ra Arkestra</a><br />
361
+ <a href="http://ws.audioscrobbler.com/music/The+Horrors" class="bbcode_artist">The Horrors</a><br />
362
+ <br />
363
+ And of course, <a href="http://ws.audioscrobbler.com/music/My+Bloody+Valentine" class="bbcode_artist">My Bloody Valentine</a> themselves.<br />
364
+ <br />
365
+ Tickets are £150 for room only accommodation and £160 for self-catering accommodation. <br />
366
+ <br />
367
+ INSTALLMENT TICKETS<br />
368
+ <br />
369
+ We’ve also spared a thought for those of you who can’t come up with the money in the next two weeks. ATP will again be running a deposit scheme for the festival to make it easier for some people to pay. We are offering a limited number of 4 berth apartments, both room-only and self-catering to be paid for with a small deposit upfront, and the remaining amount to be paid by the end of July. Both come with a booking fee of £7.50 per person (£30 per apartment). These chalets will be sold at £150 per person room only or £160 per person self catered.<br />
370
+ <br />
371
+ People who would like to hold a 4 berth room only, must pay a deposit of £50 per person, (£200 for the apartment). The remaining £430 must be paid by July 31st.<br />
372
+ <br />
373
+ People who would like to hold a 4 berth self catering, must pay a deposit of £60 per person, (£240 for the apartment). The remaining £430 must be paid by July 31st.<br />
374
+ <br />
375
+ As we will be holding the apartments for you, all deposits will be non-refundable, so please only apply if you are sure you can pay the remaining amount when it is due in July.<br />
376
+ <br />
377
+ If you are able to pay through a normal ticket agency upfront for your whole apartment, then please do so and don't use this scheme and leave the deposit scheme for those people who find it harder to get the full amount together in one go. Also, remember those using this scheme will not receive the two week discount tickets!<br />
378
+ <br />
379
+ You will be required to pay both instaments by either cheque or paypal. Please note, that all cheques must be received and cleared within 5 days of you being accepted into the deposit scheme. If your cheque does not clear, or is not received, your application will go to the bottom of the queue which may mean you do not get to participate in the scheme this year.<br />
380
+ <br />
381
+ Please email deposit (at) atpfestival.com if you would like to take part in the deposit scheme including: your name, address, which type of room you want (room only or self catering) and which payment method you would like to use (paypal or cheque). You will then be notified if your application was successful and details of how to pay by your chosen method, or if you are in a waiting line. Applicants in the waiting line may be accepted if earlier applicants fail to make the first deposit in time.<br />
382
+ <br />
383
+ All emails will be answered within 48 hours. Deposit applications will be granted on a first come first serve basis.<br />
384
+ <br />
385
+ ABOUT THE VENUE<br />
386
+ <br />
387
+ Butlins, Minehead looks out across a superb sandy beach. The site is equipped with a supermarket, newsagent, cash points and restaurants. Onsite facilities include a cinema, Splash Water World - a sub-tropical environment that has a huge wave pool, a swimming pool, 3 flumes and also a flume based raft ride - Ten-pin bowling and amusement arcade. Sports include Archery, Football, Basketball, Darts, Petanque, Fencing, Kwik Cricket, Netball, Rounders, Table Tennis, Outdoor Bowls and Crazy Golf.<br />
388
+ <br />
389
+ Room Only accommodation is available in 2, 3, 4, 5 and 6 berths and offers either double, single or bunk beds with private bathroom and TV, but no kitchen facilities or lounge, more like a hotel room. (£150 + booking fee per ticket)<br />
390
+ <br />
391
+ Self Catering accommodation is available in 4, 6 and 7 berths and offers private bathroom, full kitchen facilities and separate lounge area with TV. (£160 + booking fee per ticket)</div>]]></description>
392
+ <image size="small">http://userserve-ak.last.fm/serve/34/27005971.jpg</image>
393
+ <image size="medium">http://userserve-ak.last.fm/serve/64/27005971.jpg</image>
394
+ <image size="large">http://userserve-ak.last.fm/serve/126/27005971.jpg</image>
395
+ <attendance>295</attendance>
396
+ <reviews>0</reviews>
397
+ <tag>lastfm:event=1028116</tag>
398
+ <url>http://www.last.fm/event/1028116</url>
399
+ </event>
400
+ </events>
401
+ </lfm>
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <friends for="RJ" total="84" page="1" perPage="50" totalPages="2">
4
+ <user>
5
+ <name>lobsterclaw</name>
6
+ <realname>Laura Weiss</realname>
7
+ <image size="small">http://userserve-ak.last.fm/serve/34/1733471.jpg</image>
8
+ <image size="medium">http://userserve-ak.last.fm/serve/64/1733471.jpg</image>
9
+ <image size="large">http://userserve-ak.last.fm/serve/126/1733471.jpg</image>
10
+
11
+ <url>http://www.last.fm/user/lobsterclaw</url>
12
+ </user><user>
13
+ <name>jajo</name>
14
+ <realname></realname>
15
+ <image size="small"></image>
16
+ <image size="medium"></image>
17
+ <image size="large"></image>
18
+ <url>http://www.last.fm/user/jajo</url>
19
+
20
+ </user><user>
21
+ <name>mremond</name>
22
+ <realname>Mickaël</realname>
23
+ <image size="small">http://userserve-ak.last.fm/serve/34/5129358.jpg</image>
24
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5129358.jpg</image>
25
+ <image size="large">http://userserve-ak.last.fm/serve/126/5129358.jpg</image>
26
+
27
+ <url>http://www.last.fm/user/mremond</url>
28
+ </user>
29
+ </friends></lfm>
30
+
@@ -0,0 +1,678 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <lfm status="ok">
3
+ <lovedtracks user="RJ">
4
+ <track>
5
+ <name>Early Mornin' Stoned Pimp</name>
6
+ <mbid/>
7
+ <url>www.last.fm/music/Kid+Rock/_/Early+Mornin%27+Stoned+Pimp</url>
8
+ <date uts="1240918716">28 Apr 2009, 11:38</date>
9
+ <artist>
10
+ <name>Kid Rock</name>
11
+ <mbid>ad0ecd8b-805e-406e-82cb-5b00c3a3a29e</mbid>
12
+ <url>http://www.last.fm/music/Kid+Rock</url>
13
+ </artist>
14
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3458313.jpg</image>
15
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3458313.jpg</image>
16
+ <image size="large">http://userserve-ak.last.fm/serve/126/3458313.jpg</image>
17
+ </track>
18
+ <track>
19
+ <name>Turn Off the Radio</name>
20
+ <mbid/>
21
+ <url>www.last.fm/music/Ice+Cube/_/Turn+Off+the+Radio</url>
22
+ <date uts="1240415908">22 Apr 2009, 15:58</date>
23
+ <artist>
24
+ <name>Ice Cube</name>
25
+ <mbid>1d11e2a1-4531-4d61-a8c7-7b5c6a608fd2</mbid>
26
+ <url>http://www.last.fm/music/Ice+Cube</url>
27
+ </artist>
28
+ <image size="small">http://images.amazon.com/images/P/B00008BL44.01.THUMBZZZ.jpg</image>
29
+ <image size="medium">http://images.amazon.com/images/P/B00008BL44.01.MZZZZZZZ.jpg</image>
30
+ <image size="large">http://images.amazon.com/images/P/B00008BL44.01.LZZZZZZZ.jpg</image>
31
+ </track>
32
+ <track>
33
+ <name>Young</name>
34
+ <mbid/>
35
+ <url>www.last.fm/music/Mokele/_/Young</url>
36
+ <date uts="1236212894">5 Mar 2009, 00:28</date>
37
+ <artist>
38
+ <name>Mokele</name>
39
+ <mbid/>
40
+ <url>http://www.last.fm/music/Mokele</url>
41
+ </artist>
42
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4485816.png</image>
43
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4485816.png</image>
44
+ <image size="large">http://userserve-ak.last.fm/serve/126/4485816.png</image>
45
+ </track>
46
+ <track>
47
+ <name>Hell March</name>
48
+ <mbid/>
49
+ <url>www.last.fm/music/Frank+Klepacki/_/Hell+March</url>
50
+ <date uts="1233237013">29 Jan 2009, 13:50</date>
51
+ <artist>
52
+ <name>Frank Klepacki</name>
53
+ <mbid>4f3d90f0-4ea5-489f-a7d5-4c9496949db4</mbid>
54
+ <url>http://www.last.fm/music/Frank+Klepacki</url>
55
+ </artist>
56
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3613344.jpg</image>
57
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3613344.jpg</image>
58
+ <image size="large">http://userserve-ak.last.fm/serve/126/3613344.jpg</image>
59
+ </track>
60
+ <track>
61
+ <name>Summertime</name>
62
+ <mbid/>
63
+ <url>www.last.fm/music/Will+Smith/_/Summertime</url>
64
+ <date uts="1228996029">11 Dec 2008, 11:47</date>
65
+ <artist>
66
+ <name>Will Smith</name>
67
+ <mbid>5bae7081-64ef-4473-825a-38d310deb14c</mbid>
68
+ <url>http://www.last.fm/music/Will+Smith</url>
69
+ </artist>
70
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23040737.jpg</image>
71
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23040737.jpg</image>
72
+ <image size="large">http://userserve-ak.last.fm/serve/126/23040737.jpg</image>
73
+ </track>
74
+ <track>
75
+ <name>Calm</name>
76
+ <mbid/>
77
+ <url>www.last.fm/music/Wayne+Shorter/_/Calm</url>
78
+ <date uts="1225225044">28 Oct 2008, 20:17</date>
79
+ <artist>
80
+ <name>Wayne Shorter</name>
81
+ <mbid>2379937f-6e0d-46a2-b8ff-633fafd72002</mbid>
82
+ <url>http://www.last.fm/music/Wayne+Shorter</url>
83
+ </artist>
84
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8596999.jpg</image>
85
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8596999.jpg</image>
86
+ <image size="large">http://userserve-ak.last.fm/serve/126/8596999.jpg</image>
87
+ </track>
88
+ <track>
89
+ <name>The One and Only</name>
90
+ <mbid/>
91
+ <url>www.last.fm/music/Chesney+Hawkes/_/The+One+and+Only</url>
92
+ <date uts="1225211701">28 Oct 2008, 16:35</date>
93
+ <artist>
94
+ <name>Chesney Hawkes</name>
95
+ <mbid>4d74424b-627d-42dd-ab1b-85f16f10e027</mbid>
96
+ <url>http://www.last.fm/music/Chesney+Hawkes</url>
97
+ </artist>
98
+ <image size="small">http://userserve-ak.last.fm/serve/34s/17687939.jpg</image>
99
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/17687939.jpg</image>
100
+ <image size="large">http://userserve-ak.last.fm/serve/126/17687939.jpg</image>
101
+ </track>
102
+ <track>
103
+ <name>Cliffs of Dover</name>
104
+ <mbid/>
105
+ <url>www.last.fm/music/Eric+Johnson/_/Cliffs+of+Dover</url>
106
+ <date uts="1222682821">29 Sep 2008, 10:07</date>
107
+ <artist>
108
+ <name>Eric Johnson</name>
109
+ <mbid>b53868c8-3654-41d3-91db-3c5a1237f0c3</mbid>
110
+ <url>http://www.last.fm/music/Eric+Johnson</url>
111
+ </artist>
112
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14200813.jpg</image>
113
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14200813.jpg</image>
114
+ <image size="large">http://userserve-ak.last.fm/serve/126/14200813.jpg</image>
115
+ </track>
116
+ <track>
117
+ <name>Orion (Instrumental)</name>
118
+ <mbid/>
119
+ <url>www.last.fm/music/Metallica/_/Orion+%28Instrumental%29</url>
120
+ <date uts="1222279069">24 Sep 2008, 17:57</date>
121
+ <artist>
122
+ <name>Metallica</name>
123
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
124
+ <url>http://www.last.fm/music/Metallica</url>
125
+ </artist>
126
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
127
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
128
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
129
+ </track>
130
+ <track>
131
+ <name>Whiskey in the Jar</name>
132
+ <mbid/>
133
+ <url>www.last.fm/music/Metallica/_/Whiskey+in+the+Jar</url>
134
+ <date uts="1222279060">24 Sep 2008, 17:57</date>
135
+ <artist>
136
+ <name>Metallica</name>
137
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
138
+ <url>http://www.last.fm/music/Metallica</url>
139
+ </artist>
140
+ <image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
141
+ <image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
142
+ <image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
143
+ </track>
144
+ <track>
145
+ <name>Loverman</name>
146
+ <mbid/>
147
+ <url>www.last.fm/music/Metallica/_/Loverman</url>
148
+ <date uts="1222279057">24 Sep 2008, 17:57</date>
149
+ <artist>
150
+ <name>Metallica</name>
151
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
152
+ <url>http://www.last.fm/music/Metallica</url>
153
+ </artist>
154
+ <image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
155
+ <image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
156
+ <image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Turn the Page</name>
160
+ <mbid/>
161
+ <url>www.last.fm/music/Metallica/_/Turn+the+Page</url>
162
+ <date uts="1222279053">24 Sep 2008, 17:57</date>
163
+ <artist>
164
+ <name>Metallica</name>
165
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
166
+ <url>http://www.last.fm/music/Metallica</url>
167
+ </artist>
168
+ <image size="small">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
169
+ <image size="medium">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
170
+ <image size="large">http://images.amazon.com/images/P/B00000FCBC.01.MZZZZZZZ.jpg</image>
171
+ </track>
172
+ <track>
173
+ <name>Get Behind the Mule</name>
174
+ <mbid/>
175
+ <url>www.last.fm/music/John+Hammond/_/Get+Behind+the+Mule</url>
176
+ <date uts="1220788948">7 Sep 2008, 12:02</date>
177
+ <artist>
178
+ <name>John Hammond</name>
179
+ <mbid>d83e599c-2d5a-44ec-b727-587e1455b1b5</mbid>
180
+ <url>http://www.last.fm/music/John+Hammond</url>
181
+ </artist>
182
+ <image size="small">http://images.amazon.com/images/P/B000059T5O.01.MZZZZZZZ.jpg</image>
183
+ <image size="medium">http://images.amazon.com/images/P/B000059T5O.01.MZZZZZZZ.jpg</image>
184
+ <image size="large">http://images.amazon.com/images/P/B000059T5O.01.MZZZZZZZ.jpg</image>
185
+ </track>
186
+ <track>
187
+ <name>Gin &amp; Juice</name>
188
+ <mbid/>
189
+ <url>www.last.fm/music/Richard+Cheese/_/Gin%2B%2526%2BJuice</url>
190
+ <date uts="1220451345">3 Sep 2008, 14:15</date>
191
+ <artist>
192
+ <name>Richard Cheese</name>
193
+ <mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
194
+ <url>http://www.last.fm/music/Richard+Cheese</url>
195
+ </artist>
196
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12636483.jpg</image>
197
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12636483.jpg</image>
198
+ <image size="large">http://userserve-ak.last.fm/serve/126/12636483.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>Big Shot</name>
202
+ <mbid/>
203
+ <url>www.last.fm/music/Billy+Joel/_/Big+Shot</url>
204
+ <date uts="1220009196">29 Aug 2008, 11:26</date>
205
+ <artist>
206
+ <name>Billy Joel</name>
207
+ <mbid>64b94289-9474-4d43-8c93-918ccc1920d1</mbid>
208
+ <url>http://www.last.fm/music/Billy+Joel</url>
209
+ </artist>
210
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10084135.jpg</image>
211
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10084135.jpg</image>
212
+ <image size="large">http://userserve-ak.last.fm/serve/126/10084135.jpg</image>
213
+ </track>
214
+ <track>
215
+ <name>British Racing Green</name>
216
+ <mbid/>
217
+ <url>www.last.fm/music/Black+Box+Recorder/_/British+Racing+Green</url>
218
+ <date uts="1220008476">29 Aug 2008, 11:14</date>
219
+ <artist>
220
+ <name>Black Box Recorder</name>
221
+ <mbid>49302df8-9e4f-42ed-8a9c-5d6f8d6cb83c</mbid>
222
+ <url>http://www.last.fm/music/Black+Box+Recorder</url>
223
+ </artist>
224
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14320439.jpg</image>
225
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14320439.jpg</image>
226
+ <image size="large">http://userserve-ak.last.fm/serve/126/14320439.jpg</image>
227
+ </track>
228
+ <track>
229
+ <name>Bette Davis Eyes</name>
230
+ <mbid/>
231
+ <url>www.last.fm/music/Kim+Carnes/_/Bette+Davis+Eyes</url>
232
+ <date uts="1217497756">31 Jul 2008, 09:49</date>
233
+ <artist>
234
+ <name>Kim Carnes</name>
235
+ <mbid>600c5212-a8e6-458e-bd3f-78b6fbfe329a</mbid>
236
+ <url>http://www.last.fm/music/Kim+Carnes</url>
237
+ </artist>
238
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15223033.jpg</image>
239
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15223033.jpg</image>
240
+ <image size="large">http://userserve-ak.last.fm/serve/126/15223033.jpg</image>
241
+ </track>
242
+ <track>
243
+ <name>Too High to Fly</name>
244
+ <mbid/>
245
+ <url>www.last.fm/music/Dokken/_/Too+High+to+Fly</url>
246
+ <date uts="1217166736">27 Jul 2008, 13:52</date>
247
+ <artist>
248
+ <name>Dokken</name>
249
+ <mbid>09ade3bd-b110-4277-b923-7dc32e6a3f92</mbid>
250
+ <url>http://www.last.fm/music/Dokken</url>
251
+ </artist>
252
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19149665.jpg</image>
253
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19149665.jpg</image>
254
+ <image size="large">http://userserve-ak.last.fm/serve/126/19149665.jpg</image>
255
+ </track>
256
+ <track>
257
+ <name>If you've got it, you'll get it</name>
258
+ <mbid/>
259
+ <url>www.last.fm/music/Jestofunk/_/If+you%27ve+got+it%2C+you%27ll+get+it</url>
260
+ <date uts="1217166132">27 Jul 2008, 13:42</date>
261
+ <artist>
262
+ <name>Jestofunk</name>
263
+ <mbid>cacb8596-f62d-4427-9cce-a90f453c3242</mbid>
264
+ <url>http://www.last.fm/music/Jestofunk</url>
265
+ </artist>
266
+ <image size="small">http://images.amazon.com/images/P/B00003ZKRV.01.MZZZZZZZ.jpg</image>
267
+ <image size="medium">http://images.amazon.com/images/P/B00003ZKRV.01.MZZZZZZZ.jpg</image>
268
+ <image size="large">http://images.amazon.com/images/P/B00003ZKRV.01.MZZZZZZZ.jpg</image>
269
+ </track>
270
+ <track>
271
+ <name>The House of the Rising Sun</name>
272
+ <mbid/>
273
+ <url>www.last.fm/music/The+Animals/_/The+House+of+the+Rising+Sun</url>
274
+ <date uts="1216485718">19 Jul 2008, 16:41</date>
275
+ <artist>
276
+ <name>The Animals</name>
277
+ <mbid>4d8afa16-4018-4ca8-8b5e-ede8f9314562</mbid>
278
+ <url>http://www.last.fm/music/The+Animals</url>
279
+ </artist>
280
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25084061.jpg</image>
281
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25084061.jpg</image>
282
+ <image size="large">http://userserve-ak.last.fm/serve/126/25084061.jpg</image>
283
+ </track>
284
+ <track>
285
+ <name>Voodoo Child (Slight Return) (Live Version)</name>
286
+ <mbid/>
287
+ <url>www.last.fm/music/G3/_/Voodoo+Child+%28Slight+Return%29+%28Live+Version%29</url>
288
+ <date uts="1216485074">19 Jul 2008, 16:31</date>
289
+ <artist>
290
+ <name>G3</name>
291
+ <mbid>ec676b1e-9586-479d-926b-25face38e87f</mbid>
292
+ <url>http://www.last.fm/music/G3</url>
293
+ </artist>
294
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19784029.jpg</image>
295
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19784029.jpg</image>
296
+ <image size="large">http://userserve-ak.last.fm/serve/126/19784029.jpg</image>
297
+ </track>
298
+ <track>
299
+ <name>You're So Rude (Remastered Album Version)</name>
300
+ <mbid/>
301
+ <url>www.last.fm/music/Faces/_/You%27re+So+Rude+%28Remastered+Album+Version%29</url>
302
+ <date uts="1216484895">19 Jul 2008, 16:28</date>
303
+ <artist>
304
+ <name>Faces</name>
305
+ <mbid>8c7a8406-f15a-408d-b0f6-23be813bdddc</mbid>
306
+ <url>http://www.last.fm/music/Faces</url>
307
+ </artist>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8803083.jpg</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8803083.jpg</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/8803083.jpg</image>
311
+ </track>
312
+ <track>
313
+ <name>Stardust Bubblegum</name>
314
+ <mbid/>
315
+ <url>www.last.fm/music/Mother+Earth/_/Stardust+Bubblegum</url>
316
+ <date uts="1216484374">19 Jul 2008, 16:19</date>
317
+ <artist>
318
+ <name>Mother Earth</name>
319
+ <mbid>17058fed-f37e-4a3f-902f-062004040e5d</mbid>
320
+ <url>http://www.last.fm/music/Mother+Earth</url>
321
+ </artist>
322
+ <image size="small">http://images.amazon.com/images/P/B000000OHI.01.MZZZZZZZ.jpg</image>
323
+ <image size="medium">http://images.amazon.com/images/P/B000000OHI.01.MZZZZZZZ.jpg</image>
324
+ <image size="large">http://images.amazon.com/images/P/B000000OHI.01.MZZZZZZZ.jpg</image>
325
+ </track>
326
+ <track>
327
+ <name>Baker Street</name>
328
+ <mbid/>
329
+ <url>www.last.fm/music/Gerry+Rafferty/_/Baker+Street</url>
330
+ <date uts="1216483922">19 Jul 2008, 16:12</date>
331
+ <artist>
332
+ <name>Gerry Rafferty</name>
333
+ <mbid>563201cb-721c-4cfb-acca-c1ba69e3d1fb</mbid>
334
+ <url>http://www.last.fm/music/Gerry+Rafferty</url>
335
+ </artist>
336
+ <image size="small">http://images.amazon.com/images/P/B000007O5H.01.MZZZZZZZ.jpg</image>
337
+ <image size="medium">http://images.amazon.com/images/P/B000007O5H.01.MZZZZZZZ.jpg</image>
338
+ <image size="large">http://images.amazon.com/images/P/B000007O5H.01.MZZZZZZZ.jpg</image>
339
+ </track>
340
+ <track>
341
+ <name>You Bring Me Down</name>
342
+ <mbid/>
343
+ <url>www.last.fm/music/Sebastian+Bach/_/You+Bring+Me+Down</url>
344
+ <date uts="1216483425">19 Jul 2008, 16:03</date>
345
+ <artist>
346
+ <name>Sebastian Bach</name>
347
+ <mbid>50f10489-c87e-4df3-800f-be1f8d6bda4b</mbid>
348
+ <url>http://www.last.fm/music/Sebastian+Bach</url>
349
+ </artist>
350
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14068171.jpg</image>
351
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14068171.jpg</image>
352
+ <image size="large">http://userserve-ak.last.fm/serve/126/14068171.jpg</image>
353
+ </track>
354
+ <track>
355
+ <name>The Glass Prison</name>
356
+ <mbid/>
357
+ <url>www.last.fm/music/Dream+Theater/_/The+Glass+Prison</url>
358
+ <date uts="1216371514">18 Jul 2008, 08:58</date>
359
+ <artist>
360
+ <name>Dream Theater</name>
361
+ <mbid>28503ab7-8bf2-4666-a7bd-2644bfc7cb1d</mbid>
362
+ <url>http://www.last.fm/music/Dream+Theater</url>
363
+ </artist>
364
+ <image size="small">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
365
+ <image size="medium">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
366
+ <image size="large">http://images.amazon.com/images/P/B00005UEAR.01.MZZZZZZZ.jpg</image>
367
+ </track>
368
+ <track>
369
+ <name>The Pusher</name>
370
+ <mbid/>
371
+ <url>www.last.fm/music/Steppenwolf/_/The+Pusher</url>
372
+ <date uts="1216371495">18 Jul 2008, 08:58</date>
373
+ <artist>
374
+ <name>Steppenwolf</name>
375
+ <mbid>12ff8858-bfcb-4812-a8dd-7e9debf0cbee</mbid>
376
+ <url>http://www.last.fm/music/Steppenwolf</url>
377
+ </artist>
378
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673259.jpg</image>
379
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673259.jpg</image>
380
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673259.jpg</image>
381
+ </track>
382
+ <track>
383
+ <name>Take a Load Off Fanny</name>
384
+ <mbid/>
385
+ <url>www.last.fm/music/Bob+Dylan/_/Take+a+Load+Off+Fanny</url>
386
+ <date uts="1216371490">18 Jul 2008, 08:58</date>
387
+ <artist>
388
+ <name>Bob Dylan</name>
389
+ <mbid>72c536dc-7137-4477-a521-567eeb840fa8</mbid>
390
+ <url>http://www.last.fm/music/Bob+Dylan</url>
391
+ </artist>
392
+ </track>
393
+ <track>
394
+ <name>Dreams</name>
395
+ <mbid/>
396
+ <url>www.last.fm/music/Jason+Luckett/_/Dreams</url>
397
+ <date uts="1215774863">11 Jul 2008, 11:14</date>
398
+ <artist>
399
+ <name>Jason Luckett</name>
400
+ <mbid>97b552a7-5266-478e-98cf-c920a5e2cf42</mbid>
401
+ <url>http://www.last.fm/music/Jason+Luckett</url>
402
+ </artist>
403
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8695811.jpg</image>
404
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8695811.jpg</image>
405
+ <image size="large">http://userserve-ak.last.fm/serve/126/8695811.jpg</image>
406
+ </track>
407
+ <track>
408
+ <name>Hawking</name>
409
+ <mbid/>
410
+ <url>www.last.fm/music/Paul+Gilbert/_/Hawking</url>
411
+ <date uts="1215709270">10 Jul 2008, 17:01</date>
412
+ <artist>
413
+ <name>Paul Gilbert</name>
414
+ <mbid>453321a7-3a77-47b0-8125-7bd385f3a730</mbid>
415
+ <url>http://www.last.fm/music/Paul+Gilbert</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10025087.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10025087.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/10025087.jpg</image>
420
+ </track>
421
+ <track>
422
+ <name>Guerilla Radio</name>
423
+ <mbid/>
424
+ <url>www.last.fm/music/Richard+Cheese/_/Guerilla+Radio</url>
425
+ <date uts="1193534120">28 Oct 2007, 01:15</date>
426
+ <artist>
427
+ <name>Richard Cheese</name>
428
+ <mbid>9bf79f68-c064-44a1-8c2c-5764f1d7c016</mbid>
429
+ <url>http://www.last.fm/music/Richard+Cheese</url>
430
+ </artist>
431
+ </track>
432
+ <track>
433
+ <name>Cherries From My Neighbours Tree</name>
434
+ <mbid/>
435
+ <url>www.last.fm/music/Tok+Tok+Tok/_/Cherries+From+My+Neighbours+Tree</url>
436
+ <date uts="1185382620">25 Jul 2007, 16:57</date>
437
+ <artist>
438
+ <name>Tok Tok Tok</name>
439
+ <mbid>97d9060d-2cd5-4acd-b44f-c39ea2da4753</mbid>
440
+ <url>http://www.last.fm/music/Tok+Tok+Tok</url>
441
+ </artist>
442
+ </track>
443
+ <track>
444
+ <name>For What It's Worth</name>
445
+ <mbid/>
446
+ <url>www.last.fm/music/Buffalo+Springfield/_/For+What+It%27s+Worth</url>
447
+ <date uts="1183045192">28 Jun 2007, 15:39</date>
448
+ <artist>
449
+ <name>Buffalo Springfield</name>
450
+ <mbid>22dc19af-d085-4c9b-adfb-22ec256251f1</mbid>
451
+ <url>http://www.last.fm/music/Buffalo+Springfield</url>
452
+ </artist>
453
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23906803.jpg</image>
454
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23906803.jpg</image>
455
+ <image size="large">http://userserve-ak.last.fm/serve/126/23906803.jpg</image>
456
+ </track>
457
+ <track>
458
+ <name>It's a Man's Man's Man's World</name>
459
+ <mbid/>
460
+ <url>www.last.fm/music/James+Brown/_/It%27s+a+Man%27s+Man%27s+Man%27s+World</url>
461
+ <date uts="1176765638">16 Apr 2007, 23:20</date>
462
+ <artist>
463
+ <name>James Brown</name>
464
+ <mbid>20ff3303-4fe2-4a47-a1b6-291e26aa3438</mbid>
465
+ <url>http://www.last.fm/music/James+Brown</url>
466
+ </artist>
467
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24491831.jpg</image>
468
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24491831.jpg</image>
469
+ <image size="large">http://userserve-ak.last.fm/serve/126/24491831.jpg</image>
470
+ </track>
471
+ <track>
472
+ <name>When It Was</name>
473
+ <mbid/>
474
+ <url>www.last.fm/music/The+Brecker+Brothers/_/When+It+Was</url>
475
+ <date uts="1176245641">10 Apr 2007, 22:54</date>
476
+ <artist>
477
+ <name>The Brecker Brothers</name>
478
+ <mbid>46bdb0fa-6db1-44ea-b7b1-57de05b2cba1</mbid>
479
+ <url>http://www.last.fm/music/The+Brecker+Brothers</url>
480
+ </artist>
481
+ <image size="small">http://images.amazon.com/images/P/B0000001U2.03.MZZZZZZZ.jpg</image>
482
+ <image size="medium">http://images.amazon.com/images/P/B0000001U2.03.MZZZZZZZ.jpg</image>
483
+ <image size="large">http://images.amazon.com/images/P/B0000001U2.03.MZZZZZZZ.jpg</image>
484
+ </track>
485
+ <track>
486
+ <name>Is It Sweet? (LP Version)</name>
487
+ <mbid/>
488
+ <url>www.last.fm/music/Bill+Frisell/_/Is+It+Sweet%3F+%28LP+Version%29</url>
489
+ <date uts="1176244958">10 Apr 2007, 22:42</date>
490
+ <artist>
491
+ <name>Bill Frisell</name>
492
+ <mbid>a21318db-f228-4a4d-8bce-6947a62985a5</mbid>
493
+ <url>http://www.last.fm/music/Bill+Frisell</url>
494
+ </artist>
495
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8619409.jpg</image>
496
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8619409.jpg</image>
497
+ <image size="large">http://userserve-ak.last.fm/serve/126/8619409.jpg</image>
498
+ </track>
499
+ <track>
500
+ <name>Lie in Our Graves</name>
501
+ <mbid/>
502
+ <url>www.last.fm/music/Dave+Matthews+Band/_/Lie+in+Our+Graves</url>
503
+ <date uts="1175809360">5 Apr 2007, 21:42</date>
504
+ <artist>
505
+ <name>Dave Matthews Band</name>
506
+ <mbid>07e748f1-075e-428d-85dc-ce3be434e906</mbid>
507
+ <url>http://www.last.fm/music/Dave+Matthews+Band</url>
508
+ </artist>
509
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23748033.jpg</image>
510
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23748033.jpg</image>
511
+ <image size="large">http://userserve-ak.last.fm/serve/126/23748033.jpg</image>
512
+ </track>
513
+ <track>
514
+ <name>Morning Dance</name>
515
+ <mbid/>
516
+ <url>www.last.fm/music/Spyro+Gyra/_/Morning+Dance</url>
517
+ <date uts="1163006139">8 Nov 2006, 17:15</date>
518
+ <artist>
519
+ <name>Spyro Gyra</name>
520
+ <mbid>9a7c8025-1af8-42cd-8df8-857220610bc5</mbid>
521
+ <url>http://www.last.fm/music/Spyro+Gyra</url>
522
+ </artist>
523
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15534973.jpg</image>
524
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15534973.jpg</image>
525
+ <image size="large">http://userserve-ak.last.fm/serve/126/15534973.jpg</image>
526
+ </track>
527
+ <track>
528
+ <name>I Love My Computer</name>
529
+ <mbid/>
530
+ <url>www.last.fm/music/Bad+Religion/_/I+Love+My+Computer</url>
531
+ <date uts="1162310037">31 Oct 2006, 15:53</date>
532
+ <artist>
533
+ <name>Bad Religion</name>
534
+ <mbid>149e6720-4e4a-41a4-afca-6d29083fc091</mbid>
535
+ <url>http://www.last.fm/music/Bad+Religion</url>
536
+ </artist>
537
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23060375.jpg</image>
538
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23060375.jpg</image>
539
+ <image size="large">http://userserve-ak.last.fm/serve/126/23060375.jpg</image>
540
+ </track>
541
+ <track>
542
+ <name>My Lover's Box</name>
543
+ <mbid/>
544
+ <url>www.last.fm/music/Garbage/_/My+Lover%27s+Box</url>
545
+ <date uts="1152024200">4 Jul 2006, 14:43</date>
546
+ <artist>
547
+ <name>Garbage</name>
548
+ <mbid>f9ef7a22-4262-4596-a2a8-1d19345b8e50</mbid>
549
+ <url>http://www.last.fm/music/Garbage</url>
550
+ </artist>
551
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593715.jpg</image>
552
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593715.jpg</image>
553
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593715.jpg</image>
554
+ </track>
555
+ <track>
556
+ <name>Melbourne Song</name>
557
+ <mbid/>
558
+ <url>www.last.fm/music/Colin+Hay/_/Melbourne+Song</url>
559
+ <date uts="1150984166">22 Jun 2006, 13:49</date>
560
+ <artist>
561
+ <name>Colin Hay</name>
562
+ <mbid>864d7069-57dc-45f6-b408-875b35106dd3</mbid>
563
+ <url>http://www.last.fm/music/Colin+Hay</url>
564
+ </artist>
565
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8635917.jpg</image>
566
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8635917.jpg</image>
567
+ <image size="large">http://userserve-ak.last.fm/serve/126/8635917.jpg</image>
568
+ </track>
569
+ <track>
570
+ <name>La Femme d'argent</name>
571
+ <mbid/>
572
+ <url>www.last.fm/music/Air/_/La+Femme+d%27argent</url>
573
+ <date uts="1150979678">22 Jun 2006, 12:34</date>
574
+ <artist>
575
+ <name>Air</name>
576
+ <mbid>cb67438a-7f50-4f2b-a6f1-2bb2729fd538</mbid>
577
+ <url>http://www.last.fm/music/Air</url>
578
+ </artist>
579
+ <image size="small">http://images-eu.amazon.com/images/P/B0000262YS.02.THUMBZZZ.jpg</image>
580
+ <image size="medium">http://images-eu.amazon.com/images/P/B0000262YS.02.MZZZZZZZ.jpg</image>
581
+ <image size="large">http://images-eu.amazon.com/images/P/B0000262YS.02.LZZZZZZZ.jpg</image>
582
+ </track>
583
+ <track>
584
+ <name>Pony the Funk</name>
585
+ <mbid/>
586
+ <url>www.last.fm/music/International+Pony/_/Pony+the+Funk</url>
587
+ <date uts="1150969541">22 Jun 2006, 09:45</date>
588
+ <artist>
589
+ <name>International Pony</name>
590
+ <mbid>685e3fa1-d4da-452b-b351-39f9fa3327c5</mbid>
591
+ <url>http://www.last.fm/music/International+Pony</url>
592
+ </artist>
593
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23011205.jpg</image>
594
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23011205.jpg</image>
595
+ <image size="large">http://userserve-ak.last.fm/serve/126/23011205.jpg</image>
596
+ </track>
597
+ <track>
598
+ <name>Downtown</name>
599
+ <mbid/>
600
+ <url>www.last.fm/music/Tom+Waits/_/Downtown</url>
601
+ <date uts="1150908458">21 Jun 2006, 16:47</date>
602
+ <artist>
603
+ <name>Tom Waits</name>
604
+ <mbid>c3aeb863-7b26-4388-94e8-5a240f2be21b</mbid>
605
+ <url>http://www.last.fm/music/Tom+Waits</url>
606
+ </artist>
607
+ </track>
608
+ <track>
609
+ <name>Welcome Home (Sanitarium)</name>
610
+ <mbid/>
611
+ <url>www.last.fm/music/Metallica/_/Welcome+Home+%28Sanitarium%29</url>
612
+ <date uts="1150886900">21 Jun 2006, 10:48</date>
613
+ <artist>
614
+ <name>Metallica</name>
615
+ <mbid>65f4f0c5-ef9e-490c-aee3-909e7ae6b2ab</mbid>
616
+ <url>http://www.last.fm/music/Metallica</url>
617
+ </artist>
618
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8622967.jpg</image>
619
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8622967.jpg</image>
620
+ <image size="large">http://userserve-ak.last.fm/serve/126/8622967.jpg</image>
621
+ </track>
622
+ <track>
623
+ <name>White Room</name>
624
+ <mbid/>
625
+ <url>www.last.fm/music/Eric+Clapton/_/White+Room</url>
626
+ <date uts="0">1 Jan 1970, 00:00</date>
627
+ <artist>
628
+ <name>Eric Clapton</name>
629
+ <mbid>618b6900-0618-4f1e-b835-bccb17f84294</mbid>
630
+ <url>http://www.last.fm/music/Eric+Clapton</url>
631
+ </artist>
632
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4114211.jpg</image>
633
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4114211.jpg</image>
634
+ <image size="large">http://userserve-ak.last.fm/serve/126/4114211.jpg</image>
635
+ </track>
636
+ <track>
637
+ <name>Paris Train</name>
638
+ <mbid/>
639
+ <url>www.last.fm/music/Beth+Orton/_/Paris+Train</url>
640
+ <date uts="0">1 Jan 1970, 00:00</date>
641
+ <artist>
642
+ <name>Beth Orton</name>
643
+ <mbid>214d84a5-e9e5-4432-af95-8c84da7ba4c0</mbid>
644
+ <url>http://www.last.fm/music/Beth+Orton</url>
645
+ </artist>
646
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14169919.jpg</image>
647
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14169919.jpg</image>
648
+ <image size="large">http://userserve-ak.last.fm/serve/126/14169919.jpg</image>
649
+ </track>
650
+ <track>
651
+ <name>Smut</name>
652
+ <mbid/>
653
+ <url>www.last.fm/music/Tom+Lehrer/_/Smut</url>
654
+ <date uts="0">1 Jan 1970, 00:00</date>
655
+ <artist>
656
+ <name>Tom Lehrer</name>
657
+ <mbid>359363a8-1dc7-40c9-9337-f5aa507000b6</mbid>
658
+ <url>http://www.last.fm/music/Tom+Lehrer</url>
659
+ </artist>
660
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12619575.jpg</image>
661
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12619575.jpg</image>
662
+ <image size="large">http://userserve-ak.last.fm/serve/126/12619575.jpg</image>
663
+ </track>
664
+ <track>
665
+ <name>I Wants To Stay Here</name>
666
+ <mbid/>
667
+ <url>www.last.fm/music/Ella+Fitzgerald/_/I+Wants+To+Stay+Here</url>
668
+ <date uts="0">1 Jan 1970, 00:00</date>
669
+ <artist>
670
+ <name>Ella Fitzgerald</name>
671
+ <mbid>54799c0e-eb45-4eea-996d-c4d71a63c499</mbid>
672
+ <url>http://www.last.fm/music/Ella+Fitzgerald</url>
673
+ </artist>
674
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12618629.jpg</image>
675
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12618629.jpg</image>
676
+ <image size="large">http://userserve-ak.last.fm/serve/126/12618629.jpg</image>
677
+ </track>
678
+ </lovedtracks></lfm>