Query:	SELECT f.forum_id, f.cat_id, f.forum_name, f.forum_desc, f.forum_posts, f.forum_topics, c.cat_title
	FROM phpbb_forums f, phpbb_categories c
	WHERE f.forum_status <> 1
	AND f.cat_id = c.cat_id
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY f.forum_posts DESC
	LIMIT 10

Time before:  1.1694359779358
Time after:   1.1749031543732
Elapsed time: 0.0054671764373779
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  cat_id        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY          Using where 


Query:	SELECT t.topic_id, t.topic_title, t.topic_replies
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188232056)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY t.topic_replies DESC
	LIMIT 10

Time before:  1.2191240787506
Time after:   1.2623240947723
Elapsed time: 0.043200016021729
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.topic_title, t.topic_views
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188232056)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY t.topic_views DESC
	LIMIT 10

Time before:  1.2871510982513
Time after:   1.2975301742554
Elapsed time: 0.010379076004028
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, round(t.topic_views/(t.topic_replies + 1),2) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188232056)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY k DESC
	LIMIT 10

Time before:  1.338947057724
Time after:   1.3513300418854
Elapsed time: 0.012382984161377
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, round(t.topic_views/(t.topic_replies + 1),2) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188232056)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY k ASC
	LIMIT 10

Time before:  1.3827641010284
Time after:   1.3949971199036
Elapsed time: 0.012233018875122
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, round(t.topic_views/(t.topic_replies + 1),2) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188232056)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY k DESC
	LIMIT 10

Time before:  1.4187049865723
Time after:   1.431193113327
Elapsed time: 0.012488126754761
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, round(t.topic_views/(t.topic_replies + 1),2) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188232056)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY k ASC
	LIMIT 10

Time before:  1.4326460361481
Time after:   1.4425160884857
Elapsed time: 0.0098700523376465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT SUM(user_posts) as total_posts FROM phpbb_users WHERE user_id <> -1

Time before:  1.4995141029358
Time after:   1.5075149536133
Elapsed time: 0.0080008506774902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        1002  Using where 


Query:	SELECT user_id, username, user_posts, user_regdate,
	(user_posts/((1188232056 - user_regdate)/ 86400)) rate,
	ROUND((1188232056 - user_regdate)/ 86400) time_on_forum
	FROM phpbb_users WHERE (user_id <> -1 ) AND (user_posts > 0) ORDER BY rate DESC LIMIT 10

Time before:  1.5087080001831
Time after:   1.5245461463928
Elapsed time: 0.015838146209717
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1002  10  Using where; Using filesort 


Query:	SELECT SUM(a.vote_result) AS num_votes, b.topic_id, t.forum_id, t.topic_title
	FROM phpbb_vote_results a, phpbb_vote_desc b, phpbb_topics t, phpbb_forums f
	WHERE (t.forum_id = f.forum_id)
	AND (t.topic_id = b.topic_id)
	AND (t.topic_status <> 2)
	AND (t.topic_time < 1188232057)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	AND (a.vote_id = b.vote_id)
	GROUP BY a.vote_id
	ORDER BY num_votes DESC
	LIMIT 10

Time before:  1.6282839775085
Time after:   1.6672971248627
Elapsed time: 0.039013147354126
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  index  vote_id  vote_id    131  10  Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY,topic_id  PRIMARY  stevew_phpb2.a.vote_id     
SIMPLE  eq_ref  PRIMARY,forum_id,topic_status  PRIMARY  stevew_phpb2.b.topic_id    Using where 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.t.forum_id    Using where 


Query:	SELECT t.topic_id, t.topic_title, p.post_id, p.post_time, pt.post_subject, u.username, u.user_timezone, u.user_dateformat
	FROM phpbb_topics t, phpbb_posts p, phpbb_posts_text pt, phpbb_forums f, phpbb_users u
	WHERE p.post_id = topic_last_post_id
	AND p.poster_id = u.user_id
	AND pt.post_id = p.post_id
	AND (t.topic_status <> 2)
	AND (t.topic_time < 1188232057)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view < 2)
	AND (f.auth_read < 2)
	ORDER BY p.post_time DESC
	LIMIT 10

Time before:  1.7297070026398
Time after:   4.7476110458374
Elapsed time: 3.0179040431976
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 
SIMPLE  eq_ref  PRIMARY,poster_id  PRIMARY  stevew_phpb2.t.topic_last_post_id     
SIMPLE  pt  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.p.post_id     
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.p.poster_id     


Query:	SELECT t.topic_id, t.topic_title, t.topic_replies, t.topic_time, u.user_timezone, u.user_dateformat
	FROM phpbb_topics t, phpbb_users u, phpbb_forums f
	WHERE t.forum_id = f.forum_id
	AND f.auth_view < 2
	AND f.auth_read < 2
	AND (t.topic_status <> 2)
	AND (t.topic_time < 1188232060)
	AND u.user_id = 949
	ORDER BY t.topic_time DESC
	LIMIT 10

Time before:  4.7909381389618
Time after:   4.8028869628906
Elapsed time: 0.011948823928833
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  const  PRIMARY  PRIMARY  const  10  Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY        18    Using where 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT * FROM stats_smilies_info

Time before:  4.9367070198059
Time after:   4.9476759433746
Elapsed time: 0.010968923568726
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  stats_smilies_info  system           


Query:	SELECT * FROM stats_smilies_index

Time before:  4.9487180709839
Time after:   4.9890100955963
Elapsed time: 0.040292024612427
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  stats_smilies_index  ALL          360  360   


Query:	SELECT max(post_id) as total FROM phpbb_posts

Time before:  5.0002000331879
Time after:   5.0007650852203
Elapsed time: 0.0005650520324707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT COUNT(post_id) as total FROM phpbb_posts

Time before:  5.0017910003662
Time after:   5.002345085144
Elapsed time: 0.00055408477783203
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT smile_url FROM phpbb_smilies GROUP BY smile_url

Time before:  5.0032751560211
Time after:   5.0104320049286
Elapsed time: 0.0071568489074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  360  Using temporary; Using filesort 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '005.gif'

Time before:  5.014631986618
Time after:   5.0162501335144
Elapsed time: 0.0016181468963623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:o:%' AND post_id > 25753

Time before:  5.017480134964
Time after:   5.0182919502258
Elapsed time: 0.00081181526184082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '007.gif'

Time before:  5.0197031497955
Time after:   5.0212869644165
Elapsed time: 0.0015838146209717
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%0o0%' AND post_id > 25753

Time before:  5.0225260257721
Time after:   5.023561000824
Elapsed time: 0.0010349750518799
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '014.gif'

Time before:  5.0249221324921
Time after:   5.0265829563141
Elapsed time: 0.0016608238220215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%o!o%' AND post_id > 25753

Time before:  5.027811050415
Time after:   5.0288219451904
Elapsed time: 0.0010108947753906
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '015.gif'

Time before:  5.0305030345917
Time after:   5.0325191020966
Elapsed time: 0.0020160675048828
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%zzz%' AND post_id > 25753

Time before:  5.0340580940247
Time after:   5.0347490310669
Elapsed time: 0.00069093704223633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '026.gif'

Time before:  5.035658121109
Time after:   5.0371041297913
Elapsed time: 0.001446008682251
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%jmp%' AND post_id > 25753

Time before:  5.0383150577545
Time after:   5.0390069484711
Elapsed time: 0.00069189071655273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '033.gif'

Time before:  5.0403730869293
Time after:   5.04185795784
Elapsed time: 0.0014848709106445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%rfer%' AND post_id > 25753

Time before:  5.0429170131683
Time after:   5.0435349941254
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '041.gif'

Time before:  5.044538974762
Time after:   5.0460040569305
Elapsed time: 0.0014650821685791
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%aplse%' AND post_id > 25753

Time before:  5.0471370220184
Time after:   5.047835111618
Elapsed time: 0.00069808959960938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '3some.gif'

Time before:  5.0493021011353
Time after:   5.0503101348877
Elapsed time: 0.0010080337524414
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:3some:%' AND post_id > 25753

Time before:  5.0510470867157
Time after:   5.0514769554138
Elapsed time: 0.00042986869812012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'alien.gif'

Time before:  5.0521981716156
Time after:   5.0532071590424
Elapsed time: 0.0010089874267578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:alien:%' AND post_id > 25753

Time before:  5.053964138031
Time after:   5.0543141365051
Elapsed time: 0.00034999847412109
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel1.gif'

Time before:  5.0550949573517
Time after:   5.05601811409
Elapsed time: 0.00092315673828125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel1:%' AND post_id > 25753

Time before:  5.0565960407257
Time after:   5.0569629669189
Elapsed time: 0.0003669261932373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel10.gif'

Time before:  5.0576519966125
Time after:   5.0585260391235
Elapsed time: 0.00087404251098633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel10:%' AND post_id > 25753

Time before:  5.0592441558838
Time after:   5.0596380233765
Elapsed time: 0.00039386749267578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel11.gif'

Time before:  5.0603229999542
Time after:   5.0611870288849
Elapsed time: 0.00086402893066406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel11:%' AND post_id > 25753

Time before:  5.0617380142212
Time after:   5.0620820522308
Elapsed time: 0.00034403800964355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel12.gif'

Time before:  5.0628390312195
Time after:   5.0637471675873
Elapsed time: 0.00090813636779785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel12:%' AND post_id > 25753

Time before:  5.0643451213837
Time after:   5.0647051334381
Elapsed time: 0.00036001205444336
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel13.gif'

Time before:  5.0653779506683
Time after:   5.0662350654602
Elapsed time: 0.00085711479187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel13:%' AND post_id > 25753

Time before:  5.0669140815735
Time after:   5.0673570632935
Elapsed time: 0.0004429817199707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel2.gif'

Time before:  5.0681660175323
Time after:   5.0690760612488
Elapsed time: 0.00091004371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel2:%' AND post_id > 25753

Time before:  5.0696630477905
Time after:   5.0700480937958
Elapsed time: 0.00038504600524902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel3.gif'

Time before:  5.0708100795746
Time after:   5.0716891288757
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel3:%' AND post_id > 25753

Time before:  5.0724229812622
Time after:   5.0728280544281
Elapsed time: 0.00040507316589355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel4.gif'

Time before:  5.0735421180725
Time after:   5.0743889808655
Elapsed time: 0.00084686279296875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel4:%' AND post_id > 25753

Time before:  5.0749671459198
Time after:   5.0754029750824
Elapsed time: 0.00043582916259766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel5.gif'

Time before:  5.076740026474
Time after:   5.0784101486206
Elapsed time: 0.0016701221466064
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel5:%' AND post_id > 25753

Time before:  5.079822063446
Time after:   5.0806169509888
Elapsed time: 0.00079488754272461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel7.gif'

Time before:  5.0823199748993
Time after:   5.0842430591583
Elapsed time: 0.0019230842590332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel7:%' AND post_id > 25753

Time before:  5.0859451293945
Time after:   5.0872211456299
Elapsed time: 0.0012760162353516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel8.gif'

Time before:  5.0891950130463
Time after:   5.0907649993896
Elapsed time: 0.0015699863433838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel8:%' AND post_id > 25753

Time before:  5.091835975647
Time after:   5.0922801494598
Elapsed time: 0.00044417381286621
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel9.gif'

Time before:  5.0930981636047
Time after:   5.0942649841309
Elapsed time: 0.001166820526123
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel9:%' AND post_id > 25753

Time before:  5.0949649810791
Time after:   5.095388174057
Elapsed time: 0.00042319297790527
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry1.gif'

Time before:  5.0960719585419
Time after:   5.0969281196594
Elapsed time: 0.00085616111755371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry1:%' AND post_id > 25753

Time before:  5.0974979400635
Time after:   5.0978541374207
Elapsed time: 0.00035619735717773
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry2.gif'

Time before:  5.0986850261688
Time after:   5.0995910167694
Elapsed time: 0.00090599060058594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry2:%' AND post_id > 25753

Time before:  5.1001591682434
Time after:   5.1005141735077
Elapsed time: 0.00035500526428223
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry3.gif'

Time before:  5.1011791229248
Time after:   5.1020159721375
Elapsed time: 0.00083684921264648
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry3:%' AND post_id > 25753

Time before:  5.1025731563568
Time after:   5.1029210090637
Elapsed time: 0.00034785270690918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry4.gif'

Time before:  5.1037330627441
Time after:   5.1046199798584
Elapsed time: 0.00088691711425781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry4:%' AND post_id > 25753

Time before:  5.1051771640778
Time after:   5.1055300235748
Elapsed time: 0.00035285949707031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry5.gif'

Time before:  5.1062121391296
Time after:   5.1070511341095
Elapsed time: 0.0008389949798584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry5:%' AND post_id > 25753

Time before:  5.107654094696
Time after:   5.1081030368805
Elapsed time: 0.00044894218444824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry6.gif'

Time before:  5.1090340614319
Time after:   5.1103060245514
Elapsed time: 0.0012719631195068
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry6:%' AND post_id > 25753

Time before:  5.1112539768219
Time after:   5.1117589473724
Elapsed time: 0.00050497055053711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry7.gif'

Time before:  5.1125450134277
Time after:   5.1134011745453
Elapsed time: 0.00085616111755371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry7:%' AND post_id > 25753

Time before:  5.1139581203461
Time after:   5.1143109798431
Elapsed time: 0.00035285949707031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry8.gif'

Time before:  5.1150441169739
Time after:   5.1159200668335
Elapsed time: 0.00087594985961914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry8:%' AND post_id > 25753

Time before:  5.1165189743042
Time after:   5.1170001029968
Elapsed time: 0.00048112869262695
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry9.gif'

Time before:  5.1181440353394
Time after:   5.1193850040436
Elapsed time: 0.0012409687042236
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%angry9:%' AND post_id > 25753

Time before:  5.1201770305634
Time after:   5.120619058609
Elapsed time: 0.0004420280456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angryfire.gif'

Time before:  5.1215090751648
Time after:   5.1226940155029
Elapsed time: 0.0011849403381348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angryfire:%' AND post_id > 25753

Time before:  5.1235320568085
Time after:   5.1239981651306
Elapsed time: 0.00046610832214355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'argue.gif'

Time before:  5.1248519420624
Time after:   5.1260180473328
Elapsed time: 0.0011661052703857
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:argue:%' AND post_id > 25753

Time before:  5.1267940998077
Time after:   5.1274180412292
Elapsed time: 0.00062394142150879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'BangHead.gif'

Time before:  5.1287250518799
Time after:   5.1299030780792
Elapsed time: 0.0011780261993408
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:banghead:%' AND post_id > 25753

Time before:  5.1305401325226
Time after:   5.1310391426086
Elapsed time: 0.00049901008605957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'binkybaby.gif'

Time before:  5.1317689418793
Time after:   5.1326229572296
Elapsed time: 0.0008540153503418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:binky:%' AND post_id > 25753

Time before:  5.1331889629364
Time after:   5.1335411071777
Elapsed time: 0.00035214424133301
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'black_knight_standing.gif'

Time before:  5.13423204422
Time after:   5.1350779533386
Elapsed time: 0.00084590911865234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blackknight:%' AND post_id > 25753

Time before:  5.135852098465
Time after:   5.1364209651947
Elapsed time: 0.00056886672973633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob1.gif'

Time before:  5.1371729373932
Time after:   5.1380150318146
Elapsed time: 0.00084209442138672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob:%' AND post_id > 25753

Time before:  5.1385641098022
Time after:   5.1389150619507
Elapsed time: 0.0003509521484375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob10.gif'

Time before:  5.1397819519043
Time after:   5.1407401561737
Elapsed time: 0.00095820426940918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob8:%' AND post_id > 25753

Time before:  5.1413249969482
Time after:   5.1417729854584
Elapsed time: 0.00044798851013184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob3.gif'

Time before:  5.1426379680634
Time after:   5.1436619758606
Elapsed time: 0.0010240077972412
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob2:%' AND post_id > 25753

Time before:  5.14448595047
Time after:   5.1449480056763
Elapsed time: 0.00046205520629883
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob5.gif'

Time before:  5.145809173584
Time after:   5.1467571258545
Elapsed time: 0.00094795227050781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob3:%' AND post_id > 25753

Time before:  5.147369146347
Time after:   5.1477451324463
Elapsed time: 0.00037598609924316
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob6.gif'

Time before:  5.1484820842743
Time after:   5.149384021759
Elapsed time: 0.00090193748474121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob4:%' AND post_id > 25753

Time before:  5.1500239372253
Time after:   5.1505260467529
Elapsed time: 0.00050210952758789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob7.gif'

Time before:  5.151407957077
Time after:   5.1522700786591
Elapsed time: 0.00086212158203125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob5:%' AND post_id > 25753

Time before:  5.1531250476837
Time after:   5.1536099910736
Elapsed time: 0.00048494338989258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob8.gif'

Time before:  5.1543891429901
Time after:   5.1552860736847
Elapsed time: 0.00089693069458008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob6:%' AND post_id > 25753

Time before:  5.1558749675751
Time after:   5.1562509536743
Elapsed time: 0.00037598609924316
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob9.gif'

Time before:  5.1570069789886
Time after:   5.157858133316
Elapsed time: 0.00085115432739258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob7:%' AND post_id > 25753

Time before:  5.158478975296
Time after:   5.1590011119843
Elapsed time: 0.00052213668823242
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bom.gif'

Time before:  5.1599349975586
Time after:   5.1609010696411
Elapsed time: 0.00096607208251953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bom:%' AND post_id > 25753

Time before:  5.1621580123901
Time after:   5.1628501415253
Elapsed time: 0.00069212913513184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bonedemon.gif'

Time before:  5.1640200614929
Time after:   5.1649441719055
Elapsed time: 0.00092411041259766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bonedemon:%' AND post_id > 25753

Time before:  5.1655111312866
Time after:   5.16588306427
Elapsed time: 0.00037193298339844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'book1.gif'

Time before:  5.1666729450226
Time after:   5.1675961017609
Elapsed time: 0.00092315673828125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:book:%' AND post_id > 25753

Time before:  5.1683030128479
Time after:   5.168790102005
Elapsed time: 0.00048708915710449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'booty.gif'

Time before:  5.1696169376373
Time after:   5.1705951690674
Elapsed time: 0.00097823143005371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:booty:%' AND post_id > 25753

Time before:  5.1715550422668
Time after:   5.1723029613495
Elapsed time: 0.0007479190826416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bootyshake.gif'

Time before:  5.1731820106506
Time after:   5.1743350028992
Elapsed time: 0.0011529922485352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bootyshake:%' AND post_id > 25753

Time before:  5.175320148468
Time after:   5.1757640838623
Elapsed time: 0.00044393539428711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'boxing.gif'

Time before:  5.1764900684357
Time after:   5.1773669719696
Elapsed time: 0.00087690353393555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:boxing:%' AND post_id > 25753

Time before:  5.1779520511627
Time after:   5.1783201694489
Elapsed time: 0.00036811828613281
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'brave.gif'

Time before:  5.1797161102295
Time after:   5.1809051036835
Elapsed time: 0.0011889934539795
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:brave:%' AND post_id > 25753

Time before:  5.1815040111542
Time after:   5.1818931102753
Elapsed time: 0.00038909912109375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'brushteeth.gif'

Time before:  5.1826119422913
Time after:   5.1835250854492
Elapsed time: 0.00091314315795898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%brushteeth%' AND post_id > 25753

Time before:  5.1841461658478
Time after:   5.1845149993896
Elapsed time: 0.00036883354187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:brushteeth:%' AND post_id > 25753

Time before:  5.1852121353149
Time after:   5.1857869625092
Elapsed time: 0.00057482719421387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bs.gif'

Time before:  5.1872999668121
Time after:   5.1882510185242
Elapsed time: 0.00095105171203613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bs:%' AND post_id > 25753

