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,792 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="11" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>My List</name>
6
+ <playcount>8</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/The+Killers/_/My+List</url>
10
+ <streamable fulltrack="1">1</streamable>
11
+ <artist>
12
+ <name>The Killers</name>
13
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
14
+ <url>http://www.last.fm/music/The+Killers</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Nothing For The Kids</name>
22
+ <playcount>8</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/The+Holloways/_/Nothing+For+The+Kids</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>The Holloways</name>
29
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
30
+ <url>http://www.last.fm/music/The+Holloways</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Down in the Past</name>
38
+ <playcount>8</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Mando+Diao/_/Down+in+the+Past</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Mando Diao</name>
45
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
46
+ <url>http://www.last.fm/music/Mando+Diao</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14519449.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14519449.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/14519449.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Yasmin</name>
54
+ <playcount>8</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Fettes+Brot/_/Yasmin</url>
58
+ <streamable fulltrack="0">0</streamable>
59
+ <artist>
60
+ <name>Fettes Brot</name>
61
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
62
+ <url>http://www.last.fm/music/Fettes+Brot</url>
63
+ </artist>
64
+ <image size="small">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
65
+ <image size="medium">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
66
+ <image size="large">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>Redundant</name>
70
+ <playcount>8</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/Green+Day/_/Redundant</url>
74
+ <streamable fulltrack="0">1</streamable>
75
+ <artist>
76
+ <name>Green Day</name>
77
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
78
+ <url>http://www.last.fm/music/Green+Day</url>
79
+ </artist>
80
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672977.jpg</image>
81
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672977.jpg</image>
82
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672977.jpg</image>
83
+ </track>
84
+ <track>
85
+ <name>Happy End</name>
86
+ <playcount>8</playcount>
87
+ <tagcount></tagcount>
88
+ <mbid></mbid>
89
+ <url>http://www.last.fm/music/Madsen/_/Happy+End</url>
90
+ <streamable fulltrack="1">1</streamable>
91
+ <artist>
92
+ <name>Madsen</name>
93
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
94
+ <url>http://www.last.fm/music/Madsen</url>
95
+ </artist>
96
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
97
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
98
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
99
+ </track>
100
+ <track>
101
+ <name>Nice Guys Finish Last</name>
102
+ <playcount>8</playcount>
103
+ <tagcount></tagcount>
104
+ <mbid></mbid>
105
+ <url>http://www.last.fm/music/Green+Day/_/Nice+Guys+Finish+Last</url>
106
+ <streamable fulltrack="0">1</streamable>
107
+ <artist>
108
+ <name>Green Day</name>
109
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
110
+ <url>http://www.last.fm/music/Green+Day</url>
111
+ </artist>
112
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672977.jpg</image>
113
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672977.jpg</image>
114
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672977.jpg</image>
115
+ </track>
116
+ <track>
117
+ <name>Why Do I Keep Counting?</name>
118
+ <playcount>8</playcount>
119
+ <tagcount></tagcount>
120
+ <mbid></mbid>
121
+ <url>http://www.last.fm/music/The+Killers/_/Why+Do+I+Keep+Counting%3F</url>
122
+ <streamable fulltrack="1">1</streamable>
123
+ <artist>
124
+ <name>The Killers</name>
125
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
126
+ <url>http://www.last.fm/music/The+Killers</url>
127
+ </artist>
128
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
129
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
130
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
131
+ </track>
132
+ <track>
133
+ <name>Map of the Problematique</name>
134
+ <playcount>8</playcount>
135
+ <tagcount></tagcount>
136
+ <mbid></mbid>
137
+ <url>http://www.last.fm/music/Muse/_/Map+of+the+Problematique</url>
138
+ <streamable fulltrack="0">1</streamable>
139
+ <artist>
140
+ <name>Muse</name>
141
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
142
+ <url>http://www.last.fm/music/Muse</url>
143
+ </artist>
144
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
145
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
146
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
147
+ </track>
148
+ <track>
149
+ <name>Otherside</name>
150
+ <playcount>7</playcount>
151
+ <tagcount></tagcount>
152
+ <mbid></mbid>
153
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Otherside</url>
154
+ <streamable fulltrack="0">1</streamable>
155
+ <artist>
156
+ <name>Red Hot Chili Peppers</name>
157
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
158
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
159
+ </artist>
160
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
161
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
162
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
163
+ </track>
164
+ <track>
165
+ <name>Wellenreiten '54</name>
166
+ <playcount>7</playcount>
167
+ <tagcount></tagcount>
168
+ <mbid></mbid>
169
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Wellenreiten+%2754</url>
170
+ <streamable fulltrack="0">1</streamable>
171
+ <artist>
172
+ <name>Sportfreunde Stiller</name>
173
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
174
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
175
+ </artist>
176
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8730555.jpg</image>
177
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8730555.jpg</image>
178
+ <image size="large">http://userserve-ak.last.fm/serve/126/8730555.jpg</image>
179
+ </track>
180
+ <track>
181
+ <name>You're the Reason I'm Leaving</name>
182
+ <playcount>7</playcount>
183
+ <tagcount></tagcount>
184
+ <mbid></mbid>
185
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/You%27re+the+Reason+I%27m+Leaving</url>
186
+ <streamable fulltrack="0">1</streamable>
187
+ <artist>
188
+ <name>Franz Ferdinand</name>
189
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
190
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
191
+ </artist>
192
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
193
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
194
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
195
+ </track>
196
+ <track>
197
+ <name>Luftbahn</name>
198
+ <playcount>7</playcount>
199
+ <tagcount></tagcount>
200
+ <mbid></mbid>
201
+ <url>http://www.last.fm/music/Deichkind/_/Luftbahn</url>
202
+ <streamable fulltrack="1">1</streamable>
203
+ <artist>
204
+ <name>Deichkind</name>
205
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
206
+ <url>http://www.last.fm/music/Deichkind</url>
207
+ </artist>
208
+ </track>
209
+ <track>
210
+ <name>Unzerbrechlich</name>
211
+ <playcount>7</playcount>
212
+ <tagcount></tagcount>
213
+ <mbid></mbid>
214
+ <url>http://www.last.fm/music/Madsen/_/Unzerbrechlich</url>
215
+ <streamable fulltrack="1">1</streamable>
216
+ <artist>
217
+ <name>Madsen</name>
218
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
219
+ <url>http://www.last.fm/music/Madsen</url>
220
+ </artist>
221
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
222
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
223
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
224
+ </track>
225
+ <track>
226
+ <name>Ein Sturm</name>
227
+ <playcount>7</playcount>
228
+ <tagcount></tagcount>
229
+ <mbid></mbid>
230
+ <url>http://www.last.fm/music/Madsen/_/Ein+Sturm</url>
231
+ <streamable fulltrack="1">1</streamable>
232
+ <artist>
233
+ <name>Madsen</name>
234
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
235
+ <url>http://www.last.fm/music/Madsen</url>
236
+ </artist>
237
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
238
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
239
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
240
+ </track>
241
+ <track>
242
+ <name>Good Riddance (Time of Your Life)</name>
243
+ <playcount>7</playcount>
244
+ <tagcount></tagcount>
245
+ <mbid></mbid>
246
+ <url>http://www.last.fm/music/Green+Day/_/Good+Riddance+%28Time+of+Your+Life%29</url>
247
+ <streamable fulltrack="0">1</streamable>
248
+ <artist>
249
+ <name>Green Day</name>
250
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
251
+ <url>http://www.last.fm/music/Green+Day</url>
252
+ </artist>
253
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672977.jpg</image>
254
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672977.jpg</image>
255
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672977.jpg</image>
256
+ </track>
257
+ <track>
258
+ <name>No Way Back</name>
259
+ <playcount>7</playcount>
260
+ <tagcount></tagcount>
261
+ <mbid></mbid>
262
+ <url>http://www.last.fm/music/Foo+Fighters/_/No+Way+Back</url>
263
+ <streamable fulltrack="0">1</streamable>
264
+ <artist>
265
+ <name>Foo Fighters</name>
266
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
267
+ <url>http://www.last.fm/music/Foo+Fighters</url>
268
+ </artist>
269
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
270
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
271
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
272
+ </track>
273
+ <track>
274
+ <name>No Good (Start the Dance)</name>
275
+ <playcount>7</playcount>
276
+ <tagcount></tagcount>
277
+ <mbid></mbid>
278
+ <url>http://www.last.fm/music/The+Prodigy/_/No+Good+%28Start+the+Dance%29</url>
279
+ <streamable fulltrack="0">1</streamable>
280
+ <artist>
281
+ <name>The Prodigy</name>
282
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
283
+ <url>http://www.last.fm/music/The+Prodigy</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622007.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622007.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622007.jpg</image>
288
+ </track>
289
+ <track>
290
+ <name>Geek Stink Breath</name>
291
+ <playcount>7</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/Green+Day/_/Geek+Stink+Breath</url>
295
+ <streamable fulltrack="0">1</streamable>
296
+ <artist>
297
+ <name>Green Day</name>
298
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
299
+ <url>http://www.last.fm/music/Green+Day</url>
300
+ </artist>
301
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674829.jpg</image>
302
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674829.jpg</image>
303
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674829.jpg</image>
304
+ </track>
305
+ <track>
306
+ <name>One Step Closer</name>
307
+ <playcount>7</playcount>
308
+ <tagcount></tagcount>
309
+ <mbid></mbid>
310
+ <url>http://www.last.fm/music/Linkin+Park/_/One+Step+Closer</url>
311
+ <streamable fulltrack="0">1</streamable>
312
+ <artist>
313
+ <name>Linkin Park</name>
314
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
315
+ <url>http://www.last.fm/music/Linkin+Park</url>
316
+ </artist>
317
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
318
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
319
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
320
+ </track>
321
+ <track>
322
+ <name>One People, One Struggle</name>
323
+ <playcount>7</playcount>
324
+ <tagcount></tagcount>
325
+ <mbid></mbid>
326
+ <url>http://www.last.fm/music/Anti-Flag/_/One+People%2C+One+Struggle</url>
327
+ <streamable fulltrack="0">1</streamable>
328
+ <artist>
329
+ <name>Anti-Flag</name>
330
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
331
+ <url>http://www.last.fm/music/Anti-Flag</url>
332
+ </artist>
333
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
334
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
335
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
336
+ </track>
337
+ <track>
338
+ <name>The Hardest Way to Make an Easy Living</name>
339
+ <playcount>7</playcount>
340
+ <tagcount></tagcount>
341
+ <mbid></mbid>
342
+ <url>http://www.last.fm/music/The+Streets/_/The+Hardest+Way+to+Make+an+Easy+Living</url>
343
+ <streamable fulltrack="0">1</streamable>
344
+ <artist>
345
+ <name>The Streets</name>
346
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
347
+ <url>http://www.last.fm/music/The+Streets</url>
348
+ </artist>
349
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
350
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
351
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
352
+ </track>
353
+ <track>
354
+ <name>This River Is Wild</name>
355
+ <playcount>7</playcount>
356
+ <tagcount></tagcount>
357
+ <mbid></mbid>
358
+ <url>http://www.last.fm/music/The+Killers/_/This+River+Is+Wild</url>
359
+ <streamable fulltrack="1">1</streamable>
360
+ <artist>
361
+ <name>The Killers</name>
362
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
363
+ <url>http://www.last.fm/music/The+Killers</url>
364
+ </artist>
365
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
366
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
367
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
368
+ </track>
369
+ <track>
370
+ <name>Feuer</name>
371
+ <playcount>7</playcount>
372
+ <tagcount></tagcount>
373
+ <mbid></mbid>
374
+ <url>http://www.last.fm/music/Jan+Delay/_/Feuer</url>
375
+ <streamable fulltrack="1">1</streamable>
376
+ <artist>
377
+ <name>Jan Delay</name>
378
+ <mbid>2692cab2-7563-4315-924f-563a59190fd9</mbid>
379
+ <url>http://www.last.fm/music/Jan+Delay</url>
380
+ </artist>
381
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9989677.jpg</image>
382
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9989677.jpg</image>
383
+ <image size="large">http://userserve-ak.last.fm/serve/126/9989677.jpg</image>
384
+ </track>
385
+ <track>
386
+ <name>Invincible</name>
387
+ <playcount>7</playcount>
388
+ <tagcount></tagcount>
389
+ <mbid></mbid>
390
+ <url>http://www.last.fm/music/Muse/_/Invincible</url>
391
+ <streamable fulltrack="0">1</streamable>
392
+ <artist>
393
+ <name>Muse</name>
394
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
395
+ <url>http://www.last.fm/music/Muse</url>
396
+ </artist>
397
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
398
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
399
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
400
+ </track>
401
+ <track>
402
+ <name>Geezers Need Excitement</name>
403
+ <playcount>7</playcount>
404
+ <tagcount></tagcount>
405
+ <mbid></mbid>
406
+ <url>http://www.last.fm/music/The+Streets/_/Geezers+Need+Excitement</url>
407
+ <streamable fulltrack="0">1</streamable>
408
+ <artist>
409
+ <name>The Streets</name>
410
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
411
+ <url>http://www.last.fm/music/The+Streets</url>
412
+ </artist>
413
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
414
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
415
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
416
+ </track>
417
+ <track>
418
+ <name>God Put a Smile Upon Your Face</name>
419
+ <playcount>7</playcount>
420
+ <tagcount></tagcount>
421
+ <mbid></mbid>
422
+ <url>http://www.last.fm/music/Coldplay/_/God+Put+a+Smile+Upon+Your+Face</url>
423
+ <streamable fulltrack="0">1</streamable>
424
+ <artist>
425
+ <name>Coldplay</name>
426
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
427
+ <url>http://www.last.fm/music/Coldplay</url>
428
+ </artist>
429
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
430
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
431
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
432
+ </track>
433
+ <track>
434
+ <name>Send Him Away</name>
435
+ <playcount>7</playcount>
436
+ <tagcount></tagcount>
437
+ <mbid></mbid>
438
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Send+Him+Away</url>
439
+ <streamable fulltrack="0">0</streamable>
440
+ <artist>
441
+ <name>Franz Ferdinand</name>
442
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
443
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
444
+ </artist>
445
+ </track>
446
+ <track>
447
+ <name>Stay Away</name>
448
+ <playcount>7</playcount>
449
+ <tagcount></tagcount>
450
+ <mbid></mbid>
451
+ <url>http://www.last.fm/music/Nirvana/_/Stay+Away</url>
452
+ <streamable fulltrack="1">1</streamable>
453
+ <artist>
454
+ <name>Nirvana</name>
455
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
456
+ <url>http://www.last.fm/music/Nirvana</url>
457
+ </artist>
458
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
459
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
460
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
461
+ </track>
462
+ <track>
463
+ <name>The Scientist</name>
464
+ <playcount>7</playcount>
465
+ <tagcount></tagcount>
466
+ <mbid></mbid>
467
+ <url>http://www.last.fm/music/Coldplay/_/The+Scientist</url>
468
+ <streamable fulltrack="0">1</streamable>
469
+ <artist>
470
+ <name>Coldplay</name>
471
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
472
+ <url>http://www.last.fm/music/Coldplay</url>
473
+ </artist>
474
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
475
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
476
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
477
+ </track>
478
+ <track>
479
+ <name>Shiver</name>
480
+ <playcount>7</playcount>
481
+ <tagcount></tagcount>
482
+ <mbid></mbid>
483
+ <url>http://www.last.fm/music/Coldplay/_/Shiver</url>
484
+ <streamable fulltrack="0">1</streamable>
485
+ <artist>
486
+ <name>Coldplay</name>
487
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
488
+ <url>http://www.last.fm/music/Coldplay</url>
489
+ </artist>
490
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
491
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
492
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
493
+ </track>
494
+ <track>
495
+ <name>Pork and Beans</name>
496
+ <playcount>7</playcount>
497
+ <tagcount></tagcount>
498
+ <mbid></mbid>
499
+ <url>http://www.last.fm/music/Weezer/_/Pork+and+Beans</url>
500
+ <streamable fulltrack="1">1</streamable>
501
+ <artist>
502
+ <name>Weezer</name>
503
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
504
+ <url>http://www.last.fm/music/Weezer</url>
505
+ </artist>
506
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6349701.jpg</image>
507
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6349701.jpg</image>
508
+ <image size="large">http://userserve-ak.last.fm/serve/126/6349701.jpg</image>
509
+ </track>
510
+ <track>
511
+ <name>On a Plain</name>
512
+ <playcount>7</playcount>
513
+ <tagcount></tagcount>
514
+ <mbid></mbid>
515
+ <url>http://www.last.fm/music/Nirvana/_/On+a+Plain</url>
516
+ <streamable fulltrack="1">1</streamable>
517
+ <artist>
518
+ <name>Nirvana</name>
519
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
520
+ <url>http://www.last.fm/music/Nirvana</url>
521
+ </artist>
522
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
523
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
524
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
525
+ </track>
526
+ <track>
527
+ <name>Lost!</name>
528
+ <playcount>7</playcount>
529
+ <tagcount></tagcount>
530
+ <mbid></mbid>
531
+ <url>http://www.last.fm/music/Coldplay/_/Lost%21</url>
532
+ <streamable fulltrack="0">1</streamable>
533
+ <artist>
534
+ <name>Coldplay</name>
535
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
536
+ <url>http://www.last.fm/music/Coldplay</url>
537
+ </artist>
538
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14349365.jpg</image>
539
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14349365.jpg</image>
540
+ <image size="large">http://userserve-ak.last.fm/serve/126/14349365.jpg</image>
541
+ </track>
542
+ <track>
543
+ <name>This Boy</name>
544
+ <playcount>7</playcount>
545
+ <tagcount></tagcount>
546
+ <mbid></mbid>
547
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/This+Boy</url>
548
+ <streamable fulltrack="0">1</streamable>
549
+ <artist>
550
+ <name>Franz Ferdinand</name>
551
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
552
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
553
+ </artist>
554
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
555
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
556
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
557
+ </track>
558
+ <track>
559
+ <name>Easily</name>
560
+ <playcount>7</playcount>
561
+ <tagcount></tagcount>
562
+ <mbid></mbid>
563
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Easily</url>
564
+ <streamable fulltrack="0">1</streamable>
565
+ <artist>
566
+ <name>Red Hot Chili Peppers</name>
567
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
568
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
569
+ </artist>
570
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
571
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
572
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
573
+ </track>
574
+ <track>
575
+ <name>Postcard of a Painting</name>
576
+ <playcount>7</playcount>
577
+ <tagcount></tagcount>
578
+ <mbid></mbid>
579
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Postcard+of+a+Painting</url>
580
+ <streamable fulltrack="0">1</streamable>
581
+ <artist>
582
+ <name>Maxïmo Park</name>
583
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
584
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
585
+ </artist>
586
+ <image size="small">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
587
+ <image size="medium">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
588
+ <image size="large">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
589
+ </track>
590
+ <track>
591
+ <name>Same Old Thing</name>
592
+ <playcount>7</playcount>
593
+ <tagcount></tagcount>
594
+ <mbid></mbid>
595
+ <url>http://www.last.fm/music/The+Streets/_/Same+Old+Thing</url>
596
+ <streamable fulltrack="0">1</streamable>
597
+ <artist>
598
+ <name>The Streets</name>
599
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
600
+ <url>http://www.last.fm/music/The+Streets</url>
601
+ </artist>
602
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
603
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
604
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
605
+ </track>
606
+ <track>
607
+ <name>Fade Together</name>
608
+ <playcount>7</playcount>
609
+ <tagcount></tagcount>
610
+ <mbid></mbid>
611
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Fade+Together</url>
612
+ <streamable fulltrack="0">1</streamable>
613
+ <artist>
614
+ <name>Franz Ferdinand</name>
615
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
616
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
617
+ </artist>
618
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
619
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
620
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
621
+ </track>
622
+ <track>
623
+ <name>Sneak Preview</name>
624
+ <playcount>7</playcount>
625
+ <tagcount></tagcount>
626
+ <mbid></mbid>
627
+ <url>http://www.last.fm/music/ASD/_/Sneak+Preview</url>
628
+ <streamable fulltrack="0">1</streamable>
629
+ <artist>
630
+ <name>ASD</name>
631
+ <mbid>82ea804c-cbce-46c7-91d5-50ba8b8b32e9</mbid>
632
+ <url>http://www.last.fm/music/ASD</url>
633
+ </artist>
634
+ <image size="small">http://images.amazon.com/images/P/B00008GQTU.03.MZZZZZZZ.jpg</image>
635
+ <image size="medium">http://images.amazon.com/images/P/B00008GQTU.03.MZZZZZZZ.jpg</image>
636
+ <image size="large">http://images.amazon.com/images/P/B00008GQTU.03.MZZZZZZZ.jpg</image>
637
+ </track>
638
+ <track>
639
+ <name>Til Kingdom Come</name>
640
+ <playcount>7</playcount>
641
+ <tagcount></tagcount>
642
+ <mbid></mbid>
643
+ <url>http://www.last.fm/music/Coldplay/_/Til+Kingdom+Come</url>
644
+ <streamable fulltrack="0">1</streamable>
645
+ <artist>
646
+ <name>Coldplay</name>
647
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
648
+ <url>http://www.last.fm/music/Coldplay</url>
649
+ </artist>
650
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14215207.jpg</image>
651
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14215207.jpg</image>
652
+ <image size="large">http://userserve-ak.last.fm/serve/126/14215207.jpg</image>
653
+ </track>
654
+ <track>
655
+ <name>One</name>
656
+ <playcount>7</playcount>
657
+ <tagcount></tagcount>
658
+ <mbid></mbid>
659
+ <url>http://www.last.fm/music/Scooter/_/One</url>
660
+ <streamable fulltrack="0">0</streamable>
661
+ <artist>
662
+ <name>Scooter</name>
663
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
664
+ <url>http://www.last.fm/music/Scooter</url>
665
+ </artist>
666
+ <image size="small">http://images.amazon.com/images/P/B000BKVT36.01._SCMZZZZZZZ_.jpg</image>
667
+ <image size="medium">http://images.amazon.com/images/P/B000BKVT36.01._SCMZZZZZZZ_.jpg</image>
668
+ <image size="large">http://images.amazon.com/images/P/B000BKVT36.01._SCMZZZZZZZ_.jpg</image>
669
+ </track>
670
+ <track>
671
+ <name>You Can Kill the Protestor But You Can't Kill the Protest</name>
672
+ <playcount>7</playcount>
673
+ <tagcount></tagcount>
674
+ <mbid></mbid>
675
+ <url>http://www.last.fm/music/Anti-Flag/_/You+Can+Kill+the+Protestor+But+You+Can%27t+Kill+the+Protest</url>
676
+ <streamable fulltrack="0">0</streamable>
677
+ <artist>
678
+ <name>Anti-Flag</name>
679
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
680
+ <url>http://www.last.fm/music/Anti-Flag</url>
681
+ </artist>
682
+ </track>
683
+ <track>
684
+ <name>Fix You</name>
685
+ <playcount>7</playcount>
686
+ <tagcount></tagcount>
687
+ <mbid></mbid>
688
+ <url>http://www.last.fm/music/Coldplay/_/Fix+You</url>
689
+ <streamable fulltrack="0">1</streamable>
690
+ <artist>
691
+ <name>Coldplay</name>
692
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
693
+ <url>http://www.last.fm/music/Coldplay</url>
694
+ </artist>
695
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
696
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
697
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
698
+ </track>
699
+ <track>
700
+ <name>Twisted Logic</name>
701
+ <playcount>7</playcount>
702
+ <tagcount></tagcount>
703
+ <mbid></mbid>
704
+ <url>http://www.last.fm/music/Coldplay/_/Twisted+Logic</url>
705
+ <streamable fulltrack="0">1</streamable>
706
+ <artist>
707
+ <name>Coldplay</name>
708
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
709
+ <url>http://www.last.fm/music/Coldplay</url>
710
+ </artist>
711
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
712
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
713
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
714
+ </track>
715
+ <track>
716
+ <name>Hotel Expressionism</name>
717
+ <playcount>7</playcount>
718
+ <tagcount></tagcount>
719
+ <mbid></mbid>
720
+ <url>http://www.last.fm/music/The+Streets/_/Hotel+Expressionism</url>
721
+ <streamable fulltrack="0">1</streamable>
722
+ <artist>
723
+ <name>The Streets</name>
724
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
725
+ <url>http://www.last.fm/music/The+Streets</url>
726
+ </artist>
727
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
728
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
729
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
730
+ </track>
731
+ <track>
732
+ <name>The Hives - Declare Guerre Nucleaire</name>
733
+ <playcount>7</playcount>
734
+ <tagcount></tagcount>
735
+ <mbid></mbid>
736
+ <url>http://www.last.fm/music/The+Hives/_/The+Hives+-+Declare+Guerre+Nucleaire</url>
737
+ <streamable fulltrack="0">1</streamable>
738
+ <artist>
739
+ <name>The Hives</name>
740
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
741
+ <url>http://www.last.fm/music/The+Hives</url>
742
+ </artist>
743
+ </track>
744
+ <track>
745
+ <name>Get on Top</name>
746
+ <playcount>7</playcount>
747
+ <tagcount></tagcount>
748
+ <mbid></mbid>
749
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Get+on+Top</url>
750
+ <streamable fulltrack="0">1</streamable>
751
+ <artist>
752
+ <name>Red Hot Chili Peppers</name>
753
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
754
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
755
+ </artist>
756
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
757
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
758
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
759
+ </track>
760
+ <track>
761
+ <name>Song 2</name>
762
+ <playcount>7</playcount>
763
+ <tagcount></tagcount>
764
+ <mbid></mbid>
765
+ <url>http://www.last.fm/music/Blur/_/Song+2</url>
766
+ <streamable fulltrack="0">1</streamable>
767
+ <artist>
768
+ <name>Blur</name>
769
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
770
+ <url>http://www.last.fm/music/Blur</url>
771
+ </artist>
772
+ <image size="small">http://images.amazon.com/images/P/B000000WDA.01.THUMBZZZ.jpg</image>
773
+ <image size="medium">http://images.amazon.com/images/P/B000000WDA.01.MZZZZZZZ.jpg</image>
774
+ <image size="large">http://images.amazon.com/images/P/B000000WDA.01.LZZZZZZZ.jpg</image>
775
+ </track>
776
+ <track>
777
+ <name>42</name>
778
+ <playcount>6</playcount>
779
+ <tagcount></tagcount>
780
+ <mbid></mbid>
781
+ <url>http://www.last.fm/music/Coldplay/_/42</url>
782
+ <streamable fulltrack="0">1</streamable>
783
+ <artist>
784
+ <name>Coldplay</name>
785
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
786
+ <url>http://www.last.fm/music/Coldplay</url>
787
+ </artist>
788
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14349365.jpg</image>
789
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14349365.jpg</image>
790
+ <image size="large">http://userserve-ak.last.fm/serve/126/14349365.jpg</image>
791
+ </track>
792
+ </tracks></lfm>