firstfm 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -4
  3. data/Gemfile.lock +49 -18
  4. data/VERSION.yml +1 -1
  5. data/firstfm.gemspec +27 -32
  6. data/lib/firstfm.rb +2 -3
  7. data/lib/firstfm/artist.rb +25 -44
  8. data/lib/firstfm/geo.rb +32 -33
  9. data/lib/firstfm/location.rb +8 -8
  10. data/lib/firstfm/track.rb +15 -15
  11. data/lib/firstfm/user.rb +9 -9
  12. data/lib/firstfm/venue.rb +16 -16
  13. data/test/fixtures/artist.json +229 -0
  14. data/test/fixtures/artists.json +890 -0
  15. data/test/fixtures/events.json +173 -0
  16. data/test/fixtures/geo_event.json +98 -0
  17. data/test/fixtures/geo_events.json +845 -0
  18. data/test/fixtures/geo_get_metro_artist_chart.json +77 -0
  19. data/test/fixtures/get_correction.json +14 -0
  20. data/test/fixtures/get_correction_blank.json +1 -0
  21. data/test/fixtures/top_tracks.json +1711 -0
  22. data/test/fixtures/tracks.json +679 -0
  23. data/test/fixtures/user_artists.json +78 -0
  24. data/test/fixtures/venues.json +98 -0
  25. data/test/test_artist.rb +23 -32
  26. data/test/test_geo.rb +75 -75
  27. data/test/test_track.rb +10 -11
  28. data/test/test_user.rb +6 -7
  29. data/test/test_venue.rb +23 -44
  30. metadata +40 -78
  31. data/test/fixtures/artist.xml +0 -112
  32. data/test/fixtures/artists.xml +0 -371
  33. data/test/fixtures/event.xml +0 -54
  34. data/test/fixtures/events.xml +0 -128
  35. data/test/fixtures/geo_event.xml +0 -54
  36. data/test/fixtures/geo_events.xml +0 -109
  37. data/test/fixtures/geo_get_metro_artist_chart.xml +0 -29
  38. data/test/fixtures/get_correction.xml +0 -11
  39. data/test/fixtures/get_correction_blank.xml +0 -5
  40. data/test/fixtures/get_images.xml +0 -913
  41. data/test/fixtures/top_tracks.xml +0 -844
  42. data/test/fixtures/tracks.xml +0 -362
  43. data/test/fixtures/user_artists.xml +0 -29
  44. data/test/fixtures/venue.xml +0 -32
  45. data/test/fixtures/venues.xml +0 -54