Time before:  5.1888749599457
Time after:   5.1892399787903
Elapsed time: 0.00036501884460449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bunny.gif'

Time before:  5.1899521350861
Time after:   5.1908071041107
Elapsed time: 0.0008549690246582
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bunny:%' AND post_id > 25753

Time before:  5.1914169788361
Time after:   5.191792011261
Elapsed time: 0.00037503242492676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cat.gif'

Time before:  5.192526102066
Time after:   5.1933710575104
Elapsed time: 0.00084495544433594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cat:%' AND post_id > 25753

Time before:  5.1939251422882
Time after:   5.1942720413208
Elapsed time: 0.00034689903259277
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'clock.gif'

Time before:  5.1949491500854
Time after:   5.1960439682007
Elapsed time: 0.0010948181152344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:clock:%' AND post_id > 25753

Time before:  5.1970219612122
Time after:   5.1975619792938
Elapsed time: 0.00054001808166504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'coffee.gif'

Time before:  5.1983330249786
Time after:   5.1992511749268
Elapsed time: 0.00091814994812012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:coffee:%' AND post_id > 25753

Time before:  5.1998450756073
Time after:   5.2002220153809
Elapsed time: 0.00037693977355957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'coffee2.gif'

Time before:  5.2009680271149
Time after:   5.2018711566925
Elapsed time: 0.00090312957763672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:coffee2:%' AND post_id > 25753

Time before:  5.2024600505829
Time after:   5.202840089798
Elapsed time: 0.00038003921508789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'color.gif'

Time before:  5.2037060260773
Time after:   5.2046790122986
Elapsed time: 0.00097298622131348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:color:%' AND post_id > 25753

Time before:  5.2087590694427
Time after:   5.2094650268555
Elapsed time: 0.00070595741271973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'computer.gif'

Time before:  5.2104721069336
Time after:   5.2119121551514
Elapsed time: 0.0014400482177734
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:computer:%' AND post_id > 25753

Time before:  5.2131431102753
Time after:   5.2137539386749
Elapsed time: 0.0006108283996582
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused1.gif'

Time before:  5.2147710323334
Time after:   5.2161951065063
Elapsed time: 0.0014240741729736
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused1:%' AND post_id > 25753

Time before:  5.2171859741211
Time after:   5.2177460193634
Elapsed time: 0.00056004524230957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused2.gif'

Time before:  5.2188789844513
Time after:   5.219850063324
Elapsed time: 0.00097107887268066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused2:%' AND post_id > 25753

Time before:  5.2205610275269
Time after:   5.2209839820862
Elapsed time: 0.00042295455932617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused3.gif'

Time before:  5.2217230796814
Time after:   5.2225840091705
Elapsed time: 0.00086092948913574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused3:%' AND post_id > 25753

Time before:  5.2231841087341
Time after:   5.2235860824585
Elapsed time: 0.00040197372436523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused4.gif'

Time before:  5.2243220806122
Time after:   5.2251930236816
Elapsed time: 0.00087094306945801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused4:%' AND post_id > 25753

Time before:  5.2258050441742
Time after:   5.2261850833893
Elapsed time: 0.00038003921508789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused5.gif'

Time before:  5.2272510528564
Time after:   5.2281880378723
Elapsed time: 0.00093698501586914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused5:%' AND post_id > 25753

Time before:  5.2288179397583
Time after:   5.2292110919952
Elapsed time: 0.00039315223693848
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'crybaby2.gif'

Time before:  5.2299370765686
Time after:   5.2307810783386
Elapsed time: 0.00084400177001953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:crybaby:%' AND post_id > 25753

Time before:  5.2314410209656
Time after:   5.231861114502
Elapsed time: 0.00042009353637695
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cussing.gif'

Time before:  5.2329480648041
Time after:   5.233971118927
Elapsed time: 0.0010230541229248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cussing:%' AND post_id > 25753

Time before:  5.2413580417633
Time after:   5.2418260574341
Elapsed time: 0.00046801567077637
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cwm10.gif'

Time before:  5.2427439689636
Time after:   5.2439060211182
Elapsed time: 0.001162052154541
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cwm10:%' AND post_id > 25753

Time before:  5.2465460300446
Time after:   5.247111082077
Elapsed time: 0.0005650520324707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cwm21.gif'

Time before:  5.2480721473694
Time after:   5.2490141391754
Elapsed time: 0.00094199180603027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cwm21:%' AND post_id > 25753

Time before:  5.2501270771027
Time after:   5.2508060932159
Elapsed time: 0.00067901611328125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cya.gif'

Time before:  5.2520000934601
Time after:   5.2530951499939
Elapsed time: 0.0010950565338135
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cya:%' AND post_id > 25753

Time before:  5.2560811042786
Time after:   5.2566549777985
Elapsed time: 0.00057387351989746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dark1.gif'

Time before:  5.257728099823
Time after:   5.2590210437775
Elapsed time: 0.0012929439544678
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dark1:%' AND post_id > 25753

Time before:  5.2599320411682
Time after:   5.260694026947
Elapsed time: 0.00076198577880859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'diablo_ani_fire.gif'

Time before:  5.2618980407715
Time after:   5.2633819580078
Elapsed time: 0.0014839172363281
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:diabloanifire:%' AND post_id > 25753

Time before:  5.2643780708313
Time after:   5.2648961544037
Elapsed time: 0.0005180835723877
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dink.gif'

Time before:  5.2661430835724
Time after:   5.2676360607147
Elapsed time: 0.001492977142334
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%dink%' AND post_id > 25753

Time before:  5.2716219425201
Time after:   5.2745389938354
Elapsed time: 0.0029170513153076
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dink:%' AND post_id > 25753

Time before:  5.2773730754852
Time after:   5.2788469791412
Elapsed time: 0.0014739036560059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'director.gif'

Time before:  5.2829170227051
Time after:   5.2954571247101
Elapsed time: 0.012540102005005
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:director:%' AND post_id > 25753

Time before:  5.3015580177307
Time after:   5.3021171092987
Elapsed time: 0.00055909156799316
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'director2.gif'

Time before:  5.3036141395569
Time after:   5.3055901527405
Elapsed time: 0.0019760131835938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:director2:%' AND post_id > 25753

Time before:  5.3065950870514
Time after:   5.3073310852051
Elapsed time: 0.00073599815368652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'disgust.gif'

Time before:  5.3087680339813
Time after:   5.3109850883484
Elapsed time: 0.0022170543670654
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%disgust%' AND post_id > 25753

Time before:  5.3126499652863
Time after:   5.3132729530334
Elapsed time: 0.00062298774719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:disgust:%' AND post_id > 25753

Time before:  5.3143229484558
Time after:   5.3149399757385
Elapsed time: 0.00061702728271484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'DMAGE.gif'

Time before:  5.3161981105804
Time after:   5.3177871704102
Elapsed time: 0.0015890598297119
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dmage:%' AND post_id > 25753

Time before:  5.3186700344086
Time after:   5.3191699981689
Elapsed time: 0.00049996376037598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dog.gif'

Time before:  5.3204979896545
Time after:   5.3302249908447
Elapsed time: 0.0097270011901855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dog:%' AND post_id > 25753

Time before:  5.3327879905701
Time after:   5.3551430702209
Elapsed time: 0.022355079650879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dontknow.gif'

Time before:  5.3565180301666
Time after:   5.3579840660095
Elapsed time: 0.0014660358428955
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dontknow:%' AND post_id > 25753

Time before:  5.3589360713959
Time after:   5.3596370220184
Elapsed time: 0.00070095062255859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'downtown.gif'

Time before:  5.3608770370483
Time after:   5.3628499507904
Elapsed time: 0.0019729137420654
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:downtown:%' AND post_id > 25753

Time before:  5.3800449371338
Time after:   5.4274599552155
Elapsed time: 0.047415018081665
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'DRUIDD.gif'

Time before:  5.4398000240326
Time after:   5.4413011074066
Elapsed time: 0.0015010833740234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:druid:%' AND post_id > 25753

Time before:  5.4482581615448
Time after:   5.449373960495
Elapsed time: 0.0011157989501953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'drunken_smilie.gif'

Time before:  5.4509871006012
Time after:   5.4524850845337
Elapsed time: 0.0014979839324951
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:drunken:%' AND post_id > 25753

Time before:  5.453381061554
Time after:   5.45388007164
Elapsed time: 0.00049901008605957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'duckie.gif'

Time before:  5.4549040794373
Time after:   5.45636510849
Elapsed time: 0.0014610290527344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:duckie:%' AND post_id > 25753

Time before:  5.4574191570282
Time after:   5.4580421447754
Elapsed time: 0.00062298774719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Edfirst.gif'

Time before:  5.4592561721802
Time after:   5.4607090950012
Elapsed time: 0.0014529228210449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:edfirst:%' AND post_id > 25753

Time before:  5.4618401527405
Time after:   5.4624099731445
Elapsed time: 0.00056982040405273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil1.gif'

Time before:  5.4638140201569
Time after:   5.4652669429779
Elapsed time: 0.0014529228210449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil1:%' AND post_id > 25753

Time before:  5.4662840366364
Time after:   5.4669420719147
Elapsed time: 0.00065803527832031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil3.gif'

Time before:  5.4681160449982
Time after:   5.4694499969482
Elapsed time: 0.0013339519500732
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil3:%' AND post_id > 25753

Time before:  5.4705030918121
Time after:   5.4713389873505
Elapsed time: 0.00083589553833008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil4.gif'

Time before:  5.4726021289825
Time after:   5.4740829467773
Elapsed time: 0.0014808177947998
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil2:%' AND post_id > 25753

Time before:  5.4752960205078
Time after:   5.4760570526123
Elapsed time: 0.00076103210449219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil5.gif'

Time before:  5.4772510528564
Time after:   5.478621006012
Elapsed time: 0.0013699531555176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil3:%' AND post_id > 25753

Time before:  5.4797110557556
Time after:   5.4805631637573
Elapsed time: 0.00085210800170898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil6.gif'

Time before:  5.4873960018158
Time after:   5.4888479709625
Elapsed time: 0.0014519691467285
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil4:%' AND post_id > 25753

Time before:  5.4899401664734
Time after:   5.4905781745911
Elapsed time: 0.00063800811767578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil7.gif'

Time before:  5.4919440746307
Time after:   5.4935729503632
Elapsed time: 0.0016288757324219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil5:%' AND post_id > 25753

Time before:  5.4945950508118
Time after:   5.495157957077
Elapsed time: 0.00056290626525879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fart.gif'

Time before:  5.4965431690216
Time after:   5.4980530738831
Elapsed time: 0.0015099048614502
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fart:%' AND post_id > 25753

Time before:  5.4993050098419
Time after:   5.4998531341553
Elapsed time: 0.00054812431335449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'female.gif'

Time before:  5.5011129379272
Time after:   5.502552986145
Elapsed time: 0.0014400482177734
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:female:%' AND post_id > 25753

Time before:  5.5035419464111
Time after:   5.5041720867157
Elapsed time: 0.00063014030456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fenforcer.gif'

Time before:  5.505429983139
Time after:   5.5069470405579
Elapsed time: 0.0015170574188232
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:enforcer:%' AND post_id > 25753

Time before:  5.5080420970917
Time after:   5.5086481571198
Elapsed time: 0.00060606002807617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fflak.gif'

Time before:  5.5098061561584
Time after:   5.5113821029663
Elapsed time: 0.0015759468078613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:flak:%' AND post_id > 25753

Time before:  5.5123519897461
Time after:   5.512971162796
Elapsed time: 0.00061917304992676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fglob.gif'

Time before:  5.5142970085144
Time after:   5.5161221027374
Elapsed time: 0.0018250942230225
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bio:%' AND post_id > 25753

Time before:  5.5176930427551
Time after:   5.5184290409088
Elapsed time: 0.00073599815368652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fimpact.gif'

Time before:  5.5197350978851
Time after:   5.521203994751
Elapsed time: 0.0014688968658447
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:impact:%' AND post_id > 25753

Time before:  5.5223231315613
Time after:   5.522882938385
Elapsed time: 0.00055980682373047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fish.gif'

Time before:  5.524078130722
Time after:   5.5254509449005
Elapsed time: 0.0013728141784668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fish:%' AND post_id > 25753

Time before:  5.5265231132507
Time after:   5.5272970199585
Elapsed time: 0.00077390670776367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fplasma.gif'

Time before:  5.5284991264343
Time after:   5.5299069881439
Elapsed time: 0.0014078617095947
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:plasma:%' AND post_id > 25753

Time before:  5.530816078186
Time after:   5.5314431190491
Elapsed time: 0.00062704086303711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fripper.gif'

Time before:  5.5329191684723
Time after:   5.5344150066376
Elapsed time: 0.0014958381652832
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rip:%' AND post_id > 25753

Time before:  5.5359680652618
Time after:   5.5367071628571
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fsniper.gif'

Time before:  5.5388469696045
Time after:   5.5403289794922
Elapsed time: 0.0014820098876953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snipe:%' AND post_id > 25753

Time before:  5.5414440631866
Time after:   5.5420651435852
Elapsed time: 0.00062108039855957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fucyc.gif'

Time before:  5.5436670780182
Time after:   5.5454001426697
Elapsed time: 0.0017330646514893
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fucyc:%' AND post_id > 25753

Time before:  5.5465929508209
Time after:   5.5473749637604
Elapsed time: 0.00078201293945312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fxloc.gif'

Time before:  5.548534154892
Time after:   5.5499770641327
Elapsed time: 0.0014429092407227
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:trans:%' AND post_id > 25753

Time before:  5.5510311126709
Time after:   5.5517220497131
Elapsed time: 0.00069093704223633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses1.gif'

Time before:  5.5531001091003
Time after:   5.5546989440918
Elapsed time: 0.0015988349914551
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses1:%' AND post_id > 25753

Time before:  5.5666670799255
Time after:   5.5676369667053
Elapsed time: 0.00096988677978516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses10.gif'

Time before:  5.5692839622498
Time after:   5.5707590579987
Elapsed time: 0.0014750957489014
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses8:%' AND post_id > 25753

Time before:  5.5719010829926
Time after:   5.5726351737976
Elapsed time: 0.00073409080505371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses11.gif'

Time before:  5.5741441249847
Time after:   5.5757369995117
Elapsed time: 0.0015928745269775
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses9:%' AND post_id > 25753

Time before:  5.5767431259155
Time after:   5.5775711536407
Elapsed time: 0.00082802772521973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses12.gif'

Time before:  5.5788660049438
Time after:   5.5803201198578
Elapsed time: 0.0014541149139404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses10:%' AND post_id > 25753

Time before:  5.5812420845032
Time after:   5.5817699432373
Elapsed time: 0.00052785873413086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses13.gif'

Time before:  5.5829451084137
Time after:   5.5844061374664
Elapsed time: 0.0014610290527344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses11:%' AND post_id > 25753

Time before:  5.5854361057281
Time after:   5.5859529972076
Elapsed time: 0.00051689147949219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses2.gif'

Time before:  5.5870499610901
Time after:   5.5908069610596
Elapsed time: 0.0037569999694824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses2:%' AND post_id > 25753

Time before:  5.5963129997253
Time after:   5.6016910076141
Elapsed time: 0.0053780078887939
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses3.gif'

Time before:  5.6081731319427
Time after:   5.6175739765167
Elapsed time: 0.0094008445739746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses3:%' AND post_id > 25753

Time before:  5.6206259727478
Time after:   5.6236670017242
Elapsed time: 0.0030410289764404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses6.gif'

Time before:  5.6300950050354
Time after:   5.6352350711823
Elapsed time: 0.0051400661468506
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses4:%' AND post_id > 25753

Time before:  5.638729095459
Time after:   5.6414880752563
Elapsed time: 0.0027589797973633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses7.gif'

Time before:  5.6518969535828
Time after:   5.6667039394379
Elapsed time: 0.014806985855103
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses5:%' AND post_id > 25753

Time before:  5.6678509712219
Time after:   5.6684310436249
Elapsed time: 0.0005800724029541
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses8.gif'

Time before:  5.6695971488953
Time after:   5.6714141368866
Elapsed time: 0.001816987991333
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses6:%' AND post_id > 25753

Time before:  5.6788220405579
Time after:   5.6793739795685
Elapsed time: 0.00055193901062012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses9.gif'

Time before:  5.6804611682892
Time after:   5.6817600727081
Elapsed time: 0.0012989044189453
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses7:%' AND post_id > 25753

Time before:  5.6826131343842
Time after:   5.6832880973816
Elapsed time: 0.00067496299743652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'grommit.gif'

Time before:  5.6844401359558
Time after:   5.6857149600983
Elapsed time: 0.0012748241424561
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:grommit:%' AND post_id > 25753

Time before:  5.6865601539612
Time after:   5.6870341300964
Elapsed time: 0.00047397613525391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hal.gif'

Time before:  5.6880769729614
Time after:   5.6893310546875
Elapsed time: 0.0012540817260742
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hal%' AND post_id > 25753

Time before:  5.6902091503143
Time after:   5.6907181739807
Elapsed time: 0.00050902366638184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy1.gif'

Time before:  5.6918201446533
Time after:   5.6931309700012
Elapsed time: 0.0013108253479004
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy1:%' AND post_id > 25753

Time before:  5.6940231323242
Time after:   5.6946289539337
Elapsed time: 0.00060582160949707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy10.gif'

Time before:  5.6957671642303
Time after:   5.6971280574799
Elapsed time: 0.0013608932495117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy10:%' AND post_id > 25753

Time before:  5.6980180740356
Time after:   5.6985521316528
Elapsed time: 0.0005340576171875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy11.gif'

Time before:  5.6997139453888
Time after:   5.7010979652405
Elapsed time: 0.0013840198516846
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy11:%' AND post_id > 25753

Time before:  5.7021169662476
Time after:   5.7027750015259
Elapsed time: 0.00065803527832031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy2.gif'

Time before:  5.7040231227875
Time after:   5.7053771018982
Elapsed time: 0.0013539791107178
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy2:%' AND post_id > 25753

Time before:  5.7064690589905
Time after:   5.7072370052338
Elapsed time: 0.00076794624328613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy3.gif'

Time before:  5.7085151672363
Time after:   5.7099859714508
Elapsed time: 0.0014708042144775
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy3:%' AND post_id > 25753

Time before:  5.7108430862427
Time after:   5.7113780975342
Elapsed time: 0.00053501129150391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy4.gif'

Time before:  5.7123861312866
Time after:   5.7135920524597
Elapsed time: 0.0012059211730957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy4:%' AND post_id > 25753

Time before:  5.7143399715424
Time after:   5.7147829532623
Elapsed time: 0.0004429817199707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy5.gif'

Time before:  5.7160091400146
Time after:   5.7172350883484
Elapsed time: 0.0012259483337402
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy5:%' AND post_id > 25753

Time before:  5.7183129787445
Time after:   5.7194840908051
Elapsed time: 0.0011711120605469
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy6.gif'

Time before:  5.7207441329956
Time after:   5.7222220897675
Elapsed time: 0.0014779567718506
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy6:%' AND post_id > 25753

Time before:  5.7231559753418
Time after:   5.7237901687622
Elapsed time: 0.00063419342041016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy7.gif'

Time before:  5.7251501083374
Time after:   5.7265291213989
Elapsed time: 0.0013790130615234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy7:%' AND post_id > 25753

Time before:  5.7274930477142
Time after:   5.7280621528625
Elapsed time: 0.00056910514831543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy8.gif'

Time before:  5.7294330596924
Time after:   5.7307829856873
Elapsed time: 0.001349925994873
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy8:%' AND post_id > 25753

Time before:  5.7316379547119
Time after:   5.7321071624756
Elapsed time: 0.00046920776367188
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy9.gif'

