wannabeparser 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ doc/*
2
+ pkg/*
data/Manifest ADDED
File without changes
data/README.markdown ADDED
@@ -0,0 +1,35 @@
1
+ = wannabeparser
2
+
3
+ == Description
4
+
5
+ Library for parsing xml files to ruby hash. Xml is being parsed by input, to support large files. Specified function is fired for every parsed object.
6
+
7
+ == Usage
8
+
9
+ First, define class like this:
10
+
11
+ require 'wannabeparser'
12
+
13
+ class TwitterParser
14
+ include WannaBeParser # dear wannabeparser!
15
+
16
+ tag 'status' # Select all "status" objects for me
17
+
18
+ element 'created_at' => :date # and please, save "created_at" element contents as :date in resulting object
19
+
20
+ process lambda { |o| # and do this every time you got complete object
21
+ date = Date.parse(o[:date])
22
+ puts "#{o['user']['name']}: #{o['text']} @ #{Date::MONTHNAMES[date.month]}, #{date.day}"
23
+ }
24
+ end
25
+
26
+ Now, you can start parsing process doing this:
27
+
28
+ tweets_count = TwitterParser::parse(File.join( File.dirname(__FILE__) , 'twitter.xml')) # specifying xml file path as argument
29
+
30
+ tweets_count will contain number of parsed "status" objects.
31
+
32
+ == Installation
33
+
34
+ gem sources -a http://gemcutter.org
35
+ gem install wannabeparser
data/Rakefile ADDED
@@ -0,0 +1,31 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('wannabeparser', '0.1.0') do |p|
6
+ p.description = ""
7
+ p.url = "http://github.com/heydiplo/wannabeparser"
8
+ p.author = "Pasha Puzikov"
9
+ p.email = "heydiplo@gmail.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.extra_deps = [['libxml-ruby', '= 1.1.3']]
12
+ end
13
+
14
+ Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
15
+
16
+
17
+ begin
18
+ require 'jeweler'
19
+ Jeweler::Tasks.new do |gemspec|
20
+ gemspec.name = "wannabeparser"
21
+ gemspec.summary = "Library for input-based xml to hash parsing"
22
+ gemspec.description = "Library for parsing xml to ruby hashes by input, selecting only specified tag contents"
23
+ gemspec.email = "heydiplo@gmail.com"
24
+ gemspec.homepage = "http://github.com/heydiplo/wannabeparser"
25
+ gemspec.authors = ["Pasha Puzikov"]
26
+ gemspec.add_dependency('libxml-ruby', '= 1.1.3')
27
+ end
28
+ Jeweler::GemcutterTasks.new
29
+ rescue LoadError
30
+ puts "Jeweler not available. Install it with: sudo gem install jeweler"
31
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1,22 @@
1
+ require File.join( File.dirname(__FILE__) , '../lib/wannabeparser.rb')
2
+ require 'json'
3
+ require 'date'
4
+
5
+ class TwitterParser
6
+ include WannaBeParser
7
+
8
+ tag 'status'
9
+
10
+ element 'created_at' => :date
11
+
12
+ process lambda { |o|
13
+ date = Date.parse(o[:date])
14
+ puts "#{o['user']['name']}: #{o['text']} @ #{Date::MONTHNAMES[date.month]}, #{date.day}"
15
+ }
16
+ end
17
+
18
+ time_start = Time.now
19
+
20
+ tweets_count = TwitterParser::parse(File.join( File.dirname(__FILE__) , 'twitter.xml'))
21
+
22
+ puts "\n---","#{tweets_count} tweets in #{(Time.now - time_start).to_s} sec"
@@ -0,0 +1,3573 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <statuses type="array">
3
+ <status>
4
+ <created_at>Fri Nov 20 12:43:25 +0000 2009</created_at>
5
+ <id>5887862953</id>
6
+ <text>Big Day....tune in my tweet friends.</text>
7
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
8
+ <truncated>false</truncated>
9
+ <in_reply_to_status_id></in_reply_to_status_id>
10
+ <in_reply_to_user_id></in_reply_to_user_id>
11
+ <favorited>false</favorited>
12
+ <in_reply_to_screen_name></in_reply_to_screen_name>
13
+ <user>
14
+ <id>19397785</id>
15
+ <name>Oprah Winfrey</name>
16
+ <screen_name>Oprah</screen_name>
17
+ <location>Chicago, IL</location>
18
+ <description>Live Your Best Life</description>
19
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
20
+ <url>http://www.oprah.com</url>
21
+ <protected>false</protected>
22
+ <followers_count>2647687</followers_count>
23
+ <profile_background_color>2f73f1</profile_background_color>
24
+ <profile_text_color>333333</profile_text_color>
25
+ <profile_link_color>0084B4</profile_link_color>
26
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
27
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
28
+ <friends_count>17</friends_count>
29
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
30
+ <favourites_count>0</favourites_count>
31
+ <utc_offset>-21600</utc_offset>
32
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
33
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
34
+ <profile_background_tile>false</profile_background_tile>
35
+ <statuses_count>89</statuses_count>
36
+ <notifications>false</notifications>
37
+ <geo_enabled>false</geo_enabled>
38
+ <verified>true</verified>
39
+ <following>false</following>
40
+ </user>
41
+ <geo/>
42
+ </status>
43
+ <status>
44
+ <created_at>Mon Nov 16 18:24:54 +0000 2009</created_at>
45
+ <id>5771792562</id>
46
+ <text>Sarah Palin and I sit down for an hour together. It's worth a watch today at 4.</text>
47
+ <source>web</source>
48
+ <truncated>false</truncated>
49
+ <in_reply_to_status_id></in_reply_to_status_id>
50
+ <in_reply_to_user_id></in_reply_to_user_id>
51
+ <favorited>false</favorited>
52
+ <in_reply_to_screen_name></in_reply_to_screen_name>
53
+ <user>
54
+ <id>19397785</id>
55
+ <name>Oprah Winfrey</name>
56
+ <screen_name>Oprah</screen_name>
57
+ <location>Chicago, IL</location>
58
+ <description>Live Your Best Life</description>
59
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
60
+ <url>http://www.oprah.com</url>
61
+ <protected>false</protected>
62
+ <followers_count>2622776</followers_count>
63
+ <profile_background_color>2f73f1</profile_background_color>
64
+ <profile_text_color>333333</profile_text_color>
65
+ <profile_link_color>0084B4</profile_link_color>
66
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
67
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
68
+ <friends_count>17</friends_count>
69
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
70
+ <favourites_count>0</favourites_count>
71
+ <utc_offset>-21600</utc_offset>
72
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
73
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
74
+ <profile_background_tile>false</profile_background_tile>
75
+ <statuses_count>88</statuses_count>
76
+ <notifications></notifications>
77
+ <geo_enabled>false</geo_enabled>
78
+ <verified>true</verified>
79
+ <following></following>
80
+ </user>
81
+ <geo/>
82
+ </status>
83
+ <status>
84
+ <created_at>Thu Nov 12 02:22:08 +0000 2009</created_at>
85
+ <id>5637646569</id>
86
+ <text>Breaking news from me... http://tinyurl.com/yjkxe8m
87
+ #palinonoprah</text>
88
+ <source>web</source>
89
+ <truncated>false</truncated>
90
+ <in_reply_to_status_id></in_reply_to_status_id>
91
+ <in_reply_to_user_id></in_reply_to_user_id>
92
+ <favorited>false</favorited>
93
+ <in_reply_to_screen_name></in_reply_to_screen_name>
94
+ <user>
95
+ <id>19397785</id>
96
+ <name>Oprah Winfrey</name>
97
+ <screen_name>Oprah</screen_name>
98
+ <location>Chicago, IL</location>
99
+ <description>Live Your Best Life</description>
100
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
101
+ <url>http://www.oprah.com</url>
102
+ <protected>false</protected>
103
+ <followers_count>2592780</followers_count>
104
+ <profile_background_color>2f73f1</profile_background_color>
105
+ <profile_text_color>333333</profile_text_color>
106
+ <profile_link_color>0084B4</profile_link_color>
107
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
108
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
109
+ <friends_count>17</friends_count>
110
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
111
+ <favourites_count>0</favourites_count>
112
+ <utc_offset>-21600</utc_offset>
113
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
114
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
115
+ <profile_background_tile>false</profile_background_tile>
116
+ <statuses_count>87</statuses_count>
117
+ <notifications>false</notifications>
118
+ <geo_enabled>false</geo_enabled>
119
+ <verified>true</verified>
120
+ <following>true</following>
121
+ </user>
122
+ <geo/>
123
+ </status>
124
+ <status>
125
+ <created_at>Tue Nov 10 00:17:48 +0000 2009</created_at>
126
+ <id>5573932950</id>
127
+ <text>Then going home to finish Sarah Palin's book. She's on a week from today.</text>
128
+ <source>web</source>
129
+ <truncated>false</truncated>
130
+ <in_reply_to_status_id></in_reply_to_status_id>
131
+ <in_reply_to_user_id></in_reply_to_user_id>
132
+ <favorited>false</favorited>
133
+ <in_reply_to_screen_name></in_reply_to_screen_name>
134
+ <user>
135
+ <id>19397785</id>
136
+ <name>Oprah Winfrey</name>
137
+ <screen_name>Oprah</screen_name>
138
+ <location>Chicago, IL</location>
139
+ <description>Live Your Best Life</description>
140
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
141
+ <url>http://www.oprah.com</url>
142
+ <protected>false</protected>
143
+ <followers_count>2577767</followers_count>
144
+ <profile_background_color>2f73f1</profile_background_color>
145
+ <profile_text_color>333333</profile_text_color>
146
+ <profile_link_color>0084B4</profile_link_color>
147
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
148
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
149
+ <friends_count>17</friends_count>
150
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
151
+ <favourites_count>0</favourites_count>
152
+ <utc_offset>-21600</utc_offset>
153
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
154
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
155
+ <profile_background_tile>false</profile_background_tile>
156
+ <statuses_count>86</statuses_count>
157
+ <notifications></notifications>
158
+ <geo_enabled>false</geo_enabled>
159
+ <verified>true</verified>
160
+ <following></following>
161
+ </user>
162
+ <geo/>
163
+ </status>
164
+ <status>
165
+ <created_at>Tue Nov 10 00:17:30 +0000 2009</created_at>
166
+ <id>5573925525</id>
167
+ <text>Getting ready to do live book club webcast 8pm central. Even if you haven't read the book yet. Log on Oprah.com and say hey.</text>
168
+ <source>web</source>
169
+ <truncated>false</truncated>
170
+ <in_reply_to_status_id></in_reply_to_status_id>
171
+ <in_reply_to_user_id></in_reply_to_user_id>
172
+ <favorited>false</favorited>
173
+ <in_reply_to_screen_name></in_reply_to_screen_name>
174
+ <user>
175
+ <id>19397785</id>
176
+ <name>Oprah Winfrey</name>
177
+ <screen_name>Oprah</screen_name>
178
+ <location>Chicago, IL</location>
179
+ <description>Live Your Best Life</description>
180
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
181
+ <url>http://www.oprah.com</url>
182
+ <protected>false</protected>
183
+ <followers_count>2577766</followers_count>
184
+ <profile_background_color>2f73f1</profile_background_color>
185
+ <profile_text_color>333333</profile_text_color>
186
+ <profile_link_color>0084B4</profile_link_color>
187
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
188
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
189
+ <friends_count>17</friends_count>
190
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
191
+ <favourites_count>0</favourites_count>
192
+ <utc_offset>-21600</utc_offset>
193
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
194
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
195
+ <profile_background_tile>false</profile_background_tile>
196
+ <statuses_count>85</statuses_count>
197
+ <notifications>false</notifications>
198
+ <geo_enabled>false</geo_enabled>
199
+ <verified>true</verified>
200
+ <following>true</following>
201
+ </user>
202
+ <geo/>
203
+ </status>
204
+ <status>
205
+ <created_at>Mon Nov 09 21:22:19 +0000 2009</created_at>
206
+ <id>5569318341</id>
207
+ <text>Don't miss EllenD on my show today. Lots of real laughs. love love love her.</text>
208
+ <source>web</source>
209
+ <truncated>false</truncated>
210
+ <in_reply_to_status_id></in_reply_to_status_id>
211
+ <in_reply_to_user_id></in_reply_to_user_id>
212
+ <favorited>false</favorited>
213
+ <in_reply_to_screen_name></in_reply_to_screen_name>
214
+ <user>
215
+ <id>19397785</id>
216
+ <name>Oprah Winfrey</name>
217
+ <screen_name>Oprah</screen_name>
218
+ <location>Chicago, IL</location>
219
+ <description>Live Your Best Life</description>
220
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
221
+ <url>http://www.oprah.com</url>
222
+ <protected>false</protected>
223
+ <followers_count>2583620</followers_count>
224
+ <profile_background_color>2f73f1</profile_background_color>
225
+ <profile_text_color>333333</profile_text_color>
226
+ <profile_link_color>0084B4</profile_link_color>
227
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
228
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
229
+ <friends_count>17</friends_count>
230
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
231
+ <favourites_count>0</favourites_count>
232
+ <utc_offset>-21600</utc_offset>
233
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
234
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
235
+ <profile_background_tile>false</profile_background_tile>
236
+ <statuses_count>86</statuses_count>
237
+ <notifications>false</notifications>
238
+ <geo_enabled>false</geo_enabled>
239
+ <verified>true</verified>
240
+ <following>true</following>
241
+ </user>
242
+ <geo/>
243
+ </status>
244
+ <status>
245
+ <created_at>Mon Nov 09 20:59:42 +0000 2009</created_at>
246
+ <id>5568758351</id>
247
+ <text>We expand to San Fran, Dallas, Houston, Phily, DC on Friday.
248
+ Nationwide Nov 20th.</text>
249
+ <source>web</source>
250
+ <truncated>false</truncated>
251
+ <in_reply_to_status_id></in_reply_to_status_id>
252
+ <in_reply_to_user_id></in_reply_to_user_id>
253
+ <favorited>false</favorited>
254
+ <in_reply_to_screen_name></in_reply_to_screen_name>
255
+ <user>
256
+ <id>19397785</id>
257
+ <name>Oprah Winfrey</name>
258
+ <screen_name>Oprah</screen_name>
259
+ <location>Chicago, IL</location>
260
+ <description>Live Your Best Life</description>
261
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
262
+ <url>http://www.oprah.com</url>
263
+ <protected>false</protected>
264
+ <followers_count>2582913</followers_count>
265
+ <profile_background_color>2f73f1</profile_background_color>
266
+ <profile_text_color>333333</profile_text_color>
267
+ <profile_link_color>0084B4</profile_link_color>
268
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
269
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
270
+ <friends_count>17</friends_count>
271
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
272
+ <favourites_count>0</favourites_count>
273
+ <utc_offset>-21600</utc_offset>
274
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
275
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
276
+ <profile_background_tile>false</profile_background_tile>
277
+ <statuses_count>86</statuses_count>
278
+ <notifications>false</notifications>
279
+ <geo_enabled>false</geo_enabled>
280
+ <verified>true</verified>
281
+ <following>true</following>
282
+ </user>
283
+ <geo/>
284
+ </status>
285
+ <status>
286
+ <created_at>Mon Nov 09 20:58:32 +0000 2009</created_at>
287
+ <id>5568731032</id>
288
+ <text>Thank you for seeing PRECIOUS. I thought you would feel about it as I did.</text>
289
+ <source>web</source>
290
+ <truncated>false</truncated>
291
+ <in_reply_to_status_id></in_reply_to_status_id>
292
+ <in_reply_to_user_id></in_reply_to_user_id>
293
+ <favorited>false</favorited>
294
+ <in_reply_to_screen_name></in_reply_to_screen_name>
295
+ <user>
296
+ <id>19397785</id>
297
+ <name>Oprah Winfrey</name>
298
+ <screen_name>Oprah</screen_name>
299
+ <location>Chicago, IL</location>
300
+ <description>Live Your Best Life</description>
301
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
302
+ <url>http://www.oprah.com</url>
303
+ <protected>false</protected>
304
+ <followers_count>2576656</followers_count>
305
+ <profile_background_color>2f73f1</profile_background_color>
306
+ <profile_text_color>333333</profile_text_color>
307
+ <profile_link_color>0084B4</profile_link_color>
308
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
309
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
310
+ <friends_count>17</friends_count>
311
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
312
+ <favourites_count>0</favourites_count>
313
+ <utc_offset>-21600</utc_offset>
314
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
315
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
316
+ <profile_background_tile>false</profile_background_tile>
317
+ <statuses_count>82</statuses_count>
318
+ <notifications>false</notifications>
319
+ <geo_enabled>false</geo_enabled>
320
+ <verified>true</verified>
321
+ <following>true</following>
322
+ </user>
323
+ <geo/>
324
+ </status>
325
+ <status>
326
+ <created_at>Mon Nov 09 18:44:28 +0000 2009</created_at>
327
+ <id>5565607156</id>
328
+ <text>Counting down to the live webcast with Father Uwem &amp; Anderson Cooper. Starts @ 8pm CT. Log on! http://bit.ly/2AIZd8
329
+ #OprahsBookClub</text>
330
+ <source>web</source>
331
+ <truncated>false</truncated>
332
+ <in_reply_to_status_id></in_reply_to_status_id>
333
+ <in_reply_to_user_id></in_reply_to_user_id>
334
+ <favorited>false</favorited>
335
+ <in_reply_to_screen_name></in_reply_to_screen_name>
336
+ <user>
337
+ <id>19397785</id>
338
+ <name>Oprah Winfrey</name>
339
+ <screen_name>Oprah</screen_name>
340
+ <location>Chicago, IL</location>
341
+ <description>Live Your Best Life</description>
342
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
343
+ <url>http://www.oprah.com</url>
344
+ <protected>false</protected>
345
+ <followers_count>2583620</followers_count>
346
+ <profile_background_color>2f73f1</profile_background_color>
347
+ <profile_text_color>333333</profile_text_color>
348
+ <profile_link_color>0084B4</profile_link_color>
349
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
350
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
351
+ <friends_count>17</friends_count>
352
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
353
+ <favourites_count>0</favourites_count>
354
+ <utc_offset>-21600</utc_offset>
355
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
356
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
357
+ <profile_background_tile>false</profile_background_tile>
358
+ <statuses_count>86</statuses_count>
359
+ <notifications>false</notifications>
360
+ <geo_enabled>false</geo_enabled>
361
+ <verified>true</verified>
362
+ <following>true</following>
363
+ </user>
364
+ <geo/>
365
+ </status>
366
+ <status>
367
+ <created_at>Mon Nov 09 15:19:28 +0000 2009</created_at>
368
+ <id>5560781713</id>
369
+ <text>If you saw PRECIOUS this weekend give me a tweet. What'd ya think?</text>
370
+ <source>web</source>
371
+ <truncated>false</truncated>
372
+ <in_reply_to_status_id></in_reply_to_status_id>
373
+ <in_reply_to_user_id></in_reply_to_user_id>
374
+ <favorited>false</favorited>
375
+ <in_reply_to_screen_name></in_reply_to_screen_name>
376
+ <user>
377
+ <id>19397785</id>
378
+ <name>Oprah Winfrey</name>
379
+ <screen_name>Oprah</screen_name>
380
+ <location>Chicago, IL</location>
381
+ <description>Live Your Best Life</description>
382
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
383
+ <url>http://www.oprah.com</url>
384
+ <protected>false</protected>
385
+ <followers_count>2574828</followers_count>
386
+ <profile_background_color>2f73f1</profile_background_color>
387
+ <profile_text_color>333333</profile_text_color>
388
+ <profile_link_color>0084B4</profile_link_color>
389
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
390
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
391
+ <friends_count>17</friends_count>
392
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
393
+ <favourites_count>0</favourites_count>
394
+ <utc_offset>-21600</utc_offset>
395
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
396
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
397
+ <profile_background_tile>false</profile_background_tile>
398
+ <statuses_count>80</statuses_count>
399
+ <notifications>false</notifications>
400
+ <geo_enabled>false</geo_enabled>
401
+ <verified>true</verified>
402
+ <following>true</following>
403
+ </user>
404
+ <geo/>
405
+ </status>
406
+ <status>
407
+ <created_at>Fri Nov 06 20:23:14 +0000 2009</created_at>
408
+ <id>5487978848</id>
409
+ <text>Anderson Cooper on the show today. Webcast Monday night! What would u ask Uwem Akpan? http://bit.ly/2AIZd8 #OprahsBookClub</text>
410
+ <source>web</source>
411
+ <truncated>false</truncated>
412
+ <in_reply_to_status_id></in_reply_to_status_id>
413
+ <in_reply_to_user_id></in_reply_to_user_id>
414
+ <favorited>false</favorited>
415
+ <in_reply_to_screen_name></in_reply_to_screen_name>
416
+ <user>
417
+ <id>19397785</id>
418
+ <name>Oprah Winfrey</name>
419
+ <screen_name>Oprah</screen_name>
420
+ <location>Chicago, IL</location>
421
+ <description>Live Your Best Life</description>
422
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
423
+ <url>http://www.oprah.com</url>
424
+ <protected>false</protected>
425
+ <followers_count>2567394</followers_count>
426
+ <profile_background_color>2f73f1</profile_background_color>
427
+ <profile_text_color>333333</profile_text_color>
428
+ <profile_link_color>0084B4</profile_link_color>
429
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
430
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
431
+ <friends_count>17</friends_count>
432
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
433
+ <favourites_count>0</favourites_count>
434
+ <utc_offset>-21600</utc_offset>
435
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
436
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
437
+ <profile_background_tile>false</profile_background_tile>
438
+ <statuses_count>79</statuses_count>
439
+ <notifications>false</notifications>
440
+ <geo_enabled>false</geo_enabled>
441
+ <verified>true</verified>
442
+ <following>true</following>
443
+ </user>
444
+ <geo/>
445
+ </status>
446
+ <status>
447
+ <created_at>Fri Nov 06 16:16:21 +0000 2009</created_at>
448
+ <id>5482105321</id>
449
+ <text>Heading over NOW to meet my &quot;O&quot; co-covergirl! Me, Ellen D. and you! Michigan Ave - Water Tower Park - for 20 min only! See you there!</text>
450
+ <source>web</source>
451
+ <truncated>false</truncated>
452
+ <in_reply_to_status_id></in_reply_to_status_id>
453
+ <in_reply_to_user_id></in_reply_to_user_id>
454
+ <favorited>false</favorited>
455
+ <in_reply_to_screen_name></in_reply_to_screen_name>
456
+ <user>
457
+ <id>19397785</id>
458
+ <name>Oprah Winfrey</name>
459
+ <screen_name>Oprah</screen_name>
460
+ <location>Chicago, IL</location>
461
+ <description>Live Your Best Life</description>
462
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
463
+ <url>http://www.oprah.com</url>
464
+ <protected>false</protected>
465
+ <followers_count>2649725</followers_count>
466
+ <profile_background_color>2f73f1</profile_background_color>
467
+ <profile_text_color>333333</profile_text_color>
468
+ <profile_link_color>0084B4</profile_link_color>
469
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
470
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
471
+ <friends_count>17</friends_count>
472
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
473
+ <favourites_count>0</favourites_count>
474
+ <utc_offset>-21600</utc_offset>
475
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
476
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
477
+ <profile_background_tile>false</profile_background_tile>
478
+ <statuses_count>89</statuses_count>
479
+ <notifications>false</notifications>
480
+ <geo_enabled>false</geo_enabled>
481
+ <verified>true</verified>
482
+ <following>true</following>
483
+ </user>
484
+ <geo/>
485
+ </status>
486
+ <status>
487
+ <created_at>Fri Nov 06 15:34:52 +0000 2009</created_at>
488
+ <id>5481076339</id>
489
+ <text>Heading over soon to meet my &quot;O&quot; co-covergirl! Me, Ellen D. and you! Michigan Ave - Water Tower Park - for 20 min only! See you there!</text>
490
+ <source>web</source>
491
+ <truncated>false</truncated>
492
+ <in_reply_to_status_id></in_reply_to_status_id>
493
+ <in_reply_to_user_id></in_reply_to_user_id>
494
+ <favorited>false</favorited>
495
+ <in_reply_to_screen_name></in_reply_to_screen_name>
496
+ <user>
497
+ <id>19397785</id>
498
+ <name>Oprah Winfrey</name>
499
+ <screen_name>Oprah</screen_name>
500
+ <location>Chicago, IL</location>
501
+ <description>Live Your Best Life</description>
502
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
503
+ <url>http://www.oprah.com</url>
504
+ <protected>false</protected>
505
+ <followers_count>2649370</followers_count>
506
+ <profile_background_color>2f73f1</profile_background_color>
507
+ <profile_text_color>333333</profile_text_color>
508
+ <profile_link_color>0084B4</profile_link_color>
509
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
510
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
511
+ <friends_count>17</friends_count>
512
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
513
+ <favourites_count>0</favourites_count>
514
+ <utc_offset>-21600</utc_offset>
515
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
516
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
517
+ <profile_background_tile>false</profile_background_tile>
518
+ <statuses_count>89</statuses_count>
519
+ <notifications>false</notifications>
520
+ <geo_enabled>false</geo_enabled>
521
+ <verified>true</verified>
522
+ <following>true</following>
523
+ </user>
524
+ <geo/>
525
+ </status>
526
+ <status>
527
+ <created_at>Fri Nov 06 03:01:33 +0000 2009</created_at>
528
+ <id>5468628958</id>
529
+ <text>Hey All! Ellen DeGeneres asked me to meet her on Mich Ave./Chicago tomorrow! You should come too!</text>
530
+ <source>web</source>
531
+ <truncated>false</truncated>
532
+ <in_reply_to_status_id></in_reply_to_status_id>
533
+ <in_reply_to_user_id></in_reply_to_user_id>
534
+ <favorited>false</favorited>
535
+ <in_reply_to_screen_name></in_reply_to_screen_name>
536
+ <user>
537
+ <id>19397785</id>
538
+ <name>Oprah Winfrey</name>
539
+ <screen_name>Oprah</screen_name>
540
+ <location>Chicago, IL</location>
541
+ <description>Live Your Best Life</description>
542
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
543
+ <url>http://www.oprah.com</url>
544
+ <protected>false</protected>
545
+ <followers_count>2645369</followers_count>
546
+ <profile_background_color>2f73f1</profile_background_color>
547
+ <profile_text_color>333333</profile_text_color>
548
+ <profile_link_color>0084B4</profile_link_color>
549
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
550
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
551
+ <friends_count>17</friends_count>
552
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
553
+ <favourites_count>0</favourites_count>
554
+ <utc_offset>-21600</utc_offset>
555
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
556
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
557
+ <profile_background_tile>false</profile_background_tile>
558
+ <statuses_count>88</statuses_count>
559
+ <notifications>false</notifications>
560
+ <geo_enabled>false</geo_enabled>
561
+ <verified>true</verified>
562
+ <following>true</following>
563
+ </user>
564
+ <geo/>
565
+ </status>
566
+ <status>
567
+ <created_at>Thu Nov 05 20:25:08 +0000 2009</created_at>
568
+ <id>5458856221</id>
569
+ <text>Have you read it yet? 4 days til my live webcast about &quot;Say You're One of Them.&quot; http://bit.ly/2AIZd8 #OprahsBookClub</text>
570
+ <source>web</source>
571
+ <truncated>false</truncated>
572
+ <in_reply_to_status_id></in_reply_to_status_id>
573
+ <in_reply_to_user_id></in_reply_to_user_id>
574
+ <favorited>false</favorited>
575
+ <in_reply_to_screen_name></in_reply_to_screen_name>
576
+ <user>
577
+ <id>19397785</id>
578
+ <name>Oprah Winfrey</name>
579
+ <screen_name>Oprah</screen_name>
580
+ <location>Chicago, IL</location>
581
+ <description>Live Your Best Life</description>
582
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
583
+ <url>http://www.oprah.com</url>
584
+ <protected>false</protected>
585
+ <followers_count>2645843</followers_count>
586
+ <profile_background_color>2f73f1</profile_background_color>
587
+ <profile_text_color>333333</profile_text_color>
588
+ <profile_link_color>0084B4</profile_link_color>
589
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
590
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
591
+ <friends_count>17</friends_count>
592
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
593
+ <favourites_count>0</favourites_count>
594
+ <utc_offset>-21600</utc_offset>
595
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
596
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
597
+ <profile_background_tile>false</profile_background_tile>
598
+ <statuses_count>88</statuses_count>
599
+ <notifications>false</notifications>
600
+ <geo_enabled>false</geo_enabled>
601
+ <verified>true</verified>
602
+ <following>true</following>
603
+ </user>
604
+ <geo/>
605
+ </status>
606
+ <status>
607
+ <created_at>Fri Oct 23 18:59:01 +0000 2009</created_at>
608
+ <id>5104070022</id>
609
+ <text>The last and final story of &quot;Say You're One of Them.&quot; Here's my vlog. http://tinyurl.com/yk4b956</text>
610
+ <source>web</source>
611
+ <truncated>false</truncated>
612
+ <in_reply_to_status_id></in_reply_to_status_id>
613
+ <in_reply_to_user_id></in_reply_to_user_id>
614
+ <favorited>false</favorited>
615
+ <in_reply_to_screen_name></in_reply_to_screen_name>
616
+ <user>
617
+ <id>19397785</id>
618
+ <name>Oprah Winfrey</name>
619
+ <screen_name>Oprah</screen_name>
620
+ <location>Chicago, IL</location>
621
+ <description>Live Your Best Life</description>
622
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
623
+ <url>http://www.oprah.com</url>
624
+ <protected>false</protected>
625
+ <followers_count>2561770</followers_count>
626
+ <profile_background_color>2f73f1</profile_background_color>
627
+ <profile_text_color>333333</profile_text_color>
628
+ <profile_link_color>0084B4</profile_link_color>
629
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
630
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
631
+ <friends_count>17</friends_count>
632
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
633
+ <favourites_count>0</favourites_count>
634
+ <utc_offset>-21600</utc_offset>
635
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
636
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
637
+ <profile_background_tile>false</profile_background_tile>
638
+ <statuses_count>79</statuses_count>
639
+ <notifications>false</notifications>
640
+ <geo_enabled>false</geo_enabled>
641
+ <verified>true</verified>
642
+ <following>true</following>
643
+ </user>
644
+ <geo/>
645
+ </status>
646
+ <status>
647
+ <created_at>Fri Oct 16 15:29:45 +0000 2009</created_at>
648
+ <id>4918234962</id>
649
+ <text>&quot;Say You're One of Them&quot; by Uwem Akpan. Here's my new vlog. http://tinyurl.com/yf36gm9</text>
650
+ <source>web</source>
651
+ <truncated>false</truncated>
652
+ <in_reply_to_status_id></in_reply_to_status_id>
653
+ <in_reply_to_user_id></in_reply_to_user_id>
654
+ <favorited>false</favorited>
655
+ <in_reply_to_screen_name></in_reply_to_screen_name>
656
+ <user>
657
+ <id>19397785</id>
658
+ <name>Oprah Winfrey</name>
659
+ <screen_name>Oprah</screen_name>
660
+ <location>Chicago, IL</location>
661
+ <description>Live Your Best Life</description>
662
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
663
+ <url>http://www.oprah.com</url>
664
+ <protected>false</protected>
665
+ <followers_count>2603139</followers_count>
666
+ <profile_background_color>2f73f1</profile_background_color>
667
+ <profile_text_color>333333</profile_text_color>
668
+ <profile_link_color>0084B4</profile_link_color>
669
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
670
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
671
+ <friends_count>17</friends_count>
672
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
673
+ <favourites_count>0</favourites_count>
674
+ <utc_offset>-21600</utc_offset>
675
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
676
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
677
+ <profile_background_tile>false</profile_background_tile>
678
+ <statuses_count>87</statuses_count>
679
+ <notifications>false</notifications>
680
+ <geo_enabled>false</geo_enabled>
681
+ <verified>true</verified>
682
+ <following>true</following>
683
+ </user>
684
+ <geo/>
685
+ </status>
686
+ <status>
687
+ <created_at>Fri Oct 09 16:22:28 +0000 2009</created_at>
688
+ <id>4738203177</id>
689
+ <text>Here's my story #3 vlog for &quot;Say You're One of Them.&quot; http://tinyurl.com/ykpangh</text>
690
+ <source>web</source>
691
+ <truncated>false</truncated>
692
+ <in_reply_to_status_id></in_reply_to_status_id>
693
+ <in_reply_to_user_id></in_reply_to_user_id>
694
+ <favorited>false</favorited>
695
+ <in_reply_to_screen_name></in_reply_to_screen_name>
696
+ <user>
697
+ <id>19397785</id>
698
+ <name>Oprah Winfrey</name>
699
+ <screen_name>Oprah</screen_name>
700
+ <location>Chicago, IL</location>
701
+ <description>Live Your Best Life</description>
702
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
703
+ <url>http://www.oprah.com</url>
704
+ <protected>false</protected>
705
+ <followers_count>2629249</followers_count>
706
+ <profile_background_color>2f73f1</profile_background_color>
707
+ <profile_text_color>333333</profile_text_color>
708
+ <profile_link_color>0084B4</profile_link_color>
709
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
710
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
711
+ <friends_count>17</friends_count>
712
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
713
+ <favourites_count>0</favourites_count>
714
+ <utc_offset>-21600</utc_offset>
715
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
716
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
717
+ <profile_background_tile>false</profile_background_tile>
718
+ <statuses_count>88</statuses_count>
719
+ <notifications>false</notifications>
720
+ <geo_enabled>false</geo_enabled>
721
+ <verified>true</verified>
722
+ <following>true</following>
723
+ </user>
724
+ <geo/>
725
+ </status>
726
+ <status>
727
+ <created_at>Thu Oct 01 20:48:27 +0000 2009</created_at>
728
+ <id>4534361386</id>
729
+ <text>Here's my 2nd video blog for &quot;Say You're One of Them&quot; by Uwem Akpan --http://tinyurl.com/y9wd54w</text>
730
+ <source>web</source>
731
+ <truncated>false</truncated>
732
+ <in_reply_to_status_id></in_reply_to_status_id>
733
+ <in_reply_to_user_id></in_reply_to_user_id>
734
+ <favorited>false</favorited>
735
+ <in_reply_to_screen_name></in_reply_to_screen_name>
736
+ <user>
737
+ <id>19397785</id>
738
+ <name>Oprah Winfrey</name>
739
+ <screen_name>Oprah</screen_name>
740
+ <location>Chicago, IL</location>
741
+ <description>Live Your Best Life</description>
742
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
743
+ <url>http://www.oprah.com</url>
744
+ <protected>false</protected>
745
+ <followers_count>2599000</followers_count>
746
+ <profile_background_color>2f73f1</profile_background_color>
747
+ <profile_text_color>333333</profile_text_color>
748
+ <profile_link_color>0084B4</profile_link_color>
749
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
750
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
751
+ <friends_count>17</friends_count>
752
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
753
+ <favourites_count>0</favourites_count>
754
+ <utc_offset>-21600</utc_offset>
755
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
756
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
757
+ <profile_background_tile>false</profile_background_tile>
758
+ <statuses_count>87</statuses_count>
759
+ <notifications>false</notifications>
760
+ <geo_enabled>false</geo_enabled>
761
+ <verified>true</verified>
762
+ <following>true</following>
763
+ </user>
764
+ <geo/>
765
+ </status>
766
+ <status>
767
+ <created_at>Fri Sep 25 15:23:39 +0000 2009</created_at>
768
+ <id>4370543444</id>
769
+ <text>My 1st video blog for &quot;Say You're One of Them&quot;-my new book club pick. Upload your
770
+ vlogs to me about it on Oprah.com www.oprah.com/oprahblog</text>
771
+ <source>web</source>
772
+ <truncated>false</truncated>
773
+ <in_reply_to_status_id></in_reply_to_status_id>
774
+ <in_reply_to_user_id></in_reply_to_user_id>
775
+ <favorited>false</favorited>
776
+ <in_reply_to_screen_name></in_reply_to_screen_name>
777
+ <user>
778
+ <id>19397785</id>
779
+ <name>Oprah Winfrey</name>
780
+ <screen_name>Oprah</screen_name>
781
+ <location>Chicago, IL</location>
782
+ <description>Live Your Best Life</description>
783
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
784
+ <url>http://www.oprah.com</url>
785
+ <protected>false</protected>
786
+ <followers_count>2597339</followers_count>
787
+ <profile_background_color>2f73f1</profile_background_color>
788
+ <profile_text_color>333333</profile_text_color>
789
+ <profile_link_color>0084B4</profile_link_color>
790
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
791
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
792
+ <friends_count>17</friends_count>
793
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
794
+ <favourites_count>0</favourites_count>
795
+ <utc_offset>-21600</utc_offset>
796
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
797
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
798
+ <profile_background_tile>false</profile_background_tile>
799
+ <statuses_count>87</statuses_count>
800
+ <notifications>false</notifications>
801
+ <geo_enabled>false</geo_enabled>
802
+ <verified>true</verified>
803
+ <following>true</following>
804
+ </user>
805
+ <geo/>
806
+ </status>
807
+ <status>
808
+ <created_at>Fri Sep 25 00:29:37 +0000 2009</created_at>
809
+ <id>4355814754</id>
810
+ <text>Watch Barbra Streisand make me cry. What a song! http://tinyurl.com/yclnxat</text>
811
+ <source>web</source>
812
+ <truncated>false</truncated>
813
+ <in_reply_to_status_id></in_reply_to_status_id>
814
+ <in_reply_to_user_id></in_reply_to_user_id>
815
+ <favorited>false</favorited>
816
+ <in_reply_to_screen_name></in_reply_to_screen_name>
817
+ <user>
818
+ <id>19397785</id>
819
+ <name>Oprah Winfrey</name>
820
+ <screen_name>Oprah</screen_name>
821
+ <location>Chicago, IL</location>
822
+ <description>Live Your Best Life</description>
823
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
824
+ <url>http://www.oprah.com</url>
825
+ <protected>false</protected>
826
+ <followers_count>2597341</followers_count>
827
+ <profile_background_color>2f73f1</profile_background_color>
828
+ <profile_text_color>333333</profile_text_color>
829
+ <profile_link_color>0084B4</profile_link_color>
830
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
831
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
832
+ <friends_count>17</friends_count>
833
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
834
+ <favourites_count>0</favourites_count>
835
+ <utc_offset>-21600</utc_offset>
836
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
837
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
838
+ <profile_background_tile>false</profile_background_tile>
839
+ <statuses_count>87</statuses_count>
840
+ <notifications>false</notifications>
841
+ <geo_enabled>false</geo_enabled>
842
+ <verified>true</verified>
843
+ <following>true</following>
844
+ </user>
845
+ <geo/>
846
+ </status>
847
+ <status>
848
+ <created_at>Thu Sep 24 16:15:56 +0000 2009</created_at>
849
+ <id>4345170121</id>
850
+ <text>Want to follow up on Whitney H show-Looking for women who relate-dimming your light for a man. Ever done that? http://tinyurl.com/ycsmp7y</text>
851
+ <source>web</source>
852
+ <truncated>false</truncated>
853
+ <in_reply_to_status_id></in_reply_to_status_id>
854
+ <in_reply_to_user_id></in_reply_to_user_id>
855
+ <favorited>false</favorited>
856
+ <in_reply_to_screen_name></in_reply_to_screen_name>
857
+ <user>
858
+ <id>19397785</id>
859
+ <name>Oprah Winfrey</name>
860
+ <screen_name>Oprah</screen_name>
861
+ <location>Chicago, IL</location>
862
+ <description>Live Your Best Life</description>
863
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
864
+ <url>http://www.oprah.com</url>
865
+ <protected>false</protected>
866
+ <followers_count>2590746</followers_count>
867
+ <profile_background_color>2f73f1</profile_background_color>
868
+ <profile_text_color>333333</profile_text_color>
869
+ <profile_link_color>0084B4</profile_link_color>
870
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
871
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
872
+ <friends_count>17</friends_count>
873
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
874
+ <favourites_count>0</favourites_count>
875
+ <utc_offset>-21600</utc_offset>
876
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
877
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
878
+ <profile_background_tile>false</profile_background_tile>
879
+ <statuses_count>86</statuses_count>
880
+ <notifications></notifications>
881
+ <geo_enabled>false</geo_enabled>
882
+ <verified>true</verified>
883
+ <following></following>
884
+ </user>
885
+ <geo/>
886
+ </status>
887
+ <status>
888
+ <created_at>Tue Sep 22 19:56:08 +0000 2009</created_at>
889
+ <id>4296736791</id>
890
+ <text>Interviewed One Day at a Time's Mackenzie Phillips. Thought I'd heard it all...beyond shocking!
891
+ We're airing it Wednesday.</text>
892
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
893
+ <truncated>false</truncated>
894
+ <in_reply_to_status_id></in_reply_to_status_id>
895
+ <in_reply_to_user_id></in_reply_to_user_id>
896
+ <favorited>false</favorited>
897
+ <in_reply_to_screen_name></in_reply_to_screen_name>
898
+ <user>
899
+ <id>19397785</id>
900
+ <name>Oprah Winfrey</name>
901
+ <screen_name>Oprah</screen_name>
902
+ <location>Chicago, IL</location>
903
+ <description>Live Your Best Life</description>
904
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
905
+ <url>http://www.oprah.com</url>
906
+ <protected>false</protected>
907
+ <followers_count>2598357</followers_count>
908
+ <profile_background_color>2f73f1</profile_background_color>
909
+ <profile_text_color>333333</profile_text_color>
910
+ <profile_link_color>0084B4</profile_link_color>
911
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
912
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
913
+ <friends_count>17</friends_count>
914
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
915
+ <favourites_count>0</favourites_count>
916
+ <utc_offset>-21600</utc_offset>
917
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
918
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
919
+ <profile_background_tile>false</profile_background_tile>
920
+ <statuses_count>87</statuses_count>
921
+ <notifications>true</notifications>
922
+ <geo_enabled>false</geo_enabled>
923
+ <verified>true</verified>
924
+ <following>true</following>
925
+ </user>
926
+ <geo/>
927
+ </status>
928
+ <status>
929
+ <created_at>Sat Sep 19 21:29:07 +0000 2009</created_at>
930
+ <id>4110451819</id>
931
+ <text>Photo shooting for Omag with Ellen. She is BEYOND delightful. So much Fun.
932
+ Happy Rosh Hashanah! Happy Saturday!</text>
933
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
934
+ <truncated>false</truncated>
935
+ <in_reply_to_status_id></in_reply_to_status_id>
936
+ <in_reply_to_user_id></in_reply_to_user_id>
937
+ <favorited>false</favorited>
938
+ <in_reply_to_screen_name></in_reply_to_screen_name>
939
+ <user>
940
+ <id>19397785</id>
941
+ <name>Oprah Winfrey</name>
942
+ <screen_name>Oprah</screen_name>
943
+ <location>Chicago, IL</location>
944
+ <description>Live Your Best Life</description>
945
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
946
+ <url>http://www.oprah.com</url>
947
+ <protected>false</protected>
948
+ <followers_count>2599238</followers_count>
949
+ <profile_background_color>2f73f1</profile_background_color>
950
+ <profile_text_color>333333</profile_text_color>
951
+ <profile_link_color>0084B4</profile_link_color>
952
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
953
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
954
+ <friends_count>17</friends_count>
955
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
956
+ <favourites_count>0</favourites_count>
957
+ <utc_offset>-21600</utc_offset>
958
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
959
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
960
+ <profile_background_tile>false</profile_background_tile>
961
+ <statuses_count>87</statuses_count>
962
+ <notifications>false</notifications>
963
+ <geo_enabled>false</geo_enabled>
964
+ <verified>true</verified>
965
+ <following>true</following>
966
+ </user>
967
+ <geo/>
968
+ </status>
969
+ <status>
970
+ <created_at>Fri Sep 18 15:03:24 +0000 2009</created_at>
971
+ <id>4080356604</id>
972
+ <text>My new book club pick is &quot;Say You're One of Them&quot; by Uwem Akpan. My first collection of short stories. Let me know what you think!</text>
973
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
974
+ <truncated>false</truncated>
975
+ <in_reply_to_status_id></in_reply_to_status_id>
976
+ <in_reply_to_user_id></in_reply_to_user_id>
977
+ <favorited>false</favorited>
978
+ <in_reply_to_screen_name></in_reply_to_screen_name>
979
+ <user>
980
+ <id>19397785</id>
981
+ <name>Oprah Winfrey</name>
982
+ <screen_name>Oprah</screen_name>
983
+ <location>Chicago, IL</location>
984
+ <description>Live Your Best Life</description>
985
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
986
+ <url>http://www.oprah.com</url>
987
+ <protected>false</protected>
988
+ <followers_count>2643047</followers_count>
989
+ <profile_background_color>2f73f1</profile_background_color>
990
+ <profile_text_color>333333</profile_text_color>
991
+ <profile_link_color>0084B4</profile_link_color>
992
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
993
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
994
+ <friends_count>17</friends_count>
995
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
996
+ <favourites_count>0</favourites_count>
997
+ <utc_offset>-21600</utc_offset>
998
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
999
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1000
+ <profile_background_tile>false</profile_background_tile>
1001
+ <statuses_count>88</statuses_count>
1002
+ <notifications>false</notifications>
1003
+ <geo_enabled>false</geo_enabled>
1004
+ <verified>true</verified>
1005
+ <following>true</following>
1006
+ </user>
1007
+ <geo/>
1008
+ </status>
1009
+ <status>
1010
+ <created_at>Fri Sep 18 15:02:04 +0000 2009</created_at>
1011
+ <id>4080327783</id>
1012
+ <text>Just leaving Central Park and what a blast! Thanks for coming y'all!!!</text>
1013
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1014
+ <truncated>false</truncated>
1015
+ <in_reply_to_status_id></in_reply_to_status_id>
1016
+ <in_reply_to_user_id></in_reply_to_user_id>
1017
+ <favorited>false</favorited>
1018
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1019
+ <user>
1020
+ <id>19397785</id>
1021
+ <name>Oprah Winfrey</name>
1022
+ <screen_name>Oprah</screen_name>
1023
+ <location>Chicago, IL</location>
1024
+ <description>Live Your Best Life</description>
1025
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1026
+ <url>http://www.oprah.com</url>
1027
+ <protected>false</protected>
1028
+ <followers_count>2597880</followers_count>
1029
+ <profile_background_color>2f73f1</profile_background_color>
1030
+ <profile_text_color>333333</profile_text_color>
1031
+ <profile_link_color>0084B4</profile_link_color>
1032
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1033
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1034
+ <friends_count>17</friends_count>
1035
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1036
+ <favourites_count>0</favourites_count>
1037
+ <utc_offset>-21600</utc_offset>
1038
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1039
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1040
+ <profile_background_tile>false</profile_background_tile>
1041
+ <statuses_count>87</statuses_count>
1042
+ <notifications>false</notifications>
1043
+ <geo_enabled>false</geo_enabled>
1044
+ <verified>true</verified>
1045
+ <following>true</following>
1046
+ </user>
1047
+ <geo/>
1048
+ </status>
1049
+ <status>
1050
+ <created_at>Sat Sep 12 14:13:02 +0000 2009</created_at>
1051
+ <id>3934127267</id>
1052
+ <text>Wanna learn our Mag Mile dance? To be performed at your next group gathering. http://tinyurl.com/n5ngg4</text>
1053
+ <source>web</source>
1054
+ <truncated>false</truncated>
1055
+ <in_reply_to_status_id></in_reply_to_status_id>
1056
+ <in_reply_to_user_id></in_reply_to_user_id>
1057
+ <favorited>false</favorited>
1058
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1059
+ <user>
1060
+ <id>19397785</id>
1061
+ <name>Oprah Winfrey</name>
1062
+ <screen_name>Oprah</screen_name>
1063
+ <location>Chicago, IL</location>
1064
+ <description>Live Your Best Life</description>
1065
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1066
+ <url>http://www.oprah.com</url>
1067
+ <protected>false</protected>
1068
+ <followers_count>2642212</followers_count>
1069
+ <profile_background_color>2f73f1</profile_background_color>
1070
+ <profile_text_color>333333</profile_text_color>
1071
+ <profile_link_color>0084B4</profile_link_color>
1072
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1073
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1074
+ <friends_count>17</friends_count>
1075
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1076
+ <favourites_count>0</favourites_count>
1077
+ <utc_offset>-21600</utc_offset>
1078
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1079
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1080
+ <profile_background_tile>false</profile_background_tile>
1081
+ <statuses_count>88</statuses_count>
1082
+ <notifications>false</notifications>
1083
+ <geo_enabled>false</geo_enabled>
1084
+ <verified>true</verified>
1085
+ <following>true</following>
1086
+ </user>
1087
+ <geo/>
1088
+ </status>
1089
+ <status>
1090
+ <created_at>Fri Sep 11 19:19:10 +0000 2009</created_at>
1091
+ <id>3917582882</id>
1092
+ <text>Woke up. got dressed &amp; thought about every one of the 2970 who did the same 8 yrs ago. Let's have a tweet of silence to remember them all</text>
1093
+ <source>web</source>
1094
+ <truncated>false</truncated>
1095
+ <in_reply_to_status_id></in_reply_to_status_id>
1096
+ <in_reply_to_user_id></in_reply_to_user_id>
1097
+ <favorited>false</favorited>
1098
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1099
+ <user>
1100
+ <id>19397785</id>
1101
+ <name>Oprah Winfrey</name>
1102
+ <screen_name>Oprah</screen_name>
1103
+ <location>Chicago, IL</location>
1104
+ <description>Live Your Best Life</description>
1105
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1106
+ <url>http://www.oprah.com</url>
1107
+ <protected>false</protected>
1108
+ <followers_count>2604688</followers_count>
1109
+ <profile_background_color>2f73f1</profile_background_color>
1110
+ <profile_text_color>333333</profile_text_color>
1111
+ <profile_link_color>0084B4</profile_link_color>
1112
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1113
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1114
+ <friends_count>17</friends_count>
1115
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1116
+ <favourites_count>0</favourites_count>
1117
+ <utc_offset>-21600</utc_offset>
1118
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1119
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1120
+ <profile_background_tile>false</profile_background_tile>
1121
+ <statuses_count>87</statuses_count>
1122
+ <notifications>false</notifications>
1123
+ <geo_enabled>false</geo_enabled>
1124
+ <verified>true</verified>
1125
+ <following>true</following>
1126
+ </user>
1127
+ <geo/>
1128
+ </status>
1129
+ <status>
1130
+ <created_at>Fri Sep 11 01:29:39 +0000 2009</created_at>
1131
+ <id>3901511953</id>
1132
+ <text>Oh my! Wanna make yourself happy? Watch this. Please retweet! http://tinyurl.com/n5wq4t</text>
1133
+ <source>web</source>
1134
+ <truncated>false</truncated>
1135
+ <in_reply_to_status_id></in_reply_to_status_id>
1136
+ <in_reply_to_user_id></in_reply_to_user_id>
1137
+ <favorited>false</favorited>
1138
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1139
+ <user>
1140
+ <id>19397785</id>
1141
+ <name>Oprah Winfrey</name>
1142
+ <screen_name>Oprah</screen_name>
1143
+ <location>Chicago, IL</location>
1144
+ <description>Live Your Best Life</description>
1145
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1146
+ <url>http://www.oprah.com</url>
1147
+ <protected>false</protected>
1148
+ <followers_count>2634632</followers_count>
1149
+ <profile_background_color>2f73f1</profile_background_color>
1150
+ <profile_text_color>333333</profile_text_color>
1151
+ <profile_link_color>0084B4</profile_link_color>
1152
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1153
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1154
+ <friends_count>17</friends_count>
1155
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1156
+ <favourites_count>0</favourites_count>
1157
+ <utc_offset>-21600</utc_offset>
1158
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1159
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1160
+ <profile_background_tile>false</profile_background_tile>
1161
+ <statuses_count>88</statuses_count>
1162
+ <notifications>false</notifications>
1163
+ <geo_enabled>false</geo_enabled>
1164
+ <verified>true</verified>
1165
+ <following>true</following>
1166
+ </user>
1167
+ <geo/>
1168
+ </status>
1169
+ <status>
1170
+ <created_at>Fri Sep 04 02:05:18 +0000 2009</created_at>
1171
+ <id>3747736648</id>
1172
+ <text>In search of ceiling repairmen. Cause Whitney just BLEW THE ROOF off of Harpo.
1173
+ Grown men &amp; women weeping in the aisles.</text>
1174
+ <source>web</source>
1175
+ <truncated>false</truncated>
1176
+ <in_reply_to_status_id></in_reply_to_status_id>
1177
+ <in_reply_to_user_id></in_reply_to_user_id>
1178
+ <favorited>false</favorited>
1179
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1180
+ <user>
1181
+ <id>19397785</id>
1182
+ <name>Oprah Winfrey</name>
1183
+ <screen_name>Oprah</screen_name>
1184
+ <location>Chicago, IL</location>
1185
+ <description>Live Your Best Life</description>
1186
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1187
+ <url>http://www.oprah.com</url>
1188
+ <protected>false</protected>
1189
+ <followers_count>2597259</followers_count>
1190
+ <profile_background_color>2f73f1</profile_background_color>
1191
+ <profile_text_color>333333</profile_text_color>
1192
+ <profile_link_color>0084B4</profile_link_color>
1193
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1194
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1195
+ <friends_count>17</friends_count>
1196
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1197
+ <favourites_count>0</favourites_count>
1198
+ <utc_offset>-21600</utc_offset>
1199
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1200
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1201
+ <profile_background_tile>false</profile_background_tile>
1202
+ <statuses_count>87</statuses_count>
1203
+ <notifications>false</notifications>
1204
+ <geo_enabled>false</geo_enabled>
1205
+ <verified>true</verified>
1206
+ <following>true</following>
1207
+ </user>
1208
+ <geo/>
1209
+ </status>
1210
+ <status>
1211
+ <created_at>Fri Aug 28 16:44:24 +0000 2009</created_at>
1212
+ <id>3606140777</id>
1213
+ <text>thank you will.i.am and black eyed peas. I love you. http://tinyurl.com/nj658e</text>
1214
+ <source>web</source>
1215
+ <truncated>false</truncated>
1216
+ <in_reply_to_status_id></in_reply_to_status_id>
1217
+ <in_reply_to_user_id></in_reply_to_user_id>
1218
+ <favorited>false</favorited>
1219
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1220
+ <user>
1221
+ <id>19397785</id>
1222
+ <name>Oprah Winfrey</name>
1223
+ <screen_name>Oprah</screen_name>
1224
+ <location>Chicago, IL</location>
1225
+ <description>Live Your Best Life</description>
1226
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1227
+ <url>http://www.oprah.com</url>
1228
+ <protected>false</protected>
1229
+ <followers_count>2599227</followers_count>
1230
+ <profile_background_color>2f73f1</profile_background_color>
1231
+ <profile_text_color>333333</profile_text_color>
1232
+ <profile_link_color>0084B4</profile_link_color>
1233
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1234
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1235
+ <friends_count>17</friends_count>
1236
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1237
+ <favourites_count>0</favourites_count>
1238
+ <utc_offset>-21600</utc_offset>
1239
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1240
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1241
+ <profile_background_tile>false</profile_background_tile>
1242
+ <statuses_count>87</statuses_count>
1243
+ <notifications>false</notifications>
1244
+ <geo_enabled>false</geo_enabled>
1245
+ <verified>true</verified>
1246
+ <following>true</following>
1247
+ </user>
1248
+ <geo/>
1249
+ </status>
1250
+ <status>
1251
+ <created_at>Mon Aug 24 23:11:07 +0000 2009</created_at>
1252
+ <id>3522591124</id>
1253
+ <text>Hey all you BookClubbers. Tune in Friday, September 18th to find out what my new book club pick is--never made a selection like &quot;this&quot;.</text>
1254
+ <source>web</source>
1255
+ <truncated>false</truncated>
1256
+ <in_reply_to_status_id></in_reply_to_status_id>
1257
+ <in_reply_to_user_id></in_reply_to_user_id>
1258
+ <favorited>false</favorited>
1259
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1260
+ <user>
1261
+ <id>19397785</id>
1262
+ <name>Oprah Winfrey</name>
1263
+ <screen_name>Oprah</screen_name>
1264
+ <location>Chicago, IL</location>
1265
+ <description>Live Your Best Life</description>
1266
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1267
+ <url>http://www.oprah.com</url>
1268
+ <protected>false</protected>
1269
+ <followers_count>2604688</followers_count>
1270
+ <profile_background_color>2f73f1</profile_background_color>
1271
+ <profile_text_color>333333</profile_text_color>
1272
+ <profile_link_color>0084B4</profile_link_color>
1273
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1274
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1275
+ <friends_count>17</friends_count>
1276
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1277
+ <favourites_count>0</favourites_count>
1278
+ <utc_offset>-21600</utc_offset>
1279
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1280
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1281
+ <profile_background_tile>false</profile_background_tile>
1282
+ <statuses_count>87</statuses_count>
1283
+ <notifications>false</notifications>
1284
+ <geo_enabled>false</geo_enabled>
1285
+ <verified>true</verified>
1286
+ <following>true</following>
1287
+ </user>
1288
+ <geo/>
1289
+ </status>
1290
+ <status>
1291
+ <created_at>Sat Aug 22 00:49:07 +0000 2009</created_at>
1292
+ <id>3462436176</id>
1293
+ <text>been hanging loose in maui. time to head back in for the new season. check this out y'all
1294
+ http://tinyurl.com/ntr5he</text>
1295
+ <source>web</source>
1296
+ <truncated>false</truncated>
1297
+ <in_reply_to_status_id></in_reply_to_status_id>
1298
+ <in_reply_to_user_id></in_reply_to_user_id>
1299
+ <favorited>false</favorited>
1300
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1301
+ <user>
1302
+ <id>19397785</id>
1303
+ <name>Oprah Winfrey</name>
1304
+ <screen_name>Oprah</screen_name>
1305
+ <location>Chicago, IL</location>
1306
+ <description>Live Your Best Life</description>
1307
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1308
+ <url>http://www.oprah.com</url>
1309
+ <protected>false</protected>
1310
+ <followers_count>2590753</followers_count>
1311
+ <profile_background_color>2f73f1</profile_background_color>
1312
+ <profile_text_color>333333</profile_text_color>
1313
+ <profile_link_color>0084B4</profile_link_color>
1314
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1315
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1316
+ <friends_count>17</friends_count>
1317
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1318
+ <favourites_count>0</favourites_count>
1319
+ <utc_offset>-21600</utc_offset>
1320
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1321
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1322
+ <profile_background_tile>false</profile_background_tile>
1323
+ <statuses_count>86</statuses_count>
1324
+ <notifications>false</notifications>
1325
+ <geo_enabled>false</geo_enabled>
1326
+ <verified>true</verified>
1327
+ <following>true</following>
1328
+ </user>
1329
+ <geo/>
1330
+ </status>
1331
+ <status>
1332
+ <created_at>Sat Jul 18 17:51:14 +0000 2009</created_at>
1333
+ <id>2709149484</id>
1334
+ <text>Wanna give a Heeey! to my newest tweet friend MJBdaMVP.
1335
+ Miss Mary J. Blige.
1336
+ tweeters send her some love.</text>
1337
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1338
+ <truncated>false</truncated>
1339
+ <in_reply_to_status_id></in_reply_to_status_id>
1340
+ <in_reply_to_user_id></in_reply_to_user_id>
1341
+ <favorited>false</favorited>
1342
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1343
+ <user>
1344
+ <id>19397785</id>
1345
+ <name>Oprah Winfrey</name>
1346
+ <screen_name>Oprah</screen_name>
1347
+ <location>Chicago, IL</location>
1348
+ <description>Live Your Best Life</description>
1349
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1350
+ <url>http://www.oprah.com</url>
1351
+ <protected>false</protected>
1352
+ <followers_count>2630437</followers_count>
1353
+ <profile_background_color>2f73f1</profile_background_color>
1354
+ <profile_text_color>333333</profile_text_color>
1355
+ <profile_link_color>0084B4</profile_link_color>
1356
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1357
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1358
+ <friends_count>17</friends_count>
1359
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1360
+ <favourites_count>0</favourites_count>
1361
+ <utc_offset>-21600</utc_offset>
1362
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1363
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1364
+ <profile_background_tile>false</profile_background_tile>
1365
+ <statuses_count>88</statuses_count>
1366
+ <notifications>false</notifications>
1367
+ <geo_enabled>false</geo_enabled>
1368
+ <verified>true</verified>
1369
+ <following>true</following>
1370
+ </user>
1371
+ <geo/>
1372
+ </status>
1373
+ <status>
1374
+ <created_at>Thu Jul 16 23:12:53 +0000 2009</created_at>
1375
+ <id>2678108742</id>
1376
+ <text>He's a real hero. If you want to honor this great man, go to MandelaDay.com to celebrate his life and legacy.</text>
1377
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1378
+ <truncated>false</truncated>
1379
+ <in_reply_to_status_id></in_reply_to_status_id>
1380
+ <in_reply_to_user_id></in_reply_to_user_id>
1381
+ <favorited>false</favorited>
1382
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1383
+ <user>
1384
+ <id>19397785</id>
1385
+ <name>Oprah Winfrey</name>
1386
+ <screen_name>Oprah</screen_name>
1387
+ <location>Chicago, IL</location>
1388
+ <description>Live Your Best Life</description>
1389
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1390
+ <url>http://www.oprah.com</url>
1391
+ <protected>false</protected>
1392
+ <followers_count>2581799</followers_count>
1393
+ <profile_background_color>2f73f1</profile_background_color>
1394
+ <profile_text_color>333333</profile_text_color>
1395
+ <profile_link_color>0084B4</profile_link_color>
1396
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1397
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1398
+ <friends_count>17</friends_count>
1399
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1400
+ <favourites_count>0</favourites_count>
1401
+ <utc_offset>-21600</utc_offset>
1402
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1403
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1404
+ <profile_background_tile>false</profile_background_tile>
1405
+ <statuses_count>86</statuses_count>
1406
+ <notifications>false</notifications>
1407
+ <geo_enabled>false</geo_enabled>
1408
+ <verified>true</verified>
1409
+ <following>true</following>
1410
+ </user>
1411
+ <geo/>
1412
+ </status>
1413
+ <status>
1414
+ <created_at>Thu Jul 16 23:11:32 +0000 2009</created_at>
1415
+ <id>2678088186</id>
1416
+ <text>Just saw Nelson Mandela who looks fantastic at 91, still telling jokes.</text>
1417
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1418
+ <truncated>false</truncated>
1419
+ <in_reply_to_status_id></in_reply_to_status_id>
1420
+ <in_reply_to_user_id></in_reply_to_user_id>
1421
+ <favorited>false</favorited>
1422
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1423
+ <user>
1424
+ <id>19397785</id>
1425
+ <name>Oprah Winfrey</name>
1426
+ <screen_name>Oprah</screen_name>
1427
+ <location>Chicago, IL</location>
1428
+ <description>Live Your Best Life</description>
1429
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1430
+ <url>http://www.oprah.com</url>
1431
+ <protected>false</protected>
1432
+ <followers_count>2637432</followers_count>
1433
+ <profile_background_color>2f73f1</profile_background_color>
1434
+ <profile_text_color>333333</profile_text_color>
1435
+ <profile_link_color>0084B4</profile_link_color>
1436
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1437
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1438
+ <friends_count>17</friends_count>
1439
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1440
+ <favourites_count>0</favourites_count>
1441
+ <utc_offset>-21600</utc_offset>
1442
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1443
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1444
+ <profile_background_tile>false</profile_background_tile>
1445
+ <statuses_count>88</statuses_count>
1446
+ <notifications>false</notifications>
1447
+ <geo_enabled>false</geo_enabled>
1448
+ <verified>true</verified>
1449
+ <following>true</following>
1450
+ </user>
1451
+ <geo/>
1452
+ </status>
1453
+ <status>
1454
+ <created_at>Wed Jul 15 10:23:50 +0000 2009</created_at>
1455
+ <id>2649016227</id>
1456
+ <text>14 day thank you cruise for all their hard work. Most grateful to get everyone home safely.</text>
1457
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1458
+ <truncated>false</truncated>
1459
+ <in_reply_to_status_id></in_reply_to_status_id>
1460
+ <in_reply_to_user_id></in_reply_to_user_id>
1461
+ <favorited>false</favorited>
1462
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1463
+ <user>
1464
+ <id>19397785</id>
1465
+ <name>Oprah Winfrey</name>
1466
+ <screen_name>Oprah</screen_name>
1467
+ <location>Chicago, IL</location>
1468
+ <description>Live Your Best Life</description>
1469
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1470
+ <url>http://www.oprah.com</url>
1471
+ <protected>false</protected>
1472
+ <followers_count>2592146</followers_count>
1473
+ <profile_background_color>2f73f1</profile_background_color>
1474
+ <profile_text_color>333333</profile_text_color>
1475
+ <profile_link_color>0084B4</profile_link_color>
1476
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1477
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1478
+ <friends_count>17</friends_count>
1479
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1480
+ <favourites_count>0</favourites_count>
1481
+ <utc_offset>-21600</utc_offset>
1482
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1483
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1484
+ <profile_background_tile>false</profile_background_tile>
1485
+ <statuses_count>86</statuses_count>
1486
+ <notifications>false</notifications>
1487
+ <geo_enabled>false</geo_enabled>
1488
+ <verified>true</verified>
1489
+ <following>true</following>
1490
+ </user>
1491
+ <geo/>
1492
+ </status>
1493
+ <status>
1494
+ <created_at>Wed Jul 15 10:23:12 +0000 2009</created_at>
1495
+ <id>2649011622</id>
1496
+ <text>Been traveling with all my peeps 1525 harponians and their families to 5 countries 7 cities. .</text>
1497
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1498
+ <truncated>false</truncated>
1499
+ <in_reply_to_status_id></in_reply_to_status_id>
1500
+ <in_reply_to_user_id></in_reply_to_user_id>
1501
+ <favorited>false</favorited>
1502
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1503
+ <user>
1504
+ <id>19397785</id>
1505
+ <name>Oprah Winfrey</name>
1506
+ <screen_name>Oprah</screen_name>
1507
+ <location>Chicago, IL</location>
1508
+ <description>Live Your Best Life</description>
1509
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1510
+ <url>http://www.oprah.com</url>
1511
+ <protected>false</protected>
1512
+ <followers_count>2643060</followers_count>
1513
+ <profile_background_color>2f73f1</profile_background_color>
1514
+ <profile_text_color>333333</profile_text_color>
1515
+ <profile_link_color>0084B4</profile_link_color>
1516
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1517
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1518
+ <friends_count>17</friends_count>
1519
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1520
+ <favourites_count>0</favourites_count>
1521
+ <utc_offset>-21600</utc_offset>
1522
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1523
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1524
+ <profile_background_tile>false</profile_background_tile>
1525
+ <statuses_count>88</statuses_count>
1526
+ <notifications>false</notifications>
1527
+ <geo_enabled>false</geo_enabled>
1528
+ <verified>true</verified>
1529
+ <following>true</following>
1530
+ </user>
1531
+ <geo/>
1532
+ </status>
1533
+ <status>
1534
+ <created_at>Sat Jun 06 23:21:25 +0000 2009</created_at>
1535
+ <id>2059154857</id>
1536
+ <text>Today went to see Phylicia Rashad in AUGUST: OSAGE COUNTY. It too was outstanding. Makes me crave BROADWAY!!</text>
1537
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1538
+ <truncated>false</truncated>
1539
+ <in_reply_to_status_id></in_reply_to_status_id>
1540
+ <in_reply_to_user_id></in_reply_to_user_id>
1541
+ <favorited>false</favorited>
1542
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1543
+ <user>
1544
+ <id>19397785</id>
1545
+ <name>Oprah Winfrey</name>
1546
+ <screen_name>Oprah</screen_name>
1547
+ <location>Chicago, IL</location>
1548
+ <description>Live Your Best Life</description>
1549
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1550
+ <url>http://www.oprah.com</url>
1551
+ <protected>false</protected>
1552
+ <followers_count>2599366</followers_count>
1553
+ <profile_background_color>2f73f1</profile_background_color>
1554
+ <profile_text_color>333333</profile_text_color>
1555
+ <profile_link_color>0084B4</profile_link_color>
1556
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1557
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1558
+ <friends_count>17</friends_count>
1559
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1560
+ <favourites_count>0</favourites_count>
1561
+ <utc_offset>-21600</utc_offset>
1562
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1563
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1564
+ <profile_background_tile>false</profile_background_tile>
1565
+ <statuses_count>87</statuses_count>
1566
+ <notifications>false</notifications>
1567
+ <geo_enabled>false</geo_enabled>
1568
+ <verified>true</verified>
1569
+ <following>true</following>
1570
+ </user>
1571
+ <geo/>
1572
+ </status>
1573
+ <status>
1574
+ <created_at>Sat Jun 06 23:19:42 +0000 2009</created_at>
1575
+ <id>2059140773</id>
1576
+ <text>Still haunted by the glorious performances in RUINED.</text>
1577
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1578
+ <truncated>false</truncated>
1579
+ <in_reply_to_status_id></in_reply_to_status_id>
1580
+ <in_reply_to_user_id></in_reply_to_user_id>
1581
+ <favorited>false</favorited>
1582
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1583
+ <user>
1584
+ <id>19397785</id>
1585
+ <name>Oprah Winfrey</name>
1586
+ <screen_name>Oprah</screen_name>
1587
+ <location>Chicago, IL</location>
1588
+ <description>Live Your Best Life</description>
1589
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1590
+ <url>http://www.oprah.com</url>
1591
+ <protected>false</protected>
1592
+ <followers_count>2604690</followers_count>
1593
+ <profile_background_color>2f73f1</profile_background_color>
1594
+ <profile_text_color>333333</profile_text_color>
1595
+ <profile_link_color>0084B4</profile_link_color>
1596
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1597
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1598
+ <friends_count>17</friends_count>
1599
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1600
+ <favourites_count>0</favourites_count>
1601
+ <utc_offset>-21600</utc_offset>
1602
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1603
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1604
+ <profile_background_tile>false</profile_background_tile>
1605
+ <statuses_count>87</statuses_count>
1606
+ <notifications>false</notifications>
1607
+ <geo_enabled>false</geo_enabled>
1608
+ <verified>true</verified>
1609
+ <following>true</following>
1610
+ </user>
1611
+ <geo/>
1612
+ </status>
1613
+ <status>
1614
+ <created_at>Sat Jun 06 04:20:27 +0000 2009</created_at>
1615
+ <id>2051251724</id>
1616
+ <text>Jane says why would you come without tissue? I had no IDEA! BRAVO BRAVO!!</text>
1617
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1618
+ <truncated>false</truncated>
1619
+ <in_reply_to_status_id></in_reply_to_status_id>
1620
+ <in_reply_to_user_id></in_reply_to_user_id>
1621
+ <favorited>false</favorited>
1622
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1623
+ <user>
1624
+ <id>19397785</id>
1625
+ <name>Oprah Winfrey</name>
1626
+ <screen_name>Oprah</screen_name>
1627
+ <location>Chicago, IL</location>
1628
+ <description>Live Your Best Life</description>
1629
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1630
+ <url>http://www.oprah.com</url>
1631
+ <protected>false</protected>
1632
+ <followers_count>2590778</followers_count>
1633
+ <profile_background_color>2f73f1</profile_background_color>
1634
+ <profile_text_color>333333</profile_text_color>
1635
+ <profile_link_color>0084B4</profile_link_color>
1636
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1637
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1638
+ <friends_count>17</friends_count>
1639
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1640
+ <favourites_count>0</favourites_count>
1641
+ <utc_offset>-21600</utc_offset>
1642
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1643
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1644
+ <profile_background_tile>false</profile_background_tile>
1645
+ <statuses_count>86</statuses_count>
1646
+ <notifications>true</notifications>
1647
+ <geo_enabled>false</geo_enabled>
1648
+ <verified>true</verified>
1649
+ <following>true</following>
1650
+ </user>
1651
+ <geo/>
1652
+ </status>
1653
+ <status>
1654
+ <created_at>Sat Jun 06 04:18:30 +0000 2009</created_at>
1655
+ <id>2051244320</id>
1656
+ <text>Just saw RUINED.... OMG..... EVERY SINGLE PERSON ON STAGE WAS OUTSTANDING.... Boo-hooing next to Jane Fonda had to borrow tissue.</text>
1657
+ <source>&lt;a href=&quot;http://orangatame.com/products/twitterberry/&quot; rel=&quot;nofollow&quot;&gt;TwitterBerry&lt;/a&gt;</source>
1658
+ <truncated>false</truncated>
1659
+ <in_reply_to_status_id></in_reply_to_status_id>
1660
+ <in_reply_to_user_id></in_reply_to_user_id>
1661
+ <favorited>false</favorited>
1662
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1663
+ <user>
1664
+ <id>19397785</id>
1665
+ <name>Oprah Winfrey</name>
1666
+ <screen_name>Oprah</screen_name>
1667
+ <location>Chicago, IL</location>
1668
+ <description>Live Your Best Life</description>
1669
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1670
+ <url>http://www.oprah.com</url>
1671
+ <protected>false</protected>
1672
+ <followers_count>2636411</followers_count>
1673
+ <profile_background_color>2f73f1</profile_background_color>
1674
+ <profile_text_color>333333</profile_text_color>
1675
+ <profile_link_color>0084B4</profile_link_color>
1676
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1677
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1678
+ <friends_count>17</friends_count>
1679
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1680
+ <favourites_count>0</favourites_count>
1681
+ <utc_offset>-21600</utc_offset>
1682
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1683
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1684
+ <profile_background_tile>false</profile_background_tile>
1685
+ <statuses_count>88</statuses_count>
1686
+ <notifications>false</notifications>
1687
+ <geo_enabled>false</geo_enabled>
1688
+ <verified>true</verified>
1689
+ <following>true</following>
1690
+ </user>
1691
+ <geo/>
1692
+ </status>
1693
+ <status>
1694
+ <created_at>Fri May 29 21:43:06 +0000 2009</created_at>
1695
+ <id>1964735325</id>
1696
+ <text>A reminder: BUYER BEWARE: I have NOTHING to do with acai berry scams on internet. Have tasted only ONE time on my show.</text>
1697
+ <source>web</source>
1698
+ <truncated>false</truncated>
1699
+ <in_reply_to_status_id></in_reply_to_status_id>
1700
+ <in_reply_to_user_id></in_reply_to_user_id>
1701
+ <favorited>false</favorited>
1702
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1703
+ <user>
1704
+ <id>19397785</id>
1705
+ <name>Oprah Winfrey</name>
1706
+ <screen_name>Oprah</screen_name>
1707
+ <location>Chicago, IL</location>
1708
+ <description>Live Your Best Life</description>
1709
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1710
+ <url>http://www.oprah.com</url>
1711
+ <protected>false</protected>
1712
+ <followers_count>2637432</followers_count>
1713
+ <profile_background_color>2f73f1</profile_background_color>
1714
+ <profile_text_color>333333</profile_text_color>
1715
+ <profile_link_color>0084B4</profile_link_color>
1716
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1717
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1718
+ <friends_count>17</friends_count>
1719
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1720
+ <favourites_count>0</favourites_count>
1721
+ <utc_offset>-21600</utc_offset>
1722
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1723
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1724
+ <profile_background_tile>false</profile_background_tile>
1725
+ <statuses_count>88</statuses_count>
1726
+ <notifications>false</notifications>
1727
+ <geo_enabled>false</geo_enabled>
1728
+ <verified>true</verified>
1729
+ <following>true</following>
1730
+ </user>
1731
+ <geo/>
1732
+ </status>
1733
+ <status>
1734
+ <created_at>Thu May 28 02:11:50 +0000 2009</created_at>
1735
+ <id>1942430580</id>
1736
+ <text>Thanks tweeple. Will try Avon SSS...Know it works for mosquitos. Must be a macho strain of ticks this year!</text>
1737
+ <source>web</source>
1738
+ <truncated>false</truncated>
1739
+ <in_reply_to_status_id></in_reply_to_status_id>
1740
+ <in_reply_to_user_id></in_reply_to_user_id>
1741
+ <favorited>false</favorited>
1742
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1743
+ <user>
1744
+ <id>19397785</id>
1745
+ <name>Oprah Winfrey</name>
1746
+ <screen_name>Oprah</screen_name>
1747
+ <location>Chicago, IL</location>
1748
+ <description>Live Your Best Life</description>
1749
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1750
+ <url>http://www.oprah.com</url>
1751
+ <protected>false</protected>
1752
+ <followers_count>2590778</followers_count>
1753
+ <profile_background_color>2f73f1</profile_background_color>
1754
+ <profile_text_color>333333</profile_text_color>
1755
+ <profile_link_color>0084B4</profile_link_color>
1756
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1757
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1758
+ <friends_count>17</friends_count>
1759
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1760
+ <favourites_count>0</favourites_count>
1761
+ <utc_offset>-21600</utc_offset>
1762
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1763
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1764
+ <profile_background_tile>false</profile_background_tile>
1765
+ <statuses_count>86</statuses_count>
1766
+ <notifications>true</notifications>
1767
+ <geo_enabled>false</geo_enabled>
1768
+ <verified>true</verified>
1769
+ <following>true</following>
1770
+ </user>
1771
+ <geo/>
1772
+ </status>
1773
+ <status>
1774
+ <created_at>Wed May 27 23:46:30 +0000 2009</created_at>
1775
+ <id>1941055073</id>
1776
+ <text>Anybody got a surefire remedy for ticks? Just pulled 8 off of 1 dog. None of the prescribed vet meds seem to be working.</text>
1777
+ <source>web</source>
1778
+ <truncated>false</truncated>
1779
+ <in_reply_to_status_id></in_reply_to_status_id>
1780
+ <in_reply_to_user_id></in_reply_to_user_id>
1781
+ <favorited>false</favorited>
1782
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1783
+ <user>
1784
+ <id>19397785</id>
1785
+ <name>Oprah Winfrey</name>
1786
+ <screen_name>Oprah</screen_name>
1787
+ <location>Chicago, IL</location>
1788
+ <description>Live Your Best Life</description>
1789
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1790
+ <url>http://www.oprah.com</url>
1791
+ <protected>false</protected>
1792
+ <followers_count>2597683</followers_count>
1793
+ <profile_background_color>2f73f1</profile_background_color>
1794
+ <profile_text_color>333333</profile_text_color>
1795
+ <profile_link_color>0084B4</profile_link_color>
1796
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1797
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1798
+ <friends_count>17</friends_count>
1799
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1800
+ <favourites_count>0</favourites_count>
1801
+ <utc_offset>-21600</utc_offset>
1802
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1803
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1804
+ <profile_background_tile>false</profile_background_tile>
1805
+ <statuses_count>87</statuses_count>
1806
+ <notifications>false</notifications>
1807
+ <geo_enabled>false</geo_enabled>
1808
+ <verified>true</verified>
1809
+ <following>true</following>
1810
+ </user>
1811
+ <geo/>
1812
+ </status>
1813
+ <status>
1814
+ <created_at>Fri May 15 21:14:31 +0000 2009</created_at>
1815
+ <id>1810320321</id>
1816
+ <text>Why I LOVED today's show: puppies get saved. Prisoners get healed. Soldiers get helped. Full circle blessing. Thanks for watching.</text>
1817
+ <source>web</source>
1818
+ <truncated>false</truncated>
1819
+ <in_reply_to_status_id></in_reply_to_status_id>
1820
+ <in_reply_to_user_id></in_reply_to_user_id>
1821
+ <favorited>false</favorited>
1822
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1823
+ <user>
1824
+ <id>19397785</id>
1825
+ <name>Oprah Winfrey</name>
1826
+ <screen_name>Oprah</screen_name>
1827
+ <location>Chicago, IL</location>
1828
+ <description>Live Your Best Life</description>
1829
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1830
+ <url>http://www.oprah.com</url>
1831
+ <protected>false</protected>
1832
+ <followers_count>2598859</followers_count>
1833
+ <profile_background_color>2f73f1</profile_background_color>
1834
+ <profile_text_color>333333</profile_text_color>
1835
+ <profile_link_color>0084B4</profile_link_color>
1836
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1837
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1838
+ <friends_count>17</friends_count>
1839
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1840
+ <favourites_count>0</favourites_count>
1841
+ <utc_offset>-21600</utc_offset>
1842
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1843
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1844
+ <profile_background_tile>false</profile_background_tile>
1845
+ <statuses_count>87</statuses_count>
1846
+ <notifications>false</notifications>
1847
+ <geo_enabled>false</geo_enabled>
1848
+ <verified>true</verified>
1849
+ <following>true</following>
1850
+ </user>
1851
+ <geo/>
1852
+ </status>
1853
+ <status>
1854
+ <created_at>Fri May 15 19:38:48 +0000 2009</created_at>
1855
+ <id>1809418953</id>
1856
+ <text>Today's show- One of my favorite shows of allllll time. Don't miss or tivo- Prisoners and puppies story with Glenn Close. 1st half hour.</text>
1857
+ <source>web</source>
1858
+ <truncated>false</truncated>
1859
+ <in_reply_to_status_id></in_reply_to_status_id>
1860
+ <in_reply_to_user_id></in_reply_to_user_id>
1861
+ <favorited>false</favorited>
1862
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1863
+ <user>
1864
+ <id>19397785</id>
1865
+ <name>Oprah Winfrey</name>
1866
+ <screen_name>Oprah</screen_name>
1867
+ <location>Chicago, IL</location>
1868
+ <description>Live Your Best Life</description>
1869
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1870
+ <url>http://www.oprah.com</url>
1871
+ <protected>false</protected>
1872
+ <followers_count>2583723</followers_count>
1873
+ <profile_background_color>2f73f1</profile_background_color>
1874
+ <profile_text_color>333333</profile_text_color>
1875
+ <profile_link_color>0084B4</profile_link_color>
1876
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1877
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1878
+ <friends_count>17</friends_count>
1879
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1880
+ <favourites_count>0</favourites_count>
1881
+ <utc_offset>-21600</utc_offset>
1882
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1883
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1884
+ <profile_background_tile>false</profile_background_tile>
1885
+ <statuses_count>86</statuses_count>
1886
+ <notifications>false</notifications>
1887
+ <geo_enabled>false</geo_enabled>
1888
+ <verified>true</verified>
1889
+ <following>true</following>
1890
+ </user>
1891
+ <geo/>
1892
+ </status>
1893
+ <status>
1894
+ <created_at>Sun May 10 22:39:57 +0000 2009</created_at>
1895
+ <id>1757951072</id>
1896
+ <text>Great day at Duke. Love North Carolina. My godson got 2 degrees. Psych and Chinese. Headed to Maya's for dinner.</text>
1897
+ <source>web</source>
1898
+ <truncated>false</truncated>
1899
+ <in_reply_to_status_id></in_reply_to_status_id>
1900
+ <in_reply_to_user_id></in_reply_to_user_id>
1901
+ <favorited>false</favorited>
1902
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1903
+ <user>
1904
+ <id>19397785</id>
1905
+ <name>Oprah Winfrey</name>
1906
+ <screen_name>Oprah</screen_name>
1907
+ <location>Chicago, IL</location>
1908
+ <description>Live Your Best Life</description>
1909
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1910
+ <url>http://www.oprah.com</url>
1911
+ <protected>false</protected>
1912
+ <followers_count>2604690</followers_count>
1913
+ <profile_background_color>2f73f1</profile_background_color>
1914
+ <profile_text_color>333333</profile_text_color>
1915
+ <profile_link_color>0084B4</profile_link_color>
1916
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1917
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1918
+ <friends_count>17</friends_count>
1919
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1920
+ <favourites_count>0</favourites_count>
1921
+ <utc_offset>-21600</utc_offset>
1922
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1923
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1924
+ <profile_background_tile>false</profile_background_tile>
1925
+ <statuses_count>87</statuses_count>
1926
+ <notifications>false</notifications>
1927
+ <geo_enabled>false</geo_enabled>
1928
+ <verified>true</verified>
1929
+ <following>true</following>
1930
+ </user>
1931
+ <geo/>
1932
+ </status>
1933
+ <status>
1934
+ <created_at>Sun May 10 15:17:45 +0000 2009</created_at>
1935
+ <id>1755114528</id>
1936
+ <text>speaking at Duke Graduation in a few minutes. Streaming Live on Oprah.com.</text>
1937
+ <source>web</source>
1938
+ <truncated>false</truncated>
1939
+ <in_reply_to_status_id></in_reply_to_status_id>
1940
+ <in_reply_to_user_id></in_reply_to_user_id>
1941
+ <favorited>false</favorited>
1942
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1943
+ <user>
1944
+ <id>19397785</id>
1945
+ <name>Oprah Winfrey</name>
1946
+ <screen_name>Oprah</screen_name>
1947
+ <location>Chicago, IL</location>
1948
+ <description>Live Your Best Life</description>
1949
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1950
+ <url>http://www.oprah.com</url>
1951
+ <protected>false</protected>
1952
+ <followers_count>2599227</followers_count>
1953
+ <profile_background_color>2f73f1</profile_background_color>
1954
+ <profile_text_color>333333</profile_text_color>
1955
+ <profile_link_color>0084B4</profile_link_color>
1956
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1957
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1958
+ <friends_count>17</friends_count>
1959
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
1960
+ <favourites_count>0</favourites_count>
1961
+ <utc_offset>-21600</utc_offset>
1962
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
1963
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
1964
+ <profile_background_tile>false</profile_background_tile>
1965
+ <statuses_count>87</statuses_count>
1966
+ <notifications>false</notifications>
1967
+ <geo_enabled>false</geo_enabled>
1968
+ <verified>true</verified>
1969
+ <following>true</following>
1970
+ </user>
1971
+ <geo/>
1972
+ </status>
1973
+ <status>
1974
+ <created_at>Sat May 09 22:55:29 +0000 2009</created_at>
1975
+ <id>1749982868</id>
1976
+ <text>Right now everything looks good as the weather cooled, the winds are favorable and the firefighters are making a lot of progress.</text>
1977
+ <source>web</source>
1978
+ <truncated>false</truncated>
1979
+ <in_reply_to_status_id></in_reply_to_status_id>
1980
+ <in_reply_to_user_id></in_reply_to_user_id>
1981
+ <favorited>false</favorited>
1982
+ <in_reply_to_screen_name></in_reply_to_screen_name>
1983
+ <user>
1984
+ <id>19397785</id>
1985
+ <name>Oprah Winfrey</name>
1986
+ <screen_name>Oprah</screen_name>
1987
+ <location>Chicago, IL</location>
1988
+ <description>Live Your Best Life</description>
1989
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
1990
+ <url>http://www.oprah.com</url>
1991
+ <protected>false</protected>
1992
+ <followers_count>2599549</followers_count>
1993
+ <profile_background_color>2f73f1</profile_background_color>
1994
+ <profile_text_color>333333</profile_text_color>
1995
+ <profile_link_color>0084B4</profile_link_color>
1996
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
1997
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
1998
+ <friends_count>17</friends_count>
1999
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2000
+ <favourites_count>0</favourites_count>
2001
+ <utc_offset>-21600</utc_offset>
2002
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2003
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2004
+ <profile_background_tile>false</profile_background_tile>
2005
+ <statuses_count>87</statuses_count>
2006
+ <notifications>false</notifications>
2007
+ <geo_enabled>false</geo_enabled>
2008
+ <verified>true</verified>
2009
+ <following>true</following>
2010
+ </user>
2011
+ <geo/>
2012
+ </status>
2013
+ <status>
2014
+ <created_at>Sat May 09 22:55:15 +0000 2009</created_at>
2015
+ <id>1749981319</id>
2016
+ <text>Thanks tweeps for your good thoughts&#8230;</text>
2017
+ <source>web</source>
2018
+ <truncated>false</truncated>
2019
+ <in_reply_to_status_id></in_reply_to_status_id>
2020
+ <in_reply_to_user_id></in_reply_to_user_id>
2021
+ <favorited>false</favorited>
2022
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2023
+ <user>
2024
+ <id>19397785</id>
2025
+ <name>Oprah Winfrey</name>
2026
+ <screen_name>Oprah</screen_name>
2027
+ <location>Chicago, IL</location>
2028
+ <description>Live Your Best Life</description>
2029
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2030
+ <url>http://www.oprah.com</url>
2031
+ <protected>false</protected>
2032
+ <followers_count>2637432</followers_count>
2033
+ <profile_background_color>2f73f1</profile_background_color>
2034
+ <profile_text_color>333333</profile_text_color>
2035
+ <profile_link_color>0084B4</profile_link_color>
2036
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2037
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2038
+ <friends_count>17</friends_count>
2039
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2040
+ <favourites_count>0</favourites_count>
2041
+ <utc_offset>-21600</utc_offset>
2042
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2043
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2044
+ <profile_background_tile>false</profile_background_tile>
2045
+ <statuses_count>88</statuses_count>
2046
+ <notifications>false</notifications>
2047
+ <geo_enabled>false</geo_enabled>
2048
+ <verified>true</verified>
2049
+ <following>true</following>
2050
+ </user>
2051
+ <geo/>
2052
+ </status>
2053
+ <status>
2054
+ <created_at>Sat May 09 13:15:26 +0000 2009</created_at>
2055
+ <id>1746072556</id>
2056
+ <text>The fire moved up the mountain burning grassland. Praying the winds don't change.</text>
2057
+ <source>web</source>
2058
+ <truncated>false</truncated>
2059
+ <in_reply_to_status_id></in_reply_to_status_id>
2060
+ <in_reply_to_user_id></in_reply_to_user_id>
2061
+ <favorited>false</favorited>
2062
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2063
+ <user>
2064
+ <id>19397785</id>
2065
+ <name>Oprah Winfrey</name>
2066
+ <screen_name>Oprah</screen_name>
2067
+ <location>Chicago, IL</location>
2068
+ <description>Live Your Best Life</description>
2069
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2070
+ <url>http://www.oprah.com</url>
2071
+ <protected>false</protected>
2072
+ <followers_count>2637432</followers_count>
2073
+ <profile_background_color>2f73f1</profile_background_color>
2074
+ <profile_text_color>333333</profile_text_color>
2075
+ <profile_link_color>0084B4</profile_link_color>
2076
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2077
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2078
+ <friends_count>17</friends_count>
2079
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2080
+ <favourites_count>0</favourites_count>
2081
+ <utc_offset>-21600</utc_offset>
2082
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2083
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2084
+ <profile_background_tile>false</profile_background_tile>
2085
+ <statuses_count>88</statuses_count>
2086
+ <notifications>false</notifications>
2087
+ <geo_enabled>false</geo_enabled>
2088
+ <verified>true</verified>
2089
+ <following>true</following>
2090
+ </user>
2091
+ <geo/>
2092
+ </status>
2093
+ <status>
2094
+ <created_at>Sat May 09 13:15:11 +0000 2009</created_at>
2095
+ <id>1746071294</id>
2096
+ <text>Thank God the winds died down in Santa B. And fog rolled in.</text>
2097
+ <source>web</source>
2098
+ <truncated>false</truncated>
2099
+ <in_reply_to_status_id></in_reply_to_status_id>
2100
+ <in_reply_to_user_id></in_reply_to_user_id>
2101
+ <favorited>false</favorited>
2102
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2103
+ <user>
2104
+ <id>19397785</id>
2105
+ <name>Oprah Winfrey</name>
2106
+ <screen_name>Oprah</screen_name>
2107
+ <location>Chicago, IL</location>
2108
+ <description>Live Your Best Life</description>
2109
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2110
+ <url>http://www.oprah.com</url>
2111
+ <protected>false</protected>
2112
+ <followers_count>2599366</followers_count>
2113
+ <profile_background_color>2f73f1</profile_background_color>
2114
+ <profile_text_color>333333</profile_text_color>
2115
+ <profile_link_color>0084B4</profile_link_color>
2116
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2117
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2118
+ <friends_count>17</friends_count>
2119
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2120
+ <favourites_count>0</favourites_count>
2121
+ <utc_offset>-21600</utc_offset>
2122
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2123
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2124
+ <profile_background_tile>false</profile_background_tile>
2125
+ <statuses_count>87</statuses_count>
2126
+ <notifications>false</notifications>
2127
+ <geo_enabled>false</geo_enabled>
2128
+ <verified>true</verified>
2129
+ <following>true</following>
2130
+ </user>
2131
+ <geo/>
2132
+ </status>
2133
+ <status>
2134
+ <created_at>Sat May 09 01:52:02 +0000 2009</created_at>
2135
+ <id>1742738633</id>
2136
+ <text>Check out Seal from after our show today! http://tinyurl.com/pqse3w</text>
2137
+ <source>web</source>
2138
+ <truncated>false</truncated>
2139
+ <in_reply_to_status_id></in_reply_to_status_id>
2140
+ <in_reply_to_user_id></in_reply_to_user_id>
2141
+ <favorited>false</favorited>
2142
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2143
+ <user>
2144
+ <id>19397785</id>
2145
+ <name>Oprah Winfrey</name>
2146
+ <screen_name>Oprah</screen_name>
2147
+ <location>Chicago, IL</location>
2148
+ <description>Live Your Best Life</description>
2149
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2150
+ <url>http://www.oprah.com</url>
2151
+ <protected>false</protected>
2152
+ <followers_count>2637432</followers_count>
2153
+ <profile_background_color>2f73f1</profile_background_color>
2154
+ <profile_text_color>333333</profile_text_color>
2155
+ <profile_link_color>0084B4</profile_link_color>
2156
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2157
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2158
+ <friends_count>17</friends_count>
2159
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2160
+ <favourites_count>0</favourites_count>
2161
+ <utc_offset>-21600</utc_offset>
2162
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2163
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2164
+ <profile_background_tile>false</profile_background_tile>
2165
+ <statuses_count>88</statuses_count>
2166
+ <notifications>false</notifications>
2167
+ <geo_enabled>false</geo_enabled>
2168
+ <verified>true</verified>
2169
+ <following>true</following>
2170
+ </user>
2171
+ <geo/>
2172
+ </status>
2173
+ <status>
2174
+ <created_at>Sat May 09 01:11:06 +0000 2009</created_at>
2175
+ <id>1742406610</id>
2176
+ <text>finished taping my last show of the season today. Not quite off for the summer. But do get a break. Thanks tweeple for another great year.</text>
2177
+ <source>web</source>
2178
+ <truncated>false</truncated>
2179
+ <in_reply_to_status_id></in_reply_to_status_id>
2180
+ <in_reply_to_user_id></in_reply_to_user_id>
2181
+ <favorited>false</favorited>
2182
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2183
+ <user>
2184
+ <id>19397785</id>
2185
+ <name>Oprah Winfrey</name>
2186
+ <screen_name>Oprah</screen_name>
2187
+ <location>Chicago, IL</location>
2188
+ <description>Live Your Best Life</description>
2189
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2190
+ <url>http://www.oprah.com</url>
2191
+ <protected>false</protected>
2192
+ <followers_count>2631093</followers_count>
2193
+ <profile_background_color>2f73f1</profile_background_color>
2194
+ <profile_text_color>333333</profile_text_color>
2195
+ <profile_link_color>0084B4</profile_link_color>
2196
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2197
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2198
+ <friends_count>17</friends_count>
2199
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2200
+ <favourites_count>0</favourites_count>
2201
+ <utc_offset>-21600</utc_offset>
2202
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2203
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2204
+ <profile_background_tile>false</profile_background_tile>
2205
+ <statuses_count>88</statuses_count>
2206
+ <notifications>false</notifications>
2207
+ <geo_enabled>false</geo_enabled>
2208
+ <verified>true</verified>
2209
+ <following>true</following>
2210
+ </user>
2211
+ <geo/>
2212
+ </status>
2213
+ <status>
2214
+ <created_at>Wed May 06 04:03:39 +0000 2009</created_at>
2215
+ <id>1713576844</id>
2216
+ <text>John Legend is everything Q wrote about and more in TIME. great performance. But hard to get INFLUENTIALS to dance in public.</text>
2217
+ <source>web</source>
2218
+ <truncated>false</truncated>
2219
+ <in_reply_to_status_id></in_reply_to_status_id>
2220
+ <in_reply_to_user_id></in_reply_to_user_id>
2221
+ <favorited>false</favorited>
2222
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2223
+ <user>
2224
+ <id>19397785</id>
2225
+ <name>Oprah Winfrey</name>
2226
+ <screen_name>Oprah</screen_name>
2227
+ <location>Chicago, IL</location>
2228
+ <description>Live Your Best Life</description>
2229
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2230
+ <url>http://www.oprah.com</url>
2231
+ <protected>false</protected>
2232
+ <followers_count>2599227</followers_count>
2233
+ <profile_background_color>2f73f1</profile_background_color>
2234
+ <profile_text_color>333333</profile_text_color>
2235
+ <profile_link_color>0084B4</profile_link_color>
2236
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2237
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2238
+ <friends_count>17</friends_count>
2239
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2240
+ <favourites_count>0</favourites_count>
2241
+ <utc_offset>-21600</utc_offset>
2242
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2243
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2244
+ <profile_background_tile>false</profile_background_tile>
2245
+ <statuses_count>87</statuses_count>
2246
+ <notifications>false</notifications>
2247
+ <geo_enabled>false</geo_enabled>
2248
+ <verified>true</verified>
2249
+ <following>true</following>
2250
+ </user>
2251
+ <geo/>
2252
+ </status>
2253
+ <status>
2254
+ <created_at>Wed May 06 03:38:30 +0000 2009</created_at>
2255
+ <id>1713381713</id>
2256
+ <text>Got to hug Whoopi. Haven't seen her since????! What a fun night.</text>
2257
+ <source>web</source>
2258
+ <truncated>false</truncated>
2259
+ <in_reply_to_status_id></in_reply_to_status_id>
2260
+ <in_reply_to_user_id></in_reply_to_user_id>
2261
+ <favorited>false</favorited>
2262
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2263
+ <user>
2264
+ <id>19397785</id>
2265
+ <name>Oprah Winfrey</name>
2266
+ <screen_name>Oprah</screen_name>
2267
+ <location>Chicago, IL</location>
2268
+ <description>Live Your Best Life</description>
2269
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2270
+ <url>http://www.oprah.com</url>
2271
+ <protected>false</protected>
2272
+ <followers_count>2599227</followers_count>
2273
+ <profile_background_color>2f73f1</profile_background_color>
2274
+ <profile_text_color>333333</profile_text_color>
2275
+ <profile_link_color>0084B4</profile_link_color>
2276
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2277
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2278
+ <friends_count>17</friends_count>
2279
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2280
+ <favourites_count>0</favourites_count>
2281
+ <utc_offset>-21600</utc_offset>
2282
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2283
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2284
+ <profile_background_tile>false</profile_background_tile>
2285
+ <statuses_count>87</statuses_count>
2286
+ <notifications>false</notifications>
2287
+ <geo_enabled>false</geo_enabled>
2288
+ <verified>true</verified>
2289
+ <following>true</following>
2290
+ </user>
2291
+ <geo/>
2292
+ </status>
2293
+ <status>
2294
+ <created_at>Wed May 06 03:38:02 +0000 2009</created_at>
2295
+ <id>1713378131</id>
2296
+ <text>Met Stella McCartney for the first time. Love her fashion. Loooved her even more!</text>
2297
+ <source>web</source>
2298
+ <truncated>false</truncated>
2299
+ <in_reply_to_status_id></in_reply_to_status_id>
2300
+ <in_reply_to_user_id></in_reply_to_user_id>
2301
+ <favorited>false</favorited>
2302
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2303
+ <user>
2304
+ <id>19397785</id>
2305
+ <name>Oprah Winfrey</name>
2306
+ <screen_name>Oprah</screen_name>
2307
+ <location>Chicago, IL</location>
2308
+ <description>Live Your Best Life</description>
2309
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2310
+ <url>http://www.oprah.com</url>
2311
+ <protected>false</protected>
2312
+ <followers_count>2590836</followers_count>
2313
+ <profile_background_color>2f73f1</profile_background_color>
2314
+ <profile_text_color>333333</profile_text_color>
2315
+ <profile_link_color>0084B4</profile_link_color>
2316
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2317
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2318
+ <friends_count>17</friends_count>
2319
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2320
+ <favourites_count>0</favourites_count>
2321
+ <utc_offset>-21600</utc_offset>
2322
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2323
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2324
+ <profile_background_tile>false</profile_background_tile>
2325
+ <statuses_count>86</statuses_count>
2326
+ <notifications>false</notifications>
2327
+ <geo_enabled>false</geo_enabled>
2328
+ <verified>true</verified>
2329
+ <following>true</following>
2330
+ </user>
2331
+ <geo/>
2332
+ </status>
2333
+ <status>
2334
+ <created_at>Wed May 06 03:37:32 +0000 2009</created_at>
2335
+ <id>1713374381</id>
2336
+ <text>Seated two seats from A.R. Rahman who's agreed to give me a tour of India. I've never been.</text>
2337
+ <source>web</source>
2338
+ <truncated>false</truncated>
2339
+ <in_reply_to_status_id></in_reply_to_status_id>
2340
+ <in_reply_to_user_id></in_reply_to_user_id>
2341
+ <favorited>false</favorited>
2342
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2343
+ <user>
2344
+ <id>19397785</id>
2345
+ <name>Oprah Winfrey</name>
2346
+ <screen_name>Oprah</screen_name>
2347
+ <location>Chicago, IL</location>
2348
+ <description>Live Your Best Life</description>
2349
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2350
+ <url>http://www.oprah.com</url>
2351
+ <protected>false</protected>
2352
+ <followers_count>2637432</followers_count>
2353
+ <profile_background_color>2f73f1</profile_background_color>
2354
+ <profile_text_color>333333</profile_text_color>
2355
+ <profile_link_color>0084B4</profile_link_color>
2356
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2357
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2358
+ <friends_count>17</friends_count>
2359
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2360
+ <favourites_count>0</favourites_count>
2361
+ <utc_offset>-21600</utc_offset>
2362
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2363
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2364
+ <profile_background_tile>false</profile_background_tile>
2365
+ <statuses_count>88</statuses_count>
2366
+ <notifications>false</notifications>
2367
+ <geo_enabled>false</geo_enabled>
2368
+ <verified>true</verified>
2369
+ <following>true</following>
2370
+ </user>
2371
+ <geo/>
2372
+ </status>
2373
+ <status>
2374
+ <created_at>Wed May 06 03:36:59 +0000 2009</created_at>
2375
+ <id>1713370261</id>
2376
+ <text>SO FUN TIME 100. My first time. So many interesting, smart peeps. including Twitter guys.</text>
2377
+ <source>web</source>
2378
+ <truncated>false</truncated>
2379
+ <in_reply_to_status_id></in_reply_to_status_id>
2380
+ <in_reply_to_user_id></in_reply_to_user_id>
2381
+ <favorited>false</favorited>
2382
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2383
+ <user>
2384
+ <id>19397785</id>
2385
+ <name>Oprah Winfrey</name>
2386
+ <screen_name>Oprah</screen_name>
2387
+ <location>Chicago, IL</location>
2388
+ <description>Live Your Best Life</description>
2389
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2390
+ <url>http://www.oprah.com</url>
2391
+ <protected>false</protected>
2392
+ <followers_count>2599549</followers_count>
2393
+ <profile_background_color>2f73f1</profile_background_color>
2394
+ <profile_text_color>333333</profile_text_color>
2395
+ <profile_link_color>0084B4</profile_link_color>
2396
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2397
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2398
+ <friends_count>17</friends_count>
2399
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2400
+ <favourites_count>0</favourites_count>
2401
+ <utc_offset>-21600</utc_offset>
2402
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2403
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2404
+ <profile_background_tile>false</profile_background_tile>
2405
+ <statuses_count>87</statuses_count>
2406
+ <notifications>false</notifications>
2407
+ <geo_enabled>false</geo_enabled>
2408
+ <verified>true</verified>
2409
+ <following>true</following>
2410
+ </user>
2411
+ <geo/>
2412
+ </status>
2413
+ <status>
2414
+ <created_at>Sat May 02 21:52:40 +0000 2009</created_at>
2415
+ <id>1681780191</id>
2416
+ <text>Love @mrsquinanola &#8216;s response. Donating monthly in lieu of wedding gifts. Happy Saturday tweeps&#8230;on my way to a friend&#8217;s Bar Mitzvah.</text>
2417
+ <source>web</source>
2418
+ <truncated>false</truncated>
2419
+ <in_reply_to_status_id></in_reply_to_status_id>
2420
+ <in_reply_to_user_id></in_reply_to_user_id>
2421
+ <favorited>false</favorited>
2422
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2423
+ <user>
2424
+ <id>19397785</id>
2425
+ <name>Oprah Winfrey</name>
2426
+ <screen_name>Oprah</screen_name>
2427
+ <location>Chicago, IL</location>
2428
+ <description>Live Your Best Life</description>
2429
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2430
+ <url>http://www.oprah.com</url>
2431
+ <protected>false</protected>
2432
+ <followers_count>2592209</followers_count>
2433
+ <profile_background_color>2f73f1</profile_background_color>
2434
+ <profile_text_color>333333</profile_text_color>
2435
+ <profile_link_color>0084B4</profile_link_color>
2436
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2437
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2438
+ <friends_count>17</friends_count>
2439
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2440
+ <favourites_count>0</favourites_count>
2441
+ <utc_offset>-21600</utc_offset>
2442
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2443
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2444
+ <profile_background_tile>false</profile_background_tile>
2445
+ <statuses_count>86</statuses_count>
2446
+ <notifications>false</notifications>
2447
+ <geo_enabled>false</geo_enabled>
2448
+ <verified>true</verified>
2449
+ <following>true</following>
2450
+ </user>
2451
+ <geo/>
2452
+ </status>
2453
+ <status>
2454
+ <created_at>Sat May 02 21:02:17 +0000 2009</created_at>
2455
+ <id>1681440457</id>
2456
+ <text>Thanks tweeters for watching the invisiblechildren.com film. Buy it. Pass it on. Activate. Donate. Rescue a child.</text>
2457
+ <source>web</source>
2458
+ <truncated>false</truncated>
2459
+ <in_reply_to_status_id></in_reply_to_status_id>
2460
+ <in_reply_to_user_id></in_reply_to_user_id>
2461
+ <favorited>false</favorited>
2462
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2463
+ <user>
2464
+ <id>19397785</id>
2465
+ <name>Oprah Winfrey</name>
2466
+ <screen_name>Oprah</screen_name>
2467
+ <location>Chicago, IL</location>
2468
+ <description>Live Your Best Life</description>
2469
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2470
+ <url>http://www.oprah.com</url>
2471
+ <protected>false</protected>
2472
+ <followers_count>2590836</followers_count>
2473
+ <profile_background_color>2f73f1</profile_background_color>
2474
+ <profile_text_color>333333</profile_text_color>
2475
+ <profile_link_color>0084B4</profile_link_color>
2476
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2477
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2478
+ <friends_count>17</friends_count>
2479
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2480
+ <favourites_count>0</favourites_count>
2481
+ <utc_offset>-21600</utc_offset>
2482
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2483
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2484
+ <profile_background_tile>false</profile_background_tile>
2485
+ <statuses_count>86</statuses_count>
2486
+ <notifications>false</notifications>
2487
+ <geo_enabled>false</geo_enabled>
2488
+ <verified>true</verified>
2489
+ <following>true</following>
2490
+ </user>
2491
+ <geo/>
2492
+ </status>
2493
+ <status>
2494
+ <created_at>Sat May 02 02:03:39 +0000 2009</created_at>
2495
+ <id>1675223951</id>
2496
+ <text>plse go to invisiblechildren.com and tweet me when you've seen this movie. so proud of guys who are leading this rescue.</text>
2497
+ <source>web</source>
2498
+ <truncated>false</truncated>
2499
+ <in_reply_to_status_id></in_reply_to_status_id>
2500
+ <in_reply_to_user_id></in_reply_to_user_id>
2501
+ <favorited>false</favorited>
2502
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2503
+ <user>
2504
+ <id>19397785</id>
2505
+ <name>Oprah Winfrey</name>
2506
+ <screen_name>Oprah</screen_name>
2507
+ <location>Chicago, IL</location>
2508
+ <description>Live Your Best Life</description>
2509
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2510
+ <url>http://www.oprah.com</url>
2511
+ <protected>false</protected>
2512
+ <followers_count>2599227</followers_count>
2513
+ <profile_background_color>2f73f1</profile_background_color>
2514
+ <profile_text_color>333333</profile_text_color>
2515
+ <profile_link_color>0084B4</profile_link_color>
2516
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2517
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2518
+ <friends_count>17</friends_count>
2519
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2520
+ <favourites_count>0</favourites_count>
2521
+ <utc_offset>-21600</utc_offset>
2522
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2523
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2524
+ <profile_background_tile>false</profile_background_tile>
2525
+ <statuses_count>87</statuses_count>
2526
+ <notifications>false</notifications>
2527
+ <geo_enabled>false</geo_enabled>
2528
+ <verified>true</verified>
2529
+ <following>true</following>
2530
+ </user>
2531
+ <geo/>
2532
+ </status>
2533
+ <status>
2534
+ <created_at>Fri May 01 11:48:22 +0000 2009</created_at>
2535
+ <id>1668401234</id>
2536
+ <text>Woke up smiling. Hugh Jackman is on Friday live with us!</text>
2537
+ <source>web</source>
2538
+ <truncated>false</truncated>
2539
+ <in_reply_to_status_id></in_reply_to_status_id>
2540
+ <in_reply_to_user_id></in_reply_to_user_id>
2541
+ <favorited>false</favorited>
2542
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2543
+ <user>
2544
+ <id>19397785</id>
2545
+ <name>Oprah Winfrey</name>
2546
+ <screen_name>Oprah</screen_name>
2547
+ <location>Chicago, IL</location>
2548
+ <description>Live Your Best Life</description>
2549
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2550
+ <url>http://www.oprah.com</url>
2551
+ <protected>false</protected>
2552
+ <followers_count>2636411</followers_count>
2553
+ <profile_background_color>2f73f1</profile_background_color>
2554
+ <profile_text_color>333333</profile_text_color>
2555
+ <profile_link_color>0084B4</profile_link_color>
2556
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2557
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2558
+ <friends_count>17</friends_count>
2559
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2560
+ <favourites_count>0</favourites_count>
2561
+ <utc_offset>-21600</utc_offset>
2562
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2563
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2564
+ <profile_background_tile>false</profile_background_tile>
2565
+ <statuses_count>88</statuses_count>
2566
+ <notifications>false</notifications>
2567
+ <geo_enabled>false</geo_enabled>
2568
+ <verified>true</verified>
2569
+ <following>true</following>
2570
+ </user>
2571
+ <geo/>
2572
+ </status>
2573
+ <status>
2574
+ <created_at>Thu Apr 30 00:34:41 +0000 2009</created_at>
2575
+ <id>1654399228</id>
2576
+ <text>Loved it so much just invited him (seal) on the show. May 8th. He's coming. woohoo!</text>
2577
+ <source>web</source>
2578
+ <truncated>false</truncated>
2579
+ <in_reply_to_status_id></in_reply_to_status_id>
2580
+ <in_reply_to_user_id></in_reply_to_user_id>
2581
+ <favorited>false</favorited>
2582
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2583
+ <user>
2584
+ <id>19397785</id>
2585
+ <name>Oprah Winfrey</name>
2586
+ <screen_name>Oprah</screen_name>
2587
+ <location>Chicago, IL</location>
2588
+ <description>Live Your Best Life</description>
2589
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2590
+ <url>http://www.oprah.com</url>
2591
+ <protected>false</protected>
2592
+ <followers_count>2636161</followers_count>
2593
+ <profile_background_color>2f73f1</profile_background_color>
2594
+ <profile_text_color>333333</profile_text_color>
2595
+ <profile_link_color>0084B4</profile_link_color>
2596
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2597
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2598
+ <friends_count>17</friends_count>
2599
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2600
+ <favourites_count>0</favourites_count>
2601
+ <utc_offset>-21600</utc_offset>
2602
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2603
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2604
+ <profile_background_tile>false</profile_background_tile>
2605
+ <statuses_count>88</statuses_count>
2606
+ <notifications>false</notifications>
2607
+ <geo_enabled>false</geo_enabled>
2608
+ <verified>true</verified>
2609
+ <following>true</following>
2610
+ </user>
2611
+ <geo/>
2612
+ </status>
2613
+ <status>
2614
+ <created_at>Thu Apr 30 00:33:58 +0000 2009</created_at>
2615
+ <id>1654393544</id>
2616
+ <text>was cruisin with the top down this weekend in sunny Cal singin' along with SEAL..&quot;I Can't Stand the RAINNNN&quot; missed my turn.</text>
2617
+ <source>web</source>
2618
+ <truncated>false</truncated>
2619
+ <in_reply_to_status_id></in_reply_to_status_id>
2620
+ <in_reply_to_user_id></in_reply_to_user_id>
2621
+ <favorited>false</favorited>
2622
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2623
+ <user>
2624
+ <id>19397785</id>
2625
+ <name>Oprah Winfrey</name>
2626
+ <screen_name>Oprah</screen_name>
2627
+ <location>Chicago, IL</location>
2628
+ <description>Live Your Best Life</description>
2629
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2630
+ <url>http://www.oprah.com</url>
2631
+ <protected>false</protected>
2632
+ <followers_count>2637432</followers_count>
2633
+ <profile_background_color>2f73f1</profile_background_color>
2634
+ <profile_text_color>333333</profile_text_color>
2635
+ <profile_link_color>0084B4</profile_link_color>
2636
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2637
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2638
+ <friends_count>17</friends_count>
2639
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2640
+ <favourites_count>0</favourites_count>
2641
+ <utc_offset>-21600</utc_offset>
2642
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2643
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2644
+ <profile_background_tile>false</profile_background_tile>
2645
+ <statuses_count>88</statuses_count>
2646
+ <notifications>false</notifications>
2647
+ <geo_enabled>false</geo_enabled>
2648
+ <verified>true</verified>
2649
+ <following>true</following>
2650
+ </user>
2651
+ <geo/>
2652
+ </status>
2653
+ <status>
2654
+ <created_at>Wed Apr 29 20:29:15 +0000 2009</created_at>
2655
+ <id>1652339375</id>
2656
+ <text>Another Must watch...McCann interview on Monday. My heart broke for them.</text>
2657
+ <source>web</source>
2658
+ <truncated>false</truncated>
2659
+ <in_reply_to_status_id></in_reply_to_status_id>
2660
+ <in_reply_to_user_id></in_reply_to_user_id>
2661
+ <favorited>false</favorited>
2662
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2663
+ <user>
2664
+ <id>19397785</id>
2665
+ <name>Oprah Winfrey</name>
2666
+ <screen_name>Oprah</screen_name>
2667
+ <location>Chicago, IL</location>
2668
+ <description>Live Your Best Life</description>
2669
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2670
+ <url>http://www.oprah.com</url>
2671
+ <protected>false</protected>
2672
+ <followers_count>2643100</followers_count>
2673
+ <profile_background_color>2f73f1</profile_background_color>
2674
+ <profile_text_color>333333</profile_text_color>
2675
+ <profile_link_color>0084B4</profile_link_color>
2676
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2677
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2678
+ <friends_count>17</friends_count>
2679
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2680
+ <favourites_count>0</favourites_count>
2681
+ <utc_offset>-21600</utc_offset>
2682
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2683
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2684
+ <profile_background_tile>false</profile_background_tile>
2685
+ <statuses_count>88</statuses_count>
2686
+ <notifications>false</notifications>
2687
+ <geo_enabled>false</geo_enabled>
2688
+ <verified>true</verified>
2689
+ <following>true</following>
2690
+ </user>
2691
+ <geo/>
2692
+ </status>
2693
+ <status>
2694
+ <created_at>Wed Apr 29 20:28:29 +0000 2009</created_at>
2695
+ <id>1652332791</id>
2696
+ <text>haven't tweeted- too busy trying to wrap up shows for season. kinda like school ending. getting all your papers turned in.</text>
2697
+ <source>web</source>
2698
+ <truncated>false</truncated>
2699
+ <in_reply_to_status_id></in_reply_to_status_id>
2700
+ <in_reply_to_user_id></in_reply_to_user_id>
2701
+ <favorited>false</favorited>
2702
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2703
+ <user>
2704
+ <id>19397785</id>
2705
+ <name>Oprah Winfrey</name>
2706
+ <screen_name>Oprah</screen_name>
2707
+ <location>Chicago, IL</location>
2708
+ <description>Live Your Best Life</description>
2709
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2710
+ <url>http://www.oprah.com</url>
2711
+ <protected>false</protected>
2712
+ <followers_count>2599330</followers_count>
2713
+ <profile_background_color>2f73f1</profile_background_color>
2714
+ <profile_text_color>333333</profile_text_color>
2715
+ <profile_link_color>0084B4</profile_link_color>
2716
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2717
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2718
+ <friends_count>17</friends_count>
2719
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2720
+ <favourites_count>0</favourites_count>
2721
+ <utc_offset>-21600</utc_offset>
2722
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2723
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2724
+ <profile_background_tile>false</profile_background_tile>
2725
+ <statuses_count>87</statuses_count>
2726
+ <notifications>false</notifications>
2727
+ <geo_enabled>false</geo_enabled>
2728
+ <verified>true</verified>
2729
+ <following>true</following>
2730
+ </user>
2731
+ <geo/>
2732
+ </status>
2733
+ <status>
2734
+ <created_at>Wed Apr 29 20:22:34 +0000 2009</created_at>
2735
+ <id>1652280001</id>
2736
+ <text>Just did a show with talented kids. Charice debuted her first single NOTE TO GOD... blew the roof off. Airs May 18th. Don't miss it.</text>
2737
+ <source>web</source>
2738
+ <truncated>false</truncated>
2739
+ <in_reply_to_status_id></in_reply_to_status_id>
2740
+ <in_reply_to_user_id></in_reply_to_user_id>
2741
+ <favorited>false</favorited>
2742
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2743
+ <user>
2744
+ <id>19397785</id>
2745
+ <name>Oprah Winfrey</name>
2746
+ <screen_name>Oprah</screen_name>
2747
+ <location>Chicago, IL</location>
2748
+ <description>Live Your Best Life</description>
2749
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2750
+ <url>http://www.oprah.com</url>
2751
+ <protected>false</protected>
2752
+ <followers_count>2583723</followers_count>
2753
+ <profile_background_color>2f73f1</profile_background_color>
2754
+ <profile_text_color>333333</profile_text_color>
2755
+ <profile_link_color>0084B4</profile_link_color>
2756
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2757
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2758
+ <friends_count>17</friends_count>
2759
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2760
+ <favourites_count>0</favourites_count>
2761
+ <utc_offset>-21600</utc_offset>
2762
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2763
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2764
+ <profile_background_tile>false</profile_background_tile>
2765
+ <statuses_count>86</statuses_count>
2766
+ <notifications>false</notifications>
2767
+ <geo_enabled>false</geo_enabled>
2768
+ <verified>true</verified>
2769
+ <following>true</following>
2770
+ </user>
2771
+ <geo/>
2772
+ </status>
2773
+ <status>
2774
+ <created_at>Sat Apr 25 00:53:03 +0000 2009</created_at>
2775
+ <id>1609143057</id>
2776
+ <text>@RealHughJackman Hugh...I'm countin' the hours. Wanna do dinner the night before. Same booth? Or catch up fresh on the air?</text>
2777
+ <source>web</source>
2778
+ <truncated>false</truncated>
2779
+ <in_reply_to_status_id>1607806942</in_reply_to_status_id>
2780
+ <in_reply_to_user_id>27042513</in_reply_to_user_id>
2781
+ <favorited>false</favorited>
2782
+ <in_reply_to_screen_name>RealHughJackman</in_reply_to_screen_name>
2783
+ <user>
2784
+ <id>19397785</id>
2785
+ <name>Oprah Winfrey</name>
2786
+ <screen_name>Oprah</screen_name>
2787
+ <location>Chicago, IL</location>
2788
+ <description>Live Your Best Life</description>
2789
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2790
+ <url>http://www.oprah.com</url>
2791
+ <protected>false</protected>
2792
+ <followers_count>2592596</followers_count>
2793
+ <profile_background_color>2f73f1</profile_background_color>
2794
+ <profile_text_color>333333</profile_text_color>
2795
+ <profile_link_color>0084B4</profile_link_color>
2796
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2797
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2798
+ <friends_count>17</friends_count>
2799
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2800
+ <favourites_count>0</favourites_count>
2801
+ <utc_offset>-21600</utc_offset>
2802
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2803
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2804
+ <profile_background_tile>false</profile_background_tile>
2805
+ <statuses_count>86</statuses_count>
2806
+ <notifications>false</notifications>
2807
+ <geo_enabled>false</geo_enabled>
2808
+ <verified>true</verified>
2809
+ <following>true</following>
2810
+ </user>
2811
+ <geo/>
2812
+ </status>
2813
+ <status>
2814
+ <created_at>Fri Apr 24 18:26:03 +0000 2009</created_at>
2815
+ <id>1606079384</id>
2816
+ <text>after the show today with robin thicke! http://tinyurl.com/cd9qxn</text>
2817
+ <source>web</source>
2818
+ <truncated>false</truncated>
2819
+ <in_reply_to_status_id></in_reply_to_status_id>
2820
+ <in_reply_to_user_id></in_reply_to_user_id>
2821
+ <favorited>false</favorited>
2822
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2823
+ <user>
2824
+ <id>19397785</id>
2825
+ <name>Oprah Winfrey</name>
2826
+ <screen_name>Oprah</screen_name>
2827
+ <location>Chicago, IL</location>
2828
+ <description>Live Your Best Life</description>
2829
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2830
+ <url>http://www.oprah.com</url>
2831
+ <protected>false</protected>
2832
+ <followers_count>2590836</followers_count>
2833
+ <profile_background_color>2f73f1</profile_background_color>
2834
+ <profile_text_color>333333</profile_text_color>
2835
+ <profile_link_color>0084B4</profile_link_color>
2836
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2837
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2838
+ <friends_count>17</friends_count>
2839
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2840
+ <favourites_count>0</favourites_count>
2841
+ <utc_offset>-21600</utc_offset>
2842
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2843
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2844
+ <profile_background_tile>false</profile_background_tile>
2845
+ <statuses_count>86</statuses_count>
2846
+ <notifications>false</notifications>
2847
+ <geo_enabled>false</geo_enabled>
2848
+ <verified>true</verified>
2849
+ <following>true</following>
2850
+ </user>
2851
+ <geo/>
2852
+ </status>
2853
+ <status>
2854
+ <created_at>Fri Apr 24 14:10:30 +0000 2009</created_at>
2855
+ <id>1603886054</id>
2856
+ <text>no i'm not wearing a weave</text>
2857
+ <source>web</source>
2858
+ <truncated>false</truncated>
2859
+ <in_reply_to_status_id></in_reply_to_status_id>
2860
+ <in_reply_to_user_id></in_reply_to_user_id>
2861
+ <favorited>false</favorited>
2862
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2863
+ <user>
2864
+ <id>19397785</id>
2865
+ <name>Oprah Winfrey</name>
2866
+ <screen_name>Oprah</screen_name>
2867
+ <location>Chicago, IL</location>
2868
+ <description>Live Your Best Life</description>
2869
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2870
+ <url>http://www.oprah.com</url>
2871
+ <protected>false</protected>
2872
+ <followers_count>2597703</followers_count>
2873
+ <profile_background_color>2f73f1</profile_background_color>
2874
+ <profile_text_color>333333</profile_text_color>
2875
+ <profile_link_color>0084B4</profile_link_color>
2876
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2877
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2878
+ <friends_count>17</friends_count>
2879
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2880
+ <favourites_count>0</favourites_count>
2881
+ <utc_offset>-21600</utc_offset>
2882
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2883
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2884
+ <profile_background_tile>false</profile_background_tile>
2885
+ <statuses_count>87</statuses_count>
2886
+ <notifications>true</notifications>
2887
+ <geo_enabled>false</geo_enabled>
2888
+ <verified>true</verified>
2889
+ <following>true</following>
2890
+ </user>
2891
+ <geo/>
2892
+ </status>
2893
+ <status>
2894
+ <created_at>Fri Apr 24 14:00:06 +0000 2009</created_at>
2895
+ <id>1603801085</id>
2896
+ <text>going on the air right now</text>
2897
+ <source>web</source>
2898
+ <truncated>false</truncated>
2899
+ <in_reply_to_status_id></in_reply_to_status_id>
2900
+ <in_reply_to_user_id></in_reply_to_user_id>
2901
+ <favorited>false</favorited>
2902
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2903
+ <user>
2904
+ <id>19397785</id>
2905
+ <name>Oprah Winfrey</name>
2906
+ <screen_name>Oprah</screen_name>
2907
+ <location>Chicago, IL</location>
2908
+ <description>Live Your Best Life</description>
2909
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2910
+ <url>http://www.oprah.com</url>
2911
+ <protected>false</protected>
2912
+ <followers_count>2585402</followers_count>
2913
+ <profile_background_color>2f73f1</profile_background_color>
2914
+ <profile_text_color>333333</profile_text_color>
2915
+ <profile_link_color>0084B4</profile_link_color>
2916
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2917
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2918
+ <friends_count>17</friends_count>
2919
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2920
+ <favourites_count>0</favourites_count>
2921
+ <utc_offset>-21600</utc_offset>
2922
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2923
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2924
+ <profile_background_tile>false</profile_background_tile>
2925
+ <statuses_count>86</statuses_count>
2926
+ <notifications>false</notifications>
2927
+ <geo_enabled>false</geo_enabled>
2928
+ <verified>true</verified>
2929
+ <following>true</following>
2930
+ </user>
2931
+ <geo/>
2932
+ </status>
2933
+ <status>
2934
+ <created_at>Wed Apr 22 19:16:31 +0000 2009</created_at>
2935
+ <id>1587308281</id>
2936
+ <text>more behind the scenes with my flipcam! http://tinyurl.com/cuk8ef</text>
2937
+ <source>web</source>
2938
+ <truncated>false</truncated>
2939
+ <in_reply_to_status_id></in_reply_to_status_id>
2940
+ <in_reply_to_user_id></in_reply_to_user_id>
2941
+ <favorited>false</favorited>
2942
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2943
+ <user>
2944
+ <id>19397785</id>
2945
+ <name>Oprah Winfrey</name>
2946
+ <screen_name>Oprah</screen_name>
2947
+ <location>Chicago, IL</location>
2948
+ <description>Live Your Best Life</description>
2949
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2950
+ <url>http://www.oprah.com</url>
2951
+ <protected>false</protected>
2952
+ <followers_count>2637432</followers_count>
2953
+ <profile_background_color>2f73f1</profile_background_color>
2954
+ <profile_text_color>333333</profile_text_color>
2955
+ <profile_link_color>0084B4</profile_link_color>
2956
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2957
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2958
+ <friends_count>17</friends_count>
2959
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
2960
+ <favourites_count>0</favourites_count>
2961
+ <utc_offset>-21600</utc_offset>
2962
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
2963
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
2964
+ <profile_background_tile>false</profile_background_tile>
2965
+ <statuses_count>88</statuses_count>
2966
+ <notifications>false</notifications>
2967
+ <geo_enabled>false</geo_enabled>
2968
+ <verified>true</verified>
2969
+ <following>true</following>
2970
+ </user>
2971
+ <geo/>
2972
+ </status>
2973
+ <status>
2974
+ <created_at>Wed Apr 22 18:39:16 +0000 2009</created_at>
2975
+ <id>1587006527</id>
2976
+ <text>behind the scenes with my flipcam . . . http://tiny.cc/T4WYl</text>
2977
+ <source>web</source>
2978
+ <truncated>false</truncated>
2979
+ <in_reply_to_status_id></in_reply_to_status_id>
2980
+ <in_reply_to_user_id></in_reply_to_user_id>
2981
+ <favorited>false</favorited>
2982
+ <in_reply_to_screen_name></in_reply_to_screen_name>
2983
+ <user>
2984
+ <id>19397785</id>
2985
+ <name>Oprah Winfrey</name>
2986
+ <screen_name>Oprah</screen_name>
2987
+ <location>Chicago, IL</location>
2988
+ <description>Live Your Best Life</description>
2989
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
2990
+ <url>http://www.oprah.com</url>
2991
+ <protected>false</protected>
2992
+ <followers_count>2592209</followers_count>
2993
+ <profile_background_color>2f73f1</profile_background_color>
2994
+ <profile_text_color>333333</profile_text_color>
2995
+ <profile_link_color>0084B4</profile_link_color>
2996
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
2997
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
2998
+ <friends_count>17</friends_count>
2999
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3000
+ <favourites_count>0</favourites_count>
3001
+ <utc_offset>-21600</utc_offset>
3002
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3003
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3004
+ <profile_background_tile>false</profile_background_tile>
3005
+ <statuses_count>86</statuses_count>
3006
+ <notifications>false</notifications>
3007
+ <geo_enabled>false</geo_enabled>
3008
+ <verified>true</verified>
3009
+ <following>true</following>
3010
+ </user>
3011
+ <geo/>
3012
+ </status>
3013
+ <status>
3014
+ <created_at>Wed Apr 22 13:42:00 +0000 2009</created_at>
3015
+ <id>1584639149</id>
3016
+ <text>In the makeup chair, reading script for today's show. SHOCKING video! Don't miss the beginning.</text>
3017
+ <source>web</source>
3018
+ <truncated>false</truncated>
3019
+ <in_reply_to_status_id></in_reply_to_status_id>
3020
+ <in_reply_to_user_id></in_reply_to_user_id>
3021
+ <favorited>false</favorited>
3022
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3023
+ <user>
3024
+ <id>19397785</id>
3025
+ <name>Oprah Winfrey</name>
3026
+ <screen_name>Oprah</screen_name>
3027
+ <location>Chicago, IL</location>
3028
+ <description>Live Your Best Life</description>
3029
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3030
+ <url>http://www.oprah.com</url>
3031
+ <protected>false</protected>
3032
+ <followers_count>2599189</followers_count>
3033
+ <profile_background_color>2f73f1</profile_background_color>
3034
+ <profile_text_color>333333</profile_text_color>
3035
+ <profile_link_color>0084B4</profile_link_color>
3036
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3037
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3038
+ <friends_count>17</friends_count>
3039
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3040
+ <favourites_count>0</favourites_count>
3041
+ <utc_offset>-21600</utc_offset>
3042
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3043
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3044
+ <profile_background_tile>false</profile_background_tile>
3045
+ <statuses_count>87</statuses_count>
3046
+ <notifications>false</notifications>
3047
+ <geo_enabled>false</geo_enabled>
3048
+ <verified>true</verified>
3049
+ <following>true</following>
3050
+ </user>
3051
+ <geo/>
3052
+ </status>
3053
+ <status>
3054
+ <created_at>Mon Apr 20 12:07:42 +0000 2009</created_at>
3055
+ <id>1564847760</id>
3056
+ <text>I pulled the Columbine show today-After reviewing, thought it focused too much on killers-hold a thought for the families, hard day for them</text>
3057
+ <source>web</source>
3058
+ <truncated>false</truncated>
3059
+ <in_reply_to_status_id></in_reply_to_status_id>
3060
+ <in_reply_to_user_id></in_reply_to_user_id>
3061
+ <favorited>false</favorited>
3062
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3063
+ <user>
3064
+ <id>19397785</id>
3065
+ <name>Oprah Winfrey</name>
3066
+ <screen_name>Oprah</screen_name>
3067
+ <location>Chicago, IL</location>
3068
+ <description>Live Your Best Life</description>
3069
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3070
+ <url>http://www.oprah.com</url>
3071
+ <protected>false</protected>
3072
+ <followers_count>2637432</followers_count>
3073
+ <profile_background_color>2f73f1</profile_background_color>
3074
+ <profile_text_color>333333</profile_text_color>
3075
+ <profile_link_color>0084B4</profile_link_color>
3076
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3077
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3078
+ <friends_count>17</friends_count>
3079
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3080
+ <favourites_count>0</favourites_count>
3081
+ <utc_offset>-21600</utc_offset>
3082
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3083
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3084
+ <profile_background_tile>false</profile_background_tile>
3085
+ <statuses_count>88</statuses_count>
3086
+ <notifications>false</notifications>
3087
+ <geo_enabled>false</geo_enabled>
3088
+ <verified>true</verified>
3089
+ <following>true</following>
3090
+ </user>
3091
+ <geo/>
3092
+ </status>
3093
+ <status>
3094
+ <created_at>Sun Apr 19 19:57:42 +0000 2009</created_at>
3095
+ <id>1560145063</id>
3096
+ <text>Worked out an hour. And now going to read the Sunday papers and have a skinny cow or 2!</text>
3097
+ <source>web</source>
3098
+ <truncated>false</truncated>
3099
+ <in_reply_to_status_id></in_reply_to_status_id>
3100
+ <in_reply_to_user_id></in_reply_to_user_id>
3101
+ <favorited>false</favorited>
3102
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3103
+ <user>
3104
+ <id>19397785</id>
3105
+ <name>Oprah Winfrey</name>
3106
+ <screen_name>Oprah</screen_name>
3107
+ <location>Chicago, IL</location>
3108
+ <description>Live Your Best Life</description>
3109
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3110
+ <url>http://www.oprah.com</url>
3111
+ <protected>false</protected>
3112
+ <followers_count>2590836</followers_count>
3113
+ <profile_background_color>2f73f1</profile_background_color>
3114
+ <profile_text_color>333333</profile_text_color>
3115
+ <profile_link_color>0084B4</profile_link_color>
3116
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3117
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3118
+ <friends_count>17</friends_count>
3119
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3120
+ <favourites_count>0</favourites_count>
3121
+ <utc_offset>-21600</utc_offset>
3122
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3123
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3124
+ <profile_background_tile>false</profile_background_tile>
3125
+ <statuses_count>86</statuses_count>
3126
+ <notifications>false</notifications>
3127
+ <geo_enabled>false</geo_enabled>
3128
+ <verified>true</verified>
3129
+ <following>true</following>
3130
+ </user>
3131
+ <geo/>
3132
+ </status>
3133
+ <status>
3134
+ <created_at>Sun Apr 19 19:57:21 +0000 2009</created_at>
3135
+ <id>1560142701</id>
3136
+ <text>Hey tweeters, hope you're loving your Sunday as much as I am.</text>
3137
+ <source>web</source>
3138
+ <truncated>false</truncated>
3139
+ <in_reply_to_status_id></in_reply_to_status_id>
3140
+ <in_reply_to_user_id></in_reply_to_user_id>
3141
+ <favorited>false</favorited>
3142
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3143
+ <user>
3144
+ <id>19397785</id>
3145
+ <name>Oprah Winfrey</name>
3146
+ <screen_name>Oprah</screen_name>
3147
+ <location>Chicago, IL</location>
3148
+ <description>Live Your Best Life</description>
3149
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3150
+ <url>http://www.oprah.com</url>
3151
+ <protected>false</protected>
3152
+ <followers_count>2590836</followers_count>
3153
+ <profile_background_color>2f73f1</profile_background_color>
3154
+ <profile_text_color>333333</profile_text_color>
3155
+ <profile_link_color>0084B4</profile_link_color>
3156
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3157
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3158
+ <friends_count>17</friends_count>
3159
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3160
+ <favourites_count>0</favourites_count>
3161
+ <utc_offset>-21600</utc_offset>
3162
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3163
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3164
+ <profile_background_tile>false</profile_background_tile>
3165
+ <statuses_count>86</statuses_count>
3166
+ <notifications>false</notifications>
3167
+ <geo_enabled>false</geo_enabled>
3168
+ <verified>true</verified>
3169
+ <following>true</following>
3170
+ </user>
3171
+ <geo/>
3172
+ </status>
3173
+ <status>
3174
+ <created_at>Sat Apr 18 04:54:17 +0000 2009</created_at>
3175
+ <id>1548763640</id>
3176
+ <text>good nite tweets. first big day in twitterland. gotta get some shut eye and use the weekend for rebooting.</text>
3177
+ <source>web</source>
3178
+ <truncated>false</truncated>
3179
+ <in_reply_to_status_id></in_reply_to_status_id>
3180
+ <in_reply_to_user_id></in_reply_to_user_id>
3181
+ <favorited>false</favorited>
3182
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3183
+ <user>
3184
+ <id>19397785</id>
3185
+ <name>Oprah Winfrey</name>
3186
+ <screen_name>Oprah</screen_name>
3187
+ <location>Chicago, IL</location>
3188
+ <description>Live Your Best Life</description>
3189
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3190
+ <url>http://www.oprah.com</url>
3191
+ <protected>false</protected>
3192
+ <followers_count>2598968</followers_count>
3193
+ <profile_background_color>2f73f1</profile_background_color>
3194
+ <profile_text_color>333333</profile_text_color>
3195
+ <profile_link_color>0084B4</profile_link_color>
3196
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3197
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3198
+ <friends_count>17</friends_count>
3199
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3200
+ <favourites_count>0</favourites_count>
3201
+ <utc_offset>-21600</utc_offset>
3202
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3203
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3204
+ <profile_background_tile>false</profile_background_tile>
3205
+ <statuses_count>87</statuses_count>
3206
+ <notifications>false</notifications>
3207
+ <geo_enabled>false</geo_enabled>
3208
+ <verified>true</verified>
3209
+ <following>true</following>
3210
+ </user>
3211
+ <geo/>
3212
+ </status>
3213
+ <status>
3214
+ <created_at>Fri Apr 17 22:33:18 +0000 2009</created_at>
3215
+ <id>1546261875</id>
3216
+ <text>@kingsthings hey Larry, wanted to tweet you on the show tonite. But will be in the air. Not sure about airtweets. Have fun with Ashton!</text>
3217
+ <source>web</source>
3218
+ <truncated>false</truncated>
3219
+ <in_reply_to_status_id>1546159375</in_reply_to_status_id>
3220
+ <in_reply_to_user_id>22685200</in_reply_to_user_id>
3221
+ <favorited>false</favorited>
3222
+ <in_reply_to_screen_name>kingsthings</in_reply_to_screen_name>
3223
+ <user>
3224
+ <id>19397785</id>
3225
+ <name>Oprah Winfrey</name>
3226
+ <screen_name>Oprah</screen_name>
3227
+ <location>Chicago, IL</location>
3228
+ <description>Live Your Best Life</description>
3229
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3230
+ <url>http://www.oprah.com</url>
3231
+ <protected>false</protected>
3232
+ <followers_count>2631699</followers_count>
3233
+ <profile_background_color>2f73f1</profile_background_color>
3234
+ <profile_text_color>333333</profile_text_color>
3235
+ <profile_link_color>0084B4</profile_link_color>
3236
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3237
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3238
+ <friends_count>17</friends_count>
3239
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3240
+ <favourites_count>0</favourites_count>
3241
+ <utc_offset>-21600</utc_offset>
3242
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3243
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3244
+ <profile_background_tile>false</profile_background_tile>
3245
+ <statuses_count>88</statuses_count>
3246
+ <notifications>false</notifications>
3247
+ <geo_enabled>false</geo_enabled>
3248
+ <verified>true</verified>
3249
+ <following>false</following>
3250
+ </user>
3251
+ <geo/>
3252
+ </status>
3253
+ <status>
3254
+ <created_at>Fri Apr 17 22:10:24 +0000 2009</created_at>
3255
+ <id>1546088666</id>
3256
+ <text>@THE_REAL_SHAQ thanks for being my twitter buddy. this is cool.</text>
3257
+ <source>web</source>
3258
+ <truncated>false</truncated>
3259
+ <in_reply_to_status_id>1542470888</in_reply_to_status_id>
3260
+ <in_reply_to_user_id>17461978</in_reply_to_user_id>
3261
+ <favorited>false</favorited>
3262
+ <in_reply_to_screen_name>THE_REAL_SHAQ</in_reply_to_screen_name>
3263
+ <user>
3264
+ <id>19397785</id>
3265
+ <name>Oprah Winfrey</name>
3266
+ <screen_name>Oprah</screen_name>
3267
+ <location>Chicago, IL</location>
3268
+ <description>Live Your Best Life</description>
3269
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3270
+ <url>http://www.oprah.com</url>
3271
+ <protected>false</protected>
3272
+ <followers_count>2637899</followers_count>
3273
+ <profile_background_color>2f73f1</profile_background_color>
3274
+ <profile_text_color>333333</profile_text_color>
3275
+ <profile_link_color>0084B4</profile_link_color>
3276
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3277
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3278
+ <friends_count>17</friends_count>
3279
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3280
+ <favourites_count>0</favourites_count>
3281
+ <utc_offset>-21600</utc_offset>
3282
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3283
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3284
+ <profile_background_tile>false</profile_background_tile>
3285
+ <statuses_count>88</statuses_count>
3286
+ <notifications>false</notifications>
3287
+ <geo_enabled>false</geo_enabled>
3288
+ <verified>true</verified>
3289
+ <following>false</following>
3290
+ </user>
3291
+ <geo/>
3292
+ </status>
3293
+ <status>
3294
+ <created_at>Fri Apr 17 22:04:52 +0000 2009</created_at>
3295
+ <id>1546047013</id>
3296
+ <text>@ev great to have you on the show. I'm all a twitter. Having strawberry margaritas with producers in my office right now. Toasting you!</text>
3297
+ <source>web</source>
3298
+ <truncated>false</truncated>
3299
+ <in_reply_to_status_id>1544145598</in_reply_to_status_id>
3300
+ <in_reply_to_user_id>20</in_reply_to_user_id>
3301
+ <favorited>false</favorited>
3302
+ <in_reply_to_screen_name>ev</in_reply_to_screen_name>
3303
+ <user>
3304
+ <id>19397785</id>
3305
+ <name>Oprah Winfrey</name>
3306
+ <screen_name>Oprah</screen_name>
3307
+ <location>Chicago, IL</location>
3308
+ <description>Live Your Best Life</description>
3309
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3310
+ <url>http://www.oprah.com</url>
3311
+ <protected>false</protected>
3312
+ <followers_count>2597645</followers_count>
3313
+ <profile_background_color>2f73f1</profile_background_color>
3314
+ <profile_text_color>333333</profile_text_color>
3315
+ <profile_link_color>0084B4</profile_link_color>
3316
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3317
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3318
+ <friends_count>17</friends_count>
3319
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3320
+ <favourites_count>0</favourites_count>
3321
+ <utc_offset>-21600</utc_offset>
3322
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3323
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3324
+ <profile_background_tile>false</profile_background_tile>
3325
+ <statuses_count>87</statuses_count>
3326
+ <notifications>false</notifications>
3327
+ <geo_enabled>false</geo_enabled>
3328
+ <verified>true</verified>
3329
+ <following>true</following>
3330
+ </user>
3331
+ <geo/>
3332
+ </status>
3333
+ <status>
3334
+ <created_at>Fri Apr 17 14:51:45 +0000 2009</created_at>
3335
+ <id>1542546637</id>
3336
+ <text>@mrskutcher count me in for 20,thousand nets.</text>
3337
+ <source>web</source>
3338
+ <truncated>false</truncated>
3339
+ <in_reply_to_status_id></in_reply_to_status_id>
3340
+ <in_reply_to_user_id>19554706</in_reply_to_user_id>
3341
+ <favorited>false</favorited>
3342
+ <in_reply_to_screen_name>mrskutcher</in_reply_to_screen_name>
3343
+ <user>
3344
+ <id>19397785</id>
3345
+ <name>Oprah Winfrey</name>
3346
+ <screen_name>Oprah</screen_name>
3347
+ <location>Chicago, IL</location>
3348
+ <description>Live Your Best Life</description>
3349
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3350
+ <url>http://www.oprah.com</url>
3351
+ <protected>false</protected>
3352
+ <followers_count>2637414</followers_count>
3353
+ <profile_background_color>2f73f1</profile_background_color>
3354
+ <profile_text_color>333333</profile_text_color>
3355
+ <profile_link_color>0084B4</profile_link_color>
3356
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3357
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3358
+ <friends_count>17</friends_count>
3359
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3360
+ <favourites_count>0</favourites_count>
3361
+ <utc_offset>-21600</utc_offset>
3362
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3363
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3364
+ <profile_background_tile>false</profile_background_tile>
3365
+ <statuses_count>88</statuses_count>
3366
+ <notifications>false</notifications>
3367
+ <geo_enabled>false</geo_enabled>
3368
+ <verified>true</verified>
3369
+ <following>false</following>
3370
+ </user>
3371
+ <geo/>
3372
+ </status>
3373
+ <status>
3374
+ <created_at>Fri Apr 17 14:39:37 +0000 2009</created_at>
3375
+ <id>1542449795</id>
3376
+ <text>george thats a promo not a tweet.</text>
3377
+ <source>web</source>
3378
+ <truncated>false</truncated>
3379
+ <in_reply_to_status_id></in_reply_to_status_id>
3380
+ <in_reply_to_user_id></in_reply_to_user_id>
3381
+ <favorited>false</favorited>
3382
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3383
+ <user>
3384
+ <id>19397785</id>
3385
+ <name>Oprah Winfrey</name>
3386
+ <screen_name>Oprah</screen_name>
3387
+ <location>Chicago, IL</location>
3388
+ <description>Live Your Best Life</description>
3389
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3390
+ <url>http://www.oprah.com</url>
3391
+ <protected>false</protected>
3392
+ <followers_count>2643100</followers_count>
3393
+ <profile_background_color>2f73f1</profile_background_color>
3394
+ <profile_text_color>333333</profile_text_color>
3395
+ <profile_link_color>0084B4</profile_link_color>
3396
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3397
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3398
+ <friends_count>17</friends_count>
3399
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3400
+ <favourites_count>0</favourites_count>
3401
+ <utc_offset>-21600</utc_offset>
3402
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3403
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3404
+ <profile_background_tile>false</profile_background_tile>
3405
+ <statuses_count>88</statuses_count>
3406
+ <notifications>false</notifications>
3407
+ <geo_enabled>false</geo_enabled>
3408
+ <verified>true</verified>
3409
+ <following>true</following>
3410
+ </user>
3411
+ <geo/>
3412
+ </status>
3413
+ <status>
3414
+ <created_at>Fri Apr 17 14:32:37 +0000 2009</created_at>
3415
+ <id>1542393931</id>
3416
+ <text>little jordan is next. love this kid</text>
3417
+ <source>web</source>
3418
+ <truncated>false</truncated>
3419
+ <in_reply_to_status_id></in_reply_to_status_id>
3420
+ <in_reply_to_user_id></in_reply_to_user_id>
3421
+ <favorited>false</favorited>
3422
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3423
+ <user>
3424
+ <id>19397785</id>
3425
+ <name>Oprah Winfrey</name>
3426
+ <screen_name>Oprah</screen_name>
3427
+ <location>Chicago, IL</location>
3428
+ <description>Live Your Best Life</description>
3429
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3430
+ <url>http://www.oprah.com</url>
3431
+ <protected>false</protected>
3432
+ <followers_count>2598729</followers_count>
3433
+ <profile_background_color>2f73f1</profile_background_color>
3434
+ <profile_text_color>333333</profile_text_color>
3435
+ <profile_link_color>0084B4</profile_link_color>
3436
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3437
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3438
+ <friends_count>17</friends_count>
3439
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3440
+ <favourites_count>0</favourites_count>
3441
+ <utc_offset>-21600</utc_offset>
3442
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3443
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3444
+ <profile_background_tile>false</profile_background_tile>
3445
+ <statuses_count>87</statuses_count>
3446
+ <notifications>false</notifications>
3447
+ <geo_enabled>false</geo_enabled>
3448
+ <verified>true</verified>
3449
+ <following>true</following>
3450
+ </user>
3451
+ <geo/>
3452
+ </status>
3453
+ <status>
3454
+ <created_at>Fri Apr 17 14:22:49 +0000 2009</created_at>
3455
+ <id>1542315980</id>
3456
+ <text>hi everyone. sadie's great. gets her rabies vaccine today.</text>
3457
+ <source>web</source>
3458
+ <truncated>false</truncated>
3459
+ <in_reply_to_status_id></in_reply_to_status_id>
3460
+ <in_reply_to_user_id></in_reply_to_user_id>
3461
+ <favorited>false</favorited>
3462
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3463
+ <user>
3464
+ <id>19397785</id>
3465
+ <name>Oprah Winfrey</name>
3466
+ <screen_name>Oprah</screen_name>
3467
+ <location>Chicago, IL</location>
3468
+ <description>Live Your Best Life</description>
3469
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3470
+ <url>http://www.oprah.com</url>
3471
+ <protected>false</protected>
3472
+ <followers_count>2629650</followers_count>
3473
+ <profile_background_color>2f73f1</profile_background_color>
3474
+ <profile_text_color>333333</profile_text_color>
3475
+ <profile_link_color>0084B4</profile_link_color>
3476
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3477
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3478
+ <friends_count>17</friends_count>
3479
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3480
+ <favourites_count>0</favourites_count>
3481
+ <utc_offset>-21600</utc_offset>
3482
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3483
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3484
+ <profile_background_tile>false</profile_background_tile>
3485
+ <statuses_count>88</statuses_count>
3486
+ <notifications>false</notifications>
3487
+ <geo_enabled>false</geo_enabled>
3488
+ <verified>true</verified>
3489
+ <following>true</following>
3490
+ </user>
3491
+ <geo/>
3492
+ </status>
3493
+ <status>
3494
+ <created_at>Fri Apr 17 14:20:24 +0000 2009</created_at>
3495
+ <id>1542297426</id>
3496
+ <text>hi jimmy order a reuben for me.</text>
3497
+ <source>web</source>
3498
+ <truncated>false</truncated>
3499
+ <in_reply_to_status_id></in_reply_to_status_id>
3500
+ <in_reply_to_user_id></in_reply_to_user_id>
3501
+ <favorited>false</favorited>
3502
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3503
+ <user>
3504
+ <id>19397785</id>
3505
+ <name>Oprah Winfrey</name>
3506
+ <screen_name>Oprah</screen_name>
3507
+ <location>Chicago, IL</location>
3508
+ <description>Live Your Best Life</description>
3509
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3510
+ <url>http://www.oprah.com</url>
3511
+ <protected>false</protected>
3512
+ <followers_count>2592337</followers_count>
3513
+ <profile_background_color>2f73f1</profile_background_color>
3514
+ <profile_text_color>333333</profile_text_color>
3515
+ <profile_link_color>0084B4</profile_link_color>
3516
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3517
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3518
+ <friends_count>17</friends_count>
3519
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3520
+ <favourites_count>0</favourites_count>
3521
+ <utc_offset>-21600</utc_offset>
3522
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3523
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3524
+ <profile_background_tile>false</profile_background_tile>
3525
+ <statuses_count>86</statuses_count>
3526
+ <notifications>false</notifications>
3527
+ <geo_enabled>false</geo_enabled>
3528
+ <verified>true</verified>
3529
+ <following>true</following>
3530
+ </user>
3531
+ <geo/>
3532
+ </status>
3533
+ <status>
3534
+ <created_at>Fri Apr 17 14:11:03 +0000 2009</created_at>
3535
+ <id>1542224596</id>
3536
+ <text>HI TWITTERS . THANK YOU FOR A WARM WELCOME. FEELING REALLY 21st CENTURY .</text>
3537
+ <source>web</source>
3538
+ <truncated>false</truncated>
3539
+ <in_reply_to_status_id></in_reply_to_status_id>
3540
+ <in_reply_to_user_id></in_reply_to_user_id>
3541
+ <favorited>false</favorited>
3542
+ <in_reply_to_screen_name></in_reply_to_screen_name>
3543
+ <user>
3544
+ <id>19397785</id>
3545
+ <name>Oprah Winfrey</name>
3546
+ <screen_name>Oprah</screen_name>
3547
+ <location>Chicago, IL</location>
3548
+ <description>Live Your Best Life</description>
3549
+ <profile_image_url>http://a3.twimg.com/profile_images/140867957/oprah3_32I8049_normal.jpg</profile_image_url>
3550
+ <url>http://www.oprah.com</url>
3551
+ <protected>false</protected>
3552
+ <followers_count>2650940</followers_count>
3553
+ <profile_background_color>2f73f1</profile_background_color>
3554
+ <profile_text_color>333333</profile_text_color>
3555
+ <profile_link_color>0084B4</profile_link_color>
3556
+ <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
3557
+ <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
3558
+ <friends_count>17</friends_count>
3559
+ <created_at>Fri Jan 23 15:18:34 +0000 2009</created_at>
3560
+ <favourites_count>0</favourites_count>
3561
+ <utc_offset>-21600</utc_offset>
3562
+ <time_zone>Central Time (US &amp; Canada)</time_zone>
3563
+ <profile_background_image_url>http://a3.twimg.com/profile_background_images/8762585/twitter-v1.jpg</profile_background_image_url>
3564
+ <profile_background_tile>false</profile_background_tile>
3565
+ <statuses_count>89</statuses_count>
3566
+ <notifications>false</notifications>
3567
+ <geo_enabled>false</geo_enabled>
3568
+ <verified>true</verified>
3569
+ <following>true</following>
3570
+ </user>
3571
+ <geo/>
3572
+ </status>
3573
+ </statuses>