@@ -0,0 +1,77 @@
1
+ {
2
+ "topartists": {
3
+ "artist": [
4
+ {
5
+ "name": "Muse",
6
+ "listeners": "359",
7
+ "mbid": "1695c115-bf3f-4014-9966-2b0c50179193",
8
+ "url": "http:\/\/www.last.fm\/music\/Muse",
9
+ "streamable": "0",
10
+ "image": [
11
+ {
12
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/34\/35147389.jpg",
13
+ "size": "small"
14
+ },
15
+ {
16
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/64\/35147389.jpg",
17
+ "size": "medium"
18
+ },
19
+ {
20
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/126\/35147389.jpg",
21
+ "size": "large"
22
+ },
23
+ {
24
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/252\/35147389.jpg",
25
+ "size": "extralarge"
26
+ },
27
+ {
28
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/_\/35147389\/Muse+++The+Resistance+era.jpg",
29
+ "size": "mega"
30
+ }
31
+ ],
32
+ "@attr": {
33
+ "rank": "1"
34
+ }
35
+ },
36
+ {
37
+ "name": "Major Lazer",
38
+ "listeners": "310",
39
+ "mbid": "75be165a-ad83-4d12-bd28-f589a15c479f",
40
+ "url": "http:\/\/www.last.fm\/music\/Major+Lazer",
41
+ "streamable": "0",
42
+ "image": [
43
+ {
44
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/34\/105065471.png",
45
+ "size": "small"
46
+ },
47
+ {
48
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/64\/105065471.png",
49
+ "size": "medium"
50
+ },
51
+ {
52
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/126\/105065471.png",
53
+ "size": "large"
54
+ },
55
+ {
56
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/252\/105065471.png",
57
+ "size": "extralarge"
58
+ },
59
+ {
60
+ "#text": "http:\/\/userserve-ak.last.fm\/serve\/500\/105065471\/Major+Lazer+PNG.png",
61
+ "size": "mega"
62
+ }
63
+ ],
64
+ "@attr": {
65
+ "rank": "2"
66
+ }
67
+ }
68
+ ],
69
+ "@attr": {
70
+ "metro": "Madrid",
71
+ "page": "1",
72
+ "perPage": "50",
73
+ "totalPages": "10",
74
+ "total": "500"
75
+ }
76
+ }
77
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "corrections": {
3
+ "correction": {
4
+ "artist": {
5
+ "name": "Guns N' Roses",
6
+ "mbid": "eeb1195b-f213-4ce1-b28c-8565211f8e43",
7
+ "url": "http:\/\/www.last.fm\/music\/Guns+N%27+Roses"
8
+ },
9
+ "@attr": {
10
+ "index": "0"
11
+ }
12
+ }
13
+ }
14
+ }
@@ -0,0 +1 @@
1
+ {"corrections":"\n "}
@@ -0,0 +1,1711 @@
1
+ {
2
+ "toptracks": {
3
+ "track": [
4
+ {
5
+ "name": "Believe",
6
+ "playcount": "1593953",
7
+ "listeners": "371216",
8
+ "mbid": "32ca187e-ee25-4f18-b7d0-3b6713f24635",
9
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Believe",
10
+ "streamable": "0",
11
+ "artist": {
12
+ "name": "Cher",
13
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
14
+ "url": "http:\/\/www.last.fm\/music\/Cher"
15
+ },
16
+ "image": [
17
+ {
18
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
19
+ "size": "small"
20
+ },
21
+ {
22
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
23
+ "size": "medium"
24
+ },
25
+ {
26
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
27
+ "size": "large"
28
+ },
29
+ {
30
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
31
+ "size": "extralarge"
32
+ }
33
+ ],
34
+ "@attr": {
35
+ "rank": "1"
36
+ }
37
+ },
38
+ {
39
+ "name": "If I Could Turn Back Time",
40
+ "playcount": "903783",
41
+ "listeners": "252234",
42
+ "mbid": "f4c5bb31-0ef0-4cdd-9df1-30b368c4e69a",
43
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/If+I+Could+Turn+Back+Time",
44
+ "streamable": "0",
45
+ "artist": {
46
+ "name": "Cher",
47
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
48
+ "url": "http:\/\/www.last.fm\/music\/Cher"
49
+ },
50
+ "image": [
51
+ {
52
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
53
+ "size": "small"
54
+ },
55
+ {
56
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
57
+ "size": "medium"
58
+ },
59
+ {
60
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
61
+ "size": "large"
62
+ },
63
+ {
64
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
65
+ "size": "extralarge"
66
+ }
67
+ ],
68
+ "@attr": {
69
+ "rank": "2"
70
+ }
71
+ },
72
+ {
73
+ "name": "The Shoop Shoop Song (It's in His Kiss)",
74
+ "playcount": "397406",
75
+ "listeners": "125003",
76
+ "mbid": "48fbc0ed-cd33-4f5c-9903-19e477891f43",
77
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/The+Shoop+Shoop+Song+(It%27s+in+His+Kiss)",
78
+ "streamable": "0",
79
+ "artist": {
80
+ "name": "Cher",
81
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
82
+ "url": "http:\/\/www.last.fm\/music\/Cher"
83
+ },
84
+ "image": [
85
+ {
86
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
87
+ "size": "small"
88
+ },
89
+ {
90
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
91
+ "size": "medium"
92
+ },
93
+ {
94
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
95
+ "size": "large"
96
+ },
97
+ {
98
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
99
+ "size": "extralarge"
100
+ }
101
+ ],
102
+ "@attr": {
103
+ "rank": "3"
104
+ }
105
+ },
106
+ {
107
+ "name": "Strong Enough",
108
+ "playcount": "566053",
109
+ "listeners": "124914",
110
+ "mbid": "39473218-db80-4db2-9623-690b79b94e04",
111
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Strong+Enough",
112
+ "streamable": "0",
113
+ "artist": {
114
+ "name": "Cher",
115
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
116
+ "url": "http:\/\/www.last.fm\/music\/Cher"
117
+ },
118
+ "image": [
119
+ {
120
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
121
+ "size": "small"
122
+ },
123
+ {
124
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
125
+ "size": "medium"
126
+ },
127
+ {
128
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
129
+ "size": "large"
130
+ },
131
+ {
132
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
133
+ "size": "extralarge"
134
+ }
135
+ ],
136
+ "@attr": {
137
+ "rank": "4"
138
+ }
139
+ },
140
+ {
141
+ "name": "Just Like Jesse James",
142
+ "playcount": "332370",
143
+ "listeners": "97252",
144
+ "mbid": "198420bb-3180-4619-8137-efee7bb70a52",
145
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Just+Like+Jesse+James",
146
+ "streamable": "0",
147
+ "artist": {
148
+ "name": "Cher",
149
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
150
+ "url": "http:\/\/www.last.fm\/music\/Cher"
151
+ },
152
+ "image": [
153
+ {
154
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
155
+ "size": "small"
156
+ },
157
+ {
158
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
159
+ "size": "medium"
160
+ },
161
+ {
162
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
163
+ "size": "large"
164
+ },
165
+ {
166
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
167
+ "size": "extralarge"
168
+ }
169
+ ],
170
+ "@attr": {
171
+ "rank": "5"
172
+ }
173
+ },
174
+ {
175
+ "name": "I Found Someone",
176
+ "playcount": "252032",
177
+ "listeners": "78189",
178
+ "mbid": "f06eb263-232c-471e-a75f-e11e5ebb70dd",
179
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/I+Found+Someone",
180
+ "streamable": "0",
181
+ "artist": {
182
+ "name": "Cher",
183
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
184
+ "url": "http:\/\/www.last.fm\/music\/Cher"
185
+ },
186
+ "image": [
187
+ {
188
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
189
+ "size": "small"
190
+ },
191
+ {
192
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
193
+ "size": "medium"
194
+ },
195
+ {
196
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
197
+ "size": "large"
198
+ },
199
+ {
200
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
201
+ "size": "extralarge"
202
+ }
203
+ ],
204
+ "@attr": {
205
+ "rank": "6"
206
+ }
207
+ },
208
+ {
209
+ "name": "Gypsies, Tramps and Thieves",
210
+ "playcount": "237049",
211
+ "listeners": "75231",
212
+ "mbid": "fb0b7883-7638-4beb-914c-4abf84e95954",
213
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Gypsies,+Tramps+and+Thieves",
214
+ "streamable": "0",
215
+ "artist": {
216
+ "name": "Cher",
217
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
218
+ "url": "http:\/\/www.last.fm\/music\/Cher"
219
+ },
220
+ "image": [
221
+ {
222
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
223
+ "size": "small"
224
+ },
225
+ {
226
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
227
+ "size": "medium"
228
+ },
229
+ {
230
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
231
+ "size": "large"
232
+ },
233
+ {
234
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
235
+ "size": "extralarge"
236
+ }
237
+ ],
238
+ "@attr": {
239
+ "rank": "7"
240
+ }
241
+ },
242
+ {
243
+ "name": "Walking in Memphis",
244
+ "playcount": "242134",
245
+ "listeners": "51593",
246
+ "mbid": "2a198833-0dba-4e9e-87ce-4e6cd3fe54b1",
247
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Walking+in+Memphis",
248
+ "streamable": "0",
249
+ "artist": {
250
+ "name": "Cher",
251
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
252
+ "url": "http:\/\/www.last.fm\/music\/Cher"
253
+ },
254
+ "image": [
255
+ {
256
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
257
+ "size": "small"
258
+ },
259
+ {
260
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
261
+ "size": "medium"
262
+ },
263
+ {
264
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
265
+ "size": "large"
266
+ },
267
+ {
268
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
269
+ "size": "extralarge"
270
+ }
271
+ ],
272
+ "@attr": {
273
+ "rank": "8"
274
+ }
275
+ },
276
+ {
277
+ "name": "All or Nothing",
278
+ "playcount": "241317",
279
+ "listeners": "50125",
280
+ "mbid": "721ecba5-74fb-40ac-a80d-2216142ae994",
281
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/All+or+Nothing",
282
+ "streamable": "0",
283
+ "artist": {
284
+ "name": "Cher",
285
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
286
+ "url": "http:\/\/www.last.fm\/music\/Cher"
287
+ },
288
+ "image": [
289
+ {
290
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
291
+ "size": "small"
292
+ },
293
+ {
294
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
295
+ "size": "medium"
296
+ },
297
+ {
298
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
299
+ "size": "large"
300
+ },
301
+ {
302
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
303
+ "size": "extralarge"
304
+ }
305
+ ],
306
+ "@attr": {
307
+ "rank": "9"
308
+ }
309
+ },
310
+ {
311
+ "name": "Heart of Stone",
312
+ "playcount": "160340",
313
+ "listeners": "49971",
314
+ "mbid": "9b44cd27-8f80-48dd-82dc-d067f07899e8",
315
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Heart+of+Stone",
316
+ "streamable": "0",
317
+ "artist": {
318
+ "name": "Cher",
319
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
320
+ "url": "http:\/\/www.last.fm\/music\/Cher"
321
+ },
322
+ "image": [
323
+ {
324
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
325
+ "size": "small"
326
+ },
327
+ {
328
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
329
+ "size": "medium"
330
+ },
331
+ {
332
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
333
+ "size": "large"
334
+ },
335
+ {
336
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
337
+ "size": "extralarge"
338
+ }
339
+ ],
340
+ "@attr": {
341
+ "rank": "10"
342
+ }
343
+ },
344
+ {
345
+ "name": "Dark Lady",
346
+ "playcount": "175542",
347
+ "listeners": "48432",
348
+ "mbid": "fc0f49cb-0fbb-4750-9366-57fcd939db4e",
349
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Dark+Lady",
350
+ "streamable": "0",
351
+ "artist": {
352
+ "name": "Cher",
353
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
354
+ "url": "http:\/\/www.last.fm\/music\/Cher"
355
+ },
356
+ "image": [
357
+ {
358
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
359
+ "size": "small"
360
+ },
361
+ {
362
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
363
+ "size": "medium"
364
+ },
365
+ {
366
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
367
+ "size": "large"
368
+ },
369
+ {
370
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
371
+ "size": "extralarge"
372
+ }
373
+ ],
374
+ "@attr": {
375
+ "rank": "11"
376
+ }
377
+ },
378
+ {
379
+ "name": "Love and Understanding",
380
+ "playcount": "139284",
381
+ "listeners": "45937",
382
+ "mbid": "37a46a6f-57c8-4a8f-856b-8473b8141319",
383
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Love+and+Understanding",
384
+ "streamable": "0",
385
+ "artist": {
386
+ "name": "Cher",
387
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
388
+ "url": "http:\/\/www.last.fm\/music\/Cher"
389
+ },
390
+ "image": [
391
+ {
392
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
393
+ "size": "small"
394
+ },
395
+ {
396
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
397
+ "size": "medium"
398
+ },
399
+ {
400
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
401
+ "size": "large"
402
+ },
403
+ {
404
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
405
+ "size": "extralarge"
406
+ }
407
+ ],
408
+ "@attr": {
409
+ "rank": "12"
410
+ }
411
+ },
412
+ {
413
+ "name": "Take Me Home",
414
+ "playcount": "115708",
415
+ "listeners": "45298",
416
+ "mbid": "250953e2-1208-4e31-a302-9ac4fed3cfa8",
417
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Take+Me+Home",
418
+ "streamable": "0",
419
+ "artist": {
420
+ "name": "Cher",
421
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
422
+ "url": "http:\/\/www.last.fm\/music\/Cher"
423
+ },
424
+ "image": [
425
+ {
426
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
427
+ "size": "small"
428
+ },
429
+ {
430
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
431
+ "size": "medium"
432
+ },
433
+ {
434
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
435
+ "size": "large"
436
+ },
437
+ {
438
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
439
+ "size": "extralarge"
440
+ }
441
+ ],
442
+ "@attr": {
443
+ "rank": "13"
444
+ }
445
+ },
446
+ {
447
+ "name": "One by One",
448
+ "playcount": "128783",
449
+ "listeners": "42660",
450
+ "mbid": "5880eaf6-59dd-4ca4-9297-ea7ba96dee5e",
451
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/One+by+One",
452
+ "streamable": "0",
453
+ "artist": {
454
+ "name": "Cher",
455
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
456
+ "url": "http:\/\/www.last.fm\/music\/Cher"
457
+ },
458
+ "image": [
459
+ {
460
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
461
+ "size": "small"
462
+ },
463
+ {
464
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
465
+ "size": "medium"
466
+ },
467
+ {
468
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
469
+ "size": "large"
470
+ },
471
+ {
472
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
473
+ "size": "extralarge"
474
+ }
475
+ ],
476
+ "@attr": {
477
+ "rank": "14"
478
+ }
479
+ },
480
+ {
481
+ "name": "Welcome to Burlesque",
482
+ "playcount": "268407",
483
+ "listeners": "39470",
484
+ "mbid": "f0a03287-25f3-47f9-85ac-4458f2e71038",
485
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Welcome+to+Burlesque",
486
+ "streamable": "0",
487
+ "artist": {
488
+ "name": "Cher",
489
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
490
+ "url": "http:\/\/www.last.fm\/music\/Cher"
491
+ },
492
+ "image": [
493
+ {
494
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
495
+ "size": "small"
496
+ },
497
+ {
498
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
499
+ "size": "medium"
500
+ },
501
+ {
502
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
503
+ "size": "large"
504
+ },
505
+ {
506
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
507
+ "size": "extralarge"
508
+ }
509
+ ],
510
+ "@attr": {
511
+ "rank": "15"
512
+ }
513
+ },
514
+ {
515
+ "name": "All I Really Want to Do",
516
+ "playcount": "105760",
517
+ "listeners": "39277",
518
+ "mbid": "8058772b-0b1a-4767-a261-d8f0c6cc16fe",
519
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/All+I+Really+Want+to+Do",
520
+ "streamable": "0",
521
+ "artist": {
522
+ "name": "Cher",
523
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
524
+ "url": "http:\/\/www.last.fm\/music\/Cher"
525
+ },
526
+ "image": [
527
+ {
528
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
529
+ "size": "small"
530
+ },
531
+ {
532
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
533
+ "size": "medium"
534
+ },
535
+ {
536
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
537
+ "size": "large"
538
+ },
539
+ {
540
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
541
+ "size": "extralarge"
542
+ }
543
+ ],
544
+ "@attr": {
545
+ "rank": "16"
546
+ }
547
+ },
548
+ {
549
+ "name": "Save Up All Your Tears",
550
+ "playcount": "144400",
551
+ "listeners": "38605",
552
+ "mbid": "c330257a-4751-47e7-be2c-f7a1896e0784",
553
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Save+Up+All+Your+Tears",
554
+ "streamable": "0",
555
+ "artist": {
556
+ "name": "Cher",
557
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
558
+ "url": "http:\/\/www.last.fm\/music\/Cher"
559
+ },
560
+ "image": [
561
+ {
562
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
563
+ "size": "small"
564
+ },
565
+ {
566
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
567
+ "size": "medium"
568
+ },
569
+ {
570
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
571
+ "size": "large"
572
+ },
573
+ {
574
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
575
+ "size": "extralarge"
576
+ }
577
+ ],
578
+ "@attr": {
579
+ "rank": "17"
580
+ }
581
+ },
582
+ {
583
+ "name": "We All Sleep Alone",
584
+ "playcount": "132298",
585
+ "listeners": "36968",
586
+ "mbid": "aa843749-8674-43b2-80d7-dcfd09400bb1",
587
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/We+All+Sleep+Alone",
588
+ "streamable": "0",
589
+ "artist": {
590
+ "name": "Cher",
591
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
592
+ "url": "http:\/\/www.last.fm\/music\/Cher"
593
+ },
594
+ "image": [
595
+ {
596
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
597
+ "size": "small"
598
+ },
599
+ {
600
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
601
+ "size": "medium"
602
+ },
603
+ {
604
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
605
+ "size": "large"
606
+ },
607
+ {
608
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
609
+ "size": "extralarge"
610
+ }
611
+ ],
612
+ "@attr": {
613
+ "rank": "18"
614
+ }
615
+ },
616
+ {
617
+ "name": "You Haven't Seen the Last of Me",
618
+ "playcount": "221432",
619
+ "listeners": "32673",
620
+ "mbid": "f91e4fc4-17d0-4fe0-a9ea-3277f6ffe34a",
621
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/You+Haven%27t+Seen+the+Last+of+Me",
622
+ "streamable": "0",
623
+ "artist": {
624
+ "name": "Cher",
625
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
626
+ "url": "http:\/\/www.last.fm\/music\/Cher"
627
+ },
628
+ "image": [
629
+ {
630
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
631
+ "size": "small"
632
+ },
633
+ {
634
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
635
+ "size": "medium"
636
+ },
637
+ {
638
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
639
+ "size": "large"
640
+ },
641
+ {
642
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
643
+ "size": "extralarge"
644
+ }
645
+ ],
646
+ "@attr": {
647
+ "rank": "19"
648
+ }
649
+ },
650
+ {
651
+ "name": "Bang Bang (My Baby Shot Me Down)",
652
+ "playcount": "100758",
653
+ "listeners": "29996",
654
+ "mbid": "6a703a97-7756-41f2-b578-05d6bb0b36cd",
655
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Bang+Bang+(My+Baby+Shot+Me+Down)",
656
+ "streamable": "0",
657
+ "artist": {
658
+ "name": "Cher",
659
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
660
+ "url": "http:\/\/www.last.fm\/music\/Cher"
661
+ },
662
+ "image": [
663
+ {
664
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
665
+ "size": "small"
666
+ },
667
+ {
668
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
669
+ "size": "medium"
670
+ },
671
+ {
672
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
673
+ "size": "large"
674
+ },
675
+ {
676
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
677
+ "size": "extralarge"
678
+ }
679
+ ],
680
+ "@attr": {
681
+ "rank": "20"
682
+ }
683
+ },
684
+ {
685
+ "name": "Half-Breed",
686
+ "playcount": "96224",
687
+ "listeners": "29990",
688
+ "mbid": "66ceae96-9137-43c1-9156-498cfa722a3b",
689
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Half-Breed",
690
+ "streamable": "0",
691
+ "artist": {
692
+ "name": "Cher",
693
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
694
+ "url": "http:\/\/www.last.fm\/music\/Cher"
695
+ },
696
+ "image": [
697
+ {
698
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
699
+ "size": "small"
700
+ },
701
+ {
702
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
703
+ "size": "medium"
704
+ },
705
+ {
706
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
707
+ "size": "large"
708
+ },
709
+ {
710
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
711
+ "size": "extralarge"
712
+ }
713
+ ],
714
+ "@attr": {
715
+ "rank": "21"
716
+ }
717
+ },
718
+ {
719
+ "name": "Love Hurts",
720
+ "playcount": "83907",
721
+ "listeners": "26663",
722
+ "mbid": "ab49f7cb-676d-492e-afb2-60acd206f690",
723
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Love+Hurts",
724
+ "streamable": "0",
725
+ "artist": {
726
+ "name": "Cher",
727
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
728
+ "url": "http:\/\/www.last.fm\/music\/Cher"
729
+ },
730
+ "image": [
731
+ {
732
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
733
+ "size": "small"
734
+ },
735
+ {
736
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
737
+ "size": "medium"
738
+ },
739
+ {
740
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
741
+ "size": "large"
742
+ },
743
+ {
744
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
745
+ "size": "extralarge"
746
+ }
747
+ ],
748
+ "@attr": {
749
+ "rank": "22"
750
+ }
751
+ },
752
+ {
753
+ "name": "Song for the Lonely",
754
+ "playcount": "131192",
755
+ "listeners": "26000",
756
+ "mbid": "83eb1f29-05fb-447c-843d-07a6d37a27fd",
757
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Song+for+the+Lonely",
758
+ "streamable": "0",
759
+ "artist": {
760
+ "name": "Cher",
761
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
762
+ "url": "http:\/\/www.last.fm\/music\/Cher"
763
+ },
764
+ "image": [
765
+ {
766
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
767
+ "size": "small"
768
+ },
769
+ {
770
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
771
+ "size": "medium"
772
+ },
773
+ {
774
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
775
+ "size": "large"
776
+ },
777
+ {
778
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
779
+ "size": "extralarge"
780
+ }
781
+ ],
782
+ "@attr": {
783
+ "rank": "23"
784
+ }
785
+ },
786
+ {
787
+ "name": "Woman's World",
788
+ "playcount": "284105",
789
+ "listeners": "23655",
790
+ "mbid": "31c29ca7-3122-4586-a394-da6dc05332ce",
791
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Woman%27s+World",
792
+ "streamable": "0",
793
+ "artist": {
794
+ "name": "Cher",
795
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
796
+ "url": "http:\/\/www.last.fm\/music\/Cher"
797
+ },
798
+ "image": [
799
+ {
800
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
801
+ "size": "small"
802
+ },
803
+ {
804
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
805
+ "size": "medium"
806
+ },
807
+ {
808
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
809
+ "size": "large"
810
+ },
811
+ {
812
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
813
+ "size": "extralarge"
814
+ }
815
+ ],
816
+ "@attr": {
817
+ "rank": "24"
818
+ }
819
+ },
820
+ {
821
+ "name": "Bang Bang",
822
+ "playcount": "65864",
823
+ "listeners": "23317",
824
+ "mbid": "82b214d3-6a54-4576-8cfe-e835e9819326",
825
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Bang+Bang",
826
+ "streamable": "0",
827
+ "artist": {
828
+ "name": "Cher",
829
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
830
+ "url": "http:\/\/www.last.fm\/music\/Cher"
831
+ },
832
+ "image": [
833
+ {
834
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
835
+ "size": "small"
836
+ },
837
+ {
838
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
839
+ "size": "medium"
840
+ },
841
+ {
842
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
843
+ "size": "large"
844
+ },
845
+ {
846
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
847
+ "size": "extralarge"
848
+ }
849
+ ],
850
+ "@attr": {
851
+ "rank": "25"
852
+ }
853
+ },
854
+ {
855
+ "name": "Runaway",
856
+ "playcount": "74361",
857
+ "listeners": "18132",
858
+ "mbid": "ad22e2e2-3736-4ef0-9c19-3d568ac5a109",
859
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Runaway",
860
+ "streamable": "0",
861
+ "artist": {
862
+ "name": "Cher",
863
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
864
+ "url": "http:\/\/www.last.fm\/music\/Cher"
865
+ },
866
+ "image": [
867
+ {
868
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
869
+ "size": "small"
870
+ },
871
+ {
872
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
873
+ "size": "medium"
874
+ },
875
+ {
876
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
877
+ "size": "large"
878
+ },
879
+ {
880
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
881
+ "size": "extralarge"
882
+ }
883
+ ],
884
+ "@attr": {
885
+ "rank": "26"
886
+ }
887
+ },
888
+ {
889
+ "name": "The Shoop Shoop Song",
890
+ "playcount": "83020",
891
+ "listeners": "17792",
892
+ "mbid": "d39a2011-90a5-4f0b-9bf0-2791e1e5aae0",
893
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/The+Shoop+Shoop+Song",
894
+ "streamable": "0",
895
+ "artist": {
896
+ "name": "Cher",
897
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
898
+ "url": "http:\/\/www.last.fm\/music\/Cher"
899
+ },
900
+ "image": [
901
+ {
902
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
903
+ "size": "small"
904
+ },
905
+ {
906
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
907
+ "size": "medium"
908
+ },
909
+ {
910
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
911
+ "size": "large"
912
+ },
913
+ {
914
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
915
+ "size": "extralarge"
916
+ }
917
+ ],
918
+ "@attr": {
919
+ "rank": "27"
920
+ }
921
+ },
922
+ {
923
+ "name": "The Power",
924
+ "playcount": "63757",
925
+ "listeners": "16527",
926
+ "mbid": "6b3de6b5-db70-49c9-b58d-e132a3eb1a36",
927
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/The+Power",
928
+ "streamable": "0",
929
+ "artist": {
930
+ "name": "Cher",
931
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
932
+ "url": "http:\/\/www.last.fm\/music\/Cher"
933
+ },
934
+ "image": [
935
+ {
936
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
937
+ "size": "small"
938
+ },
939
+ {
940
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
941
+ "size": "medium"
942
+ },
943
+ {
944
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
945
+ "size": "large"
946
+ },
947
+ {
948
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
949
+ "size": "extralarge"
950
+ }
951
+ ],
952
+ "@attr": {
953
+ "rank": "28"
954
+ }
955
+ },
956
+ {
957
+ "name": "The Way of Love",
958
+ "playcount": "55124",
959
+ "listeners": "16490",
960
+ "mbid": "05b9bca4-0486-4413-ac33-2ee3a2a01dd9",
961
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/The+Way+of+Love",
962
+ "streamable": "0",
963
+ "artist": {
964
+ "name": "Cher",
965
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
966
+ "url": "http:\/\/www.last.fm\/music\/Cher"
967
+ },
968
+ "image": [
969
+ {
970
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
971
+ "size": "small"
972
+ },
973
+ {
974
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
975
+ "size": "medium"
976
+ },
977
+ {
978
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
979
+ "size": "large"
980
+ },
981
+ {
982
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
983
+ "size": "extralarge"
984
+ }
985
+ ],
986
+ "@attr": {
987
+ "rank": "29"
988
+ }
989
+ },
990
+ {
991
+ "name": "Dov'e L'amore",
992
+ "playcount": "77228",
993
+ "listeners": "14586",
994
+ "mbid": "5768023f-35ab-4ad7-bbd1-afaa351eb9ce",
995
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Dov%27e+L%27amore",
996
+ "streamable": "0",
997
+ "artist": {
998
+ "name": "Cher",
999
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1000
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1001
+ },
1002
+ "image": [
1003
+ {
1004
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1005
+ "size": "small"
1006
+ },
1007
+ {
1008
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1009
+ "size": "medium"
1010
+ },
1011
+ {
1012
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1013
+ "size": "large"
1014
+ },
1015
+ {
1016
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1017
+ "size": "extralarge"
1018
+ }
1019
+ ],
1020
+ "@attr": {
1021
+ "rank": "30"
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "Alive Again",
1026
+ "playcount": "82819",
1027
+ "listeners": "14426",
1028
+ "mbid": "0f5bfe8a-4c69-4302-8b4d-1c247bc16386",
1029
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Alive+Again",
1030
+ "streamable": "0",
1031
+ "artist": {
1032
+ "name": "Cher",
1033
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1034
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1035
+ },
1036
+ "image": [
1037
+ {
1038
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1039
+ "size": "small"
1040
+ },
1041
+ {
1042
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1043
+ "size": "medium"
1044
+ },
1045
+ {
1046
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1047
+ "size": "large"
1048
+ },
1049
+ {
1050
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1051
+ "size": "extralarge"
1052
+ }
1053
+ ],
1054
+ "@attr": {
1055
+ "rank": "31"
1056
+ }
1057
+ },
1058
+ {
1059
+ "name": "Taxi Taxi",
1060
+ "playcount": "53337",
1061
+ "listeners": "13728",
1062
+ "mbid": "d4e6458b-3324-4601-8d97-bc0275bb542b",
1063
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Taxi+Taxi",
1064
+ "streamable": "0",
1065
+ "artist": {
1066
+ "name": "Cher",
1067
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1068
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1069
+ },
1070
+ "image": [
1071
+ {
1072
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1073
+ "size": "small"
1074
+ },
1075
+ {
1076
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1077
+ "size": "medium"
1078
+ },
1079
+ {
1080
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1081
+ "size": "large"
1082
+ },
1083
+ {
1084
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1085
+ "size": "extralarge"
1086
+ }
1087
+ ],
1088
+ "@attr": {
1089
+ "rank": "32"
1090
+ }
1091
+ },
1092
+ {
1093
+ "name": "Take It Like a Man",
1094
+ "playcount": "105351",
1095
+ "listeners": "12564",
1096
+ "mbid": "d3357371-2c79-40fa-b931-a8e3e9481ce1",
1097
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Take+It+Like+a+Man",
1098
+ "streamable": "0",
1099
+ "artist": {
1100
+ "name": "Cher",
1101
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1102
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1103
+ },
1104
+ "image": [
1105
+ {
1106
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1107
+ "size": "small"
1108
+ },
1109
+ {
1110
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1111
+ "size": "medium"
1112
+ },
1113
+ {
1114
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1115
+ "size": "large"
1116
+ },
1117
+ {
1118
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1119
+ "size": "extralarge"
1120
+ }
1121
+ ],
1122
+ "@attr": {
1123
+ "rank": "33"
1124
+ }
1125
+ },
1126
+ {
1127
+ "name": "Love Is the Groove",
1128
+ "playcount": "46344",
1129
+ "listeners": "12383",
1130
+ "mbid": "d290a996-e134-43b6-82e2-3653a57f8c5a",
1131
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Love+Is+the+Groove",
1132
+ "streamable": "0",
1133
+ "artist": {
1134
+ "name": "Cher",
1135
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1136
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1137
+ },
1138
+ "image": [
1139
+ {
1140
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1141
+ "size": "small"
1142
+ },
1143
+ {
1144
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1145
+ "size": "medium"
1146
+ },
1147
+ {
1148
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1149
+ "size": "large"
1150
+ },
1151
+ {
1152
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1153
+ "size": "extralarge"
1154
+ }
1155
+ ],
1156
+ "@attr": {
1157
+ "rank": "34"
1158
+ }
1159
+ },
1160
+ {
1161
+ "name": "I Hope You Find It",
1162
+ "playcount": "92819",
1163
+ "listeners": "12325",
1164
+ "mbid": "74c35f0c-fb11-4087-8f4c-81d6d1d8ca29",
1165
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/I+Hope+You+Find+It",
1166
+ "streamable": "0",
1167
+ "artist": {
1168
+ "name": "Cher",
1169
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1170
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1171
+ },
1172
+ "image": [
1173
+ {
1174
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1175
+ "size": "small"
1176
+ },
1177
+ {
1178
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1179
+ "size": "medium"
1180
+ },
1181
+ {
1182
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1183
+ "size": "large"
1184
+ },
1185
+ {
1186
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1187
+ "size": "extralarge"
1188
+ }
1189
+ ],
1190
+ "@attr": {
1191
+ "rank": "35"
1192
+ }
1193
+ },
1194
+ {
1195
+ "name": "Takin' Back My Heart",
1196
+ "playcount": "44035",
1197
+ "listeners": "12281",
1198
+ "mbid": "7a2e91a5-a03b-4525-8515-7daff35b65c8",
1199
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Takin%27+Back+My+Heart",
1200
+ "streamable": "0",
1201
+ "artist": {
1202
+ "name": "Cher",
1203
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1204
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1205
+ },
1206
+ "image": [
1207
+ {
1208
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1209
+ "size": "small"
1210
+ },
1211
+ {
1212
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1213
+ "size": "medium"
1214
+ },
1215
+ {
1216
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1217
+ "size": "large"
1218
+ },
1219
+ {
1220
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1221
+ "size": "extralarge"
1222
+ }
1223
+ ],
1224
+ "@attr": {
1225
+ "rank": "36"
1226
+ }
1227
+ },
1228
+ {
1229
+ "name": "Welcome to Burlesque - Burlesque original motion picture soundtrack",
1230
+ "playcount": "38518",
1231
+ "listeners": "10874",
1232
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Welcome+to+Burlesque+-+Burlesque+original+motion+picture+soundtrack",
1233
+ "streamable": "0",
1234
+ "artist": {
1235
+ "name": "Cher",
1236
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1237
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1238
+ },
1239
+ "image": [
1240
+ {
1241
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1242
+ "size": "small"
1243
+ },
1244
+ {
1245
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1246
+ "size": "medium"
1247
+ },
1248
+ {
1249
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1250
+ "size": "large"
1251
+ },
1252
+ {
1253
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1254
+ "size": "extralarge"
1255
+ }
1256
+ ],
1257
+ "@attr": {
1258
+ "rank": "37"
1259
+ }
1260
+ },
1261
+ {
1262
+ "name": "You Haven\u2019t Seen the Last of Me",
1263
+ "playcount": "106888",
1264
+ "listeners": "10412",
1265
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/You+Haven%E2%80%99t+Seen+the+Last+of+Me",
1266
+ "streamable": "0",
1267
+ "artist": {
1268
+ "name": "Cher",
1269
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1270
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1271
+ },
1272
+ "image": [
1273
+ {
1274
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1275
+ "size": "small"
1276
+ },
1277
+ {
1278
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1279
+ "size": "medium"
1280
+ },
1281
+ {
1282
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1283
+ "size": "large"
1284
+ },
1285
+ {
1286
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1287
+ "size": "extralarge"
1288
+ }
1289
+ ],
1290
+ "@attr": {
1291
+ "rank": "38"
1292
+ }
1293
+ },
1294
+ {
1295
+ "name": "My Love",
1296
+ "playcount": "70343",
1297
+ "listeners": "10159",
1298
+ "mbid": "fd3ee206-41bd-456b-a673-2c5fe380d14b",
1299
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/My+Love",
1300
+ "streamable": "0",
1301
+ "artist": {
1302
+ "name": "Cher",
1303
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1304
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1305
+ },
1306
+ "image": [
1307
+ {
1308
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1309
+ "size": "small"
1310
+ },
1311
+ {
1312
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1313
+ "size": "medium"
1314
+ },
1315
+ {
1316
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1317
+ "size": "large"
1318
+ },
1319
+ {
1320
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1321
+ "size": "extralarge"
1322
+ }
1323
+ ],
1324
+ "@attr": {
1325
+ "rank": "39"
1326
+ }
1327
+ },
1328
+ {
1329
+ "name": "Sunny",
1330
+ "playcount": "24461",
1331
+ "listeners": "9944",
1332
+ "mbid": "3378c436-8ce0-4561-8425-a7c649d1b3b8",
1333
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Sunny",
1334
+ "streamable": "0",
1335
+ "artist": {
1336
+ "name": "Cher",
1337
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1338
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1339
+ },
1340
+ "image": [
1341
+ {
1342
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1343
+ "size": "small"
1344
+ },
1345
+ {
1346
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1347
+ "size": "medium"
1348
+ },
1349
+ {
1350
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1351
+ "size": "large"
1352
+ },
1353
+ {
1354
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1355
+ "size": "extralarge"
1356
+ }
1357
+ ],
1358
+ "@attr": {
1359
+ "rank": "40"
1360
+ }
1361
+ },
1362
+ {
1363
+ "name": "The Music's No Good Without You",
1364
+ "playcount": "75516",
1365
+ "listeners": "9924",
1366
+ "mbid": "0c346cf8-1424-42c8-b4cd-7620b4b6649b",
1367
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/The+Music%27s+No+Good+Without+You",
1368
+ "streamable": "0",
1369
+ "artist": {
1370
+ "name": "Cher",
1371
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1372
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1373
+ },
1374
+ "image": [
1375
+ {
1376
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1377
+ "size": "small"
1378
+ },
1379
+ {
1380
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1381
+ "size": "medium"
1382
+ },
1383
+ {
1384
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1385
+ "size": "large"
1386
+ },
1387
+ {
1388
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1389
+ "size": "extralarge"
1390
+ }
1391
+ ],
1392
+ "@attr": {
1393
+ "rank": "41"
1394
+ }
1395
+ },
1396
+ {
1397
+ "name": "Dressed to Kill",
1398
+ "playcount": "83017",
1399
+ "listeners": "9658",
1400
+ "mbid": "72ebb35b-d554-41aa-bbc2-a69a016f5dbf",
1401
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Dressed+to+Kill",
1402
+ "streamable": "0",
1403
+ "artist": {
1404
+ "name": "Cher",
1405
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1406
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1407
+ },
1408
+ "image": [
1409
+ {
1410
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1411
+ "size": "small"
1412
+ },
1413
+ {
1414
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1415
+ "size": "medium"
1416
+ },
1417
+ {
1418
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1419
+ "size": "large"
1420
+ },
1421
+ {
1422
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1423
+ "size": "extralarge"
1424
+ }
1425
+ ],
1426
+ "@attr": {
1427
+ "rank": "42"
1428
+ }
1429
+ },
1430
+ {
1431
+ "name": "I Got You Babe",
1432
+ "playcount": "40523",
1433
+ "listeners": "9645",
1434
+ "mbid": "0d7f0b61-0c55-4ad6-94d1-f685775fcd25",
1435
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/I+Got+You+Babe",
1436
+ "streamable": "0",
1437
+ "artist": {
1438
+ "name": "Cher",
1439
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1440
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1441
+ },
1442
+ "image": [
1443
+ {
1444
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1445
+ "size": "small"
1446
+ },
1447
+ {
1448
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1449
+ "size": "medium"
1450
+ },
1451
+ {
1452
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1453
+ "size": "large"
1454
+ },
1455
+ {
1456
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1457
+ "size": "extralarge"
1458
+ }
1459
+ ],
1460
+ "@attr": {
1461
+ "rank": "43"
1462
+ }
1463
+ },
1464
+ {
1465
+ "name": "It's a Man's Man's Man's World",
1466
+ "playcount": "20339",
1467
+ "listeners": "9185",
1468
+ "mbid": "644aa68b-d1a2-4ca6-9f59-4ece6f513130",
1469
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/It%27s+a+Man%27s+Man%27s+Man%27s+World",
1470
+ "streamable": "0",
1471
+ "artist": {
1472
+ "name": "Cher",
1473
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1474
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1475
+ },
1476
+ "image": [
1477
+ {
1478
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1479
+ "size": "small"
1480
+ },
1481
+ {
1482
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1483
+ "size": "medium"
1484
+ },
1485
+ {
1486
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1487
+ "size": "large"
1488
+ },
1489
+ {
1490
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1491
+ "size": "extralarge"
1492
+ }
1493
+ ],
1494
+ "@attr": {
1495
+ "rank": "44"
1496
+ }
1497
+ },
1498
+ {
1499
+ "name": "I Walk Alone",
1500
+ "playcount": "78254",
1501
+ "listeners": "9135",
1502
+ "mbid": "393bc01b-cee2-43bd-be36-21e65998ff14",
1503
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/I+Walk+Alone",
1504
+ "streamable": "0",
1505
+ "artist": {
1506
+ "name": "Cher",
1507
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1508
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1509
+ },
1510
+ "image": [
1511
+ {
1512
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1513
+ "size": "small"
1514
+ },
1515
+ {
1516
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1517
+ "size": "medium"
1518
+ },
1519
+ {
1520
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1521
+ "size": "large"
1522
+ },
1523
+ {
1524
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1525
+ "size": "extralarge"
1526
+ }
1527
+ ],
1528
+ "@attr": {
1529
+ "rank": "45"
1530
+ }
1531
+ },
1532
+ {
1533
+ "name": "Gypsies, Tramps & Thieves",
1534
+ "playcount": "44565",
1535
+ "listeners": "8975",
1536
+ "mbid": "43385757-3878-48a4-8a1c-60fda3cb7c8c",
1537
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Gypsies,+Tramps+&+Thieves",
1538
+ "streamable": "0",
1539
+ "artist": {
1540
+ "name": "Cher",
1541
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1542
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1543
+ },
1544
+ "image": [
1545
+ {
1546
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1547
+ "size": "small"
1548
+ },
1549
+ {
1550
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1551
+ "size": "medium"
1552
+ },
1553
+ {
1554
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1555
+ "size": "large"
1556
+ },
1557
+ {
1558
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1559
+ "size": "extralarge"
1560
+ }
1561
+ ],
1562
+ "@attr": {
1563
+ "rank": "46"
1564
+ }
1565
+ },
1566
+ {
1567
+ "name": "Red",
1568
+ "playcount": "77141",
1569
+ "listeners": "8940",
1570
+ "mbid": "49714291-6bf8-402d-ba39-8bc8b59cbcd9",
1571
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Red",
1572
+ "streamable": "0",
1573
+ "artist": {
1574
+ "name": "Cher",
1575
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1576
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1577
+ },
1578
+ "image": [
1579
+ {
1580
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1581
+ "size": "small"
1582
+ },
1583
+ {
1584
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1585
+ "size": "medium"
1586
+ },
1587
+ {
1588
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1589
+ "size": "large"
1590
+ },
1591
+ {
1592
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1593
+ "size": "extralarge"
1594
+ }
1595
+ ],
1596
+ "@attr": {
1597
+ "rank": "47"
1598
+ }
1599
+ },
1600
+ {
1601
+ "name": "When the Money's Gone",
1602
+ "playcount": "39693",
1603
+ "listeners": "8850",
1604
+ "mbid": "c15efb81-15ab-40cd-ab78-5cb6fae55a82",
1605
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/When+the+Money%27s+Gone",
1606
+ "streamable": "0",
1607
+ "artist": {
1608
+ "name": "Cher",
1609
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1610
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1611
+ },
1612
+ "image": [
1613
+ {
1614
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1615
+ "size": "small"
1616
+ },
1617
+ {
1618
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1619
+ "size": "medium"
1620
+ },
1621
+ {
1622
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1623
+ "size": "large"
1624
+ },
1625
+ {
1626
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1627
+ "size": "extralarge"
1628
+ }
1629
+ ],
1630
+ "@attr": {
1631
+ "rank": "48"
1632
+ }
1633
+ },
1634
+ {
1635
+ "name": "Train of Thought",
1636
+ "playcount": "23681",
1637
+ "listeners": "8709",
1638
+ "mbid": "d87b858e-7c5f-48b0-99c4-0e2c94c288b1",
1639
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/Train+of+Thought",
1640
+ "streamable": "0",
1641
+ "artist": {
1642
+ "name": "Cher",
1643
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1644
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1645
+ },
1646
+ "image": [
1647
+ {
1648
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1649
+ "size": "small"
1650
+ },
1651
+ {
1652
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1653
+ "size": "medium"
1654
+ },
1655
+ {
1656
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1657
+ "size": "large"
1658
+ },
1659
+ {
1660
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1661
+ "size": "extralarge"
1662
+ }
1663
+ ],
1664
+ "@attr": {
1665
+ "rank": "49"
1666
+ }
1667
+ },
1668
+ {
1669
+ "name": "After All (Love Theme From Chances Are)",
1670
+ "playcount": "27356",
1671
+ "listeners": "8537",
1672
+ "mbid": "b2b4540c-c73d-4fe2-b8a1-b5a1a56aa841",
1673
+ "url": "http:\/\/www.last.fm\/music\/Cher\/_\/After+All+(Love+Theme+From+Chances+Are)",
1674
+ "streamable": "0",
1675
+ "artist": {
1676
+ "name": "Cher",
1677
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
1678
+ "url": "http:\/\/www.last.fm\/music\/Cher"
1679
+ },
1680
+ "image": [
1681
+ {
1682
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
1683
+ "size": "small"
1684
+ },
1685
+ {
1686
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
1687
+ "size": "medium"
1688
+ },
1689
+ {
1690
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
1691
+ "size": "large"
1692
+ },
1693
+ {
1694
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
1695
+ "size": "extralarge"
1696
+ }
1697
+ ],
1698
+ "@attr": {
1699
+ "rank": "50"
1700
+ }
1701
+ }
1702
+ ],
1703
+ "@attr": {
1704
+ "artist": "Cher",
1705
+ "page": "1",
1706
+ "perPage": "50",
1707
+ "totalPages": "509",
1708
+ "total": "25441"
1709
+ }
1710
+ }
1711
+ }