Time before:  5.7332689762115
Time after:   5.7434229850769
Elapsed time: 0.010154008865356
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy9:%' AND post_id > 25753

Time before:  5.7524139881134
Time after:   5.7531311511993
Elapsed time: 0.0007171630859375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'headbang.gif'

Time before:  5.7544519901276
Time after:   5.756019115448
Elapsed time: 0.0015671253204346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:headbang:%' AND post_id > 25753

Time before:  5.7569799423218
Time after:   5.7575061321259
Elapsed time: 0.00052618980407715
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hello.gif'

Time before:  5.7586419582367
Time after:   5.7600679397583
Elapsed time: 0.0014259815216064
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hello2:%' AND post_id > 25753

Time before:  5.7610349655151
Time after:   5.7661571502686
Elapsed time: 0.005122184753418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hello2.gif'

Time before:  5.7674400806427
Time after:   5.7689411640167
Elapsed time: 0.0015010833740234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hello1:%' AND post_id > 25753

Time before:  5.7698559761047
Time after:   5.7704241275787
Elapsed time: 0.00056815147399902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'help.gif'

Time before:  5.7716209888458
Time after:   5.7731971740723
Elapsed time: 0.0015761852264404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:help:%' AND post_id > 25753

Time before:  5.7741501331329
Time after:   5.7746901512146
Elapsed time: 0.00054001808166504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hiding.gif'

Time before:  5.7762229442596
Time after:   5.7776761054993
Elapsed time: 0.001453161239624
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hiding:%' AND post_id > 25753

Time before:  5.7786049842834
Time after:   5.7791180610657
Elapsed time: 0.00051307678222656
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hippy2.gif'

Time before:  5.7803220748901
Time after:   5.781975030899
Elapsed time: 0.0016529560089111
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hippy2:%' AND post_id > 25753

Time before:  5.7829661369324
Time after:   5.7835459709167
Elapsed time: 0.000579833984375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hmh.gif'

Time before:  5.7847001552582
Time after:   5.7861371040344
Elapsed time: 0.0014369487762451
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hmph:%' AND post_id > 25753

Time before:  5.787171125412
Time after:   5.7877449989319
Elapsed time: 0.00057387351989746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'home.gif'

Time before:  5.788990020752
Time after:   5.7904441356659
Elapsed time: 0.0014541149139404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:home:%' AND post_id > 25753

Time before:  5.7913510799408
Time after:   5.7919080257416
Elapsed time: 0.00055694580078125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'homework.gif'

Time before:  5.7930719852448
Time after:   5.7944991588593
Elapsed time: 0.001427173614502
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:homework:%' AND post_id > 25753

Time before:  5.7958519458771
Time after:   5.7965440750122
Elapsed time: 0.00069212913513184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'iamwithstupid.gif'

Time before:  5.7977449893951
Time after:   5.8184840679169
Elapsed time: 0.020739078521729
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:withstupid:%' AND post_id > 25753

Time before:  5.8199059963226
Time after:   5.8206069469452
Elapsed time: 0.00070095062255859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icescream.gif'

Time before:  5.8219010829926
Time after:   5.8235149383545
Elapsed time: 0.0016138553619385
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:icescream:%' AND post_id > 25753

Time before:  5.8245980739594
Time after:   5.8252329826355
Elapsed time: 0.00063490867614746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_albino.gif'

Time before:  5.8268811702728
Time after:   5.8359930515289
Elapsed time: 0.0091118812561035
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:albino:%' AND post_id > 25753

Time before:  5.8370721340179
Time after:   5.8376359939575
Elapsed time: 0.0005638599395752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_anal.gif'

Time before:  5.8389320373535
Time after:   5.8405539989471
Elapsed time: 0.0016219615936279
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ANAL:%' AND post_id > 25753

Time before:  5.8414731025696
Time after:   5.8420190811157
Elapsed time: 0.00054597854614258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_arrow.gif'

Time before:  5.8432490825653
Time after:   5.8446879386902
Elapsed time: 0.0014388561248779
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:arrow:%' AND post_id > 25753

Time before:  5.8457961082458
Time after:   5.8463671207428
Elapsed time: 0.00057101249694824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_axe.gif'

Time before:  5.8476750850677
Time after:   5.8492290973663
Elapsed time: 0.001554012298584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:axe:%' AND post_id > 25753

Time before:  5.8503379821777
Time after:   5.8508939743042
Elapsed time: 0.00055599212646484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_biggrin.gif'

Time before:  5.8521029949188
Time after:   5.8535821437836
Elapsed time: 0.0014791488647461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:D%' AND post_id > 25753

Time before:  5.8546190261841
Time after:   5.8553450107574
Elapsed time: 0.00072598457336426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-D%' AND post_id > 25753

Time before:  5.8565199375153
Time after:   5.8571259975433
Elapsed time: 0.00060606002807617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:grin:%' AND post_id > 25753

Time before:  5.8582971096039
Time after:   5.858873128891
Elapsed time: 0.00057601928710938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:iconbiggrin:%' AND post_id > 25753

Time before:  5.8599410057068
Time after:   5.8606381416321
Elapsed time: 0.00069713592529297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_bigsmurf.gif'

Time before:  5.8621339797974
Time after:   5.8635931015015
Elapsed time: 0.0014591217041016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bigsmurf:%' AND post_id > 25753

Time before:  5.8645720481873
Time after:   5.8651211261749
Elapsed time: 0.0005490779876709
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_blackeye.gif'

Time before:  5.8664381504059
Time after:   5.8682651519775
Elapsed time: 0.0018270015716553
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blackeye:%' AND post_id > 25753

Time before:  5.8691999912262
Time after:   5.8697850704193
Elapsed time: 0.00058507919311523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_bounce.gif'

Time before:  5.8709311485291
Time after:   5.8722071647644
Elapsed time: 0.0012760162353516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bounce:%' AND post_id > 25753

Time before:  5.8730790615082
Time after:   5.87362408638
Elapsed time: 0.00054502487182617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_brilsmurf.gif'

Time before:  5.8747251033783
Time after:   5.8761010169983
Elapsed time: 0.0013759136199951
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:brilsmurf:%' AND post_id > 25753

Time before:  5.8770279884338
Time after:   5.8776230812073
Elapsed time: 0.0005950927734375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_butt.gif'

Time before:  5.8787779808044
Time after:   5.8801701068878
Elapsed time: 0.001392126083374
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:butthead:%' AND post_id > 25753

Time before:  5.881147146225
Time after:   5.8816721439362
Elapsed time: 0.00052499771118164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cat.gif'

Time before:  5.8828041553497
Time after:   5.8841290473938
Elapsed time: 0.0013248920440674
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cat:%' AND post_id > 25753

Time before:  5.8850049972534
Time after:   5.8855481147766
Elapsed time: 0.00054311752319336
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cheers.gif'

Time before:  5.8868870735168
Time after:   5.8884701728821
Elapsed time: 0.0015830993652344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cheers:%' AND post_id > 25753

Time before:  5.8894791603088
Time after:   5.8902220726013
Elapsed time: 0.00074291229248047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cheese.gif'

Time before:  5.8919899463654
Time after:   5.8936400413513
Elapsed time: 0.0016500949859619
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cheese:%' AND post_id > 25753

Time before:  5.895220041275
Time after:   5.8964099884033
Elapsed time: 0.0011899471282959
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cherry.gif'

Time before:  5.8979680538177
Time after:   5.8994779586792
Elapsed time: 0.0015099048614502
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cherry:%' AND post_id > 25753

Time before:  5.9005589485168
Time after:   5.9013800621033
Elapsed time: 0.00082111358642578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_clown.gif'

Time before:  5.9027080535889
Time after:   5.9045090675354
Elapsed time: 0.0018010139465332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:clown:%' AND post_id > 25753

Time before:  5.9056420326233
Time after:   5.9066560268402
Elapsed time: 0.0010139942169189
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_colors.gif'

Time before:  5.9080669879913
Time after:   5.9094250202179
Elapsed time: 0.0013580322265625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:colors:%' AND post_id > 25753

Time before:  5.9104120731354
Time after:   5.9111089706421
Elapsed time: 0.00069689750671387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_compress.gif'

Time before:  5.9126350879669
Time after:   5.9205160140991
Elapsed time: 0.0078809261322021
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:compress:%' AND post_id > 25753

Time before:  5.9216370582581
Time after:   5.9222660064697
Elapsed time: 0.00062894821166992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_confused.gif'

Time before:  5.9235391616821
Time after:   5.9248991012573
Elapsed time: 0.0013599395751953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:?%' AND post_id > 25753

Time before:  5.925861120224
Time after:   5.9264550209045
Elapsed time: 0.00059390068054199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-?%' AND post_id > 25753

Time before:  5.9275090694427
Time after:   5.9282491207123
Elapsed time: 0.00074005126953125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:???:%' AND post_id > 25753

Time before:  5.9292280673981
Time after:   5.9298269748688
Elapsed time: 0.00059890747070312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cool.gif'

Time before:  5.93101811409
Time after:   5.9326071739197
Elapsed time: 0.0015890598297119
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%8)%' AND post_id > 25753

Time before:  5.9335761070251
Time after:   5.9345710277557
Elapsed time: 0.00099492073059082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%8-)%' AND post_id > 25753

Time before:  5.9359431266785
Time after:   5.9366500377655
Elapsed time: 0.00070691108703613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cool:%' AND post_id > 25753

Time before:  5.9376420974731
Time after:   5.9381749629974
Elapsed time: 0.00053286552429199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cry.gif'

Time before:  5.9393529891968
Time after:   5.9406161308289
Elapsed time: 0.0012631416320801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cry:%' AND post_id > 25753

Time before:  5.9416880607605
Time after:   5.9423389434814
Elapsed time: 0.00065088272094727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cyclops.gif'

Time before:  5.9435980319977
Time after:   5.9449450969696
Elapsed time: 0.0013470649719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cyclops:%' AND post_id > 25753

Time before:  5.9458701610565
Time after:   5.9464471340179
Elapsed time: 0.00057697296142578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cyclops_ani.gif'

Time before:  5.9476540088654
Time after:   5.9490051269531
Elapsed time: 0.0013511180877686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cyclopsani:%' AND post_id > 25753

Time before:  5.9499280452728
Time after:   5.9505131244659
Elapsed time: 0.00058507919311523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_evil.gif'

Time before:  5.9517829418182
Time after:   5.9531321525574
Elapsed time: 0.0013492107391357
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil:%' AND post_id > 25753

Time before:  5.9542119503021
Time after:   5.9548590183258
Elapsed time: 0.00064706802368164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_exclaim.gif'

Time before:  5.9561910629272
Time after:   5.9575841426849
Elapsed time: 0.0013930797576904
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:!:%' AND post_id > 25753

Time before:  5.9584980010986
Time after:   5.9590451717377
Elapsed time: 0.00054717063903809
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_eyes.gif'

Time before:  5.9602341651917
Time after:   5.9615831375122
Elapsed time: 0.0013489723205566
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rolleyes:%' AND post_id > 25753

Time before:  5.9626250267029
Time after:   5.9632790088654
Elapsed time: 0.00065398216247559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_farao.gif'

Time before:  5.9645011425018
Time after:   5.965989112854
Elapsed time: 0.0014879703521729
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:faroah:%' AND post_id > 25753

Time before:  5.9677560329437
Time after:   5.971549987793
Elapsed time: 0.0037939548492432
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_flower.gif'

Time before:  5.9730060100555
Time after:   5.9744000434875
Elapsed time: 0.0013940334320068
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:flower:%' AND post_id > 25753

Time before:  5.9752790927887
Time after:   5.9758050441742
Elapsed time: 0.00052595138549805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_fU.gif'

Time before:  5.9768760204315
Time after:   5.9781041145325
Elapsed time: 0.0012280941009521
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:finga:%' AND post_id > 25753

Time before:  5.9789941310883
Time after:   5.9797461032867
Elapsed time: 0.00075197219848633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_geek.gif'

Time before:  5.9810371398926
Time after:   5.982362985611
Elapsed time: 0.0013258457183838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:geek:%' AND post_id > 25753

Time before:  5.9833700656891
Time after:   5.9840710163116
Elapsed time: 0.00070095062255859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_joker.gif'

Time before:  5.9854860305786
Time after:   5.9869019985199
Elapsed time: 0.0014159679412842
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:joker:%' AND post_id > 25753

Time before:  5.9879190921783
Time after:   5.9885931015015
Elapsed time: 0.00067400932312012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_jook.gif'

Time before:  5.9898960590363
Time after:   5.9912960529327
Elapsed time: 0.0013999938964844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:drinkers:%' AND post_id > 25753

Time before:  5.9922921657562
Time after:   5.9930081367493
Elapsed time: 0.00071597099304199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_karu.gif'

Time before:  5.994341135025
Time after:   5.9956290721893
Elapsed time: 0.0012879371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bear:%' AND post_id > 25753

Time before:  5.9968039989471
Time after:   5.9974730014801
Elapsed time: 0.00066900253295898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_keel.gif'

Time before:  5.9987120628357
Time after:   6.0001201629639
Elapsed time: 0.0014081001281738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tonqe:%' AND post_id > 25753

Time before:  6.0011200904846
Time after:   6.0019030570984
Elapsed time: 0.00078296661376953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_kidra.gif'

Time before:  6.0077800750732
Time after:   6.0134811401367
Elapsed time: 0.0057010650634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rock:%' AND post_id > 25753

Time before:  6.0147531032562
Time after:   6.0154819488525
Elapsed time: 0.00072884559631348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_king.gif'

Time before:  6.0167939662933
Time after:   6.0180940628052
Elapsed time: 0.0013000965118408
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:king:%' AND post_id > 25753

Time before:  6.0191690921783
Time after:   6.0197770595551
Elapsed time: 0.00060796737670898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_lol.gif'

Time before:  6.0211720466614
Time after:   6.0227501392365
Elapsed time: 0.0015780925750732
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lol:%' AND post_id > 25753

Time before:  6.0240790843964
Time after:   6.0246801376343
Elapsed time: 0.00060105323791504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_mad.gif'

Time before:  6.025906085968
Time after:   6.0268890857697
Elapsed time: 0.00098299980163574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:x%' AND post_id > 25753

Time before:  6.0276701450348
Time after:   6.0281901359558
Elapsed time: 0.00051999092102051
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-x%' AND post_id > 25753

Time before:  6.029196023941
Time after:   6.0298659801483
Elapsed time: 0.00066995620727539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mad:%' AND post_id > 25753

Time before:  6.0312221050262
Time after:   6.0343110561371
Elapsed time: 0.0030889511108398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_madu.gif'

Time before:  6.0362529754639
Time after:   6.0379519462585
Elapsed time: 0.0016989707946777
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snakeman:%' AND post_id > 25753

Time before:  6.0405530929565
Time after:   6.0421581268311
Elapsed time: 0.0016050338745117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_monkey.gif'

Time before:  6.043468952179
Time after:   6.0470681190491
Elapsed time: 0.0035991668701172
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:monkey:%' AND post_id > 25753

Time before:  6.0482361316681
Time after:   6.0488159656525
Elapsed time: 0.000579833984375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_mrgreen.gif'

Time before:  6.0502271652222
Time after:   6.0541191101074
Elapsed time: 0.0038919448852539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mrgreen:%' AND post_id > 25753

Time before:  6.0552451610565
Time after:   6.0558521747589
Elapsed time: 0.00060701370239258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_neutral.gif'

Time before:  6.0572791099548
Time after:   6.0673830509186
Elapsed time: 0.010103940963745
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:|%' AND post_id > 25753

Time before:  6.0685610771179
Time after:   6.0691571235657
Elapsed time: 0.00059604644775391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-|%' AND post_id > 25753

Time before:  6.0702300071716
Time after:   6.0712699890137
Elapsed time: 0.001039981842041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:neutral:%' AND post_id > 25753

Time before:  6.0723161697388
Time after:   6.0729701519012
Elapsed time: 0.00065398216247559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_oak.gif'

Time before:  6.0742070674896
Time after:   6.0755331516266
Elapsed time: 0.0013260841369629
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:vom:%' AND post_id > 25753

Time before:  6.0764491558075
Time after:   6.0769591331482
Elapsed time: 0.00050997734069824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pai.gif'

Time before:  6.0781719684601
Time after:   6.0795040130615
Elapsed time: 0.0013320446014404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:goodman:%' AND post_id > 25753

Time before:  6.0804171562195
Time after:   6.0809700489044
Elapsed time: 0.00055289268493652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pale.gif'

Time before:  6.0821521282196
Time after:   6.0834829807281
Elapsed time: 0.0013308525085449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pale:%' AND post_id > 25753

Time before:  6.0844860076904
Time after:   6.0851089954376
Elapsed time: 0.00062298774719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pall.gif'

Time before:  6.0862410068512
Time after:   6.0875020027161
Elapsed time: 0.0012609958648682
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fball:%' AND post_id > 25753

Time before:  6.0885629653931
Time after:   6.0891110897064
Elapsed time: 0.00054812431335449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pidu.gif'

Time before:  6.0902919769287
Time after:   6.0916380882263
Elapsed time: 0.0013461112976074
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:partyman:%' AND post_id > 25753

Time before:  6.0926220417023
Time after:   6.0931820869446
Elapsed time: 0.00056004524230957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pirat.gif'

Time before:  6.0943500995636
Time after:   6.0956590175629
Elapsed time: 0.0013089179992676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pirate:%' AND post_id > 25753

Time before:  6.0965781211853
Time after:   6.0971119403839
Elapsed time: 0.0005338191986084
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pray.gif'

Time before:  6.0983159542084
Time after:   6.099632024765
Elapsed time: 0.0013160705566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:prayer:%' AND post_id > 25753

Time before:  6.1005280017853
Time after:   6.1010520458221
Elapsed time: 0.00052404403686523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_profileleft.gif'

Time before:  6.1022441387177
Time after:   6.1035661697388
Elapsed time: 0.0013220310211182
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:profileleft:%' AND post_id > 25753

Time before:  6.1044731140137
Time after:   6.1050009727478
Elapsed time: 0.00052785873413086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_profileright.gif'

Time before:  6.1063179969788
Time after:   6.1076769828796
Elapsed time: 0.0013589859008789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:profileright:%' AND post_id > 25753

Time before:  6.1090850830078
Time after:   6.1098101139069
Elapsed time: 0.00072503089904785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_puke_l.gif'

Time before:  6.1113519668579
Time after:   6.1129400730133
Elapsed time: 0.0015881061553955
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeleft:%' AND post_id > 25753

Time before:  6.1140339374542
Time after:   6.1147861480713
Elapsed time: 0.00075221061706543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_puke_r.gif'

Time before:  6.1160960197449
Time after:   6.1175270080566
Elapsed time: 0.0014309883117676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeright:%' AND post_id > 25753

Time before:  6.1185591220856
Time after:   6.1192140579224
Elapsed time: 0.00065493583679199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_queen.gif'

Time before:  6.1205501556396
Time after:   6.1218161582947
Elapsed time: 0.0012660026550293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:queen:%' AND post_id > 25753

Time before:  6.1228041648865
Time after:   6.1233689785004
Elapsed time: 0.0005648136138916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_question.gif'

Time before:  6.1246149539948
Time after:   6.125951051712
Elapsed time: 0.0013360977172852
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:?:%' AND post_id > 25753

Time before:  6.1269509792328
Time after:   6.1281571388245
Elapsed time: 0.0012061595916748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rabbit.gif'

Time before:  6.1296031475067
Time after:   6.1310279369354
Elapsed time: 0.0014247894287109
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rabbit:%' AND post_id > 25753

Time before:  6.1324510574341
Time after:   6.1335761547089
Elapsed time: 0.0011250972747803
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_razz.gif'

Time before:  6.135085105896
Time after:   6.1367299556732
Elapsed time: 0.0016448497772217
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:P%' AND post_id > 25753

