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,753 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="31" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Blood Sweat Tears</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Eight+Legs/_/Blood+Sweat+Tears</url>
10
+ <streamable fulltrack="1">1</streamable>
11
+ <artist>
12
+ <name>Eight Legs</name>
13
+ <mbid></mbid>
14
+ <url>http://www.last.fm/music/Eight+Legs</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15615455.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15615455.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/15615455.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Storm in a Teacup</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Milburn/_/Storm+in+a+Teacup</url>
26
+ <streamable fulltrack="1">1</streamable>
27
+ <artist>
28
+ <name>Milburn</name>
29
+ <mbid>29a2e85c-1b08-4fe9-91a5-662d6e70dfe7</mbid>
30
+ <url>http://www.last.fm/music/Milburn</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25441753.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25441753.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/25441753.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Titel 03</name>
38
+ <playcount>1</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Abydos/_/Titel+03</url>
42
+ <streamable fulltrack="0">0</streamable>
43
+ <artist>
44
+ <name>Abydos</name>
45
+ <mbid>ce1e4d85-3282-4f0e-8b01-a3ba91bd5719</mbid>
46
+ <url>http://www.last.fm/music/Abydos</url>
47
+ </artist>
48
+ </track>
49
+ <track>
50
+ <name>Kings of Metal</name>
51
+ <playcount>1</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Beatsteaks/_/Kings+of+Metal</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>Beatsteaks</name>
58
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
59
+ <url>http://www.last.fm/music/Beatsteaks</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623211.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623211.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623211.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Are You Gonna Be My Girl</name>
67
+ <playcount>1</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Jet/_/Are+You+Gonna+Be+My+Girl</url>
71
+ <streamable fulltrack="0">1</streamable>
72
+ <artist>
73
+ <name>Jet</name>
74
+ <mbid>4efa55ba-93cf-497f-baf3-2ca9da7e193e</mbid>
75
+ <url>http://www.last.fm/music/Jet</url>
76
+ </artist>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8630939.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8630939.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/8630939.jpg</image>
80
+ </track>
81
+ <track>
82
+ <name>One Love (edit)</name>
83
+ <playcount>1</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/The+Prodigy/_/One+Love+%28edit%29</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>The Prodigy</name>
90
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
91
+ <url>http://www.last.fm/music/The+Prodigy</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622007.jpg</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622007.jpg</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622007.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>The Expatriate Act</name>
99
+ <playcount>1</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/The%2BWorld%252FInferno%2BFriendship%2BSociety/_/The+Expatriate+Act</url>
103
+ <streamable fulltrack="0">0</streamable>
104
+ <artist>
105
+ <name>The World/Inferno Friendship Society</name>
106
+ <mbid>a5931809-d6c4-42cb-9256-c2ff82415f1e</mbid>
107
+ <url>http://www.last.fm/music/The%2BWorld%252FInferno%2BFriendship%2BSociety</url>
108
+ </artist>
109
+ <image size="small">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
110
+ <image size="medium">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
111
+ <image size="large">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Of Moons, Birds And Monsters (Holy Ghost Remix)</name>
115
+ <playcount>1</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/MGMT/_/Of+Moons%2C+Birds+And+Monsters+%28Holy+Ghost+Remix%29</url>
119
+ <streamable fulltrack="0">0</streamable>
120
+ <artist>
121
+ <name>MGMT</name>
122
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
123
+ <url>http://www.last.fm/music/MGMT</url>
124
+ </artist>
125
+ </track>
126
+ <track>
127
+ <name>Last Call Casualty</name>
128
+ <playcount>1</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Bowling+for+Soup/_/Last+Call+Casualty</url>
132
+ <streamable fulltrack="0">1</streamable>
133
+ <artist>
134
+ <name>Bowling for Soup</name>
135
+ <mbid>bcb95908-5c6e-453a-97fc-d69003d250ff</mbid>
136
+ <url>http://www.last.fm/music/Bowling+for+Soup</url>
137
+ </artist>
138
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15937155.jpg</image>
139
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15937155.jpg</image>
140
+ <image size="large">http://userserve-ak.last.fm/serve/126/15937155.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>Egoist</name>
144
+ <playcount>1</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Falco/_/Egoist</url>
148
+ <streamable fulltrack="0">1</streamable>
149
+ <artist>
150
+ <name>Falco</name>
151
+ <mbid>dcd95aa4-f3ff-492d-a621-8518ada0f58b</mbid>
152
+ <url>http://www.last.fm/music/Falco</url>
153
+ </artist>
154
+ <image size="small">http://images.amazon.com/images/P/B00001ZT7F.01.MZZZZZZZ.jpg</image>
155
+ <image size="medium">http://images.amazon.com/images/P/B00001ZT7F.01.MZZZZZZZ.jpg</image>
156
+ <image size="large">http://images.amazon.com/images/P/B00001ZT7F.01.MZZZZZZZ.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Gold</name>
160
+ <playcount>1</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Mando+Diao/_/Gold</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Mando Diao</name>
167
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
168
+ <url>http://www.last.fm/music/Mando+Diao</url>
169
+ </artist>
170
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15249355.jpg</image>
171
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15249355.jpg</image>
172
+ <image size="large">http://userserve-ak.last.fm/serve/126/15249355.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Love Train</name>
176
+ <playcount>1</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/S+Club+7/_/Love+Train</url>
180
+ <streamable fulltrack="1">1</streamable>
181
+ <artist>
182
+ <name>S Club 7</name>
183
+ <mbid>bd5cf3e9-cb6c-41f3-8c7d-e9bda3c4e721</mbid>
184
+ <url>http://www.last.fm/music/S+Club+7</url>
185
+ </artist>
186
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8726677.jpg</image>
187
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8726677.jpg</image>
188
+ <image size="large">http://userserve-ak.last.fm/serve/126/8726677.jpg</image>
189
+ </track>
190
+ <track>
191
+ <name>Echolot</name>
192
+ <playcount>1</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Echolot</url>
196
+ <streamable fulltrack="0">1</streamable>
197
+ <artist>
198
+ <name>Wir sind Helden</name>
199
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
200
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
201
+ </artist>
202
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14689581.jpg</image>
203
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14689581.jpg</image>
204
+ <image size="large">http://userserve-ak.last.fm/serve/126/14689581.jpg</image>
205
+ </track>
206
+ <track>
207
+ <name>Du Bist Wie du Bist</name>
208
+ <playcount>1</playcount>
209
+ <tagcount></tagcount>
210
+ <mbid></mbid>
211
+ <url>http://www.last.fm/music/Madsen/_/Du+Bist+Wie+du+Bist</url>
212
+ <streamable fulltrack="1">1</streamable>
213
+ <artist>
214
+ <name>Madsen</name>
215
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
216
+ <url>http://www.last.fm/music/Madsen</url>
217
+ </artist>
218
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
219
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
220
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
221
+ </track>
222
+ <track>
223
+ <name>Rainhouse</name>
224
+ <playcount>1</playcount>
225
+ <tagcount></tagcount>
226
+ <mbid></mbid>
227
+ <url>http://www.last.fm/music/Polarkreis+18/_/Rainhouse</url>
228
+ <streamable fulltrack="1">1</streamable>
229
+ <artist>
230
+ <name>Polarkreis 18</name>
231
+ <mbid>90b18d97-718b-4a95-982d-b14019d084c0</mbid>
232
+ <url>http://www.last.fm/music/Polarkreis+18</url>
233
+ </artist>
234
+ </track>
235
+ <track>
236
+ <name>Hell</name>
237
+ <playcount>1</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Foo+Fighters/_/Hell</url>
241
+ <streamable fulltrack="0">1</streamable>
242
+ <artist>
243
+ <name>Foo Fighters</name>
244
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
245
+ <url>http://www.last.fm/music/Foo+Fighters</url>
246
+ </artist>
247
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
248
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
249
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
250
+ </track>
251
+ <track>
252
+ <name>Merry Xmas Everyone</name>
253
+ <playcount>1</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/Oasis/_/Merry+Xmas+Everyone</url>
257
+ <streamable fulltrack="0">0</streamable>
258
+ <artist>
259
+ <name>Oasis</name>
260
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
261
+ <url>http://www.last.fm/music/Oasis</url>
262
+ </artist>
263
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4599869.jpg</image>
264
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4599869.jpg</image>
265
+ <image size="large">http://userserve-ak.last.fm/serve/126/4599869.jpg</image>
266
+ </track>
267
+ <track>
268
+ <name>Titel 07</name>
269
+ <playcount>1</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/Refused/_/Titel+07</url>
273
+ <streamable fulltrack="0">0</streamable>
274
+ <artist>
275
+ <name>Refused</name>
276
+ <mbid>42884e27-dfb8-453d-990f-2ffd90bc2d1a</mbid>
277
+ <url>http://www.last.fm/music/Refused</url>
278
+ </artist>
279
+ </track>
280
+ <track>
281
+ <name>Titel 09</name>
282
+ <playcount>1</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/Refused/_/Titel+09</url>
286
+ <streamable fulltrack="0">0</streamable>
287
+ <artist>
288
+ <name>Refused</name>
289
+ <mbid>42884e27-dfb8-453d-990f-2ffd90bc2d1a</mbid>
290
+ <url>http://www.last.fm/music/Refused</url>
291
+ </artist>
292
+ </track>
293
+ <track>
294
+ <name>Homelife</name>
295
+ <playcount>1</playcount>
296
+ <tagcount></tagcount>
297
+ <mbid></mbid>
298
+ <url>http://www.last.fm/music/Adam+Green/_/Homelife</url>
299
+ <streamable fulltrack="0">0</streamable>
300
+ <artist>
301
+ <name>Adam Green</name>
302
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
303
+ <url>http://www.last.fm/music/Adam+Green</url>
304
+ </artist>
305
+ </track>
306
+ <track>
307
+ <name>Angry, Young and Poor</name>
308
+ <playcount>1</playcount>
309
+ <tagcount></tagcount>
310
+ <mbid></mbid>
311
+ <url>http://www.last.fm/music/Anti-Flag/_/Angry%2C+Young+and+Poor</url>
312
+ <streamable fulltrack="0">1</streamable>
313
+ <artist>
314
+ <name>Anti-Flag</name>
315
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
316
+ <url>http://www.last.fm/music/Anti-Flag</url>
317
+ </artist>
318
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19837175.jpg</image>
319
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19837175.jpg</image>
320
+ <image size="large">http://userserve-ak.last.fm/serve/126/19837175.jpg</image>
321
+ </track>
322
+ <track>
323
+ <name>Child in Time</name>
324
+ <playcount>1</playcount>
325
+ <tagcount></tagcount>
326
+ <mbid></mbid>
327
+ <url>http://www.last.fm/music/Deep+Purple/_/Child+in+Time</url>
328
+ <streamable fulltrack="0">1</streamable>
329
+ <artist>
330
+ <name>Deep Purple</name>
331
+ <mbid>79491354-3d83-40e3-9d8e-7592d58d790a</mbid>
332
+ <url>http://www.last.fm/music/Deep+Purple</url>
333
+ </artist>
334
+ <image size="small">http://images.amazon.com/images/P/B000002KLV.01.THUMBZZZ.jpg</image>
335
+ <image size="medium">http://images.amazon.com/images/P/B000002KLV.01.MZZZZZZZ.jpg</image>
336
+ <image size="large">http://images.amazon.com/images/P/B000002KLV.01.LZZZZZZZ.jpg</image>
337
+ </track>
338
+ <track>
339
+ <name>Klar</name>
340
+ <playcount>1</playcount>
341
+ <tagcount></tagcount>
342
+ <mbid></mbid>
343
+ <url>http://www.last.fm/music/Jan+Delay/_/Klar</url>
344
+ <streamable fulltrack="0">1</streamable>
345
+ <artist>
346
+ <name>Jan Delay</name>
347
+ <mbid>2692cab2-7563-4315-924f-563a59190fd9</mbid>
348
+ <url>http://www.last.fm/music/Jan+Delay</url>
349
+ </artist>
350
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10063687.jpg</image>
351
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10063687.jpg</image>
352
+ <image size="large">http://userserve-ak.last.fm/serve/126/10063687.jpg</image>
353
+ </track>
354
+ <track>
355
+ <name>Ghost</name>
356
+ <playcount>1</playcount>
357
+ <tagcount></tagcount>
358
+ <mbid></mbid>
359
+ <url>http://www.last.fm/music/Bombay+Bicycle+Club/_/Ghost</url>
360
+ <streamable fulltrack="1">1</streamable>
361
+ <artist>
362
+ <name>Bombay Bicycle Club</name>
363
+ <mbid></mbid>
364
+ <url>http://www.last.fm/music/Bombay+Bicycle+Club</url>
365
+ </artist>
366
+ </track>
367
+ <track>
368
+ <name>Welcome Home, Luc Robitaille</name>
369
+ <playcount>1</playcount>
370
+ <tagcount></tagcount>
371
+ <mbid></mbid>
372
+ <url>http://www.last.fm/music/Mando+Diao/_/Welcome+Home%2C+Luc+Robitaille</url>
373
+ <streamable fulltrack="0">1</streamable>
374
+ <artist>
375
+ <name>Mando Diao</name>
376
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
377
+ <url>http://www.last.fm/music/Mando+Diao</url>
378
+ </artist>
379
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14611643.jpg</image>
380
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14611643.jpg</image>
381
+ <image size="large">http://userserve-ak.last.fm/serve/126/14611643.jpg</image>
382
+ </track>
383
+ <track>
384
+ <name>I'll Give You Sympathy</name>
385
+ <playcount>1</playcount>
386
+ <tagcount></tagcount>
387
+ <mbid></mbid>
388
+ <url>http://www.last.fm/music/The+Rascals/_/I%27ll+Give+You+Sympathy</url>
389
+ <streamable fulltrack="1">1</streamable>
390
+ <artist>
391
+ <name>The Rascals</name>
392
+ <mbid>219ce30a-0f3a-468c-9a13-55ee358ac0f0</mbid>
393
+ <url>http://www.last.fm/music/The+Rascals</url>
394
+ </artist>
395
+ </track>
396
+ <track>
397
+ <name>Ram It Home</name>
398
+ <playcount>1</playcount>
399
+ <tagcount></tagcount>
400
+ <mbid></mbid>
401
+ <url>http://www.last.fm/music/We+Are+Scientists/_/Ram+It+Home</url>
402
+ <streamable fulltrack="0">0</streamable>
403
+ <artist>
404
+ <name>We Are Scientists</name>
405
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
406
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
407
+ </artist>
408
+ </track>
409
+ <track>
410
+ <name>... und die Gitarre war noch warm</name>
411
+ <playcount>1</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid></mbid>
414
+ <url>http://www.last.fm/music/Farin+Urlaub/_/...+und+die+Gitarre+war+noch+warm</url>
415
+ <streamable fulltrack="0">1</streamable>
416
+ <artist>
417
+ <name>Farin Urlaub</name>
418
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
419
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
420
+ </artist>
421
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3608376.jpg</image>
422
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3608376.jpg</image>
423
+ <image size="large">http://userserve-ak.last.fm/serve/126/3608376.jpg</image>
424
+ </track>
425
+ <track>
426
+ <name>Wer bistn Du?</name>
427
+ <playcount>1</playcount>
428
+ <tagcount></tagcount>
429
+ <mbid></mbid>
430
+ <url>http://www.last.fm/music/Beginner/_/Wer+bistn+Du%3F</url>
431
+ <streamable fulltrack="1">1</streamable>
432
+ <artist>
433
+ <name>Beginner</name>
434
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
435
+ <url>http://www.last.fm/music/Beginner</url>
436
+ </artist>
437
+ </track>
438
+ <track>
439
+ <name>Promises</name>
440
+ <playcount>1</playcount>
441
+ <tagcount></tagcount>
442
+ <mbid></mbid>
443
+ <url>http://www.last.fm/music/Boy+Kill+Boy/_/Promises</url>
444
+ <streamable fulltrack="0">1</streamable>
445
+ <artist>
446
+ <name>Boy Kill Boy</name>
447
+ <mbid>7145ed99-fcff-4148-af73-04847d3d23f6</mbid>
448
+ <url>http://www.last.fm/music/Boy+Kill+Boy</url>
449
+ </artist>
450
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5245184.jpg</image>
451
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5245184.jpg</image>
452
+ <image size="large">http://userserve-ak.last.fm/serve/126/5245184.jpg</image>
453
+ </track>
454
+ <track>
455
+ <name>You And Me</name>
456
+ <playcount>1</playcount>
457
+ <tagcount></tagcount>
458
+ <mbid></mbid>
459
+ <url>http://www.last.fm/music/One+Night+Only/_/You+And+Me</url>
460
+ <streamable fulltrack="1">1</streamable>
461
+ <artist>
462
+ <name>One Night Only</name>
463
+ <mbid></mbid>
464
+ <url>http://www.last.fm/music/One+Night+Only</url>
465
+ </artist>
466
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10306013.jpg</image>
467
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10306013.jpg</image>
468
+ <image size="large">http://userserve-ak.last.fm/serve/126/10306013.jpg</image>
469
+ </track>
470
+ <track>
471
+ <name>Feel Good Inc.</name>
472
+ <playcount>1</playcount>
473
+ <tagcount></tagcount>
474
+ <mbid></mbid>
475
+ <url>http://www.last.fm/music/Gorillaz/_/Feel+Good+Inc.</url>
476
+ <streamable fulltrack="0">1</streamable>
477
+ <artist>
478
+ <name>Gorillaz</name>
479
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
480
+ <url>http://www.last.fm/music/Gorillaz</url>
481
+ </artist>
482
+ <image size="small">http://images.amazon.com/images/P/B0007Q6QYG.01._SCMZZZZZZZ_.jpg</image>
483
+ <image size="medium">http://images.amazon.com/images/P/B0007Q6QYG.01._SCMZZZZZZZ_.jpg</image>
484
+ <image size="large">http://images.amazon.com/images/P/B0007Q6QYG.01._SCMZZZZZZZ_.jpg</image>
485
+ </track>
486
+ <track>
487
+ <name>Meine Freunde</name>
488
+ <playcount>1</playcount>
489
+ <tagcount></tagcount>
490
+ <mbid></mbid>
491
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Meine+Freunde</url>
492
+ <streamable fulltrack="0">1</streamable>
493
+ <artist>
494
+ <name>Die Ärzte</name>
495
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
496
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
497
+ </artist>
498
+ <image size="small">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
499
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
500
+ <image size="large">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
501
+ </track>
502
+ <track>
503
+ <name>Fly Away</name>
504
+ <playcount>1</playcount>
505
+ <tagcount></tagcount>
506
+ <mbid></mbid>
507
+ <url>http://www.last.fm/music/Lenny+Kravitz/_/Fly+Away</url>
508
+ <streamable fulltrack="0">1</streamable>
509
+ <artist>
510
+ <name>Lenny Kravitz</name>
511
+ <mbid>0ef3f425-9bd2-4216-9dd2-219d2fe90f1f</mbid>
512
+ <url>http://www.last.fm/music/Lenny+Kravitz</url>
513
+ </artist>
514
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11520055.jpg</image>
515
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11520055.jpg</image>
516
+ <image size="large">http://userserve-ak.last.fm/serve/126/11520055.jpg</image>
517
+ </track>
518
+ <track>
519
+ <name>Man All Rise</name>
520
+ <playcount>1</playcount>
521
+ <tagcount></tagcount>
522
+ <mbid></mbid>
523
+ <url>http://www.last.fm/music/Gentleman/_/Man+All+Rise</url>
524
+ <streamable fulltrack="0">0</streamable>
525
+ <artist>
526
+ <name>Gentleman</name>
527
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
528
+ <url>http://www.last.fm/music/Gentleman</url>
529
+ </artist>
530
+ </track>
531
+ <track>
532
+ <name>Somewhere Only We Know</name>
533
+ <playcount>1</playcount>
534
+ <tagcount></tagcount>
535
+ <mbid></mbid>
536
+ <url>http://www.last.fm/music/Keane/_/Somewhere+Only+We+Know</url>
537
+ <streamable fulltrack="0">1</streamable>
538
+ <artist>
539
+ <name>Keane</name>
540
+ <mbid>c7020c6d-cae9-4db3-92a7-e5c561cbad50</mbid>
541
+ <url>http://www.last.fm/music/Keane</url>
542
+ </artist>
543
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641121.jpg</image>
544
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641121.jpg</image>
545
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641121.jpg</image>
546
+ </track>
547
+ <track>
548
+ <name>Die Gaby und Ich</name>
549
+ <playcount>1</playcount>
550
+ <tagcount></tagcount>
551
+ <mbid></mbid>
552
+ <url>http://www.last.fm/music/Badesalz/_/Die+Gaby+und+Ich</url>
553
+ <streamable fulltrack="0">1</streamable>
554
+ <artist>
555
+ <name>Badesalz</name>
556
+ <mbid>533d4015-a55b-4f2a-b968-b5a43f08b381</mbid>
557
+ <url>http://www.last.fm/music/Badesalz</url>
558
+ </artist>
559
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19583447.jpg</image>
560
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19583447.jpg</image>
561
+ <image size="large">http://userserve-ak.last.fm/serve/126/19583447.jpg</image>
562
+ </track>
563
+ <track>
564
+ <name>Mr Moon</name>
565
+ <playcount>1</playcount>
566
+ <tagcount></tagcount>
567
+ <mbid></mbid>
568
+ <url>http://www.last.fm/music/Mando+Diao/_/Mr+Moon</url>
569
+ <streamable fulltrack="0">1</streamable>
570
+ <artist>
571
+ <name>Mando Diao</name>
572
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
573
+ <url>http://www.last.fm/music/Mando+Diao</url>
574
+ </artist>
575
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
576
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
577
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
578
+ </track>
579
+ <track>
580
+ <name>Mucho Más</name>
581
+ <playcount>1</playcount>
582
+ <tagcount></tagcount>
583
+ <mbid></mbid>
584
+ <url>http://www.last.fm/music/We+Are+Scientists/_/Mucho+M%C3%A1s</url>
585
+ <streamable fulltrack="0">0</streamable>
586
+ <artist>
587
+ <name>We Are Scientists</name>
588
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
589
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
590
+ </artist>
591
+ </track>
592
+ <track>
593
+ <name>Jackie Big Tits</name>
594
+ <playcount>1</playcount>
595
+ <tagcount></tagcount>
596
+ <mbid></mbid>
597
+ <url>http://www.last.fm/music/The+Kooks/_/Jackie+Big+Tits</url>
598
+ <streamable fulltrack="0">1</streamable>
599
+ <artist>
600
+ <name>The Kooks</name>
601
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
602
+ <url>http://www.last.fm/music/The+Kooks</url>
603
+ </artist>
604
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27156255.png</image>
605
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27156255.png</image>
606
+ <image size="large">http://userserve-ak.last.fm/serve/126/27156255.png</image>
607
+ </track>
608
+ <track>
609
+ <name>Kids (MGMT Cover)</name>
610
+ <playcount>1</playcount>
611
+ <tagcount></tagcount>
612
+ <mbid></mbid>
613
+ <url>http://www.last.fm/music/The+Kooks/_/Kids+%28MGMT+Cover%29</url>
614
+ <streamable fulltrack="0">0</streamable>
615
+ <artist>
616
+ <name>The Kooks</name>
617
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
618
+ <url>http://www.last.fm/music/The+Kooks</url>
619
+ </artist>
620
+ </track>
621
+ <track>
622
+ <name>America's Suitehearts</name>
623
+ <playcount>1</playcount>
624
+ <tagcount></tagcount>
625
+ <mbid></mbid>
626
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/America%27s+Suitehearts</url>
627
+ <streamable fulltrack="1">1</streamable>
628
+ <artist>
629
+ <name>Fall Out Boy</name>
630
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
631
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
632
+ </artist>
633
+ </track>
634
+ <track>
635
+ <name>Datapop [Short]</name>
636
+ <playcount>1</playcount>
637
+ <tagcount></tagcount>
638
+ <mbid></mbid>
639
+ <url>http://www.last.fm/music/Members+of+Mayday/_/Datapop+%5BShort%5D</url>
640
+ <streamable fulltrack="0">0</streamable>
641
+ <artist>
642
+ <name>Members of Mayday</name>
643
+ <mbid>620efc10-77da-428f-9d78-2ebc75760f46</mbid>
644
+ <url>http://www.last.fm/music/Members+of+Mayday</url>
645
+ </artist>
646
+ </track>
647
+ <track>
648
+ <name>pop</name>
649
+ <playcount>1</playcount>
650
+ <tagcount></tagcount>
651
+ <mbid></mbid>
652
+ <url>http://www.last.fm/music/Mediengruppe+Telekommander/_/pop</url>
653
+ <streamable fulltrack="0">0</streamable>
654
+ <artist>
655
+ <name>Mediengruppe Telekommander</name>
656
+ <mbid>a9a11eda-c39a-4c36-942d-2719adc4edf6</mbid>
657
+ <url>http://www.last.fm/music/Mediengruppe+Telekommander</url>
658
+ </artist>
659
+ </track>
660
+ <track>
661
+ <name>Viele Wege führen nach Rom</name>
662
+ <playcount>1</playcount>
663
+ <tagcount></tagcount>
664
+ <mbid></mbid>
665
+ <url>http://www.last.fm/music/Fettes+Brot/_/Viele+Wege+f%C3%BChren+nach+Rom</url>
666
+ <streamable fulltrack="0">1</streamable>
667
+ <artist>
668
+ <name>Fettes Brot</name>
669
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
670
+ <url>http://www.last.fm/music/Fettes+Brot</url>
671
+ </artist>
672
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
673
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
674
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
675
+ </track>
676
+ <track>
677
+ <name>Fade Away</name>
678
+ <playcount>1</playcount>
679
+ <tagcount></tagcount>
680
+ <mbid></mbid>
681
+ <url>http://www.last.fm/music/Blur/_/Fade+Away</url>
682
+ <streamable fulltrack="0">1</streamable>
683
+ <artist>
684
+ <name>Blur</name>
685
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
686
+ <url>http://www.last.fm/music/Blur</url>
687
+ </artist>
688
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14401319.jpg</image>
689
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14401319.jpg</image>
690
+ <image size="large">http://userserve-ak.last.fm/serve/126/14401319.jpg</image>
691
+ </track>
692
+ <track>
693
+ <name>The Kids Aren't All Right</name>
694
+ <playcount>1</playcount>
695
+ <tagcount></tagcount>
696
+ <mbid></mbid>
697
+ <url>http://www.last.fm/music/The+Offspring/_/The+Kids+Aren%27t+All+Right</url>
698
+ <streamable fulltrack="0">0</streamable>
699
+ <artist>
700
+ <name>The Offspring</name>
701
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
702
+ <url>http://www.last.fm/music/The+Offspring</url>
703
+ </artist>
704
+ </track>
705
+ <track>
706
+ <name>Civil Sin</name>
707
+ <playcount>1</playcount>
708
+ <tagcount></tagcount>
709
+ <mbid></mbid>
710
+ <url>http://www.last.fm/music/Boy+Kill+Boy/_/Civil+Sin</url>
711
+ <streamable fulltrack="1">1</streamable>
712
+ <artist>
713
+ <name>Boy Kill Boy</name>
714
+ <mbid>7145ed99-fcff-4148-af73-04847d3d23f6</mbid>
715
+ <url>http://www.last.fm/music/Boy+Kill+Boy</url>
716
+ </artist>
717
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8828019.jpg</image>
718
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8828019.jpg</image>
719
+ <image size="large">http://userserve-ak.last.fm/serve/126/8828019.jpg</image>
720
+ </track>
721
+ <track>
722
+ <name>L.S.F. (Lost Souls Forever)</name>
723
+ <playcount>1</playcount>
724
+ <tagcount></tagcount>
725
+ <mbid></mbid>
726
+ <url>http://www.last.fm/music/Kasabian/_/L.S.F.+%28Lost+Souls+Forever%29</url>
727
+ <streamable fulltrack="1">1</streamable>
728
+ <artist>
729
+ <name>Kasabian</name>
730
+ <mbid>69b39eab-6577-46a4-a9f5-817839092033</mbid>
731
+ <url>http://www.last.fm/music/Kasabian</url>
732
+ </artist>
733
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10082687.jpg</image>
734
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10082687.jpg</image>
735
+ <image size="large">http://userserve-ak.last.fm/serve/126/10082687.jpg</image>
736
+ </track>
737
+ <track>
738
+ <name>Actors In The Park</name>
739
+ <playcount>1</playcount>
740
+ <tagcount></tagcount>
741
+ <mbid></mbid>
742
+ <url>http://www.last.fm/music/White+Lies/_/Actors+In+The+Park</url>
743
+ <streamable fulltrack="1">1</streamable>
744
+ <artist>
745
+ <name>White Lies</name>
746
+ <mbid></mbid>
747
+ <url>http://www.last.fm/music/White+Lies</url>
748
+ </artist>
749
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15554935.jpg</image>
750
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15554935.jpg</image>
751
+ <image size="large">http://userserve-ak.last.fm/serve/126/15554935.jpg</image>
752
+ </track>
753
+ </tracks></lfm>