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,783 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="24" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Through With You</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Maroon+5/_/Through+With+You</url>
10
+ <streamable fulltrack="1">1</streamable>
11
+ <artist>
12
+ <name>Maroon 5</name>
13
+ <mbid>0ab49580-c84f-44d4-875f-d83760ea2cfe</mbid>
14
+ <url>http://www.last.fm/music/Maroon+5</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8636005.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8636005.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/8636005.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Nuttin No Go So</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Notch/_/Nuttin+No+Go+So</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>Notch</name>
29
+ <mbid>282ae204-1af3-4893-9aa7-66ab1c635878</mbid>
30
+ <url>http://www.last.fm/music/Notch</url>
31
+ </artist>
32
+ </track>
33
+ <track>
34
+ <name>Everybody's Changing</name>
35
+ <playcount>1</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Keane/_/Everybody%27s+Changing</url>
39
+ <streamable fulltrack="1">1</streamable>
40
+ <artist>
41
+ <name>Keane</name>
42
+ <mbid>c7020c6d-cae9-4db3-92a7-e5c561cbad50</mbid>
43
+ <url>http://www.last.fm/music/Keane</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641121.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641121.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641121.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Rock &amp; Roll Queen</name>
51
+ <playcount>1</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/The+Subways/_/Rock%2B%2526%2BRoll%2BQueen</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>The Subways</name>
58
+ <mbid>20e264d7-b4d5-4e49-8931-a9c67ff07f04</mbid>
59
+ <url>http://www.last.fm/music/The+Subways</url>
60
+ </artist>
61
+ <image size="small">http://images.amazon.com/images/P/B0009SOG8A.01.MZZZZZZZ.jpg</image>
62
+ <image size="medium">http://images.amazon.com/images/P/B0009SOG8A.01.MZZZZZZZ.jpg</image>
63
+ <image size="large">http://images.amazon.com/images/P/B0009SOG8A.01.MZZZZZZZ.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Scheinwerfer</name>
67
+ <playcount>1</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Absolute+Beginner/_/Scheinwerfer</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Absolute Beginner</name>
74
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
75
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
76
+ </artist>
77
+ </track>
78
+ <track>
79
+ <name>Salvador</name>
80
+ <playcount>1</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/Jamie+T/_/Salvador</url>
84
+ <streamable fulltrack="0">1</streamable>
85
+ <artist>
86
+ <name>Jamie T</name>
87
+ <mbid>bc883961-64d4-46b3-8b1c-64009854291c</mbid>
88
+ <url>http://www.last.fm/music/Jamie+T</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9379483.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9379483.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/9379483.jpg</image>
93
+ </track>
94
+ <track>
95
+ <name>Ghost Town</name>
96
+ <playcount>1</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/The+Prodigy/_/Ghost+Town</url>
100
+ <streamable fulltrack="0">0</streamable>
101
+ <artist>
102
+ <name>The Prodigy</name>
103
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
104
+ <url>http://www.last.fm/music/The+Prodigy</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4599869.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4599869.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/4599869.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Let Me Blow Your Mind</name>
112
+ <playcount>1</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Eve/_/Let+Me+Blow+Your+Mind</url>
116
+ <streamable fulltrack="0">0</streamable>
117
+ <artist>
118
+ <name>Eve</name>
119
+ <mbid>1ac10f5e-2079-4435-b78f-dda6ecdeba15</mbid>
120
+ <url>http://www.last.fm/music/Eve</url>
121
+ </artist>
122
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
123
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
124
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
125
+ </track>
126
+ <track>
127
+ <name>Just For Tonight (Seamus Haji Big Love Remix)</name>
128
+ <playcount>1</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/One+Night+Only/_/Just+For+Tonight+%28Seamus+Haji+Big+Love+Remix%29</url>
132
+ <streamable fulltrack="0">1</streamable>
133
+ <artist>
134
+ <name>One Night Only</name>
135
+ <mbid></mbid>
136
+ <url>http://www.last.fm/music/One+Night+Only</url>
137
+ </artist>
138
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9925821.jpg</image>
139
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9925821.jpg</image>
140
+ <image size="large">http://userserve-ak.last.fm/serve/126/9925821.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>If I Should Fall From Grace With God</name>
144
+ <playcount>1</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/The+Pogues/_/If+I+Should+Fall+From+Grace+With+God</url>
148
+ <streamable fulltrack="0">1</streamable>
149
+ <artist>
150
+ <name>The Pogues</name>
151
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
152
+ <url>http://www.last.fm/music/The+Pogues</url>
153
+ </artist>
154
+ <image size="small">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
155
+ <image size="medium">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
156
+ <image size="large">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Micha</name>
160
+ <playcount>1</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Micha</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Die Ärzte</name>
167
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
168
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
169
+ </artist>
170
+ <image size="small">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
171
+ <image size="medium">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
172
+ <image size="large">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Ein Elefant für dich</name>
176
+ <playcount>1</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Ein+Elefant+f%C3%BCr+dich</url>
180
+ <streamable fulltrack="0">1</streamable>
181
+ <artist>
182
+ <name>Wir sind Helden</name>
183
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
184
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
185
+ </artist>
186
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
187
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
188
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
189
+ </track>
190
+ <track>
191
+ <name>Dance_Wiv_Me</name>
192
+ <playcount>1</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Dizzee+Rascal/_/Dance_Wiv_Me</url>
196
+ <streamable fulltrack="0">0</streamable>
197
+ <artist>
198
+ <name>Dizzee Rascal</name>
199
+ <mbid>1a99cc88-aea3-4fe3-96b9-20791667f65f</mbid>
200
+ <url>http://www.last.fm/music/Dizzee+Rascal</url>
201
+ </artist>
202
+ </track>
203
+ <track>
204
+ <name>The Truth</name>
205
+ <playcount>1</playcount>
206
+ <tagcount></tagcount>
207
+ <mbid></mbid>
208
+ <url>http://www.last.fm/music/Good+Charlotte/_/The+Truth</url>
209
+ <streamable fulltrack="0">1</streamable>
210
+ <artist>
211
+ <name>Good Charlotte</name>
212
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
213
+ <url>http://www.last.fm/music/Good+Charlotte</url>
214
+ </artist>
215
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
216
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
217
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
218
+ </track>
219
+ <track>
220
+ <name>Transatlanticism</name>
221
+ <playcount>1</playcount>
222
+ <tagcount></tagcount>
223
+ <mbid></mbid>
224
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie/_/Transatlanticism</url>
225
+ <streamable fulltrack="0">1</streamable>
226
+ <artist>
227
+ <name>Death Cab for Cutie</name>
228
+ <mbid>0039c7ae-e1a7-4a7d-9b49-0cbc716821a6</mbid>
229
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie</url>
230
+ </artist>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15213861.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15213861.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/15213861.jpg</image>
234
+ </track>
235
+ <track>
236
+ <name>The Photos On My Wall</name>
237
+ <playcount>1</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Good+Shoes/_/The+Photos+On+My+Wall</url>
241
+ <streamable fulltrack="0">1</streamable>
242
+ <artist>
243
+ <name>Good Shoes</name>
244
+ <mbid>789e5db3-502b-4f13-8039-88c70e053fa5</mbid>
245
+ <url>http://www.last.fm/music/Good+Shoes</url>
246
+ </artist>
247
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13946885.jpg</image>
248
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13946885.jpg</image>
249
+ <image size="large">http://userserve-ak.last.fm/serve/126/13946885.jpg</image>
250
+ </track>
251
+ <track>
252
+ <name>God Save the USA</name>
253
+ <playcount>1</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/Pennywise/_/God+Save+the+USA</url>
257
+ <streamable fulltrack="0">0</streamable>
258
+ <artist>
259
+ <name>Pennywise</name>
260
+ <mbid>5c210861-2ce2-4be3-9307-bbcfc361cc01</mbid>
261
+ <url>http://www.last.fm/music/Pennywise</url>
262
+ </artist>
263
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
264
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
265
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
266
+ </track>
267
+ <track>
268
+ <name>Nobody Move, Nobody Get Hurt Under the Sea</name>
269
+ <playcount>1</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/We+Are+Scientists/_/Nobody+Move%2C+Nobody+Get+Hurt+Under+the+Sea</url>
273
+ <streamable fulltrack="0">0</streamable>
274
+ <artist>
275
+ <name>We Are Scientists</name>
276
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
277
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
278
+ </artist>
279
+ </track>
280
+ <track>
281
+ <name>No Time Like Now (feat. Jack Radics)</name>
282
+ <playcount>1</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/Gentleman/_/No+Time+Like+Now+%28feat.+Jack+Radics%29</url>
286
+ <streamable fulltrack="0">0</streamable>
287
+ <artist>
288
+ <name>Gentleman</name>
289
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
290
+ <url>http://www.last.fm/music/Gentleman</url>
291
+ </artist>
292
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
293
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
294
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
295
+ </track>
296
+ <track>
297
+ <name>Doubledecker</name>
298
+ <playcount>1</playcount>
299
+ <tagcount></tagcount>
300
+ <mbid></mbid>
301
+ <url>http://www.last.fm/music/Liquido/_/Doubledecker</url>
302
+ <streamable fulltrack="0">0</streamable>
303
+ <artist>
304
+ <name>Liquido</name>
305
+ <mbid>5b7b9817-f937-48a6-b194-cb2b7e4084a3</mbid>
306
+ <url>http://www.last.fm/music/Liquido</url>
307
+ </artist>
308
+ <image size="small">http://images.amazon.com/images/P/B00000JP0W.01.MZZZZZZZ.jpg</image>
309
+ <image size="medium">http://images.amazon.com/images/P/B00000JP0W.01.MZZZZZZZ.jpg</image>
310
+ <image size="large">http://images.amazon.com/images/P/B00000JP0W.01.MZZZZZZZ.jpg</image>
311
+ </track>
312
+ <track>
313
+ <name>Krieg</name>
314
+ <playcount>1</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid></mbid>
317
+ <url>http://www.last.fm/music/Deichkind/_/Krieg</url>
318
+ <streamable fulltrack="0">0</streamable>
319
+ <artist>
320
+ <name>Deichkind</name>
321
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
322
+ <url>http://www.last.fm/music/Deichkind</url>
323
+ </artist>
324
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8879477.jpg</image>
325
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8879477.jpg</image>
326
+ <image size="large">http://userserve-ak.last.fm/serve/126/8879477.jpg</image>
327
+ </track>
328
+ <track>
329
+ <name>Blue Eyes</name>
330
+ <playcount>1</playcount>
331
+ <tagcount></tagcount>
332
+ <mbid></mbid>
333
+ <url>http://www.last.fm/music/Good+Shoes/_/Blue+Eyes</url>
334
+ <streamable fulltrack="0">1</streamable>
335
+ <artist>
336
+ <name>Good Shoes</name>
337
+ <mbid>789e5db3-502b-4f13-8039-88c70e053fa5</mbid>
338
+ <url>http://www.last.fm/music/Good+Shoes</url>
339
+ </artist>
340
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13946885.jpg</image>
341
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13946885.jpg</image>
342
+ <image size="large">http://userserve-ak.last.fm/serve/126/13946885.jpg</image>
343
+ </track>
344
+ <track>
345
+ <name>Smile</name>
346
+ <playcount>1</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/Weezer/_/Smile</url>
350
+ <streamable fulltrack="1">1</streamable>
351
+ <artist>
352
+ <name>Weezer</name>
353
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
354
+ <url>http://www.last.fm/music/Weezer</url>
355
+ </artist>
356
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593525.jpg</image>
357
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593525.jpg</image>
358
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593525.jpg</image>
359
+ </track>
360
+ <track>
361
+ <name>No Sex</name>
362
+ <playcount>1</playcount>
363
+ <tagcount></tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/Limp+Bizkit/_/No+Sex</url>
366
+ <streamable fulltrack="1">1</streamable>
367
+ <artist>
368
+ <name>Limp Bizkit</name>
369
+ <mbid>8f9d6bb2-dba4-4cca-9967-cc02b9f4820c</mbid>
370
+ <url>http://www.last.fm/music/Limp+Bizkit</url>
371
+ </artist>
372
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590609.jpg</image>
373
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590609.jpg</image>
374
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590609.jpg</image>
375
+ </track>
376
+ <track>
377
+ <name>We Belive</name>
378
+ <playcount>1</playcount>
379
+ <tagcount></tagcount>
380
+ <mbid></mbid>
381
+ <url>http://www.last.fm/music/Good+Charlotte/_/We+Belive</url>
382
+ <streamable fulltrack="0">0</streamable>
383
+ <artist>
384
+ <name>Good Charlotte</name>
385
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
386
+ <url>http://www.last.fm/music/Good+Charlotte</url>
387
+ </artist>
388
+ </track>
389
+ <track>
390
+ <name>Jericho</name>
391
+ <playcount>1</playcount>
392
+ <tagcount></tagcount>
393
+ <mbid></mbid>
394
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Jericho</url>
395
+ <streamable fulltrack="1">1</streamable>
396
+ <artist>
397
+ <name>Sportfreunde Stiller</name>
398
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
399
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
400
+ </artist>
401
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
402
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
403
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
404
+ </track>
405
+ <track>
406
+ <name>Ochrasy</name>
407
+ <playcount>1</playcount>
408
+ <tagcount></tagcount>
409
+ <mbid></mbid>
410
+ <url>http://www.last.fm/music/Mando+Diao/_/Ochrasy</url>
411
+ <streamable fulltrack="0">1</streamable>
412
+ <artist>
413
+ <name>Mando Diao</name>
414
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
415
+ <url>http://www.last.fm/music/Mando+Diao</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14611643.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14611643.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/14611643.jpg</image>
420
+ </track>
421
+ <track>
422
+ <name>Morning Paper Dirt</name>
423
+ <playcount>1</playcount>
424
+ <tagcount></tagcount>
425
+ <mbid></mbid>
426
+ <url>http://www.last.fm/music/Mando+Diao/_/Morning+Paper+Dirt</url>
427
+ <streamable fulltrack="0">1</streamable>
428
+ <artist>
429
+ <name>Mando Diao</name>
430
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
431
+ <url>http://www.last.fm/music/Mando+Diao</url>
432
+ </artist>
433
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14611643.jpg</image>
434
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14611643.jpg</image>
435
+ <image size="large">http://userserve-ak.last.fm/serve/126/14611643.jpg</image>
436
+ </track>
437
+ <track>
438
+ <name>The New Boy</name>
439
+ <playcount>1</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/Mando+Diao/_/The+New+Boy</url>
443
+ <streamable fulltrack="0">1</streamable>
444
+ <artist>
445
+ <name>Mando Diao</name>
446
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
447
+ <url>http://www.last.fm/music/Mando+Diao</url>
448
+ </artist>
449
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14611643.jpg</image>
450
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14611643.jpg</image>
451
+ <image size="large">http://userserve-ak.last.fm/serve/126/14611643.jpg</image>
452
+ </track>
453
+ <track>
454
+ <name>Dragostea Din Tei</name>
455
+ <playcount>1</playcount>
456
+ <tagcount></tagcount>
457
+ <mbid></mbid>
458
+ <url>http://www.last.fm/music/O-Zone/_/Dragostea+Din+Tei</url>
459
+ <streamable fulltrack="0">1</streamable>
460
+ <artist>
461
+ <name>O-Zone</name>
462
+ <mbid>5cb608ea-bd36-4a33-b9a5-822c7fc4194d</mbid>
463
+ <url>http://www.last.fm/music/O-Zone</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10090793.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10090793.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/10090793.jpg</image>
468
+ </track>
469
+ <track>
470
+ <name>One Day</name>
471
+ <playcount>1</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/The+Verve/_/One+Day</url>
475
+ <streamable fulltrack="0">1</streamable>
476
+ <artist>
477
+ <name>The Verve</name>
478
+ <mbid>d4d17620-fd97-4574-92a8-a2cb7e72ce42</mbid>
479
+ <url>http://www.last.fm/music/The+Verve</url>
480
+ </artist>
481
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14233169.jpg</image>
482
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14233169.jpg</image>
483
+ <image size="large">http://userserve-ak.last.fm/serve/126/14233169.jpg</image>
484
+ </track>
485
+ <track>
486
+ <name>By the Way</name>
487
+ <playcount>1</playcount>
488
+ <tagcount></tagcount>
489
+ <mbid></mbid>
490
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/By+the+Way</url>
491
+ <streamable fulltrack="0">1</streamable>
492
+ <artist>
493
+ <name>Red Hot Chili Peppers</name>
494
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
495
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
496
+ </artist>
497
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593331.jpg</image>
498
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593331.jpg</image>
499
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593331.jpg</image>
500
+ </track>
501
+ <track>
502
+ <name>The Drugs Don't Work</name>
503
+ <playcount>1</playcount>
504
+ <tagcount></tagcount>
505
+ <mbid></mbid>
506
+ <url>http://www.last.fm/music/The+Verve/_/The+Drugs+Don%27t+Work</url>
507
+ <streamable fulltrack="0">1</streamable>
508
+ <artist>
509
+ <name>The Verve</name>
510
+ <mbid>d4d17620-fd97-4574-92a8-a2cb7e72ce42</mbid>
511
+ <url>http://www.last.fm/music/The+Verve</url>
512
+ </artist>
513
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14233169.jpg</image>
514
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14233169.jpg</image>
515
+ <image size="large">http://userserve-ak.last.fm/serve/126/14233169.jpg</image>
516
+ </track>
517
+ <track>
518
+ <name>Razor</name>
519
+ <playcount>1</playcount>
520
+ <tagcount></tagcount>
521
+ <mbid></mbid>
522
+ <url>http://www.last.fm/music/Foo+Fighters/_/Razor</url>
523
+ <streamable fulltrack="0">1</streamable>
524
+ <artist>
525
+ <name>Foo Fighters</name>
526
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
527
+ <url>http://www.last.fm/music/Foo+Fighters</url>
528
+ </artist>
529
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
530
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
531
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
532
+ </track>
533
+ <track>
534
+ <name>Josephine</name>
535
+ <playcount>1</playcount>
536
+ <tagcount></tagcount>
537
+ <mbid></mbid>
538
+ <url>http://www.last.fm/music/Mando+Diao/_/Josephine</url>
539
+ <streamable fulltrack="0">1</streamable>
540
+ <artist>
541
+ <name>Mando Diao</name>
542
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
543
+ <url>http://www.last.fm/music/Mando+Diao</url>
544
+ </artist>
545
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14611643.jpg</image>
546
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14611643.jpg</image>
547
+ <image size="large">http://userserve-ak.last.fm/serve/126/14611643.jpg</image>
548
+ </track>
549
+ <track>
550
+ <name>The Rolling People</name>
551
+ <playcount>1</playcount>
552
+ <tagcount></tagcount>
553
+ <mbid></mbid>
554
+ <url>http://www.last.fm/music/The+Verve/_/The+Rolling+People</url>
555
+ <streamable fulltrack="0">1</streamable>
556
+ <artist>
557
+ <name>The Verve</name>
558
+ <mbid>d4d17620-fd97-4574-92a8-a2cb7e72ce42</mbid>
559
+ <url>http://www.last.fm/music/The+Verve</url>
560
+ </artist>
561
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14233169.jpg</image>
562
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14233169.jpg</image>
563
+ <image size="large">http://userserve-ak.last.fm/serve/126/14233169.jpg</image>
564
+ </track>
565
+ <track>
566
+ <name>Cutt Off</name>
567
+ <playcount>1</playcount>
568
+ <tagcount></tagcount>
569
+ <mbid></mbid>
570
+ <url>http://www.last.fm/music/Kasabian/_/Cutt+Off</url>
571
+ <streamable fulltrack="0">1</streamable>
572
+ <artist>
573
+ <name>Kasabian</name>
574
+ <mbid>69b39eab-6577-46a4-a9f5-817839092033</mbid>
575
+ <url>http://www.last.fm/music/Kasabian</url>
576
+ </artist>
577
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19746191.jpg</image>
578
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19746191.jpg</image>
579
+ <image size="large">http://userserve-ak.last.fm/serve/126/19746191.jpg</image>
580
+ </track>
581
+ <track>
582
+ <name>Für immer</name>
583
+ <playcount>1</playcount>
584
+ <tagcount></tagcount>
585
+ <mbid></mbid>
586
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/F%C3%BCr+immer</url>
587
+ <streamable fulltrack="0">0</streamable>
588
+ <artist>
589
+ <name>Die Ärzte</name>
590
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
591
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
592
+ </artist>
593
+ <image size="small">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
594
+ <image size="medium">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
595
+ <image size="large">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
596
+ </track>
597
+ <track>
598
+ <name>Hey Ya!</name>
599
+ <playcount>1</playcount>
600
+ <tagcount></tagcount>
601
+ <mbid></mbid>
602
+ <url>http://www.last.fm/music/The+BossHoss/_/Hey+Ya%21</url>
603
+ <streamable fulltrack="0">0</streamable>
604
+ <artist>
605
+ <name>The BossHoss</name>
606
+ <mbid>e0ab57c6-7ba1-4dca-b36e-fae4c0c269e1</mbid>
607
+ <url>http://www.last.fm/music/The+BossHoss</url>
608
+ </artist>
609
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4721041.jpg</image>
610
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4721041.jpg</image>
611
+ <image size="large">http://userserve-ak.last.fm/serve/126/4721041.jpg</image>
612
+ </track>
613
+ <track>
614
+ <name>soul storm</name>
615
+ <playcount>1</playcount>
616
+ <tagcount></tagcount>
617
+ <mbid></mbid>
618
+ <url>http://www.last.fm/music/Patrice/_/soul+storm</url>
619
+ <streamable fulltrack="0">1</streamable>
620
+ <artist>
621
+ <name>Patrice</name>
622
+ <mbid>826dc91a-6dd3-4279-ae8d-bb710db646bb</mbid>
623
+ <url>http://www.last.fm/music/Patrice</url>
624
+ </artist>
625
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19814677.jpg</image>
626
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19814677.jpg</image>
627
+ <image size="large">http://userserve-ak.last.fm/serve/126/19814677.jpg</image>
628
+ </track>
629
+ <track>
630
+ <name>Stickshifts and Safetybelts</name>
631
+ <playcount>1</playcount>
632
+ <tagcount></tagcount>
633
+ <mbid></mbid>
634
+ <url>http://www.last.fm/music/Cake/_/Stickshifts+and+Safetybelts</url>
635
+ <streamable fulltrack="0">1</streamable>
636
+ <artist>
637
+ <name>Cake</name>
638
+ <mbid>fa7b9055-3703-473a-8a09-adf2fe031a24</mbid>
639
+ <url>http://www.last.fm/music/Cake</url>
640
+ </artist>
641
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19783897.jpg</image>
642
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19783897.jpg</image>
643
+ <image size="large">http://userserve-ak.last.fm/serve/126/19783897.jpg</image>
644
+ </track>
645
+ <track>
646
+ <name>Whit Flagg</name>
647
+ <playcount>1</playcount>
648
+ <tagcount></tagcount>
649
+ <mbid></mbid>
650
+ <url>http://www.last.fm/music/Dido/_/Whit+Flagg</url>
651
+ <streamable fulltrack="0">0</streamable>
652
+ <artist>
653
+ <name>Dido</name>
654
+ <mbid>d1353a0c-26fb-4318-a116-defde9c7c9ad</mbid>
655
+ <url>http://www.last.fm/music/Dido</url>
656
+ </artist>
657
+ </track>
658
+ <track>
659
+ <name>The Colour of Blue</name>
660
+ <playcount>1</playcount>
661
+ <tagcount></tagcount>
662
+ <mbid></mbid>
663
+ <url>http://www.last.fm/music/S+Club+7/_/The+Colour+of+Blue</url>
664
+ <streamable fulltrack="1">1</streamable>
665
+ <artist>
666
+ <name>S Club 7</name>
667
+ <mbid>bd5cf3e9-cb6c-41f3-8c7d-e9bda3c4e721</mbid>
668
+ <url>http://www.last.fm/music/S+Club+7</url>
669
+ </artist>
670
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8726677.jpg</image>
671
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8726677.jpg</image>
672
+ <image size="large">http://userserve-ak.last.fm/serve/126/8726677.jpg</image>
673
+ </track>
674
+ <track>
675
+ <name>Outta Control (RW-REMIX)'05</name>
676
+ <playcount>1</playcount>
677
+ <tagcount></tagcount>
678
+ <mbid></mbid>
679
+ <url>http://www.last.fm/music/50%2BCent%2Bfeat%2BYoung%2BBuck%2B%2526%2BThe%2BGame/_/Outta+Control+%28RW-REMIX%29%2705</url>
680
+ <streamable fulltrack="0">0</streamable>
681
+ <artist>
682
+ <name>50 Cent feat Young Buck &amp; The Game</name>
683
+ <mbid></mbid>
684
+ <url>http://www.last.fm/music/50%2BCent%2Bfeat%2BYoung%2BBuck%2B%2526%2BThe%2BGame</url>
685
+ </artist>
686
+ </track>
687
+ <track>
688
+ <name>God Is a Music</name>
689
+ <playcount>1</playcount>
690
+ <tagcount></tagcount>
691
+ <mbid></mbid>
692
+ <url>http://www.last.fm/music/Beginner/_/God+Is+a+Music</url>
693
+ <streamable fulltrack="1">1</streamable>
694
+ <artist>
695
+ <name>Beginner</name>
696
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
697
+ <url>http://www.last.fm/music/Beginner</url>
698
+ </artist>
699
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12639629.jpg</image>
700
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12639629.jpg</image>
701
+ <image size="large">http://userserve-ak.last.fm/serve/126/12639629.jpg</image>
702
+ </track>
703
+ <track>
704
+ <name>Paris</name>
705
+ <playcount>1</playcount>
706
+ <tagcount></tagcount>
707
+ <mbid></mbid>
708
+ <url>http://www.last.fm/music/Friendly+Fires/_/Paris</url>
709
+ <streamable fulltrack="1">1</streamable>
710
+ <artist>
711
+ <name>Friendly Fires</name>
712
+ <mbid>ef656595-bbe8-4386-8953-be8df9f54472</mbid>
713
+ <url>http://www.last.fm/music/Friendly+Fires</url>
714
+ </artist>
715
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11602799.jpg</image>
716
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11602799.jpg</image>
717
+ <image size="large">http://userserve-ak.last.fm/serve/126/11602799.jpg</image>
718
+ </track>
719
+ <track>
720
+ <name>Knock-Down Drag-Out</name>
721
+ <playcount>1</playcount>
722
+ <tagcount></tagcount>
723
+ <mbid></mbid>
724
+ <url>http://www.last.fm/music/Weezer/_/Knock-Down+Drag-Out</url>
725
+ <streamable fulltrack="0">1</streamable>
726
+ <artist>
727
+ <name>Weezer</name>
728
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
729
+ <url>http://www.last.fm/music/Weezer</url>
730
+ </artist>
731
+ <image size="small">http://userserve-ak.last.fm/serve/34s/17077497.jpg</image>
732
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/17077497.jpg</image>
733
+ <image size="large">http://userserve-ak.last.fm/serve/126/17077497.jpg</image>
734
+ </track>
735
+ <track>
736
+ <name>Naive</name>
737
+ <playcount>1</playcount>
738
+ <tagcount></tagcount>
739
+ <mbid></mbid>
740
+ <url>http://www.last.fm/music/The+Kooks/_/Naive</url>
741
+ <streamable fulltrack="0">1</streamable>
742
+ <artist>
743
+ <name>The Kooks</name>
744
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
745
+ <url>http://www.last.fm/music/The+Kooks</url>
746
+ </artist>
747
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27156255.png</image>
748
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27156255.png</image>
749
+ <image size="large">http://userserve-ak.last.fm/serve/126/27156255.png</image>
750
+ </track>
751
+ <track>
752
+ <name>Dusty Vinyl</name>
753
+ <playcount>1</playcount>
754
+ <tagcount></tagcount>
755
+ <mbid></mbid>
756
+ <url>http://www.last.fm/music/Scooter/_/Dusty+Vinyl</url>
757
+ <streamable fulltrack="0">0</streamable>
758
+ <artist>
759
+ <name>Scooter</name>
760
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
761
+ <url>http://www.last.fm/music/Scooter</url>
762
+ </artist>
763
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
764
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
765
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
766
+ </track>
767
+ <track>
768
+ <name>Hold On</name>
769
+ <playcount>1</playcount>
770
+ <tagcount></tagcount>
771
+ <mbid></mbid>
772
+ <url>http://www.last.fm/music/Razorlight/_/Hold+On</url>
773
+ <streamable fulltrack="1">1</streamable>
774
+ <artist>
775
+ <name>Razorlight</name>
776
+ <mbid>f2cb0435-d643-4fab-9587-fdb0279330a7</mbid>
777
+ <url>http://www.last.fm/music/Razorlight</url>
778
+ </artist>
779
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8846369.jpg</image>
780
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8846369.jpg</image>
781
+ <image size="large">http://userserve-ak.last.fm/serve/126/8846369.jpg</image>
782
+ </track>
783
+ </tracks></lfm>