Time before:  6.1382019519806
Time after:   6.1390120983124
Elapsed time: 0.00081014633178711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-P%' AND post_id > 25753

Time before:  6.1399610042572
Time after:   6.1404230594635
Elapsed time: 0.00046205520629883
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:razz:%' AND post_id > 25753

Time before:  6.1410739421844
Time after:   6.1414520740509
Elapsed time: 0.00037813186645508
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_redface.gif'

Time before:  6.1425139904022
Time after:   6.1434350013733
Elapsed time: 0.00092101097106934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:oops:%' AND post_id > 25753

Time before:  6.1440689563751
Time after:   6.1445391178131
Elapsed time: 0.00047016143798828
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rendeer.gif'

Time before:  6.1453909873962
Time after:   6.1463150978088
Elapsed time: 0.00092411041259766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:reindeer:%' AND post_id > 25753

Time before:  6.147057056427
Time after:   6.1474990844727
Elapsed time: 0.0004420280456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rolleyes.gif'

Time before:  6.1484069824219
Time after:   6.1496069431305
Elapsed time: 0.0011999607086182
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:roll:%' AND post_id > 25753

Time before:  6.1507670879364
Time after:   6.1513340473175
Elapsed time: 0.00056695938110352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rr.gif'

Time before:  6.1525490283966
Time after:   6.1534969806671
Elapsed time: 0.00094795227050781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rr:%' AND post_id > 25753

Time before:  6.1544170379639
Time after:   6.154983997345
Elapsed time: 0.00056695938110352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_sad.gif'

Time before:  6.1562790870667
Time after:   6.1573009490967
Elapsed time: 0.0010218620300293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:(%' AND post_id > 25753

Time before:  6.1583080291748
Time after:   6.1589980125427
Elapsed time: 0.00068998336791992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-(%' AND post_id > 25753

Time before:  6.1600520610809
Time after:   6.1607439517975
Elapsed time: 0.00069189071655273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad:%' AND post_id > 25753

Time before:  6.1617350578308
Time after:   6.1622180938721
Elapsed time: 0.00048303604125977
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_salut.gif'

Time before:  6.1678850650787
Time after:   6.1689109802246
Elapsed time: 0.001025915145874
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:salute:%' AND post_id > 25753

Time before:  6.1702589988708
Time after:   6.1708099842072
Elapsed time: 0.00055098533630371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_santa.gif'

Time before:  6.1720011234283
Time after:   6.1733331680298
Elapsed time: 0.0013320446014404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:santa:%' AND post_id > 25753

Time before:  6.1741991043091
Time after:   6.1747570037842
Elapsed time: 0.00055789947509766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_scratch.gif'

Time before:  6.1758460998535
Time after:   6.1772489547729
Elapsed time: 0.0014028549194336
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:scratch:%' AND post_id > 25753

Time before:  6.1780450344086
Time after:   6.1786561012268
Elapsed time: 0.0006110668182373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_shaking.gif'

Time before:  6.1798961162567
Time after:   6.1812751293182
Elapsed time: 0.0013790130615234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking:%' AND post_id > 25753

Time before:  6.1821730136871
Time after:   6.1827781200409
Elapsed time: 0.00060510635375977
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_shaking2.gif'

Time before:  6.1838459968567
Time after:   6.1851711273193
Elapsed time: 0.0013251304626465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking2:%' AND post_id > 25753

Time before:  6.1860001087189
Time after:   6.1865839958191
Elapsed time: 0.00058388710021973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_silent.gif'

Time before:  6.1876990795135
Time after:   6.189022064209
Elapsed time: 0.0013229846954346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:silent:%' AND post_id > 25753

Time before:  6.18985414505
Time after:   6.1903879642487
Elapsed time: 0.0005338191986084
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_smile.gif'

Time before:  6.1916100978851
Time after:   6.192654132843
Elapsed time: 0.0010440349578857
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:)%' AND post_id > 25753

Time before:  6.1936390399933
Time after:   6.1941821575165
Elapsed time: 0.00054311752319336
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-)%' AND post_id > 25753

Time before:  6.1951470375061
Time after:   6.1956629753113
Elapsed time: 0.00051593780517578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smile:%' AND post_id > 25753

Time before:  6.1966421604156
Time after:   6.1970961093903
Elapsed time: 0.00045394897460938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:icon_smile:%' AND post_id > 25753

Time before:  6.1981379985809
Time after:   6.1986720561981
Elapsed time: 0.0005340576171875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_smurf.gif'

Time before:  6.199963092804
Time after:   6.2010090351105
Elapsed time: 0.0010459423065186
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smurf:%' AND post_id > 25753

Time before:  6.2021379470825
Time after:   6.2027630805969
Elapsed time: 0.0006251335144043
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_smurfin.gif'

Time before:  6.2040460109711
Time after:   6.2053620815277
Elapsed time: 0.0013160705566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smurfin:%' AND post_id > 25753

Time before:  6.2061021327972
Time after:   6.2066211700439
Elapsed time: 0.0005190372467041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_spiderman.gif'

Time before:  6.2078289985657
Time after:   6.2090511322021
Elapsed time: 0.0012221336364746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spiderman:%' AND post_id > 25753

Time before:  6.2099730968475
Time after:   6.2104690074921
Elapsed time: 0.00049591064453125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_study.gif'

Time before:  6.2119741439819
Time after:   6.2134561538696
Elapsed time: 0.0014820098876953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:study:%' AND post_id > 25753

Time before:  6.2146480083466
Time after:   6.2157101631165
Elapsed time: 0.0010621547698975
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_sunny.gif'

Time before:  6.2171521186829
Time after:   6.2186980247498
Elapsed time: 0.0015459060668945
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sunny:%' AND post_id > 25753

Time before:  6.2195811271667
Time after:   6.2201731204987
Elapsed time: 0.00059199333190918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_super.gif'

Time before:  6.2217020988464
Time after:   6.2227640151978
Elapsed time: 0.0010619163513184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:supz:%' AND post_id > 25753

Time before:  6.2234599590302
Time after:   6.2238719463348
Elapsed time: 0.0004119873046875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_surprised.gif'

Time before:  6.2248680591583
Time after:   6.2262799739838
Elapsed time: 0.0014119148254395
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-o%' AND post_id > 25753

Time before:  6.2270929813385
Time after:   6.2277030944824
Elapsed time: 0.0006101131439209
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_syda.gif'

Time before:  6.2289040088654
Time after:   6.2302670478821
Elapsed time: 0.0013630390167236
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:heart:%' AND post_id > 25753

Time before:  6.2309999465942
Time after:   6.2314381599426
Elapsed time: 0.00043821334838867
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_thumleft.gif'

Time before:  6.2359189987183
Time after:   6.237270116806
Elapsed time: 0.0013511180877686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbright:%' AND post_id > 25753

Time before:  6.2380990982056
Time after:   6.238715171814
Elapsed time: 0.00061607360839844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_thumright.gif'

Time before:  6.2407319545746
Time after:   6.2423379421234
Elapsed time: 0.0016059875488281
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbleft:%' AND post_id > 25753

Time before:  6.2439341545105
Time after:   6.2454271316528
Elapsed time: 0.001492977142334
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_toilet.gif'

Time before:  6.2470481395721
Time after:   6.2486140727997
Elapsed time: 0.0015659332275391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toimonster:%' AND post_id > 25753

Time before:  6.2499041557312
Time after:   6.2506000995636
Elapsed time: 0.00069594383239746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_tongue.gif'

Time before:  6.2527520656586
Time after:   6.2549810409546
Elapsed time: 0.0022289752960205
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue:%' AND post_id > 25753

Time before:  6.2564959526062
Time after:   6.257560968399
Elapsed time: 0.0010650157928467
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_twisted.gif'

Time before:  6.2599430084229
Time after:   6.2615129947662
Elapsed time: 0.0015699863433838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:twisted:%' AND post_id > 25753

Time before:  6.2624740600586
Time after:   6.263062953949
Elapsed time: 0.00058889389038086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_weed.gif'

Time before:  6.2647240161896
Time after:   6.2663660049438
Elapsed time: 0.0016419887542725
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:weedman:%' AND post_id > 25753

Time before:  6.2678649425507
Time after:   6.2688510417938
Elapsed time: 0.00098609924316406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_wink.gif'

Time before:  6.2704300880432
Time after:   6.2721221446991
Elapsed time: 0.0016920566558838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wink:%' AND post_id > 25753

Time before:  6.2732911109924
Time after:   6.2740449905396
Elapsed time: 0.00075387954711914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%;)%' AND post_id > 25753

Time before:  6.2754881381989
Time after:   6.2760989665985
Elapsed time: 0.0006108283996582
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%;-)%' AND post_id > 25753

Time before:  6.2772741317749
Time after:   6.2780110836029
Elapsed time: 0.00073695182800293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_winkle.gif'

Time before:  6.2793769836426
Time after:   6.2810480594635
Elapsed time: 0.0016710758209229
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:yawinkle:%' AND post_id > 25753

Time before:  6.2823710441589
Time after:   6.2831089496613
Elapsed time: 0.00073790550231934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'idea1.gif'

Time before:  6.2847380638123
Time after:   6.286376953125
Elapsed time: 0.0016388893127441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:idea1:%' AND post_id > 25753

Time before:  6.2875580787659
Time after:   6.2882561683655
Elapsed time: 0.00069808959960938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'iroc.gif'

Time before:  6.2897250652313
Time after:   6.2911429405212
Elapsed time: 0.001417875289917
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:iroc:%' AND post_id > 25753

Time before:  6.2924990653992
Time after:   6.2931971549988
Elapsed time: 0.00069808959960938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'jerk.gif'

Time before:  6.2948529720306
Time after:   6.2963261604309
Elapsed time: 0.0014731884002686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:jerk:%' AND post_id > 25753

Time before:  6.2973170280457
Time after:   6.2979209423065
Elapsed time: 0.00060391426086426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'kermit.gif'

Time before:  6.2992451190948
Time after:   6.3007581233978
Elapsed time: 0.0015130043029785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:kermit:%' AND post_id > 25753

Time before:  6.3019990921021
Time after:   6.302649974823
Elapsed time: 0.00065088272094727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'knob.gif'

Time before:  6.3046610355377
Time after:   6.3059480190277
Elapsed time: 0.0012869834899902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:knob:%' AND post_id > 25753

Time before:  6.3069670200348
Time after:   6.3077919483185
Elapsed time: 0.00082492828369141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'ky.gif'

Time before:  6.3098061084747
Time after:   6.3117971420288
Elapsed time: 0.0019910335540771
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ky:%' AND post_id > 25753

Time before:  6.3130619525909
Time after:   6.3137950897217
Elapsed time: 0.0007331371307373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'la.gif'

Time before:  6.3156809806824
Time after:   6.3174920082092
Elapsed time: 0.0018110275268555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:la:%' AND post_id > 25753

Time before:  6.3189101219177
Time after:   6.3197729587555
Elapsed time: 0.00086283683776855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing1.gif'

Time before:  6.3214659690857
Time after:   6.3229730129242
Elapsed time: 0.001507043838501
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing1:%' AND post_id > 25753

Time before:  6.3242859840393
Time after:   6.3248510360718
Elapsed time: 0.0005650520324707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing11.gif'

Time before:  6.3262469768524
Time after:   6.3275811672211
Elapsed time: 0.0013341903686523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing9:%' AND post_id > 25753

Time before:  6.3285660743713
Time after:   6.3290259838104
Elapsed time: 0.00045990943908691
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing3.gif'

Time before:  6.3304381370544
Time after:   6.3318021297455
Elapsed time: 0.00136399269104
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing2:%' AND post_id > 25753

Time before:  6.3327460289001
Time after:   6.3333621025085
Elapsed time: 0.00061607360839844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing4.gif'

Time before:  6.3347489833832
Time after:   6.3361780643463
Elapsed time: 0.0014290809631348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing3:%' AND post_id > 25753

Time before:  6.3372099399567
Time after:   6.3377959728241
Elapsed time: 0.00058603286743164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing5.gif'

Time before:  6.3391051292419
Time after:   6.3405101299286
Elapsed time: 0.0014050006866455
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing4:%' AND post_id > 25753

Time before:  6.3414659500122
Time after:   6.3420660495758
Elapsed time: 0.00060009956359863
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing6.gif'

Time before:  6.3433909416199
Time after:   6.3447000980377
Elapsed time: 0.0013091564178467
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing5:%' AND post_id > 25753

Time before:  6.345752954483
Time after:   6.3464410305023
Elapsed time: 0.00068807601928711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing7.gif'

Time before:  6.3478190898895
Time after:   6.3493490219116
Elapsed time: 0.0015299320220947
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing6:%' AND post_id > 25753

Time before:  6.3503310680389
Time after:   6.3509960174561
Elapsed time: 0.00066494941711426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing8.gif'

Time before:  6.3524839878082
Time after:   6.353816986084
Elapsed time: 0.0013329982757568
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing7:%' AND post_id > 25753

Time before:  6.3547601699829
Time after:   6.3553509712219
Elapsed time: 0.00059080123901367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing9.gif'

Time before:  6.3565781116486
Time after:   6.3578701019287
Elapsed time: 0.0012919902801514
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing8:%' AND post_id > 25753

Time before:  6.3587400913239
Time after:   6.3592841625214
Elapsed time: 0.00054407119750977
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love1.gif'

Time before:  6.3607230186462
Time after:   6.3621411323547
Elapsed time: 0.0014181137084961
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love1:%' AND post_id > 25753

Time before:  6.3631370067596
Time after:   6.3636651039124
Elapsed time: 0.00052809715270996
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love10.gif'

Time before:  6.3649799823761
Time after:   6.3662440776825
Elapsed time: 0.0012640953063965
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love10:%' AND post_id > 25753

Time before:  6.3674321174622
Time after:   6.3680059909821
Elapsed time: 0.00057387351989746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love2.gif'

Time before:  6.3695650100708
Time after:   6.3709931373596
Elapsed time: 0.0014281272888184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love2:%' AND post_id > 25753

Time before:  6.372220993042
Time after:   6.3729779720306
Elapsed time: 0.00075697898864746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love3.gif'

Time before:  6.3743531703949
Time after:   6.3757419586182
Elapsed time: 0.0013887882232666
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love3:%' AND post_id > 25753

Time before:  6.3767411708832
Time after:   6.377345085144
Elapsed time: 0.00060391426086426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love4.gif'

Time before:  6.3787040710449
Time after:   6.3801519870758
Elapsed time: 0.0014479160308838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love4:%' AND post_id > 25753

Time before:  6.3814280033112
Time after:   6.3820149898529
Elapsed time: 0.00058698654174805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love5.gif'

Time before:  6.3837039470673
Time after:   6.3849880695343
Elapsed time: 0.001284122467041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love5:%' AND post_id > 25753

Time before:  6.386029958725
Time after:   6.3866651058197
Elapsed time: 0.00063514709472656
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love6.gif'

Time before:  6.3881161212921
Time after:   6.3893980979919
Elapsed time: 0.0012819766998291
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love6:%' AND post_id > 25753

Time before:  6.3904819488525
Time after:   6.3911211490631
Elapsed time: 0.00063920021057129
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love7.gif'

Time before:  6.3925549983978
Time after:   6.3938610553741
Elapsed time: 0.0013060569763184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love7:%' AND post_id > 25753

Time before:  6.394896030426
Time after:   6.3954410552979
Elapsed time: 0.00054502487182617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love8.gif'

Time before:  6.3968050479889
Time after:   6.3982040882111
Elapsed time: 0.001399040222168
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love8:%' AND post_id > 25753

Time before:  6.3991270065308
Time after:   6.3997051715851
Elapsed time: 0.00057816505432129
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love9.gif'

Time before:  6.4009690284729
Time after:   6.4022850990295
Elapsed time: 0.0013160705566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love9:%' AND post_id > 25753

Time before:  6.4033191204071
Time after:   6.4040150642395
Elapsed time: 0.00069594383239746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'lovestory.gif'

Time before:  6.4055171012878
Time after:   6.406790971756
Elapsed time: 0.0012738704681396
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lovestory:%' AND post_id > 25753

Time before:  6.407772064209
Time after:   6.4084320068359
Elapsed time: 0.00065994262695312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'lurk.gif'

Time before:  6.4097630977631
Time after:   6.4110300540924
Elapsed time: 0.0012669563293457
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lurk:%' AND post_id > 25753

Time before:  6.41197514534
Time after:   6.4126069545746
Elapsed time: 0.00063180923461914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'male.gif'

Time before:  6.413861989975
Time after:   6.4152319431305
Elapsed time: 0.0013699531555176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:male:%' AND post_id > 25753

Time before:  6.4162211418152
Time after:   6.41681599617
Elapsed time: 0.0005948543548584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'mblah05.gif'

Time before:  6.4181270599365
Time after:   6.4194860458374
Elapsed time: 0.0013589859008789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blah5:%' AND post_id > 25753

Time before:  6.4205451011658
Time after:   6.4211549758911
Elapsed time: 0.0006098747253418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'merror.gif'

Time before:  6.4225301742554
Time after:   6.4238049983978
Elapsed time: 0.0012748241424561
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:error:%' AND post_id > 25753

Time before:  6.4247081279755
Time after:   6.4254291057587
Elapsed time: 0.00072097778320312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'mumum.gif'

Time before:  6.426922082901
Time after:   6.4282369613647
Elapsed time: 0.0013148784637451
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mumum:%' AND post_id > 25753

Time before:  6.4291939735413
Time after:   6.4297511577606
Elapsed time: 0.00055718421936035
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'munky2.gif'

Time before:  6.4311270713806
Time after:   6.4325411319733
Elapsed time: 0.0014140605926514
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:munky2:%' AND post_id > 25753

Time before:  6.4335770606995
Time after:   6.4340431690216
Elapsed time: 0.00046610832214355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'naka.gif'

Time before:  6.4354250431061
Time after:   6.4367091655731
Elapsed time: 0.001284122467041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:naka:%' AND post_id > 25753

Time before:  6.4377961158752
Time after:   6.4382750988007
Elapsed time: 0.00047898292541504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'newbie.gif'

Time before:  6.4395899772644
Time after:   6.4409029483795
Elapsed time: 0.0013129711151123
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:newb:%' AND post_id > 25753

Time before:  6.4419720172882
Time after:   6.4427969455719
Elapsed time: 0.00082492828369141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'nike.gif'

Time before:  6.444267988205
Time after:   6.4455449581146
Elapsed time: 0.001276969909668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:nike:%' AND post_id > 25753

Time before:  6.4466631412506
Time after:   6.4473040103912
Elapsed time: 0.000640869140625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'notworthy.gif'

Time before:  6.4488360881805
Time after:   6.4501709938049
Elapsed time: 0.0013349056243896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:notworthy:%' AND post_id > 25753

Time before:  6.4512939453125
Time after:   6.4518120288849
Elapsed time: 0.0005180835723877
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion1.gif'

Time before:  6.4532141685486
Time after:   6.4545900821686
Elapsed time: 0.0013759136199951
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion1:%' AND post_id > 25753

Time before:  6.4555690288544
Time after:   6.4561259746552
Elapsed time: 0.00055694580078125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion13.gif'

Time before:  6.457405090332
Time after:   6.4586720466614
Elapsed time: 0.0012669563293457
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion4:%' AND post_id > 25753

Time before:  6.4597430229187
Time after:   6.4605309963226
Elapsed time: 0.00078797340393066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion14.gif'

Time before:  6.4621410369873
Time after:   6.4636521339417
Elapsed time: 0.0015110969543457
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion5:%' AND post_id > 25753

Time before:  6.4647099971771
Time after:   6.4655020236969
Elapsed time: 0.00079202651977539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion15.gif'

