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,780 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="30" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Wunderbaren Jahren</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Wunderbaren+Jahren</url>
10
+ <streamable fulltrack="1">1</streamable>
11
+ <artist>
12
+ <name>Sportfreunde Stiller</name>
13
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
14
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Sympathy for the Devil (Neptunes remix)</name>
22
+ <playcount>1</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/The+Rolling+Stones/_/Sympathy+for+the+Devil+%28Neptunes+remix%29</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>The Rolling Stones</name>
29
+ <mbid>b071f9fa-14b0-4217-8e97-eb41da73f598</mbid>
30
+ <url>http://www.last.fm/music/The+Rolling+Stones</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27478243.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27478243.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/27478243.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Down Slow</name>
38
+ <playcount>1</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Moby/_/Down+Slow</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Moby</name>
45
+ <mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
46
+ <url>http://www.last.fm/music/Moby</url>
47
+ </artist>
48
+ <image size="small">http://images.amazon.com/images/P/B00000J6AG.01.THUMBZZZ.jpg</image>
49
+ <image size="medium">http://images.amazon.com/images/P/B00000J6AG.01.MZZZZZZZ.jpg</image>
50
+ <image size="large">http://images.amazon.com/images/P/B00000J6AG.01.LZZZZZZZ.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Everloving</name>
54
+ <playcount>1</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Moby/_/Everloving</url>
58
+ <streamable fulltrack="0">1</streamable>
59
+ <artist>
60
+ <name>Moby</name>
61
+ <mbid>8970d868-0723-483b-a75b-51088913d3d4</mbid>
62
+ <url>http://www.last.fm/music/Moby</url>
63
+ </artist>
64
+ <image size="small">http://images.amazon.com/images/P/B00000J6AG.01.THUMBZZZ.jpg</image>
65
+ <image size="medium">http://images.amazon.com/images/P/B00000J6AG.01.MZZZZZZZ.jpg</image>
66
+ <image size="large">http://images.amazon.com/images/P/B00000J6AG.01.LZZZZZZZ.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>Butterfly</name>
70
+ <playcount>1</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/Crazy+Town/_/Butterfly</url>
74
+ <streamable fulltrack="0">1</streamable>
75
+ <artist>
76
+ <name>Crazy Town</name>
77
+ <mbid>8996b655-fbad-4018-b430-1bd8fab43235</mbid>
78
+ <url>http://www.last.fm/music/Crazy+Town</url>
79
+ </artist>
80
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22709843.jpg</image>
81
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22709843.jpg</image>
82
+ <image size="large">http://userserve-ak.last.fm/serve/126/22709843.jpg</image>
83
+ </track>
84
+ <track>
85
+ <name>OK / Kein Zurück</name>
86
+ <playcount>1</playcount>
87
+ <tagcount></tagcount>
88
+ <mbid></mbid>
89
+ <url>http://www.last.fm/music/Farin+Urlaub/_/OK%2B%252F%2BKein%2BZur%25C3%25BCck</url>
90
+ <streamable fulltrack="0">0</streamable>
91
+ <artist>
92
+ <name>Farin Urlaub</name>
93
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
94
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
95
+ </artist>
96
+ </track>
97
+ <track>
98
+ <name>Be My Baby</name>
99
+ <playcount>1</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/We+Are+Scientists/_/Be+My+Baby</url>
103
+ <streamable fulltrack="0">0</streamable>
104
+ <artist>
105
+ <name>We Are Scientists</name>
106
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
107
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
108
+ </artist>
109
+ </track>
110
+ <track>
111
+ <name>My Kind of Guy</name>
112
+ <playcount>1</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/My+Kind+of+Guy</url>
116
+ <streamable fulltrack="1">1</streamable>
117
+ <artist>
118
+ <name>Kaiser Chiefs</name>
119
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
120
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
121
+ </artist>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9218885.gif</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9218885.gif</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/9218885.gif</image>
125
+ </track>
126
+ <track>
127
+ <name>Eight Legs</name>
128
+ <playcount>1</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Eight+Legs/_/Eight+Legs</url>
132
+ <streamable fulltrack="1">1</streamable>
133
+ <artist>
134
+ <name>Eight Legs</name>
135
+ <mbid></mbid>
136
+ <url>http://www.last.fm/music/Eight+Legs</url>
137
+ </artist>
138
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11249939.jpg</image>
139
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11249939.jpg</image>
140
+ <image size="large">http://userserve-ak.last.fm/serve/126/11249939.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>When Did Your Heart Go Missing?</name>
144
+ <playcount>1</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Rooney/_/When+Did+Your+Heart+Go+Missing%3F</url>
148
+ <streamable fulltrack="1">1</streamable>
149
+ <artist>
150
+ <name>Rooney</name>
151
+ <mbid>bbc8d6b5-a3e3-4d51-9f4e-565e9ef94967</mbid>
152
+ <url>http://www.last.fm/music/Rooney</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10297087.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10297087.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/10297087.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Terrorist</name>
160
+ <playcount>1</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Soulfly/_/Terrorist</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Soulfly</name>
167
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
168
+ <url>http://www.last.fm/music/Soulfly</url>
169
+ </artist>
170
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8600543.jpg</image>
171
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8600543.jpg</image>
172
+ <image size="large">http://userserve-ak.last.fm/serve/126/8600543.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Vollidiot</name>
176
+ <playcount>1</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Madsen/_/Vollidiot</url>
180
+ <streamable fulltrack="1">1</streamable>
181
+ <artist>
182
+ <name>Madsen</name>
183
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
184
+ <url>http://www.last.fm/music/Madsen</url>
185
+ </artist>
186
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
187
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
188
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
189
+ </track>
190
+ <track>
191
+ <name>Geld</name>
192
+ <playcount>1</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Geld</url>
196
+ <streamable fulltrack="0">0</streamable>
197
+ <artist>
198
+ <name>Die Ärzte</name>
199
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
200
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
201
+ </artist>
202
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
203
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
204
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
205
+ </track>
206
+ <track>
207
+ <name>Thank You Very Much</name>
208
+ <playcount>1</playcount>
209
+ <tagcount></tagcount>
210
+ <mbid></mbid>
211
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Thank+You+Very+Much</url>
212
+ <streamable fulltrack="1">1</streamable>
213
+ <artist>
214
+ <name>Kaiser Chiefs</name>
215
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
216
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
217
+ </artist>
218
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9218885.gif</image>
219
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9218885.gif</image>
220
+ <image size="large">http://userserve-ak.last.fm/serve/126/9218885.gif</image>
221
+ </track>
222
+ <track>
223
+ <name>Dai the Flu</name>
224
+ <playcount>1</playcount>
225
+ <tagcount></tagcount>
226
+ <mbid></mbid>
227
+ <url>http://www.last.fm/music/Deftones/_/Dai+the+Flu</url>
228
+ <streamable fulltrack="0">0</streamable>
229
+ <artist>
230
+ <name>Deftones</name>
231
+ <mbid>7527f6c2-d762-4b88-b5e2-9244f1e34c46</mbid>
232
+ <url>http://www.last.fm/music/Deftones</url>
233
+ </artist>
234
+ </track>
235
+ <track>
236
+ <name>Put Your Arms Around Me</name>
237
+ <playcount>1</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Natural/_/Put+Your+Arms+Around+Me</url>
241
+ <streamable fulltrack="0">0</streamable>
242
+ <artist>
243
+ <name>Natural</name>
244
+ <mbid>379becaa-414d-46a2-8286-018d20bc849c</mbid>
245
+ <url>http://www.last.fm/music/Natural</url>
246
+ </artist>
247
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754729.jpg</image>
248
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754729.jpg</image>
249
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754729.jpg</image>
250
+ </track>
251
+ <track>
252
+ <name>Callbacks Under the Sea</name>
253
+ <playcount>1</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/We+Are+Scientists/_/Callbacks+Under+the+Sea</url>
257
+ <streamable fulltrack="0">0</streamable>
258
+ <artist>
259
+ <name>We Are Scientists</name>
260
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
261
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
262
+ </artist>
263
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4470306.jpg</image>
264
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4470306.jpg</image>
265
+ <image size="large">http://userserve-ak.last.fm/serve/126/4470306.jpg</image>
266
+ </track>
267
+ <track>
268
+ <name>Alle dasselbe</name>
269
+ <playcount>1</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Alle+dasselbe</url>
273
+ <streamable fulltrack="0">0</streamable>
274
+ <artist>
275
+ <name>Farin Urlaub</name>
276
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
277
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
278
+ </artist>
279
+ <image size="small">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
280
+ <image size="medium">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
281
+ <image size="large">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
282
+ </track>
283
+ <track>
284
+ <name>Confused Youth</name>
285
+ <playcount>1</playcount>
286
+ <tagcount></tagcount>
287
+ <mbid></mbid>
288
+ <url>http://www.last.fm/music/Anti-Flag/_/Confused+Youth</url>
289
+ <streamable fulltrack="0">1</streamable>
290
+ <artist>
291
+ <name>Anti-Flag</name>
292
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
293
+ <url>http://www.last.fm/music/Anti-Flag</url>
294
+ </artist>
295
+ <image size="small">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
296
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
297
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
298
+ </track>
299
+ <track>
300
+ <name>To the Sea</name>
301
+ <playcount>1</playcount>
302
+ <tagcount></tagcount>
303
+ <mbid></mbid>
304
+ <url>http://www.last.fm/music/Razorlight/_/To+the+Sea</url>
305
+ <streamable fulltrack="1">1</streamable>
306
+ <artist>
307
+ <name>Razorlight</name>
308
+ <mbid>f2cb0435-d643-4fab-9587-fdb0279330a7</mbid>
309
+ <url>http://www.last.fm/music/Razorlight</url>
310
+ </artist>
311
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672781.jpg</image>
312
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672781.jpg</image>
313
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672781.jpg</image>
314
+ </track>
315
+ <track>
316
+ <name>Starz In Their Eyes</name>
317
+ <playcount>1</playcount>
318
+ <tagcount></tagcount>
319
+ <mbid></mbid>
320
+ <url>http://www.last.fm/music/Just+Jack/_/Starz+In+Their+Eyes</url>
321
+ <streamable fulltrack="1">1</streamable>
322
+ <artist>
323
+ <name>Just Jack</name>
324
+ <mbid>ac70f34d-95fd-40ed-b436-f5402fb5ffb8</mbid>
325
+ <url>http://www.last.fm/music/Just+Jack</url>
326
+ </artist>
327
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9440767.jpg</image>
328
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9440767.jpg</image>
329
+ <image size="large">http://userserve-ak.last.fm/serve/126/9440767.jpg</image>
330
+ </track>
331
+ <track>
332
+ <name>No Bravery</name>
333
+ <playcount>1</playcount>
334
+ <tagcount></tagcount>
335
+ <mbid></mbid>
336
+ <url>http://www.last.fm/music/James+Blunt/_/No+Bravery</url>
337
+ <streamable fulltrack="0">1</streamable>
338
+ <artist>
339
+ <name>James Blunt</name>
340
+ <mbid>ebee61b4-bbdd-4087-9bcb-d5aa099088ec</mbid>
341
+ <url>http://www.last.fm/music/James+Blunt</url>
342
+ </artist>
343
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672921.jpg</image>
344
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672921.jpg</image>
345
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672921.jpg</image>
346
+ </track>
347
+ <track>
348
+ <name>First Down</name>
349
+ <playcount>1</playcount>
350
+ <tagcount></tagcount>
351
+ <mbid></mbid>
352
+ <url>http://www.last.fm/music/Fatboy+Slim/_/First+Down</url>
353
+ <streamable fulltrack="0">1</streamable>
354
+ <artist>
355
+ <name>Fatboy Slim</name>
356
+ <mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
357
+ <url>http://www.last.fm/music/Fatboy+Slim</url>
358
+ </artist>
359
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16665891.jpg</image>
360
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16665891.jpg</image>
361
+ <image size="large">http://userserve-ak.last.fm/serve/126/16665891.jpg</image>
362
+ </track>
363
+ <track>
364
+ <name>Party stinkt</name>
365
+ <playcount>1</playcount>
366
+ <tagcount></tagcount>
367
+ <mbid></mbid>
368
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Party+stinkt</url>
369
+ <streamable fulltrack="0">1</streamable>
370
+ <artist>
371
+ <name>Die Ärzte</name>
372
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
373
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
374
+ </artist>
375
+ <image size="small">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
376
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
377
+ <image size="large">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
378
+ </track>
379
+ <track>
380
+ <name>Come Undone</name>
381
+ <playcount>1</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid></mbid>
384
+ <url>http://www.last.fm/music/Robbie+Williams/_/Come+Undone</url>
385
+ <streamable fulltrack="0">1</streamable>
386
+ <artist>
387
+ <name>Robbie Williams</name>
388
+ <mbid>db4624cf-0e44-481e-a9dc-2142b833ec2f</mbid>
389
+ <url>http://www.last.fm/music/Robbie+Williams</url>
390
+ </artist>
391
+ <image size="small">http://images.amazon.com/images/P/B00008MNYS.01.MZZZZZZZ.jpg</image>
392
+ <image size="medium">http://images.amazon.com/images/P/B00008MNYS.01.MZZZZZZZ.jpg</image>
393
+ <image size="large">http://images.amazon.com/images/P/B00008MNYS.01.MZZZZZZZ.jpg</image>
394
+ </track>
395
+ <track>
396
+ <name>Infra-Red</name>
397
+ <playcount>1</playcount>
398
+ <tagcount></tagcount>
399
+ <mbid></mbid>
400
+ <url>http://www.last.fm/music/Placebo/_/Infra-Red</url>
401
+ <streamable fulltrack="0">1</streamable>
402
+ <artist>
403
+ <name>Placebo</name>
404
+ <mbid>847e8284-8582-4b0e-9c26-b042a4f49e57</mbid>
405
+ <url>http://www.last.fm/music/Placebo</url>
406
+ </artist>
407
+ <image size="small">http://images.amazon.com/images/P/B000FGGVQ6.01.MZZZZZZZ.jpg</image>
408
+ <image size="medium">http://images.amazon.com/images/P/B000FGGVQ6.01.MZZZZZZZ.jpg</image>
409
+ <image size="large">http://images.amazon.com/images/P/B000FGGVQ6.01.MZZZZZZZ.jpg</image>
410
+ </track>
411
+ <track>
412
+ <name>Geile Zeit</name>
413
+ <playcount>1</playcount>
414
+ <tagcount></tagcount>
415
+ <mbid></mbid>
416
+ <url>http://www.last.fm/music/Juli/_/Geile+Zeit</url>
417
+ <streamable fulltrack="1">1</streamable>
418
+ <artist>
419
+ <name>Juli</name>
420
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
421
+ <url>http://www.last.fm/music/Juli</url>
422
+ </artist>
423
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
424
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
425
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
426
+ </track>
427
+ <track>
428
+ <name>Scavenger Type</name>
429
+ <playcount>1</playcount>
430
+ <tagcount></tagcount>
431
+ <mbid></mbid>
432
+ <url>http://www.last.fm/music/NOFX/_/Scavenger+Type</url>
433
+ <streamable fulltrack="0">1</streamable>
434
+ <artist>
435
+ <name>NOFX</name>
436
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
437
+ <url>http://www.last.fm/music/NOFX</url>
438
+ </artist>
439
+ <image size="small">http://images-eu.amazon.com/images/P/B0000248N5.02.THUMBZZZ.jpg</image>
440
+ <image size="medium">http://images-eu.amazon.com/images/P/B0000248N5.02.MZZZZZZZ.jpg</image>
441
+ <image size="large">http://images-eu.amazon.com/images/P/B0000248N5.02.LZZZZZZZ.jpg</image>
442
+ </track>
443
+ <track>
444
+ <name>Grandma Shirley And Papa</name>
445
+ <playcount>1</playcount>
446
+ <tagcount></tagcount>
447
+ <mbid></mbid>
448
+ <url>http://www.last.fm/music/Adam+Green/_/Grandma+Shirley+And+Papa</url>
449
+ <streamable fulltrack="0">0</streamable>
450
+ <artist>
451
+ <name>Adam Green</name>
452
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
453
+ <url>http://www.last.fm/music/Adam+Green</url>
454
+ </artist>
455
+ </track>
456
+ <track>
457
+ <name>stift her</name>
458
+ <playcount>1</playcount>
459
+ <tagcount></tagcount>
460
+ <mbid></mbid>
461
+ <url>http://www.last.fm/music/Absolute+Beginner/_/stift+her</url>
462
+ <streamable fulltrack="0">0</streamable>
463
+ <artist>
464
+ <name>Absolute Beginner</name>
465
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
466
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
467
+ </artist>
468
+ </track>
469
+ <track>
470
+ <name>You Can Have It All</name>
471
+ <playcount>1</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/You+Can+Have+It+All</url>
475
+ <streamable fulltrack="0">0</streamable>
476
+ <artist>
477
+ <name>Kaiser Chiefs</name>
478
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
479
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
480
+ </artist>
481
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
482
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
483
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
484
+ </track>
485
+ <track>
486
+ <name>Rich Kids</name>
487
+ <playcount>1</playcount>
488
+ <tagcount></tagcount>
489
+ <mbid></mbid>
490
+ <url>http://www.last.fm/music/Adam+Green/_/Rich+Kids</url>
491
+ <streamable fulltrack="0">0</streamable>
492
+ <artist>
493
+ <name>Adam Green</name>
494
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
495
+ <url>http://www.last.fm/music/Adam+Green</url>
496
+ </artist>
497
+ </track>
498
+ <track>
499
+ <name>Children Of Tomorrow</name>
500
+ <playcount>1</playcount>
501
+ <tagcount></tagcount>
502
+ <mbid></mbid>
503
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band/_/Children+Of+Tomorrow</url>
504
+ <streamable fulltrack="0">0</streamable>
505
+ <artist>
506
+ <name>Gentleman and the Far East Band</name>
507
+ <mbid>0bd01dff-a351-4405-bdf0-7ee4ad7bc02e</mbid>
508
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band</url>
509
+ </artist>
510
+ <image size="small">http://userserve-ak.last.fm/serve/34s/7847571.jpg</image>
511
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/7847571.jpg</image>
512
+ <image size="large">http://userserve-ak.last.fm/serve/126/7847571.jpg</image>
513
+ </track>
514
+ <track>
515
+ <name>These Are the Days</name>
516
+ <playcount>1</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid></mbid>
519
+ <url>http://www.last.fm/music/O-Town/_/These+Are+the+Days</url>
520
+ <streamable fulltrack="0">0</streamable>
521
+ <artist>
522
+ <name>O-Town</name>
523
+ <mbid>5b5b5410-29d7-478a-94ca-bffa06c73579</mbid>
524
+ <url>http://www.last.fm/music/O-Town</url>
525
+ </artist>
526
+ <image size="small">http://images.amazon.com/images/P/B00006BCGV.01._SCMZZZZZZZ_.jpg</image>
527
+ <image size="medium">http://images.amazon.com/images/P/B00006BCGV.01._SCMZZZZZZZ_.jpg</image>
528
+ <image size="large">http://images.amazon.com/images/P/B00006BCGV.01._SCMZZZZZZZ_.jpg</image>
529
+ </track>
530
+ <track>
531
+ <name>Gib mir Zeit</name>
532
+ <playcount>1</playcount>
533
+ <tagcount></tagcount>
534
+ <mbid></mbid>
535
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Gib+mir+Zeit</url>
536
+ <streamable fulltrack="0">0</streamable>
537
+ <artist>
538
+ <name>Die Ärzte</name>
539
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
540
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
541
+ </artist>
542
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
543
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
544
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
545
+ </track>
546
+ <track>
547
+ <name>Big Sur</name>
548
+ <playcount>1</playcount>
549
+ <tagcount></tagcount>
550
+ <mbid></mbid>
551
+ <url>http://www.last.fm/music/The+Thrills/_/Big+Sur</url>
552
+ <streamable fulltrack="0">1</streamable>
553
+ <artist>
554
+ <name>The Thrills</name>
555
+ <mbid>048fad7a-10ba-4f9e-b305-580fb3ce32a4</mbid>
556
+ <url>http://www.last.fm/music/The+Thrills</url>
557
+ </artist>
558
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11542983.jpg</image>
559
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11542983.jpg</image>
560
+ <image size="large">http://userserve-ak.last.fm/serve/126/11542983.jpg</image>
561
+ </track>
562
+ <track>
563
+ <name>Cold Day in the Sun</name>
564
+ <playcount>1</playcount>
565
+ <tagcount></tagcount>
566
+ <mbid></mbid>
567
+ <url>http://www.last.fm/music/Foo+Fighters/_/Cold+Day+in+the+Sun</url>
568
+ <streamable fulltrack="0">1</streamable>
569
+ <artist>
570
+ <name>Foo Fighters</name>
571
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
572
+ <url>http://www.last.fm/music/Foo+Fighters</url>
573
+ </artist>
574
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
575
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
576
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
577
+ </track>
578
+ <track>
579
+ <name>This Girl Isn't My Girlfriend</name>
580
+ <playcount>1</playcount>
581
+ <tagcount></tagcount>
582
+ <mbid></mbid>
583
+ <url>http://www.last.fm/music/Little+Man+Tate/_/This+Girl+Isn%27t+My+Girlfriend</url>
584
+ <streamable fulltrack="0">1</streamable>
585
+ <artist>
586
+ <name>Little Man Tate</name>
587
+ <mbid>e7cf7ff9-ed2f-4315-aca8-bcbd3b2bfa71</mbid>
588
+ <url>http://www.last.fm/music/Little+Man+Tate</url>
589
+ </artist>
590
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11290697.jpg</image>
591
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11290697.jpg</image>
592
+ <image size="large">http://userserve-ak.last.fm/serve/126/11290697.jpg</image>
593
+ </track>
594
+ <track>
595
+ <name>Goodbye My Lover</name>
596
+ <playcount>1</playcount>
597
+ <tagcount></tagcount>
598
+ <mbid></mbid>
599
+ <url>http://www.last.fm/music/James+Blunt/_/Goodbye+My+Lover</url>
600
+ <streamable fulltrack="0">1</streamable>
601
+ <artist>
602
+ <name>James Blunt</name>
603
+ <mbid>ebee61b4-bbdd-4087-9bcb-d5aa099088ec</mbid>
604
+ <url>http://www.last.fm/music/James+Blunt</url>
605
+ </artist>
606
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672921.jpg</image>
607
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672921.jpg</image>
608
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672921.jpg</image>
609
+ </track>
610
+ <track>
611
+ <name>Playground for a Wedgeless Firm</name>
612
+ <playcount>1</playcount>
613
+ <tagcount></tagcount>
614
+ <mbid></mbid>
615
+ <url>http://www.last.fm/music/The+Chemical+Brothers/_/Playground+for+a+Wedgeless+Firm</url>
616
+ <streamable fulltrack="0">1</streamable>
617
+ <artist>
618
+ <name>The Chemical Brothers</name>
619
+ <mbid>1946a82a-f927-40c2-8235-38d64f50d043</mbid>
620
+ <url>http://www.last.fm/music/The+Chemical+Brothers</url>
621
+ </artist>
622
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15160717.jpg</image>
623
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15160717.jpg</image>
624
+ <image size="large">http://userserve-ak.last.fm/serve/126/15160717.jpg</image>
625
+ </track>
626
+ <track>
627
+ <name>Future Reflections</name>
628
+ <playcount>1</playcount>
629
+ <tagcount></tagcount>
630
+ <mbid></mbid>
631
+ <url>http://www.last.fm/music/MGMT/_/Future+Reflections</url>
632
+ <streamable fulltrack="0">1</streamable>
633
+ <artist>
634
+ <name>MGMT</name>
635
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
636
+ <url>http://www.last.fm/music/MGMT</url>
637
+ </artist>
638
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
639
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
640
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
641
+ </track>
642
+ <track>
643
+ <name>Everybody Needs a 303</name>
644
+ <playcount>1</playcount>
645
+ <tagcount></tagcount>
646
+ <mbid></mbid>
647
+ <url>http://www.last.fm/music/Fatboy+Slim/_/Everybody+Needs+a+303</url>
648
+ <streamable fulltrack="0">1</streamable>
649
+ <artist>
650
+ <name>Fatboy Slim</name>
651
+ <mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
652
+ <url>http://www.last.fm/music/Fatboy+Slim</url>
653
+ </artist>
654
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16665891.jpg</image>
655
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16665891.jpg</image>
656
+ <image size="large">http://userserve-ak.last.fm/serve/126/16665891.jpg</image>
657
+ </track>
658
+ <track>
659
+ <name>A-Hole</name>
660
+ <playcount>1</playcount>
661
+ <tagcount></tagcount>
662
+ <mbid></mbid>
663
+ <url>http://www.last.fm/music/Bowling+for+Soup/_/A-Hole</url>
664
+ <streamable fulltrack="0">0</streamable>
665
+ <artist>
666
+ <name>Bowling for Soup</name>
667
+ <mbid>bcb95908-5c6e-453a-97fc-d69003d250ff</mbid>
668
+ <url>http://www.last.fm/music/Bowling+for+Soup</url>
669
+ </artist>
670
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15937155.jpg</image>
671
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15937155.jpg</image>
672
+ <image size="large">http://userserve-ak.last.fm/serve/126/15937155.jpg</image>
673
+ </track>
674
+ <track>
675
+ <name>Fast 30</name>
676
+ <playcount>1</playcount>
677
+ <tagcount></tagcount>
678
+ <mbid></mbid>
679
+ <url>http://www.last.fm/music/Fettes+Brot/_/Fast+30</url>
680
+ <streamable fulltrack="0">0</streamable>
681
+ <artist>
682
+ <name>Fettes Brot</name>
683
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
684
+ <url>http://www.last.fm/music/Fettes+Brot</url>
685
+ </artist>
686
+ <image size="small">http://images.amazon.com/images/P/B00005NWGS.01.MZZZZZZZ.jpg</image>
687
+ <image size="medium">http://images.amazon.com/images/P/B00005NWGS.01.MZZZZZZZ.jpg</image>
688
+ <image size="large">http://images.amazon.com/images/P/B00005NWGS.01.MZZZZZZZ.jpg</image>
689
+ </track>
690
+ <track>
691
+ <name>Withe Flag</name>
692
+ <playcount>1</playcount>
693
+ <tagcount></tagcount>
694
+ <mbid></mbid>
695
+ <url>http://www.last.fm/music/Dido/_/Withe+Flag</url>
696
+ <streamable fulltrack="0">0</streamable>
697
+ <artist>
698
+ <name>Dido</name>
699
+ <mbid>d1353a0c-26fb-4318-a116-defde9c7c9ad</mbid>
700
+ <url>http://www.last.fm/music/Dido</url>
701
+ </artist>
702
+ </track>
703
+ <track>
704
+ <name>Russian Literature</name>
705
+ <playcount>1</playcount>
706
+ <tagcount></tagcount>
707
+ <mbid></mbid>
708
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Russian+Literature</url>
709
+ <streamable fulltrack="0">0</streamable>
710
+ <artist>
711
+ <name>Maxïmo Park</name>
712
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
713
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
714
+ </artist>
715
+ </track>
716
+ <track>
717
+ <name>Home</name>
718
+ <playcount>1</playcount>
719
+ <tagcount></tagcount>
720
+ <mbid></mbid>
721
+ <url>http://www.last.fm/music/Foo+Fighters/_/Home</url>
722
+ <streamable fulltrack="0">1</streamable>
723
+ <artist>
724
+ <name>Foo Fighters</name>
725
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
726
+ <url>http://www.last.fm/music/Foo+Fighters</url>
727
+ </artist>
728
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
729
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
730
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
731
+ </track>
732
+ <track>
733
+ <name>Stand Down</name>
734
+ <playcount>1</playcount>
735
+ <tagcount></tagcount>
736
+ <mbid></mbid>
737
+ <url>http://www.last.fm/music/Art+Brut/_/Stand+Down</url>
738
+ <streamable fulltrack="0">1</streamable>
739
+ <artist>
740
+ <name>Art Brut</name>
741
+ <mbid>1c89bbcc-a253-452a-9181-546eb536e06f</mbid>
742
+ <url>http://www.last.fm/music/Art+Brut</url>
743
+ </artist>
744
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8696169.jpg</image>
745
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8696169.jpg</image>
746
+ <image size="large">http://userserve-ak.last.fm/serve/126/8696169.jpg</image>
747
+ </track>
748
+ <track>
749
+ <name>Hum Hallelujah</name>
750
+ <playcount>1</playcount>
751
+ <tagcount></tagcount>
752
+ <mbid></mbid>
753
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/Hum+Hallelujah</url>
754
+ <streamable fulltrack="1">1</streamable>
755
+ <artist>
756
+ <name>Fall Out Boy</name>
757
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
758
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
759
+ </artist>
760
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9104309.jpg</image>
761
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9104309.jpg</image>
762
+ <image size="large">http://userserve-ak.last.fm/serve/126/9104309.jpg</image>
763
+ </track>
764
+ <track>
765
+ <name>Lady</name>
766
+ <playcount>1</playcount>
767
+ <tagcount></tagcount>
768
+ <mbid></mbid>
769
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Lady</url>
770
+ <streamable fulltrack="0">1</streamable>
771
+ <artist>
772
+ <name>Die Ärzte</name>
773
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
774
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
775
+ </artist>
776
+ <image size="small">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
777
+ <image size="medium">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
778
+ <image size="large">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
779
+ </track>
780
+ </tracks></lfm>