Time before:  6.4670579433441
Time after:   6.4685909748077
Elapsed time: 0.001533031463623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion6:%' AND post_id > 25753

Time before:  6.469810962677
Time after:   6.4705560207367
Elapsed time: 0.00074505805969238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion16.gif'

Time before:  6.4724540710449
Time after:   6.4740011692047
Elapsed time: 0.00154709815979
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion7:%' AND post_id > 25753

Time before:  6.4751579761505
Time after:   6.4762151241302
Elapsed time: 0.0010571479797363
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion17.gif'

Time before:  6.4779050350189
Time after:   6.4788839817047
Elapsed time: 0.00097894668579102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion8:%' AND post_id > 25753

Time before:  6.4795491695404
Time after:   6.4799840450287
Elapsed time: 0.00043487548828125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion18.gif'

Time before:  6.4809260368347
Time after:   6.4818341732025
Elapsed time: 0.00090813636779785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion9:%' AND post_id > 25753

Time before:  6.4824841022491
Time after:   6.4828670024872
Elapsed time: 0.00038290023803711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion5.gif'

Time before:  6.4838140010834
Time after:   6.4847340583801
Elapsed time: 0.00092005729675293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion2:%' AND post_id > 25753

Time before:  6.4853761196136
Time after:   6.4857909679413
Elapsed time: 0.00041484832763672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'offtheair.gif'

Time before:  6.4867100715637
Time after:   6.487624168396
Elapsed time: 0.00091409683227539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:offtheair:%' AND post_id > 25753

Time before:  6.488312959671
Time after:   6.4887139797211
Elapsed time: 0.00040102005004883
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'ORGR.gif'

Time before:  6.4896261692047
Time after:   6.4905321598053
Elapsed time: 0.00090599060058594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ogre:%' AND post_id > 25753

Time before:  6.4911489486694
Time after:   6.4916069507599
Elapsed time: 0.0004580020904541
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pain10.gif'

Time before:  6.4925620555878
Time after:   6.4934630393982
Elapsed time: 0.0009009838104248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pain10:%' AND post_id > 25753

Time before:  6.4941201210022
Time after:   6.4945220947266
Elapsed time: 0.00040197372436523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain1.gif'

Time before:  6.4954791069031
Time after:   6.4964189529419
Elapsed time: 0.00093984603881836
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain1:%' AND post_id > 25753

Time before:  6.4970581531525
Time after:   6.4974780082703
Elapsed time: 0.00041985511779785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain2.gif'

Time before:  6.4983911514282
Time after:   6.4993300437927
Elapsed time: 0.00093889236450195
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain2:%' AND post_id > 25753

Time before:  6.5000619888306
Time after:   6.5006649494171
Elapsed time: 0.00060296058654785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain3.gif'

Time before:  6.5017759799957
Time after:   6.5030131340027
Elapsed time: 0.001237154006958
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain3:%' AND post_id > 25753

Time before:  6.503769159317
Time after:   6.5041840076447
Elapsed time: 0.00041484832763672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain4.gif'

Time before:  6.5051290988922
Time after:   6.5060510635376
Elapsed time: 0.00092196464538574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain4:%' AND post_id > 25753

Time before:  6.5066859722137
Time after:   6.5070910453796
Elapsed time: 0.00040507316589355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain5.gif'

Time before:  6.5080261230469
Time after:   6.5089390277863
Elapsed time: 0.00091290473937988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain5:%' AND post_id > 25753

Time before:  6.5096600055695
Time after:   6.5102050304413
Elapsed time: 0.00054502487182617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'protest.gif'

Time before:  6.5111570358276
Time after:   6.5121071338654
Elapsed time: 0.00095009803771973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:protest:%' AND post_id > 25753

Time before:  6.5127639770508
Time after:   6.5131731033325
Elapsed time: 0.00040912628173828
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'puke.gif'

Time before:  6.5140869617462
Time after:   6.5149850845337
Elapsed time: 0.00089812278747559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:puke:%' AND post_id > 25753

Time before:  6.5156810283661
Time after:   6.5160739421844
Elapsed time: 0.00039291381835938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'read.gif'

Time before:  6.5170321464539
Time after:   6.5183341503143
Elapsed time: 0.0013020038604736
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read:%' AND post_id > 25753

Time before:  6.5192260742188
Time after:   6.519670009613
Elapsed time: 0.00044393539428711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'read2.gif'

Time before:  6.5205881595612
Time after:   6.5215110778809
Elapsed time: 0.00092291831970215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read2:%' AND post_id > 25753

Time before:  6.5221741199493
Time after:   6.5225689411163
Elapsed time: 0.00039482116699219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-bluecap.gif'

Time before:  6.5236530303955
Time after:   6.5245950222015
Elapsed time: 0.00094199180603027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf2:%' AND post_id > 25753

Time before:  6.5254261493683
Time after:   6.5258760452271
Elapsed time: 0.00044989585876465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-chainsaw.gif'

Time before:  6.5269680023193
Time after:   6.5279250144958
Elapsed time: 0.00095701217651367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:chain:%' AND post_id > 25753

Time before:  6.528589963913
Time after:   6.5289950370789
Elapsed time: 0.00040507316589355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-ctf.gif'

Time before:  6.5300300121307
Time after:   6.5309569835663
Elapsed time: 0.00092697143554688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf:%' AND post_id > 25753

Time before:  6.5318410396576
Time after:   6.5323150157928
Elapsed time: 0.00047397613525391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-instagib.gif'

Time before:  6.5334391593933
Time after:   6.5343451499939
Elapsed time: 0.00090599060058594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:gib:%' AND post_id > 25753

Time before:  6.5350451469421
Time after:   6.5355560779572
Elapsed time: 0.00051093101501465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-minigun.gif'

Time before:  6.5364720821381
Time after:   6.5373821258545
Elapsed time: 0.00091004371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:minigun:%' AND post_id > 25753

Time before:  6.5380041599274
Time after:   6.538407087326
Elapsed time: 0.00040292739868164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-shock.gif'

Time before:  6.5393559932709
Time after:   6.5403549671173
Elapsed time: 0.00099897384643555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shock:%' AND post_id > 25753

Time before:  6.5411369800568
Time after:   6.5415830612183
Elapsed time: 0.00044608116149902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-telefrag.gif'

Time before:  6.542732000351
Time after:   6.5436990261078
Elapsed time: 0.00096702575683594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tfrag:%' AND post_id > 25753

Time before:  6.5443561077118
Time after:   6.5447800159454
Elapsed time: 0.00042390823364258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad1.gif'

Time before:  6.5457129478455
Time after:   6.5466179847717
Elapsed time: 0.00090503692626953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad1:%' AND post_id > 25753

Time before:  6.547287940979
Time after:   6.5476880073547
Elapsed time: 0.00040006637573242
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad10.gif'

Time before:  6.5486421585083
Time after:   6.5495669841766
Elapsed time: 0.00092482566833496
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad10:%' AND post_id > 25753

Time before:  6.5502009391785
Time after:   6.5506279468536
Elapsed time: 0.0004270076751709
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad11.gif'

Time before:  6.551589012146
Time after:   6.5525031089783
Elapsed time: 0.00091409683227539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad11:%' AND post_id > 25753

Time before:  6.5531589984894
Time after:   6.5535640716553
Elapsed time: 0.00040507316589355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad2.gif'

Time before:  6.5544810295105
Time after:   6.5554261207581
Elapsed time: 0.00094509124755859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad2:%' AND post_id > 25753

Time before:  6.556046962738
Time after:   6.5564751625061
Elapsed time: 0.00042819976806641
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad3.gif'

Time before:  6.5575039386749
Time after:   6.5584170818329
Elapsed time: 0.00091314315795898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad3:%' AND post_id > 25753

Time before:  6.5590741634369
Time after:   6.5595600605011
Elapsed time: 0.00048589706420898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad4.gif'

Time before:  6.5605340003967
Time after:   6.5617051124573
Elapsed time: 0.0011711120605469
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad4:%' AND post_id > 25753

Time before:  6.5623831748962
Time after:   6.562844991684
Elapsed time: 0.00046181678771973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad5.gif'

Time before:  6.563814163208
Time after:   6.5649969577789
Elapsed time: 0.0011827945709229
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad5:%' AND post_id > 25753

Time before:  6.5656630992889
Time after:   6.5661160945892
Elapsed time: 0.00045299530029297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad6.gif'

Time before:  6.5671329498291
Time after:   6.568382024765
Elapsed time: 0.0012490749359131
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad6:%' AND post_id > 25753

Time before:  6.5690860748291
Time after:   6.5695190429688
Elapsed time: 0.00043296813964844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad7.gif'

Time before:  6.5705201625824
Time after:   6.5715820789337
Elapsed time: 0.0010619163513184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad7:%' AND post_id > 25753

Time before:  6.5722780227661
Time after:   6.5727119445801
Elapsed time: 0.00043392181396484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad8.gif'

Time before:  6.573802947998
Time after:   6.5747289657593
Elapsed time: 0.00092601776123047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad8:%' AND post_id > 25753

Time before:  6.5757369995117
Time after:   6.5770561695099
Elapsed time: 0.0013191699981689
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad9.gif'

Time before:  6.5788819789886
Time after:   6.5806109905243
Elapsed time: 0.0017290115356445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad9:%' AND post_id > 25753

Time before:  6.5817129611969
Time after:   6.5824360847473
Elapsed time: 0.00072312355041504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sex.gif'

Time before:  6.5850050449371
Time after:   6.5872480869293
Elapsed time: 0.0022430419921875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sex:%' AND post_id > 25753

Time before:  6.5892350673676
Time after:   6.5902280807495
Elapsed time: 0.00099301338195801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign10.gif'

Time before:  6.5921809673309
Time after:   6.5939710140228
Elapsed time: 0.0017900466918945
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign5:%' AND post_id > 25753

Time before:  6.595006942749
Time after:   6.595626115799
Elapsed time: 0.00061917304992676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign12.gif'

Time before:  6.5969340801239
Time after:   6.5984590053558
Elapsed time: 0.0015249252319336
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign6:%' AND post_id > 25753

Time before:  6.5996530056
Time after:   6.6006720066071
Elapsed time: 0.0010190010070801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign13.gif'

Time before:  6.602756023407
Time after:   6.6044800281525
Elapsed time: 0.0017240047454834
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign7:%' AND post_id > 25753

Time before:  6.6057851314545
Time after:   6.6065239906311
Elapsed time: 0.00073885917663574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign14.gif'

Time before:  6.6081240177155
Time after:   6.6096971035004
Elapsed time: 0.0015730857849121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign8:%' AND post_id > 25753

Time before:  6.6109290122986
Time after:   6.6117031574249
Elapsed time: 0.00077414512634277
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign16.gif'

Time before:  6.613165140152
Time after:   6.6146359443665
Elapsed time: 0.0014708042144775
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign9:%' AND post_id > 25753

Time before:  6.6158320903778
Time after:   6.6166579723358
Elapsed time: 0.00082588195800781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign17.gif'

Time before:  6.6184430122375
Time after:   6.620010137558
Elapsed time: 0.0015671253204346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign10:%' AND post_id > 25753

Time before:  6.6213321685791
Time after:   6.6221930980682
Elapsed time: 0.00086092948913574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign18.gif'

Time before:  6.6239991188049
Time after:   6.6255860328674
Elapsed time: 0.0015869140625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign11:%' AND post_id > 25753

Time before:  6.6267950534821
Time after:   6.6275701522827
Elapsed time: 0.00077509880065918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign19.gif'

Time before:  6.6290860176086
Time after:   6.6306171417236
Elapsed time: 0.0015311241149902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign12:%' AND post_id > 25753

Time before:  6.6318609714508
Time after:   6.6325409412384
Elapsed time: 0.00067996978759766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign2.gif'

Time before:  6.6341950893402
Time after:   6.6358170509338
Elapsed time: 0.0016219615936279
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign1:%' AND post_id > 25753

Time before:  6.6369869709015
Time after:   6.6378440856934
Elapsed time: 0.00085711479187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign4.gif'

Time before:  6.6395950317383
Time after:   6.641165971756
Elapsed time: 0.0015709400177002
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign2:%' AND post_id > 25753

Time before:  6.6425521373749
Time after:   6.6432809829712
Elapsed time: 0.00072884559631348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign5.gif'

Time before:  6.6446220874786
Time after:   6.6458899974823
Elapsed time: 0.0012679100036621
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign3:%' AND post_id > 25753

Time before:  6.646852016449
Time after:   6.6474671363831
Elapsed time: 0.00061511993408203
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign7.gif'

Time before:  6.6487050056458
Time after:   6.6500661373138
Elapsed time: 0.0013611316680908
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign4:%' AND post_id > 25753

Time before:  6.6509690284729
Time after:   6.6516740322113
Elapsed time: 0.00070500373840332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sith.gif'

Time before:  6.6534230709076
Time after:   6.6549410820007
Elapsed time: 0.0015180110931396
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sith:%' AND post_id > 25753

Time before:  6.6564321517944
Time after:   6.6570639610291
Elapsed time: 0.00063180923461914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy1.gif'

Time before:  6.6588971614838
Time after:   6.660532951355
Elapsed time: 0.0016357898712158
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy1:%' AND post_id > 25753

Time before:  6.661679983139
Time after:   6.6624190807343
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy2.gif'

Time before:  6.6640050411224
Time after:   6.6654620170593
Elapsed time: 0.0014569759368896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy2:%' AND post_id > 25753

Time before:  6.666512966156
Time after:   6.6671371459961
Elapsed time: 0.00062417984008789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy3.gif'

Time before:  6.6684169769287
Time after:   6.6694469451904
Elapsed time: 0.0010299682617188
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy3:%' AND post_id > 25753

Time before:  6.6700639724731
Time after:   6.6705150604248
Elapsed time: 0.00045108795166016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy4.gif'

Time before:  6.672168970108
Time after:   6.6732730865479
Elapsed time: 0.0011041164398193
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy4:%' AND post_id > 25753

Time before:  6.6742360591888
Time after:   6.6748731136322
Elapsed time: 0.00063705444335938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy5.gif'

Time before:  6.6768341064453
Time after:   6.677906036377
Elapsed time: 0.0010719299316406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy5:%' AND post_id > 25753

Time before:  6.6788749694824
Time after:   6.6794810295105
Elapsed time: 0.00060606002807617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy7.gif'

Time before:  6.6808700561523
Time after:   6.6819820404053
Elapsed time: 0.0011119842529297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy6:%' AND post_id > 25753

Time before:  6.6829409599304
Time after:   6.6834421157837
Elapsed time: 0.00050115585327148
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'smileinbox.gif'

Time before:  6.6848590373993
Time after:   6.6859781742096
Elapsed time: 0.0011191368103027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smilebox:%' AND post_id > 25753

Time before:  6.6866071224213
Time after:   6.6870131492615
Elapsed time: 0.00040602684020996
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'snorting.gif'

Time before:  6.6879379749298
Time after:   6.6888239383698
Elapsed time: 0.00088596343994141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snorting:%' AND post_id > 25753

Time before:  6.6894121170044
Time after:   6.6897630691528
Elapsed time: 0.0003509521484375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'spam1.gif'

Time before:  6.6906270980835
Time after:   6.6914989948273
Elapsed time: 0.00087189674377441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam1:%' AND post_id > 25753

Time before:  6.6920840740204
Time after:   6.6924700737
Elapsed time: 0.00038599967956543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'spam4.gif'

Time before:  6.6933410167694
Time after:   6.6942591667175
Elapsed time: 0.00091814994812012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam2:%' AND post_id > 25753

Time before:  6.6948671340942
Time after:   6.6952350139618
Elapsed time: 0.00036787986755371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'stfu.gif'

Time before:  6.6961009502411
Time after:   6.6969640254974
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:stfu:%' AND post_id > 25753

Time before:  6.6976079940796
Time after:   6.6979720592499
Elapsed time: 0.00036406517028809
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'stop.gif'

Time before:  6.6988291740417
Time after:   6.6996991634369
Elapsed time: 0.0008699893951416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:stop:%' AND post_id > 25753

Time before:  6.7003190517426
Time after:   6.7007250785828
Elapsed time: 0.00040602684020996
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tard.gif'

Time before:  6.7016611099243
Time after:   6.702602148056
Elapsed time: 0.00094103813171387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tard:%' AND post_id > 25753

Time before:  6.7032880783081
Time after:   6.70379114151
Elapsed time: 0.0005030632019043
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'TheArchLitchMalignus.gif'

Time before:  6.7051639556885
Time after:   6.7061660289764
Elapsed time: 0.0010020732879639
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lichmalignus:%' AND post_id > 25753

Time before:  6.7071650028229
Time after:   6.7079041004181
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'thebirdman.gif'

Time before:  6.7093081474304
Time after:   6.7107040882111
Elapsed time: 0.0013959407806396
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thebirdman:%' AND post_id > 25753

Time before:  6.7120130062103
Time after:   6.7141671180725
Elapsed time: 0.0021541118621826
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'thefinger.gif'

Time before:  6.7164399623871
Time after:   6.7179601192474
Elapsed time: 0.0015201568603516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thefinger:%' AND post_id > 25753

Time before:  6.7188849449158
Time after:   6.719437122345
Elapsed time: 0.00055217742919922
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Thin5.gif'

Time before:  6.7208521366119
Time after:   6.7221879959106
Elapsed time: 0.0013358592987061
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thin:%' AND post_id > 25753

Time before:  6.723375082016
Time after:   6.7243881225586
Elapsed time: 0.0010130405426025
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'thumbsup.gif'

Time before:  6.7257981300354
Time after:   6.7273380756378
Elapsed time: 0.001539945602417
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbup:%' AND post_id > 25753

Time before:  6.7286441326141
Time after:   6.7293200492859
Elapsed time: 0.00067591667175293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue1.gif'

Time before:  6.7310781478882
Time after:   6.7327311038971
Elapsed time: 0.0016529560089111
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue1:%' AND post_id > 25753

Time before:  6.7342410087585
Time after:   6.7349140644073
Elapsed time: 0.00067305564880371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue11.gif'

Time before:  6.7364890575409
Time after:   6.7379679679871
Elapsed time: 0.001478910446167
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue10:%' AND post_id > 25753

Time before:  6.7390260696411
Time after:   6.739755153656
Elapsed time: 0.00072908401489258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue2.gif'

Time before:  6.7414140701294
Time after:   6.7427539825439
Elapsed time: 0.0013399124145508
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue2:%' AND post_id > 25753

Time before:  6.7436661720276
Time after:   6.7441790103912
Elapsed time: 0.00051283836364746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue3.gif'

Time before:  6.7454941272736
Time after:   6.7467710971832
Elapsed time: 0.001276969909668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue3:%' AND post_id > 25753

Time before:  6.7476720809937
Time after:   6.7482130527496
Elapsed time: 0.00054097175598145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue4.gif'

Time before:  6.749608039856
Time after:   6.7509231567383
Elapsed time: 0.0013151168823242
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue4:%' AND post_id > 25753

Time before:  6.7518701553345
Time after:   6.752454996109
Elapsed time: 0.00058484077453613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue5.gif'

Time before:  6.7539069652557
Time after:   6.75528216362
Elapsed time: 0.0013751983642578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue5:%' AND post_id > 25753

Time before:  6.7562370300293
Time after:   6.7567760944366
Elapsed time: 0.00053906440734863
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue6.gif'

Time before:  6.7581920623779
Time after:   6.7595601081848
Elapsed time: 0.0013680458068848
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue6:%' AND post_id > 25753

Time before:  6.7604970932007
Time after:   6.7610530853271
Elapsed time: 0.00055599212646484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue7.gif'

Time before:  6.7624740600586
Time after:   6.7638289928436
Elapsed time: 0.0013549327850342
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue7:%' AND post_id > 25753

Time before:  6.7647790908813
Time after:   6.7653629779816
Elapsed time: 0.00058388710021973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue8.gif'

Time before:  6.7667031288147
Time after:   6.7680320739746
Elapsed time: 0.0013289451599121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue8:%' AND post_id > 25753

Time before:  6.7690141201019
Time after:   6.7695550918579
Elapsed time: 0.00054097175598145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue9.gif'

Time before:  6.7708821296692
Time after:   6.7722730636597
Elapsed time: 0.0013909339904785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue9:%' AND post_id > 25753

Time before:  6.7731971740723
Time after:   6.7737419605255
Elapsed time: 0.00054478645324707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tool.gif'

Time before:  6.7750849723816
Time after:   6.7764630317688
Elapsed time: 0.001378059387207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tool:%' AND post_id > 25753

Time before:  6.7774469852448
Time after:   6.7781519889832
Elapsed time: 0.00070500373840332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy1.gif'

Time before:  6.7796020507812
Time after:   6.7810070514679
Elapsed time: 0.0014050006866455
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy1:%' AND post_id > 25753

Time before:  6.781975030899
Time after:   6.7825500965118
Elapsed time: 0.00057506561279297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy10.gif'

Time before:  6.7841150760651
Time after:   6.7855310440063
Elapsed time: 0.0014159679412842
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy8:%' AND post_id > 25753

Time before:  6.7865581512451
Time after:   6.7872910499573
Elapsed time: 0.0007328987121582
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy11.gif'

Time before:  6.7889649868011
Time after:   6.7904980182648
Elapsed time: 0.001533031463623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy9:%' AND post_id > 25753

Time before:  6.7915461063385
Time after:   6.7921409606934
Elapsed time: 0.0005948543548584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy12.gif'

Time before:  6.7935791015625
Time after:   6.795058965683
Elapsed time: 0.0014798641204834
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy10:%' AND post_id > 25753

Time before:  6.7960729598999
Time after:   6.7966661453247
Elapsed time: 0.00059318542480469
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy2.gif'

Time before:  6.7981059551239
Time after:   6.7996101379395
Elapsed time: 0.0015041828155518
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy2:%' AND post_id > 25753

Time before:  6.8006341457367
Time after:   6.8012230396271
Elapsed time: 0.00058889389038086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy3.gif'

Time before:  6.8026330471039
Time after:   6.8041880130768
Elapsed time: 0.0015549659729004
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy3:%' AND post_id > 25753

Time before:  6.8052160739899
Time after:   6.8058071136475
Elapsed time: 0.00059103965759277
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy4.gif'

Time before:  6.8072471618652
Time after:   6.8087730407715
Elapsed time: 0.00152587890625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy4:%' AND post_id > 25753

Time before:  6.8097901344299
Time after:   6.8103699684143
Elapsed time: 0.000579833984375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy5.gif'

Time before:  6.8118419647217
Time after:   6.8133380413055
Elapsed time: 0.0014960765838623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy5:%' AND post_id > 25753

Time before:  6.8143570423126
Time after:   6.8149721622467
Elapsed time: 0.00061511993408203
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy6.gif'

Time before:  6.8164739608765
Time after:   6.8179190158844
Elapsed time: 0.0014450550079346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy6:%' AND post_id > 25753

Time before:  6.8189790248871
Time after:   6.8196091651917
Elapsed time: 0.00063014030456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy9.gif'

Time before:  6.8211340904236
Time after:   6.8226301670074
Elapsed time: 0.0014960765838623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy7:%' AND post_id > 25753

Time before:  6.8237020969391
Time after:   6.824273109436
Elapsed time: 0.00057101249694824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'triplets.gif'

Time before:  6.8258349895477
Time after:   6.8273530006409
Elapsed time: 0.0015180110931396
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:triplets:%' AND post_id > 25753

Time before:  6.8283820152283
Time after:   6.8289530277252
Elapsed time: 0.00057101249694824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tshirt.gif'

Time before:  6.8304171562195
Time after:   6.8319239616394
Elapsed time: 0.0015068054199219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tshirt:%' AND post_id > 25753

Time before:  6.8329639434814
Time after:   6.8335649967194
Elapsed time: 0.00060105323791504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tweety.gif'

Time before:  6.8349850177765
Time after:   6.8365099430084
Elapsed time: 0.0015249252319336
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tweety:%' AND post_id > 25753

Time before:  6.8374769687653
Time after:   6.8380689620972
Elapsed time: 0.00059199333190918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'usa2.gif'

Time before:  6.8395521640778
Time after:   6.8410451412201
Elapsed time: 0.001492977142334
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:usa2:%' AND post_id > 25753

Time before:  6.8421001434326
Time after:   6.8426840305328
Elapsed time: 0.00058388710021973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'violent1.gif'

Time before:  6.8441181182861
Time after:   6.8456189632416
Elapsed time: 0.0015008449554443
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent1:%' AND post_id > 25753

Time before:  6.8465709686279
Time after:   6.8471291065216
Elapsed time: 0.00055813789367676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'violent4.gif'

Time before:  6.8485741615295
Time after:   6.8500390052795
Elapsed time: 0.00146484375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent2:%' AND post_id > 25753

Time before:  6.8509800434113
Time after:   6.8516399860382
Elapsed time: 0.00065994262695312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'violent5.gif'

Time before:  6.8531241416931
Time after:   6.854593038559
Elapsed time: 0.0014688968658447
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent3:%' AND post_id > 25753

Time before:  6.8556590080261
Time after:   6.8562281131744
Elapsed time: 0.00056910514831543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'walk.gif'

Time before:  6.8576371669769
Time after:   6.8591339588165
Elapsed time: 0.0014967918395996
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:walk:%' AND post_id > 25753

Time before:  6.8602199554443
Time after:   6.8607909679413
Elapsed time: 0.00057101249694824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'wav.gif'

Time before:  6.8622131347656
Time after:   6.8637270927429
Elapsed time: 0.0015139579772949
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wav:%' AND post_id > 25753

Time before:  6.8647329807281
Time after:   6.8653299808502
Elapsed time: 0.00059700012207031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'wave.gif'

Time before:  6.8667969703674
Time after:   6.8682990074158
Elapsed time: 0.0015020370483398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wave:%' AND post_id > 25753

Time before:  6.8692851066589
Time after:   6.8698961734772
Elapsed time: 0.0006110668182373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Whaxatk.gif'

Time before:  6.8714151382446
Time after:   6.8729569911957
Elapsed time: 0.0015418529510498
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:whax:%' AND post_id > 25753

Time before:  6.8739869594574
Time after:   6.874575138092
Elapsed time: 0.00058817863464355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Whdatk.gif'

Time before:  6.8760600090027
Time after:   6.8775451183319
Elapsed time: 0.0014851093292236
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:whdat:%' AND post_id > 25753

Time before:  6.878543138504
Time after:   6.8791410923004
Elapsed time: 0.00059795379638672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    Using where 


Query:	UPDATE stats_smilies_index SET smile_count = 11 WHERE smile_url = '005.gif'

Time before:  6.8804559707642
Time after:   6.883721113205
Elapsed time: 0.0032651424407959

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = '007.gif'

Time before:  6.8840229511261
Time after:   6.8873600959778
Elapsed time: 0.0033371448516846

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = '014.gif'

Time before:  6.8876399993896
Time after:   6.890615940094
Elapsed time: 0.0029759407043457

Query:	UPDATE stats_smilies_index SET smile_count = 21 WHERE smile_url = '015.gif'

Time before:  6.8908801078796
Time after:   6.893669128418
Elapsed time: 0.0027890205383301

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = '026.gif'

Time before:  6.8939101696014
Time after:   6.896919965744
Elapsed time: 0.0030097961425781

Query:	UPDATE stats_smilies_index SET smile_count = 20 WHERE smile_url = '033.gif'

Time before:  6.8971860408783
Time after:   6.9002540111542
Elapsed time: 0.0030679702758789

Query:	UPDATE stats_smilies_index SET smile_count = 36 WHERE smile_url = '041.gif'

Time before:  6.9005270004272
Time after:   6.9035551548004
Elapsed time: 0.0030281543731689

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = '3some.gif'

Time before:  6.9038059711456
Time after:   6.906888961792
Elapsed time: 0.0030829906463623

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'alien.gif'

Time before:  6.907212972641
Time after:   6.9102430343628
Elapsed time: 0.0030300617218018

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'angel1.gif'

Time before:  6.9105091094971
Time after:   6.9135489463806
Elapsed time: 0.0030398368835449

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel10.gif'

Time before:  6.9137871265411
Time after:   6.9167971611023
Elapsed time: 0.0030100345611572

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel11.gif'

Time before:  6.917032957077
Time after:   6.9200229644775
Elapsed time: 0.0029900074005127

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel12.gif'

Time before:  6.920361995697
Time after:   6.9234721660614
Elapsed time: 0.0031101703643799

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'angel13.gif'

Time before:  6.9237790107727
Time after:   6.9268281459808
Elapsed time: 0.0030491352081299

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angel2.gif'

Time before:  6.9271070957184
Time after:   6.9302690029144
Elapsed time: 0.0031619071960449

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angel3.gif'

Time before:  6.9305460453033
Time after:   6.9336431026459
Elapsed time: 0.0030970573425293

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel4.gif'

Time before:  6.9340829849243
Time after:   6.9374001026154
Elapsed time: 0.00331711769104

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel5.gif'

Time before:  6.937714099884
Time after:   6.9407579898834
Elapsed time: 0.0030438899993896

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'angel7.gif'

Time before:  6.9410259723663
Time after:   6.9441170692444
Elapsed time: 0.0030910968780518

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'angel8.gif'

Time before:  6.9444761276245
Time after:   6.947594165802
Elapsed time: 0.0031180381774902

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel9.gif'

Time before:  6.9479041099548
Time after:   6.9510991573334
Elapsed time: 0.00319504737854

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry1.gif'

Time before:  6.9514060020447
Time after:   6.9545800685883
Elapsed time: 0.0031740665435791

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry2.gif'

Time before:  6.9548630714417
Time after:   6.9579980373383
Elapsed time: 0.0031349658966064

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry3.gif'

Time before:  6.9582741260529
Time after:   6.9614160060883
Elapsed time: 0.0031418800354004

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'angry4.gif'

Time before:  6.9616711139679
Time after:   6.9647901058197
Elapsed time: 0.0031189918518066

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry5.gif'

Time before:  6.9650659561157
Time after:   6.9682199954987
Elapsed time: 0.0031540393829346

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry6.gif'

Time before:  6.9684901237488
Time after:   6.9716010093689
Elapsed time: 0.0031108856201172

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry7.gif'

Time before:  6.9718630313873
Time after:   6.9749691486359
Elapsed time: 0.0031061172485352

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry8.gif'

Time before:  6.9752769470215
Time after:   6.9784209728241
Elapsed time: 0.0031440258026123

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry9.gif'

Time before:  6.9786851406097
Time after:   6.9818291664124
Elapsed time: 0.0031440258026123

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'angryfire.gif'

Time before:  6.982085943222
Time after:   6.98521900177
Elapsed time: 0.0031330585479736

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'argue.gif'

Time before:  6.9854979515076
Time after:   6.9886169433594
Elapsed time: 0.0031189918518066

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'BangHead.gif'

Time before:  6.988881111145
Time after:   6.9920220375061
Elapsed time: 0.003140926361084

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'binkybaby.gif'

Time before:  6.9923219680786
Time after:   6.9954750537872
Elapsed time: 0.0031530857086182

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'black_knight_standing.gif'

Time before:  6.9957439899445
Time after:   6.9988820552826
Elapsed time: 0.0031380653381348

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob1.gif'

Time before:  6.999153137207
Time after:   7.0023031234741
Elapsed time: 0.0031499862670898

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob10.gif'

Time before:  7.0025660991669
Time after:   7.0057189464569
Elapsed time: 0.0031528472900391

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob3.gif'

Time before:  7.0059859752655
Time after:   7.0091640949249
Elapsed time: 0.0031781196594238

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob5.gif'

Time before:  7.0094320774078
Time after:   7.0132300853729
Elapsed time: 0.0037980079650879

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob6.gif'

Time before:  7.0135359764099
Time after:   7.0171511173248
Elapsed time: 0.003615140914917

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob7.gif'

Time before:  7.0174610614777
Time after:   7.0208239555359
Elapsed time: 0.0033628940582275

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob8.gif'

Time before:  7.0211141109467
Time after:   7.0242130756378
Elapsed time: 0.0030989646911621

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob9.gif'

Time before:  7.0245060920715
Time after:   7.0277161598206
Elapsed time: 0.0032100677490234

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bom.gif'

Time before:  7.0279819965363
Time after:   7.0310881137848
Elapsed time: 0.0031061172485352

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bonedemon.gif'

Time before:  7.0314111709595
Time after:   7.0349040031433
Elapsed time: 0.0034928321838379

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'book1.gif'

Time before:  7.0352520942688
Time after:   7.0384261608124
Elapsed time: 0.0031740665435791

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'booty.gif'

Time before:  7.0387279987335
Time after:   7.0419340133667
Elapsed time: 0.0032060146331787

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'bootyshake.gif'

Time before:  7.0422070026398
Time after:   7.0453770160675
Elapsed time: 0.0031700134277344

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'boxing.gif'

Time before:  7.0456621646881
Time after:   7.0488440990448
Elapsed time: 0.0031819343566895

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'brave.gif'

Time before:  7.049134016037
Time after:   7.0523149967194
Elapsed time: 0.003180980682373

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'brushteeth.gif'

Time before:  7.0526521205902
Time after:   7.0557751655579
Elapsed time: 0.0031230449676514

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bs.gif'

Time before:  7.056067943573
Time after:   7.0591039657593
Elapsed time: 0.0030360221862793

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bunny.gif'

Time before:  7.0594019889832
Time after:   7.0626299381256
Elapsed time: 0.0032279491424561

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'cat.gif'

Time before:  7.0629870891571
Time after:   7.0662031173706
Elapsed time: 0.003216028213501

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'clock.gif'

Time before:  7.0664751529694
Time after:   7.0696079730988
Elapsed time: 0.0031328201293945

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee.gif'

Time before:  7.0699219703674
Time after:   7.0730841159821
Elapsed time: 0.003162145614624

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee2.gif'

Time before:  7.0733840465546
Time after:   7.0765600204468
Elapsed time: 0.0031759738922119

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'color.gif'

Time before:  7.0768580436707
Time after:   7.0802271366119
Elapsed time: 0.0033690929412842

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'computer.gif'

Time before:  7.0805430412292
Time after:   7.0837070941925
Elapsed time: 0.0031640529632568

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused1.gif'

Time before:  7.0840170383453
Time after:   7.0872330665588
Elapsed time: 0.003216028213501

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'confused2.gif'

Time before:  7.0875370502472
Time after:   7.0907530784607
Elapsed time: 0.003216028213501

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused3.gif'

Time before:  7.0910439491272
Time after:   7.0942270755768
Elapsed time: 0.003183126449585

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused4.gif'

Time before:  7.0945780277252
Time after:   7.0977511405945
Elapsed time: 0.0031731128692627

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused5.gif'

Time before:  7.0980710983276
Time after:   7.1012589931488
Elapsed time: 0.003187894821167

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'crybaby2.gif'

Time before:  7.1015520095825
Time after:   7.1047711372375
Elapsed time: 0.0032191276550293

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'cussing.gif'

Time before:  7.1051120758057
Time after:   7.1082561016083
Elapsed time: 0.0031440258026123

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'cwm10.gif'

Time before:  7.1085391044617
Time after:   7.1117420196533
Elapsed time: 0.0032029151916504

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'cwm21.gif'

Time before:  7.1120271682739
Time after:   7.1152679920197
Elapsed time: 0.0032408237457275

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'cya.gif'

Time before:  7.1156251430511
Time after:   7.1187870502472
Elapsed time: 0.0031619071960449

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'dark1.gif'

Time before:  7.1190559864044
Time after:   7.122251033783
Elapsed time: 0.00319504737854

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'diablo_ani_fire.gif'

Time before:  7.1225261688232
Time after:   7.1257281303406
Elapsed time: 0.003201961517334

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'dink.gif'

Time before:  7.1260459423065
Time after:   7.1292021274567
Elapsed time: 0.0031561851501465

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'director.gif'

Time before:  7.1294939517975
Time after:   7.1327321529388
Elapsed time: 0.0032382011413574

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'director2.gif'

Time before:  7.1330370903015
Time after:   7.1362731456757
Elapsed time: 0.0032360553741455

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'disgust.gif'

Time before:  7.136607170105
Time after:   7.139778137207
Elapsed time: 0.0031709671020508

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'DMAGE.gif'

Time before:  7.1400971412659
Time after:   7.1433291435242
Elapsed time: 0.0032320022583008

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'dog.gif'

Time before:  7.1436469554901
Time after:   7.1468360424042
Elapsed time: 0.0031890869140625

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'dontknow.gif'

Time before:  7.1471340656281
Time after:   7.1503050327301
Elapsed time: 0.0031709671020508

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'downtown.gif'

Time before:  7.1506321430206
Time after:   7.1538290977478
Elapsed time: 0.0031969547271729

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'DRUIDD.gif'

Time before:  7.1541140079498
Time after:   7.157331943512
Elapsed time: 0.0032179355621338

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'drunken_smilie.gif'

Time before:  7.1576430797577
Time after:   7.1608090400696
Elapsed time: 0.0031659603118896

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'duckie.gif'

Time before:  7.1611461639404
Time after:   7.1643490791321
Elapsed time: 0.0032029151916504

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'Edfirst.gif'

Time before:  7.1646540164948
Time after:   7.1678540706635
Elapsed time: 0.0032000541687012

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil1.gif'

Time before:  7.1681389808655
Time after:   7.1713280677795
Elapsed time: 0.0031890869140625

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'evil3.gif'

Time before:  7.1716260910034
Time after:   7.174751996994
Elapsed time: 0.0031259059906006

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil4.gif'

Time before:  7.1750500202179
Time after:   7.178297996521
Elapsed time: 0.0032479763031006

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'evil5.gif'

Time before:  7.1785850524902
Time after:   7.1817679405212
Elapsed time: 0.0031828880310059

Query:	UPDATE stats_smilies_index SET smile_count = 51 WHERE smile_url = 'evil6.gif'

Time before:  7.1820840835571
Time after:   7.1851999759674
Elapsed time: 0.0031158924102783

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'evil7.gif'

Time before:  7.1854691505432
Time after:   7.1886250972748
Elapsed time: 0.0031559467315674

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fart.gif'

Time before:  7.188915014267
Time after:   7.1921889781952
Elapsed time: 0.0032739639282227

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'female.gif'

Time before:  7.1925151348114
Time after:   7.1959519386292
Elapsed time: 0.003436803817749

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fenforcer.gif'

Time before:  7.1962201595306
Time after:   7.1982791423798
Elapsed time: 0.0020589828491211

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fflak.gif'

Time before:  7.198450088501
Time after:   7.2004151344299
Elapsed time: 0.0019650459289551

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fglob.gif'

Time before:  7.2005770206451
Time after:   7.2025330066681
Elapsed time: 0.0019559860229492

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fimpact.gif'

Time before:  7.2027080059052
Time after:   7.2046439647675
Elapsed time: 0.0019359588623047

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fish.gif'

Time before:  7.2047970294952
Time after:   7.2067360877991
Elapsed time: 0.001939058303833

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'fplasma.gif'

Time before:  7.2068920135498
Time after:   7.208820104599
Elapsed time: 0.0019280910491943

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'fripper.gif'

Time before:  7.2089741230011
Time after:   7.2109129428864
Elapsed time: 0.0019388198852539

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'fsniper.gif'

Time before:  7.2110619544983
Time after:   7.2130041122437
Elapsed time: 0.0019421577453613

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fucyc.gif'

Time before:  7.213161945343
Time after:   7.2151160240173
Elapsed time: 0.0019540786743164

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fxloc.gif'

Time before:  7.2152810096741
Time after:   7.2172110080719
Elapsed time: 0.0019299983978271

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses1.gif'

Time before:  7.2173600196838
Time after:   7.219318151474
Elapsed time: 0.0019581317901611

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses10.gif'

Time before:  7.2194709777832
Time after:   7.2213859558105
Elapsed time: 0.0019149780273438

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses11.gif'

Time before:  7.2215361595154
Time after:   7.2234840393066
Elapsed time: 0.0019478797912598

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses12.gif'

Time before:  7.2236311435699
Time after:   7.2255470752716
Elapsed time: 0.0019159317016602

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses13.gif'

Time before:  7.2256951332092
Time after:   7.2276451587677
Elapsed time: 0.0019500255584717

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses2.gif'

Time before:  7.2278060913086
Time after:   7.2297270298004
Elapsed time: 0.0019209384918213

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'glasses3.gif'

Time before:  7.2298760414124
Time after:   7.2318170070648
Elapsed time: 0.0019409656524658

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses6.gif'

Time before:  7.2319700717926
Time after:   7.2338850498199
Elapsed time: 0.0019149780273438

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses7.gif'

Time before:  7.2340431213379
Time after:   7.23597407341
Elapsed time: 0.0019309520721436

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses8.gif'

Time before:  7.2361249923706
Time after:   7.2380759716034
Elapsed time: 0.0019509792327881

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses9.gif'

Time before:  7.2382321357727
Time after:   7.240170955658
Elapsed time: 0.0019388198852539

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'grommit.gif'

Time before:  7.2403321266174
Time after:   7.2422721385956
Elapsed time: 0.0019400119781494

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'hal.gif'

Time before:  7.2424221038818
Time after:   7.2471070289612
Elapsed time: 0.0046849250793457

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'happy1.gif'

Time before:  7.2473609447479
Time after:   7.2493989467621
Elapsed time: 0.0020380020141602

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy10.gif'

Time before:  7.2495591640472
Time after:   7.2516939640045
Elapsed time: 0.0021347999572754

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy11.gif'

Time before:  7.2519021034241
Time after:   7.2538831233978
Elapsed time: 0.0019810199737549

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy2.gif'

Time before:  7.2540431022644
Time after:   7.2559931278229
Elapsed time: 0.0019500255584717

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy3.gif'

Time before:  7.2561500072479
Time after:   7.2581031322479
Elapsed time: 0.001953125

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy4.gif'

Time before:  7.258260011673
Time after:   7.2602050304413
Elapsed time: 0.0019450187683105

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'happy5.gif'

Time before:  7.2603590488434
Time after:   7.2623150348663
Elapsed time: 0.0019559860229492

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'happy6.gif'

Time before:  7.2624650001526
Time after:   7.2644040584564
Elapsed time: 0.001939058303833

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy7.gif'

Time before:  7.2645630836487
Time after:   7.2665100097656
Elapsed time: 0.0019469261169434

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy8.gif'

Time before:  7.2666599750519
Time after:   7.2685990333557
Elapsed time: 0.001939058303833

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy9.gif'

Time before:  7.2687599658966
Time after:   7.2707209587097
Elapsed time: 0.0019609928131104

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'headbang.gif'

Time before:  7.2708711624146
Time after:   7.2727839946747
Elapsed time: 0.0019128322601318

Query:	UPDATE stats_smilies_index SET smile_count = 26 WHERE smile_url = 'hello.gif'

Time before:  7.2729389667511
Time after:   7.2748701572418
Elapsed time: 0.0019311904907227

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'hello2.gif'

Time before:  7.2750160694122
Time after:   7.2769351005554
Elapsed time: 0.0019190311431885

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'help.gif'

Time before:  7.2770810127258
Time after:   7.2790019512177
Elapsed time: 0.0019209384918213

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hiding.gif'

Time before:  7.2791459560394
Time after:   7.2810971736908
Elapsed time: 0.0019512176513672

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hippy2.gif'

Time before:  7.2812530994415
Time after:   7.2832319736481
Elapsed time: 0.001978874206543

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hmh.gif'

Time before:  7.2834000587463
Time after:   7.2853591442108
Elapsed time: 0.0019590854644775

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'home.gif'

Time before:  7.285542011261
Time after:   7.2874929904938
Elapsed time: 0.0019509792327881

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'homework.gif'

Time before:  7.2876391410828
Time after:   7.2895460128784
Elapsed time: 0.0019068717956543

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'iamwithstupid.gif'

Time before:  7.2897181510925
Time after:   7.2916820049286
Elapsed time: 0.0019638538360596

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icescream.gif'

Time before:  7.2918400764465
Time after:   7.2937681674957
Elapsed time: 0.0019280910491943

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_albino.gif'

Time before:  7.2939341068268
Time after:   7.2958860397339
Elapsed time: 0.0019519329071045

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_anal.gif'

Time before:  7.2960360050201
Time after:   7.2979409694672
Elapsed time: 0.0019049644470215

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_arrow.gif'

Time before:  7.2980880737305
Time after:   7.3000550270081
Elapsed time: 0.0019669532775879

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_axe.gif'

Time before:  7.3002171516418
Time after:   7.3024821281433
Elapsed time: 0.0022649765014648

Query:	UPDATE stats_smilies_index SET smile_count = 1923 WHERE smile_url = 'icon_biggrin.gif'

Time before:  7.3026881217957
Time after:   7.305125951767
Elapsed time: 0.0024378299713135

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_bigsmurf.gif'

Time before:  7.3053450584412
Time after:   7.3073949813843
Elapsed time: 0.0020499229431152

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_blackeye.gif'

Time before:  7.3075640201569
Time after:   7.309494972229
Elapsed time: 0.0019309520721436

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_bounce.gif'

Time before:  7.3096461296082
Time after:   7.3115861415863
Elapsed time: 0.0019400119781494

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_brilsmurf.gif'

Time before:  7.3117430210114
Time after:   7.3136551380157
Elapsed time: 0.0019121170043945

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_butt.gif'

Time before:  7.3138041496277
Time after:   7.3158180713654
Elapsed time: 0.0020139217376709

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cat.gif'

Time before:  7.3159980773926
Time after:   7.3179371356964
Elapsed time: 0.001939058303833

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cheers.gif'

Time before:  7.3180921077728
Time after:   7.3200240135193
Elapsed time: 0.00193190574646

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cheese.gif'

Time before:  7.3201751708984
Time after:   7.3221120834351
Elapsed time: 0.0019369125366211

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cherry.gif'

Time before:  7.3222789764404
Time after:   7.3243441581726
Elapsed time: 0.0020651817321777

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_clown.gif'

Time before:  7.3245260715485
Time after:   7.3265240192413
Elapsed time: 0.0019979476928711

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_colors.gif'

Time before:  7.3266770839691
Time after:   7.3286139965057
Elapsed time: 0.0019369125366211

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_compress.gif'

Time before:  7.328782081604
Time after:   7.331346988678
Elapsed time: 0.0025649070739746

Query:	UPDATE stats_smilies_index SET smile_count = 735 WHERE smile_url = 'icon_confused.gif'

Time before:  7.3315861225128
Time after:   7.3342790603638
Elapsed time: 0.0026929378509521

Query:	UPDATE stats_smilies_index SET smile_count = 385 WHERE smile_url = 'icon_cool.gif'

Time before:  7.3344931602478
Time after:   7.3364901542664
Elapsed time: 0.0019969940185547

Query:	UPDATE stats_smilies_index SET smile_count = 223 WHERE smile_url = 'icon_cry.gif'

Time before:  7.3366539478302
Time after:   7.3385951519012
Elapsed time: 0.0019412040710449

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops.gif'

Time before:  7.3387870788574
Time after:   7.3407859802246
Elapsed time: 0.0019989013671875

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops_ani.gif'

Time before:  7.3409399986267
Time after:   7.3429019451141
Elapsed time: 0.0019619464874268

Query:	UPDATE stats_smilies_index SET smile_count = 205 WHERE smile_url = 'icon_evil.gif'

Time before:  7.3430480957031
Time after:   7.3450090885162
Elapsed time: 0.0019609928131104

Query:	UPDATE stats_smilies_index SET smile_count = 286 WHERE smile_url = 'icon_exclaim.gif'

Time before:  7.3451681137085
Time after:   7.3472120761871
Elapsed time: 0.0020439624786377

Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = 'icon_eyes.gif'

Time before:  7.3474130630493
Time after:   7.3493840694427
Elapsed time: 0.0019710063934326

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_farao.gif'

Time before:  7.3495409488678
Time after:   7.351459980011
Elapsed time: 0.0019190311431885

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'icon_flower.gif'

Time before:  7.3516149520874
Time after:   7.3535971641541
Elapsed time: 0.0019822120666504

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_fU.gif'

Time before:  7.3537840843201
Time after:   7.3559241294861
Elapsed time: 0.0021400451660156

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_geek.gif'

Time before:  7.3561129570007
Time after:   7.3580980300903
Elapsed time: 0.0019850730895996

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_joker.gif'

Time before:  7.3582670688629
Time after:   7.3602540493011
Elapsed time: 0.0019869804382324

Query:	UPDATE stats_smilies_index SET smile_count = 18 WHERE smile_url = 'icon_jook.gif'

Time before:  7.3604390621185
Time after:   7.3624050617218
Elapsed time: 0.0019659996032715

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_karu.gif'

Time before:  7.3625631332397
Time after:   7.364501953125
Elapsed time: 0.0019388198852539

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_keel.gif'

Time before:  7.3646540641785
Time after:   7.3665709495544
Elapsed time: 0.0019168853759766

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_kidra.gif'

Time before:  7.3667190074921
Time after:   7.3686170578003
Elapsed time: 0.0018980503082275

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_king.gif'

Time before:  7.3687660694122
Time after:   7.3706729412079
Elapsed time: 0.0019068717956543

Query:	UPDATE stats_smilies_index SET smile_count = 2219 WHERE smile_url = 'icon_lol.gif'

Time before:  7.3708181381226
Time after:   7.372759103775
Elapsed time: 0.0019409656524658

Query:	UPDATE stats_smilies_index SET smile_count = 294 WHERE smile_url = 'icon_mad.gif'

Time before:  7.3729181289673
Time after:   7.3748359680176
Elapsed time: 0.001917839050293

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_madu.gif'

Time before:  7.3749811649323
Time after:   7.3768751621246
Elapsed time: 0.0018939971923828

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_monkey.gif'

Time before:  7.3770411014557
Time after:   7.3789720535278
Elapsed time: 0.0019309520721436

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_mrgreen.gif'

Time before:  7.3791351318359
Time after:   7.3810851573944
Elapsed time: 0.0019500255584717

Query:	UPDATE stats_smilies_index SET smile_count = 106 WHERE smile_url = 'icon_neutral.gif'

Time before:  7.3812389373779
Time after:   7.3831520080566
Elapsed time: 0.0019130706787109

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_oak.gif'

Time before:  7.3833141326904
Time after:   7.3852300643921
Elapsed time: 0.0019159317016602

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_pai.gif'

Time before:  7.3853750228882
Time after:   7.3873090744019
Elapsed time: 0.0019340515136719

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pale.gif'

Time before:  7.3874609470367
Time after:   7.3893721103668
Elapsed time: 0.0019111633300781

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pall.gif'

Time before:  7.3895189762115
Time after:   7.3914470672607
Elapsed time: 0.0019280910491943

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'icon_pidu.gif'

Time before:  7.3915951251984
Time after:   7.3935120105743
Elapsed time: 0.0019168853759766

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_pirat.gif'

Time before:  7.3936741352081
Time after:   7.3958239555359
Elapsed time: 0.0021498203277588

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'icon_pray.gif'

Time before:  7.3960139751434
Time after:   7.3986749649048
Elapsed time: 0.0026609897613525

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileleft.gif'

Time before:  7.3988809585571
Time after:   7.4017400741577
Elapsed time: 0.0028591156005859

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileright.gif'

Time before:  7.4020690917969
Time after:   7.4048700332642
Elapsed time: 0.0028009414672852

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_l.gif'

Time before:  7.4051959514618
Time after:   7.407909154892
Elapsed time: 0.0027132034301758

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_r.gif'

Time before:  7.4081389904022
Time after:   7.4107511043549
Elapsed time: 0.0026121139526367

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_queen.gif'

Time before:  7.4110989570618
Time after:   7.41322016716
Elapsed time: 0.0021212100982666

Query:	UPDATE stats_smilies_index SET smile_count = 144 WHERE smile_url = 'icon_question.gif'

Time before:  7.4135589599609
Time after:   7.4159350395203
Elapsed time: 0.0023760795593262

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_rabbit.gif'

Time before:  7.4162909984589
Time after:   7.4187700748444
Elapsed time: 0.002479076385498

Query:	UPDATE stats_smilies_index SET smile_count = 528 WHERE smile_url = 'icon_razz.gif'

Time before:  7.4191660881042
Time after:   7.4213581085205
Elapsed time: 0.0021920204162598

Query:	UPDATE stats_smilies_index SET smile_count = 657 WHERE smile_url = 'icon_redface.gif'

Time before:  7.4216530323029
Time after:   7.4241361618042
Elapsed time: 0.0024831295013428

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_rendeer.gif'

Time before:  7.424556016922
Time after:   7.4267830848694
Elapsed time: 0.0022270679473877

Query:	UPDATE stats_smilies_index SET smile_count = 1105 WHERE smile_url = 'icon_rolleyes.gif'

Time before:  7.4271380901337
Time after:   7.4292800426483
Elapsed time: 0.0021419525146484

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_rr.gif'

Time before:  7.4296040534973
Time after:   7.4320571422577
Elapsed time: 0.002453088760376

Query:	UPDATE stats_smilies_index SET smile_count = 421 WHERE smile_url = 'icon_sad.gif'

Time before:  7.4323019981384
Time after:   7.4349880218506
Elapsed time: 0.0026860237121582

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_salut.gif'

Time before:  7.4354331493378
Time after:   7.4375810623169
Elapsed time: 0.002147912979126

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_santa.gif'

Time before:  7.437922000885
Time after:   7.44074010849
Elapsed time: 0.0028181076049805

Query:	UPDATE stats_smilies_index SET smile_count = 12 WHERE smile_url = 'icon_scratch.gif'

Time before:  7.4411311149597
Time after:   7.4443140029907
Elapsed time: 0.0031828880310059

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking.gif'

Time before:  7.4445350170135
Time after:   7.4465379714966
Elapsed time: 0.0020029544830322

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking2.gif'

Time before:  7.4466991424561
Time after:   7.4486379623413
Elapsed time: 0.0019388198852539

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_silent.gif'

Time before:  7.4487941265106
Time after:   7.4507291316986
Elapsed time: 0.0019350051879883

Query:	UPDATE stats_smilies_index SET smile_count = 1337 WHERE smile_url = 'icon_smile.gif'

Time before:  7.4508769512177
Time after:   7.4532511234283
Elapsed time: 0.0023741722106934

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_smurf.gif'

Time before:  7.4535961151123
Time after:   7.4568049907684
Elapsed time: 0.0032088756561279

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_smurfin.gif'

Time before:  7.4571380615234
Time after:   7.4593291282654
Elapsed time: 0.0021910667419434

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_spiderman.gif'

Time before:  7.459676027298
Time after:   7.4619979858398
Elapsed time: 0.0023219585418701

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_study.gif'

Time before:  7.4623160362244
Time after:   7.4657759666443
Elapsed time: 0.0034599304199219

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_sunny.gif'

Time before:  7.4659819602966
Time after:   7.4680390357971
Elapsed time: 0.0020570755004883

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_super.gif'

Time before:  7.4682230949402
Time after:   7.4701800346375
Elapsed time: 0.0019569396972656

Query:	UPDATE stats_smilies_index SET smile_count = 127 WHERE smile_url = 'icon_surprised.gif'

Time before:  7.4703459739685
Time after:   7.4723010063171
Elapsed time: 0.0019550323486328

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'icon_syda.gif'

Time before:  7.4724550247192
Time after:   7.474377155304
Elapsed time: 0.0019221305847168

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_thumleft.gif'

Time before:  7.4745240211487
Time after:   7.4764831066132
Elapsed time: 0.0019590854644775

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'icon_thumright.gif'

Time before:  7.4766590595245
Time after:   7.4785871505737
Elapsed time: 0.0019280910491943

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_toilet.gif'

Time before:  7.4787349700928
Time after:   7.4809679985046
Elapsed time: 0.0022330284118652

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_tongue.gif'

Time before:  7.4812541007996
Time after:   7.4844491481781
Elapsed time: 0.00319504737854

Query:	UPDATE stats_smilies_index SET smile_count = 366 WHERE smile_url = 'icon_twisted.gif'

Time before:  7.4847700595856
Time after:   7.4875979423523
Elapsed time: 0.0028278827667236

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_weed.gif'

Time before:  7.4878580570221
Time after:   7.4916939735413
Elapsed time: 0.003835916519165

Query:	UPDATE stats_smilies_index SET smile_count = 1749 WHERE smile_url = 'icon_wink.gif'

Time before:  7.4919421672821
Time after:   7.4946660995483
Elapsed time: 0.0027239322662354

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_winkle.gif'

Time before:  7.4948401451111
Time after:   7.4978511333466
Elapsed time: 0.0030109882354736

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'idea1.gif'

Time before:  7.4980571269989
Time after:   7.5010499954224
Elapsed time: 0.0029928684234619

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'iroc.gif'

Time before:  7.501256942749
Time after:   7.5033099651337
Elapsed time: 0.0020530223846436

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'jerk.gif'

Time before:  7.5035800933838
Time after:   7.5100481510162
Elapsed time: 0.0064680576324463

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'kermit.gif'

Time before:  7.510311126709
Time after:   7.5140330791473
Elapsed time: 0.0037219524383545

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'knob.gif'

Time before:  7.5143661499023
Time after:   7.5177640914917
Elapsed time: 0.0033979415893555

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'ky.gif'

Time before:  7.5180649757385
Time after:   7.5215530395508
Elapsed time: 0.0034880638122559

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'la.gif'

Time before:  7.5218660831451
Time after:   7.5254011154175
Elapsed time: 0.0035350322723389

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing1.gif'

Time before:  7.5257520675659
Time after:   7.5293700695038
Elapsed time: 0.0036180019378662

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing11.gif'

Time before:  7.5298020839691
Time after:   7.5332989692688
Elapsed time: 0.0034968852996826

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing3.gif'

Time before:  7.5336151123047
Time after:   7.5368511676788
Elapsed time: 0.0032360553741455

Query:	UPDATE stats_smilies_index SET smile_count = 18 WHERE smile_url = 'laughing4.gif'

Time before:  7.5371770858765
Time after:   7.5404710769653
Elapsed time: 0.0032939910888672

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing5.gif'

Time before:  7.5408191680908
Time after:   7.5442750453949
Elapsed time: 0.0034558773040771

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing6.gif'

Time before:  7.5445699691772
Time after:   7.5478401184082
Elapsed time: 0.003270149230957

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'laughing7.gif'

Time before:  7.5481820106506
Time after:   7.5514800548553
Elapsed time: 0.0032980442047119

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing8.gif'

Time before:  7.5518009662628
Time after:   7.5550849437714
Elapsed time: 0.0032839775085449

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing9.gif'

Time before:  7.5554070472717
Time after:   7.5585889816284
Elapsed time: 0.0031819343566895

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love1.gif'

Time before:  7.5589280128479
Time after:   7.5616810321808
Elapsed time: 0.0027530193328857

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love10.gif'

Time before:  7.5618960857391
Time after:   7.5646159648895
Elapsed time: 0.0027198791503906

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love2.gif'

Time before:  7.5648860931396
Time after:   7.5682239532471
Elapsed time: 0.0033378601074219

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love3.gif'

Time before:  7.5685260295868
Time after:   7.5718359947205
Elapsed time: 0.003309965133667

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love4.gif'

Time before:  7.5722451210022
Time after:   7.5756311416626
Elapsed time: 0.0033860206604004

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'love5.gif'

Time before:  7.5759160518646
Time after:   7.578889131546
Elapsed time: 0.0029730796813965

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love6.gif'

Time before:  7.5791411399841
Time after:   7.5823559761047
Elapsed time: 0.0032148361206055

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love7.gif'

Time before:  7.5826971530914
Time after:   7.5860290527344
Elapsed time: 0.0033318996429443

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love8.gif'

Time before:  7.5863280296326
Time after:   7.5896220207214
Elapsed time: 0.0032939910888672

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love9.gif'

Time before:  7.5898921489716
Time after:   7.5930190086365
Elapsed time: 0.003126859664917

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'lovestory.gif'

Time before:  7.5933201313019
Time after:   7.5965449810028
Elapsed time: 0.0032248497009277

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'lurk.gif'

Time before:  7.5968110561371
Time after:   7.6000730991364
Elapsed time: 0.0032620429992676

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'male.gif'

Time before:  7.6003980636597
Time after:   7.6038601398468
Elapsed time: 0.0034620761871338

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'mblah05.gif'

Time before:  7.6040899753571
Time after:   7.6071231365204
Elapsed time: 0.0030331611633301

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'merror.gif'

Time before:  7.6074841022491
Time after:   7.6142630577087
Elapsed time: 0.0067789554595947

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'mumum.gif'

Time before:  7.6146309375763
Time after:   7.6177780628204
Elapsed time: 0.0031471252441406

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'munky2.gif'

Time before:  7.6180651187897
Time after:   7.6217610836029
Elapsed time: 0.0036959648132324

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'naka.gif'

Time before:  7.6220660209656
Time after:   7.6242690086365
Elapsed time: 0.0022029876708984

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'newbie.gif'

Time before:  7.6246161460876
Time after:   7.6277141571045
Elapsed time: 0.0030980110168457

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'nike.gif'

Time before:  7.6279571056366
Time after:   7.6319091320038
Elapsed time: 0.0039520263671875

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'notworthy.gif'

Time before:  7.6321699619293
Time after:   7.6393351554871
Elapsed time: 0.0071651935577393

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'occasion1.gif'

Time before:  7.6397061347961
Time after:   7.6429951190948
Elapsed time: 0.0032889842987061

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'occasion13.gif'

Time before:  7.6433529853821
Time after:   7.6467261314392
Elapsed time: 0.0033731460571289

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'occasion14.gif'

Time before:  7.647087097168
Time after:   7.6504640579224
Elapsed time: 0.0033769607543945

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'occasion15.gif'

Time before:  7.6507551670074
Time after:   7.6539981365204
Elapsed time: 0.0032429695129395

Query:	UPDATE stats_smilies_index SET smile_count = 17 WHERE smile_url = 'occasion16.gif'

Time before:  7.6542789936066
Time after:   7.6575660705566
Elapsed time: 0.0032870769500732

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'occasion17.gif'

Time before:  7.6578240394592
Time after:   7.6611139774323
Elapsed time: 0.0032899379730225

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'occasion18.gif'

Time before:  7.6614120006561
Time after:   7.6647281646729
Elapsed time: 0.0033161640167236

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'occasion5.gif'

Time before:  7.6649899482727
Time after:   7.6682920455933
Elapsed time: 0.0033020973205566

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'offtheair.gif'

Time before:  7.6686110496521
Time after:   7.6718370914459
Elapsed time: 0.0032260417938232

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'ORGR.gif'

Time before:  7.6721410751343
Time after:   7.6752991676331
Elapsed time: 0.0031580924987793

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pain10.gif'

Time before:  7.6756510734558
Time after:   7.6789050102234
Elapsed time: 0.0032539367675781

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain1.gif'

Time before:  7.679258108139
Time after:   7.6826989650726
Elapsed time: 0.0034408569335938

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain2.gif'

Time before:  7.6830141544342
Time after:   7.6865429878235
Elapsed time: 0.0035288333892822

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'pottytrain3.gif'

Time before:  7.6869299411774
Time after:   7.6902041435242
Elapsed time: 0.0032742023468018

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain4.gif'

Time before:  7.6905159950256
Time after:   7.6937980651855
Elapsed time: 0.0032820701599121

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain5.gif'

Time before:  7.6940891742706
Time after:   7.6973991394043
Elapsed time: 0.003309965133667

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'protest.gif'

Time before:  7.6976809501648
Time after:   7.7010560035706
Elapsed time: 0.0033750534057617

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'puke.gif'

Time before:  7.70134806633
Time after:   7.7047820091248
Elapsed time: 0.0034339427947998

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'read.gif'

Time before:  7.705146074295
Time after:   7.7085349559784
Elapsed time: 0.0033888816833496

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'read2.gif'

Time before:  7.7088701725006
Time after:   7.7122440338135
Elapsed time: 0.0033738613128662

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 's-bluecap.gif'

Time before:  7.7128200531006
Time after:   7.7162339687347
Elapsed time: 0.0034139156341553

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 's-chainsaw.gif'

Time before:  7.7165141105652
Time after:   7.719743013382
Elapsed time: 0.0032289028167725

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 's-ctf.gif'

Time before:  7.7200629711151
Time after:   7.7234880924225
Elapsed time: 0.003425121307373

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 's-instagib.gif'

Time before:  7.7237889766693
Time after:   7.7271771430969
Elapsed time: 0.0033881664276123

Query:	UPDATE stats_smilies_index SET smile_count = 19 WHERE smile_url = 's-minigun.gif'

Time before:  7.7274861335754
Time after:   7.7316241264343
Elapsed time: 0.0041379928588867

Query:	UPDATE stats_smilies_index SET smile_count = 121 WHERE smile_url = 's-shock.gif'

Time before:  7.7318980693817
Time after:   7.7353620529175
Elapsed time: 0.0034639835357666

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 's-telefrag.gif'

Time before:  7.7356171607971
Time after:   7.738734960556
Elapsed time: 0.0031177997589111

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad1.gif'

Time before:  7.7390220165253
Time after:   7.7423610687256
Elapsed time: 0.0033390522003174

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad10.gif'

Time before:  7.7426300048828
Time after:   7.7534210681915
Elapsed time: 0.010791063308716

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad11.gif'

Time before:  7.7537269592285
Time after:   7.7570819854736
Elapsed time: 0.0033550262451172

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad2.gif'

Time before:  7.7573540210724
Time after:   7.7623629570007
Elapsed time: 0.0050089359283447

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sad3.gif'

Time before:  7.762640953064
Time after:   7.7675859928131
Elapsed time: 0.0049450397491455

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad4.gif'

Time before:  7.767863035202
Time after:   7.7712290287018
Elapsed time: 0.0033659934997559

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sad5.gif'

Time before:  7.771516084671
Time after:   7.7748131752014
Elapsed time: 0.0032970905303955

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad6.gif'

Time before:  7.775074005127
Time after:   7.7784380912781
Elapsed time: 0.003364086151123

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad7.gif'

Time before:  7.7787120342255
Time after:   7.7827131748199
Elapsed time: 0.0040011405944824

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad8.gif'

Time before:  7.7832951545715
Time after:   7.7868371009827
Elapsed time: 0.0035419464111328

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad9.gif'

Time before:  7.7872040271759
Time after:   7.7900841236115
Elapsed time: 0.0028800964355469

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sex.gif'

Time before:  7.7903220653534
Time after:   7.7931690216064
Elapsed time: 0.0028469562530518

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign10.gif'

Time before:  7.7934019565582
Time after:   7.7962379455566
Elapsed time: 0.0028359889984131

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign12.gif'

Time before:  7.7964689731598
Time after:   7.7993071079254
Elapsed time: 0.002838134765625

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign13.gif'

Time before:  7.799544095993
Time after:   7.8023431301117
Elapsed time: 0.0027990341186523

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign14.gif'

Time before:  7.8025720119476
Time after:   7.8056869506836
Elapsed time: 0.0031149387359619

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign16.gif'

Time before:  7.8059451580048
Time after:   7.8088109493256
Elapsed time: 0.0028657913208008

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign17.gif'

Time before:  7.8090419769287
Time after:   7.8119361400604
Elapsed time: 0.0028941631317139

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign18.gif'

Time before:  7.8122110366821
Time after:   7.8151450157166
Elapsed time: 0.0029339790344238

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign19.gif'

Time before:  7.815416097641
Time after:   7.818549156189
Elapsed time: 0.0031330585479736

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign2.gif'

Time before:  7.8188619613647
Time after:   7.8220851421356
Elapsed time: 0.003223180770874

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign4.gif'

Time before:  7.822359085083
Time after:   7.8256230354309
Elapsed time: 0.0032639503479004

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sign5.gif'

Time before:  7.8258800506592
Time after:   7.8292350769043
Elapsed time: 0.0033550262451172

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign7.gif'

Time before:  7.8294870853424
Time after:   7.8327579498291
Elapsed time: 0.0032708644866943

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sith.gif'

Time before:  7.8330099582672
Time after:   7.8363490104675
Elapsed time: 0.0033390522003174

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy1.gif'

Time before:  7.8366391658783
Time after:   7.8398680686951
Elapsed time: 0.0032289028167725

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'sleepy2.gif'

Time before:  7.840136051178
Time after:   7.8434040546417
Elapsed time: 0.0032680034637451

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy3.gif'

Time before:  7.843719959259
Time after:   7.8469631671906
Elapsed time: 0.0032432079315186

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy4.gif'

Time before:  7.8472590446472
Time after:   7.8504750728607
Elapsed time: 0.003216028213501

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy5.gif'

Time before:  7.8507449626923
Time after:   7.8540101051331
Elapsed time: 0.0032651424407959

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy7.gif'

Time before:  7.8543009757996
Time after:   7.8575489521027
Elapsed time: 0.0032479763031006

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'smileinbox.gif'

Time before:  7.8578200340271
Time after:   7.8610639572144
Elapsed time: 0.0032439231872559

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'snorting.gif'

Time before:  7.8613600730896
Time after:   7.8645470142365
Elapsed time: 0.0031869411468506

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'spam1.gif'

Time before:  7.8648431301117
Time after:   7.8680860996246
Elapsed time: 0.0032429695129395

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'spam4.gif'

Time before:  7.8684120178223
Time after:   7.8716261386871
Elapsed time: 0.0032141208648682

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'stfu.gif'

Time before:  7.8719160556793
Time after:   7.8751130104065
Elapsed time: 0.0031969547271729

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'stop.gif'

Time before:  7.8754510879517
Time after:   7.878632068634
Elapsed time: 0.003180980682373

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'tard.gif'

Time before:  7.8789081573486
Time after:   7.8821041584015
Elapsed time: 0.0031960010528564

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'TheArchLitchMalignus.gif'

Time before:  7.8823890686035
Time after:   7.8857591152191
Elapsed time: 0.0033700466156006

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'thebirdman.gif'

Time before:  7.8860890865326
Time after:   7.8893980979919
Elapsed time: 0.0033090114593506

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'thefinger.gif'

Time before:  7.8897120952606
Time after:   7.8931031227112
Elapsed time: 0.0033910274505615

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'Thin5.gif'

Time before:  7.8933899402618
Time after:   7.8966510295868
Elapsed time: 0.0032610893249512

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'thumbsup.gif'

Time before:  7.8969240188599
Time after:   7.9000639915466
Elapsed time: 0.0031399726867676

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue1.gif'

Time before:  7.9003610610962
Time after:   7.903596162796
Elapsed time: 0.0032351016998291

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue11.gif'

Time before:  7.9038851261139
Time after:   7.9071061611176
Elapsed time: 0.0032210350036621

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue2.gif'

Time before:  7.9074301719666
Time after:   7.9105889797211
Elapsed time: 0.0031588077545166

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue3.gif'

Time before:  7.9108691215515
Time after:   7.9140601158142
Elapsed time: 0.0031909942626953

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue4.gif'

Time before:  7.9143970012665
Time after:   7.9176139831543
Elapsed time: 0.0032169818878174

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue5.gif'

Time before:  7.9178969860077
Time after:   7.9211120605469
Elapsed time: 0.0032150745391846

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue6.gif'

Time before:  7.9214010238647
Time after:   7.9245610237122
Elapsed time: 0.0031599998474121

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue7.gif'

Time before:  7.9248919487
Time after:   7.9281129837036
Elapsed time: 0.0032210350036621

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue8.gif'

Time before:  7.9284529685974
Time after:   7.9316849708557
Elapsed time: 0.0032320022583008

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue9.gif'

Time before:  7.9319550991058
Time after:   7.9350919723511
Elapsed time: 0.0031368732452393

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tool.gif'

Time before:  7.9354350566864
Time after:   7.9386451244354
Elapsed time: 0.0032100677490234

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy1.gif'

Time before:  7.9389319419861
Time after:   7.9421470165253
Elapsed time: 0.0032150745391846

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy10.gif'

Time before:  7.9424440860748
Time after:   7.9456231594086
Elapsed time: 0.0031790733337402

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy11.gif'

Time before:  7.9459199905396
Time after:   7.9491510391235
Elapsed time: 0.0032310485839844

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'toothy12.gif'

Time before:  7.9494619369507
Time after:   7.952653169632
Elapsed time: 0.0031912326812744

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'toothy2.gif'

Time before:  7.9529340267181
Time after:   7.9561109542847
Elapsed time: 0.0031769275665283

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy3.gif'

Time before:  7.9563910961151
Time after:   7.9595150947571
Elapsed time: 0.0031239986419678

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy4.gif'

Time before:  7.9598050117493
Time after:   7.9630279541016
Elapsed time: 0.0032229423522949

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy5.gif'

Time before:  7.9633581638336
Time after:   7.9665651321411
Elapsed time: 0.0032069683074951

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy6.gif'

Time before:  7.9668350219727
Time after:   7.9700429439545
Elapsed time: 0.0032079219818115

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'toothy9.gif'

Time before:  7.970360994339
Time after:   7.9735860824585
Elapsed time: 0.0032250881195068

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'triplets.gif'

Time before:  7.9738790988922
Time after:   7.9766030311584
Elapsed time: 0.0027239322662354

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tshirt.gif'

Time before:  7.9768810272217
Time after:   7.980103969574
Elapsed time: 0.0032229423522949

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tweety.gif'

Time before:  7.9804520606995
Time after:   7.9849009513855
Elapsed time: 0.0044488906860352

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'usa2.gif'

Time before:  7.9851820468903
Time after:   7.989166021347
Elapsed time: 0.0039839744567871

Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = 'violent1.gif'

Time before:  7.9894399642944
Time after:   7.9936871528625
Elapsed time: 0.0042471885681152

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'violent4.gif'

Time before:  7.9938991069794
Time after:   7.9977860450745
Elapsed time: 0.0038869380950928

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'violent5.gif'

Time before:  7.9980020523071
Time after:   8.0004789829254
Elapsed time: 0.0024769306182861

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'walk.gif'

Time before:  8.0008301734924
Time after:   8.0040991306305
Elapsed time: 0.0032689571380615

Query:	UPDATE stats_smilies_index SET smile_count = 62 WHERE smile_url = 'wav.gif'

Time before:  8.0044009685516
Time after:   8.0076849460602
Elapsed time: 0.0032839775085449

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'wave.gif'

Time before:  8.0080111026764
Time after:   8.0114109516144
Elapsed time: 0.0033998489379883

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'Whaxatk.gif'

Time before:  8.0117111206055
Time after:   8.0150239467621
Elapsed time: 0.0033128261566162

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'Whdatk.gif'

Time before:  8.0153930187225
Time after:   8.018767118454
Elapsed time: 0.0033740997314453

Query:	UPDATE stats_smilies_info SET last_post_id = 25756

Time before:  8.0190961360931
Time after:   8.0197229385376
Elapsed time: 0.00062680244445801

Query:	SELECT word FROM phpbb_words

Time before:  8.6434080600739
Time after:   8.6444940567017
Elapsed time: 0.0010859966278076
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_words  ALL          17  17   


Query:	SELECT COUNT( word_id ) total_words FROM phpbb_search_wordmatch

Time before:  8.6455299854279
Time after:   8.6460530757904
Elapsed time: 0.00052309036254883
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT COUNT( word ) as censoredwordcount FROM phpbb_words

Time before:  8.6472120285034
Time after:   8.6476440429688
Elapsed time: 0.00043201446533203
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT COUNT( swm.word_id ) word_count, swm.word_id word_id, swl.word_text word_text
	FROM phpbb_search_wordmatch swm, phpbb_search_wordlist swl, phpbb_words wt
	WHERE swm.word_id = swl.word_id
	AND wt.word <> swl.word_text
	GROUP BY swm.word_id ORDER BY word_count DESC
	LIMIT 10

Time before:  8.6483540534973
Time after:   29.482402086258
Elapsed time: 20.834048032761
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  swl  ALL  word_id        31523  10  Using temporary; Using filesort 
SIMPLE  swm  ref  word_id  word_id  stevew_phpb2.swl.word_id  12    Using index 
SIMPLE  wt  ALL          17    Using where 


Query:	SELECT cash_dbfield, cash_name
	FROM phpbb_cash
	ORDER BY cash_order DESC

Time before:  29.856024980545
Time after:   29.856652975082
Elapsed time: 0.00062799453735352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_cash  system           


Query:	SELECT  user_id, username, user_points as cur
	FROM phpbb_users
	WHERE user_id <> -1
	ORDER BY user_points DESC
	LIMIT 10

Time before:  29.871165990829
Time after:   29.887402057648
Elapsed time: 0.016236066818237
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1002  10  Using where; Using filesort 


Query:	SELECT DISTINCT u.user_id, u.username, a.first_places, a.at_first_places FROM phpbb_users as u, phpbb_ina_user_data as a
	WHERE u.user_id = a.user_id
	AND a.first_places > -1
	ORDER by a.at_first_places DESC
	LIMIT 10

Time before:  29.974583148956
Time after:   29.977944135666
Elapsed time: 0.0033609867095947
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        140  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.a.user_id     


Query:	SELECT DISTINCT u.user_id, u.username, a.first_places, a.at_first_places FROM phpbb_users as u, phpbb_ina_user_data as a
	WHERE u.user_id = a.user_id
	AND a.first_places > 0
	ORDER by a.first_places DESC, last_won_date, u.username LIMIT 10

Time before:  29.999488115311
Time after:   30.00329709053
Elapsed time: 0.0038089752197266
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        140  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.a.user_id     


Query:	SELECT game_id, game_desc, played
	FROM phpbb_ina_games
	ORDER BY played DESC
	LIMIT 10

Time before:  30.025943040848
Time after:   30.026987075806
Elapsed time: 0.0010440349578857
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_ina_games  ALL          136  10  Using filesort 


Query:	SELECT i.game_id, i.game_desc, i.played, i.date_added, u.user_dateformat, u.user_timezone
	FROM phpbb_ina_games i, phpbb_users u
	WHERE u.user_id = 949
	ORDER BY date_added DESC
	LIMIT 10

Time before:  30.058387041092
Time after:   30.059658050537
Elapsed time: 0.0012710094451904
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  const  PRIMARY  PRIMARY  const  10  Using filesort 
SIMPLE  ALL          136     


The Statistics Mod generated 1131 queries,
spending 26.070096254349 doing MySQL queries and 4.0146698951721 doing PHP things.