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
	ORDER BY f.forum_posts DESC
	LIMIT 10

Time before:  0.43522596359253
Time after:   0.43809509277344
Elapsed time: 0.0028691291809082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  cat_id        20  10  Using where; Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY          Using where 


Query:	SELECT topic_id, topic_title, topic_replies
	FROM phpbb_topics
	ORDER BY topic_replies DESC
	LIMIT 10

Time before:  0.45641398429871
Time after:   0.46087193489075
Elapsed time: 0.004457950592041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          2625  10  Using filesort 


Query:	SELECT topic_id, topic_title, topic_views
	FROM phpbb_topics
	ORDER BY topic_views DESC
	LIMIT 10

Time before:  0.4763720035553
Time after:   0.47957801818848
Elapsed time: 0.0032060146331787
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          2625  10  Using filesort 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k DESC
	LIMIT 10

Time before:  0.51116299629211
Time after:   0.51587200164795
Elapsed time: 0.004709005355835
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          2625  10  Using filesort 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k ASC
	LIMIT 10

Time before:  0.53056812286377
Time after:   0.5351231098175
Elapsed time: 0.0045549869537354
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          2625  10  Using filesort 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k DESC
	LIMIT 10

Time before:  0.55010914802551
Time after:   0.55470895767212
Elapsed time: 0.0045998096466064
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          2625  10  Using filesort 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k ASC
	LIMIT 10

Time before:  0.55553412437439
Time after:   0.55976605415344
Elapsed time: 0.0042319297790527
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          2625  10  Using filesort 


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

Time before:  0.59805798530579
Time after:   0.60708808898926
Elapsed time: 0.0090301036834717
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        1282  Using where 


Query:	SELECT user_id, username, user_posts, user_regdate,
	(user_posts/((1194626192 - user_regdate)/ 86400)) rate,
	ROUND((1194626192 - 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:  0.60779905319214
Time after:   0.62520313262939
Elapsed time: 0.017404079437256
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1282  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
	WHERE a.vote_id = b.vote_id
	AND b.topic_id = t.topic_id
	GROUP BY a.vote_id
	ORDER BY num_votes DESC
	LIMIT 10

Time before:  0.7003481388092
Time after:   0.7040331363678
Elapsed time: 0.0036849975585938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  index  vote_id  vote_id    137  10  Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY,topic_id  PRIMARY  stevew_phpb2.a.vote_id     
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.b.topic_id     


Query:	SELECT p.post_id, p.post_time, pt.post_subject, t.topic_id, t.topic_title, u.username, u.user_timezone, u.user_dateformat
	FROM phpbb_posts p, phpbb_posts_text pt, phpbb_topics t, 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
	ORDER BY p.post_time DESC
	LIMIT 10

Time before:  0.74164795875549
Time after:   0.88247013092041
Elapsed time: 0.14082217216492
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          2625  10  Using temporary; Using filesort 
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
	WHERE u.user_id = 2
	ORDER BY topic_time DESC
	LIMIT 10

Time before:  0.90640091896057
Time after:   0.91012096405029
Elapsed time: 0.0037200450897217
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          2625     


Query:	SELECT * FROM stats_smilies_info

Time before:  0.99241995811462
Time after:   0.99273014068604
Elapsed time: 0.00031018257141113
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:  0.99319195747375
Time after:   0.99541401863098
Elapsed time: 0.0022220611572266
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  stats_smilies_index  ALL          325  325   


Query:	SELECT max(post_id) as total FROM phpbb_posts

Time before:  1.0020339488983
Time after:   1.0023031234741
Elapsed time: 0.00026917457580566
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:  1.0028131008148
Time after:   1.0029439926147
Elapsed time: 0.00013089179992676
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:  1.0033450126648
Time after:   1.0084760189056
Elapsed time: 0.0051310062408447
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  325  Using temporary; Using filesort 


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

Time before:  1.0114409923553
Time after:   1.0125460624695
Elapsed time: 0.0011050701141357
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0134100914001
Time after:   1.0139589309692
Elapsed time: 0.0005488395690918
id select_type table type possible_keys key 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:  1.0147531032562
Time after:   1.0157570838928
Elapsed time: 0.0010039806365967
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0165119171143
Time after:   1.0168211460114
Elapsed time: 0.00030922889709473
id select_type table type possible_keys key 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:  1.0178661346436
Time after:   1.0188369750977
Elapsed time: 0.00097084045410156
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0195059776306
Time after:   1.0197899341583
Elapsed time: 0.00028395652770996
id select_type table type possible_keys key 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:  1.0206170082092
Time after:   1.0215909481049
Elapsed time: 0.00097393989562988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0222511291504
Time after:   1.0225269794464
Elapsed time: 0.00027585029602051
id select_type table type possible_keys key 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:  1.0232739448547
Time after:   1.0242199897766
Elapsed time: 0.000946044921875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0248720645905
Time after:   1.0251560211182
Elapsed time: 0.00028395652770996
id select_type table type possible_keys key 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:  1.0259239673615
Time after:   1.033411026001
Elapsed time: 0.0074870586395264
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0399451255798
Time after:   1.0402889251709
Elapsed time: 0.00034379959106445
id select_type table type possible_keys key 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:  1.0418541431427
Time after:   1.0430390834808
Elapsed time: 0.0011849403381348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0438570976257
Time after:   1.0443019866943
Elapsed time: 0.00044488906860352
id select_type table type possible_keys key 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:  1.0451030731201
Time after:   1.04611992836
Elapsed time: 0.0010168552398682
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0468881130219
Time after:   1.0472071170807
Elapsed time: 0.00031900405883789
id select_type table type possible_keys key 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:  1.0479719638824
Time after:   1.0599241256714
Elapsed time: 0.01195216178894
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0607221126556
Time after:   1.0610380172729
Elapsed time: 0.00031590461730957
id select_type table type possible_keys key 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:  1.0618641376495
Time after:   1.0628759860992
Elapsed time: 0.001011848449707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0635809898376
Time after:   1.0638859272003
Elapsed time: 0.0003049373626709
id select_type table type possible_keys key 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:  1.0646979808807
Time after:   1.0656869411469
Elapsed time: 0.00098896026611328
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0665230751038
Time after:   1.0668570995331
Elapsed time: 0.00033402442932129
id select_type table type possible_keys key 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:  1.0676810741425
Time after:   1.0686480998993
Elapsed time: 0.00096702575683594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0691549777985
Time after:   1.0693941116333
Elapsed time: 0.00023913383483887
id select_type table type possible_keys key 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:  1.0699849128723
Time after:   1.0708720684052
Elapsed time: 0.00088715553283691
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0712969303131
Time after:   1.0715310573578
Elapsed time: 0.00023412704467773
id select_type table type possible_keys key 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:  1.0720150470734
Time after:   1.0728340148926
Elapsed time: 0.00081896781921387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.073352098465
Time after:   1.0735981464386
Elapsed time: 0.00024604797363281
id select_type table type possible_keys key 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:  1.0740931034088
Time after:   1.0749731063843
Elapsed time: 0.00088000297546387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0753920078278
Time after:   1.0756249427795
Elapsed time: 0.00023293495178223
id select_type table type possible_keys key 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:  1.0761950016022
Time after:   1.0769619941711
Elapsed time: 0.00076699256896973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0773980617523
Time after:   1.0776300430298
Elapsed time: 0.00023198127746582
id select_type table type possible_keys key 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:  1.0781099796295
Time after:   1.0789849758148
Elapsed time: 0.00087499618530273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0795121192932
Time after:   1.079754114151
Elapsed time: 0.00024199485778809
id select_type table type possible_keys key 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:  1.0802419185638
Time after:   1.0810260772705
Elapsed time: 0.00078415870666504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0815279483795
Time after:   1.0817670822144
Elapsed time: 0.00023913383483887
id select_type table type possible_keys key 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:  1.0822629928589
Time after:   1.0831401348114
Elapsed time: 0.00087714195251465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0836520195007
Time after:   1.0839200019836
Elapsed time: 0.00026798248291016
id select_type table type possible_keys key 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:  1.0847070217133
Time after:   1.085823059082
Elapsed time: 0.0011160373687744
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0865499973297
Time after:   1.0868630409241
Elapsed time: 0.00031304359436035
id select_type table type possible_keys key 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:  1.0875480175018
Time after:   1.0884740352631
Elapsed time: 0.00092601776123047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0893049240112
Time after:   1.08957695961
Elapsed time: 0.00027203559875488
id select_type table type possible_keys key 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:  1.0901110172272
Time after:   1.0909869670868
Elapsed time: 0.00087594985961914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.091404914856
Time after:   1.0916380882263
Elapsed time: 0.00023317337036133
id select_type table type possible_keys key 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:  1.0921499729156
Time after:   1.0929229259491
Elapsed time: 0.00077295303344727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.093346118927
Time after:   1.0935781002045
Elapsed time: 0.00023198127746582
id select_type table type possible_keys key 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:  1.0941600799561
Time after:   1.0950610637665
Elapsed time: 0.0009009838104248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0955300331116
Time after:   1.0957689285278
Elapsed time: 0.00023889541625977
id select_type table type possible_keys key 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:  1.0962591171265
Time after:   1.0970771312714
Elapsed time: 0.00081801414489746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.0978951454163
Time after:   1.0982780456543
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 = 'BangHead.gif'

Time before:  1.1019449234009
Time after:   1.103147983551
Elapsed time: 0.0012030601501465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1038520336151
Time after:   1.1041479110718
Elapsed time: 0.00029587745666504
id select_type table type possible_keys key 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:  1.1047201156616
Time after:   1.1056880950928
Elapsed time: 0.00096797943115234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1061959266663
Time after:   1.1065120697021
Elapsed time: 0.00031614303588867
id select_type table type possible_keys key 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:  1.1071560382843
Time after:   1.1080751419067
Elapsed time: 0.00091910362243652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1085340976715
Time after:   1.1088321208954
Elapsed time: 0.00029802322387695
id select_type table type possible_keys key 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:  1.1093709468842
Time after:   1.1102550029755
Elapsed time: 0.00088405609130859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1106851100922
Time after:   1.1109180450439
Elapsed time: 0.00023293495178223
id select_type table type possible_keys key 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:  1.1113910675049
Time after:   1.112263917923
Elapsed time: 0.00087285041809082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1128330230713
Time after:   1.1130831241608
Elapsed time: 0.00025010108947754
id select_type table type possible_keys key 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:  1.1135959625244
Time after:   1.1144869327545
Elapsed time: 0.00089097023010254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1149010658264
Time after:   1.1151311397552
Elapsed time: 0.00023007392883301
id select_type table type possible_keys key 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:  1.1156530380249
Time after:   1.1165299415588
Elapsed time: 0.00087690353393555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1169950962067
Time after:   1.1172881126404
Elapsed time: 0.00029301643371582
id select_type table type possible_keys key 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:  1.1179389953613
Time after:   1.1188590526581
Elapsed time: 0.00092005729675293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1192820072174
Time after:   1.1195180416107
Elapsed time: 0.00023603439331055
id select_type table type possible_keys key 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:  1.1200060844421
Time after:   1.1209599971771
Elapsed time: 0.00095391273498535
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1214220523834
Time after:   1.1216580867767
Elapsed time: 0.00023603439331055
id select_type table type possible_keys key 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:  1.1221599578857
Time after:   1.1230521202087
Elapsed time: 0.00089216232299805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1237931251526
Time after:   1.1240530014038
Elapsed time: 0.0002598762512207
id select_type table type possible_keys key 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:  1.1245801448822
Time after:   1.1254711151123
Elapsed time: 0.00089097023010254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1258859634399
Time after:   1.1261200904846
Elapsed time: 0.00023412704467773
id select_type table type possible_keys key 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:  1.1266131401062
Time after:   1.1274881362915
Elapsed time: 0.00087499618530273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1278970241547
Time after:   1.1281731128693
Elapsed time: 0.00027608871459961
id select_type table type possible_keys key 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:  1.1289939880371
Time after:   1.1300330162048
Elapsed time: 0.0010390281677246
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1309900283813
Time after:   1.1313009262085
Elapsed time: 0.00031089782714844
id select_type table type possible_keys key 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:  1.1320431232452
Time after:   1.1329309940338
Elapsed time: 0.00088787078857422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1337110996246
Time after:   1.1340169906616
Elapsed time: 0.0003058910369873
id select_type table type possible_keys key 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:  1.1348130702972
Time after:   1.1358680725098
Elapsed time: 0.0010550022125244
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1367609500885
Time after:   1.1371171474457
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 = 'brave.gif'

Time before:  1.1380679607391
Time after:   1.1391820907593
Elapsed time: 0.0011141300201416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1402051448822
Time after:   1.140604019165
Elapsed time: 0.00039887428283691
id select_type table type possible_keys key 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:  1.1415319442749
Time after:   1.1425220966339
Elapsed time: 0.00099015235900879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.143000125885
Time after:   1.1432421207428
Elapsed time: 0.00024199485778809
id select_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 > 28662

Time before:  1.1437110900879
Time after:   1.1439380645752
Elapsed time: 0.00022697448730469
id select_type table type possible_keys key 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:  1.1444420814514
Time after:   1.1451539993286
Elapsed time: 0.00071191787719727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1455719470978
Time after:   1.1458101272583
Elapsed time: 0.00023818016052246
id select_type table type possible_keys key 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:  1.1465029716492
Time after:   1.147402048111
Elapsed time: 0.00089907646179199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1478989124298
Time after:   1.148148059845
Elapsed time: 0.00024914741516113
id select_type table type possible_keys key 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:  1.148677110672
Time after:   1.1590220928192
Elapsed time: 0.010344982147217
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1641619205475
Time after:   1.1644549369812
Elapsed time: 0.00029301643371582
id select_type table type possible_keys key 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:  1.1649820804596
Time after:   1.16588306427
Elapsed time: 0.0009009838104248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1663179397583
Time after:   1.1665599346161
Elapsed time: 0.00024199485778809
id select_type table type possible_keys key 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:  1.1670699119568
Time after:   1.1679749488831
Elapsed time: 0.00090503692626953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.168653011322
Time after:   1.1689140796661
Elapsed time: 0.00026106834411621
id select_type table type possible_keys key 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:  1.1694519519806
Time after:   1.1703400611877
Elapsed time: 0.00088810920715332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1707570552826
Time after:   1.1709940433502
Elapsed time: 0.00023698806762695
id select_type table type possible_keys key 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:  1.1714849472046
Time after:   1.1723639965057
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1727840900421
Time after:   1.1730210781097
Elapsed time: 0.00023698806762695
id select_type table type possible_keys key 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:  1.1735091209412
Time after:   1.1744029521942
Elapsed time: 0.00089383125305176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1748230457306
Time after:   1.1750540733337
Elapsed time: 0.00023102760314941
id select_type table type possible_keys key 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:  1.1755640506744
Time after:   1.1764440536499
Elapsed time: 0.00088000297546387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1770880222321
Time after:   1.1773390769958
Elapsed time: 0.00025105476379395
id select_type table type possible_keys key 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:  1.1778531074524
Time after:   1.178750038147
Elapsed time: 0.00089693069458008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1791620254517
Time after:   1.1793920993805
Elapsed time: 0.00023007392883301
id select_type table type possible_keys key 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:  1.1798889636993
Time after:   1.1807429790497
Elapsed time: 0.0008540153503418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1811590194702
Time after:   1.1813941001892
Elapsed time: 0.00023508071899414
id select_type table type possible_keys key 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:  1.1818821430206
Time after:   1.1827681064606
Elapsed time: 0.00088596343994141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1831851005554
Time after:   1.1834180355072
Elapsed time: 0.00023293495178223
id select_type table type possible_keys key 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:  1.1839139461517
Time after:   1.1848759651184
Elapsed time: 0.0009620189666748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1856970787048
Time after:   1.1859390735626
Elapsed time: 0.00024199485778809
id select_type table type possible_keys key 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:  1.1865479946136
Time after:   1.1872401237488
Elapsed time: 0.00069212913513184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1877291202545
Time after:   1.1879451274872
Elapsed time: 0.00021600723266602
id select_type table type possible_keys key 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:  1.1885299682617
Time after:   1.1892380714417
Elapsed time: 0.00070810317993164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1897270679474
Time after:   1.1899440288544
Elapsed time: 0.00021696090698242
id select_type table type possible_keys key 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:  1.1905930042267
Time after:   1.1913011074066
Elapsed time: 0.00070810317993164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1917929649353
Time after:   1.1920099258423
Elapsed time: 0.00021696090698242
id select_type table type possible_keys key 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:  1.1925981044769
Time after:   1.1932771205902
Elapsed time: 0.00067901611328125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1940779685974
Time after:   1.1943209171295
Elapsed time: 0.00024294853210449
id select_type table type possible_keys key 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:  1.1949291229248
Time after:   1.195620059967
Elapsed time: 0.00069093704223633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1961030960083
Time after:   1.1963179111481
Elapsed time: 0.00021481513977051
id select_type table type possible_keys key 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:  1.1968591213226
Time after:   1.1975350379944
Elapsed time: 0.00067591667175293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.1980350017548
Time after:   1.1982500553131
Elapsed time: 0.00021505355834961
id select_type table type possible_keys key 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:  1.198832988739
Time after:   1.1995251178741
Elapsed time: 0.00069212913513184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.200031042099
Time after:   1.200245141983
Elapsed time: 0.0002140998840332
id select_type table type possible_keys key 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:  1.2007720470428
Time after:   1.201446056366
Elapsed time: 0.00067400932312012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2023141384125
Time after:   1.2027039527893
Elapsed time: 0.00038981437683105
id select_type table type possible_keys key 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:  1.2037620544434
Time after:   1.2092759609222
Elapsed time: 0.0055139064788818
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2099671363831
Time after:   1.210305929184
Elapsed time: 0.00033879280090332
id select_type table type possible_keys key 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:  1.2110419273376
Time after:   1.2120740413666
Elapsed time: 0.0010321140289307
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2126400470734
Time after:   1.2129459381104
Elapsed time: 0.0003058910369873
id select_type table type possible_keys key 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:  1.2136421203613
Time after:   1.2146949768066
Elapsed time: 0.0010528564453125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2152950763702
Time after:   1.2156000137329
Elapsed time: 0.0003049373626709
id select_type table type possible_keys key 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:  1.216285943985
Time after:   1.2173230648041
Elapsed time: 0.0010371208190918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2178990840912
Time after:   1.218199968338
Elapsed time: 0.00030088424682617
id select_type table type possible_keys key 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:  1.2194120883942
Time after:   1.2202911376953
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2208831310272
Time after:   1.2212879657745
Elapsed time: 0.00040483474731445
id select_type table type possible_keys key 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:  1.2219870090485
Time after:   1.2232811450958
Elapsed time: 0.0012941360473633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2237799167633
Time after:   1.224081993103
Elapsed time: 0.00030207633972168
id select_type table type possible_keys key 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:  1.2246301174164
Time after:   1.2256219387054
Elapsed time: 0.0009918212890625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2260510921478
Time after:   1.2262930870056
Elapsed time: 0.00024199485778809
id select_type table type possible_keys key 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:  1.2268390655518
Time after:   1.2279040813446
Elapsed time: 0.0010650157928467
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2283499240875
Time after:   1.228611946106
Elapsed time: 0.00026202201843262
id select_type table type possible_keys key 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:  1.2291610240936
Time after:   1.2300591468811
Elapsed time: 0.00089812278747559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2307670116425
Time after:   1.2310299873352
Elapsed time: 0.00026297569274902
id select_type table type possible_keys key 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:  1.2315671443939
Time after:   1.2324459552765
Elapsed time: 0.00087881088256836
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2328550815582
Time after:   1.2330930233002
Elapsed time: 0.00023794174194336
id select_type table type possible_keys key 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:  1.2335910797119
Time after:   1.2344739437103
Elapsed time: 0.00088286399841309
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2348999977112
Time after:   1.2351319789886
Elapsed time: 0.00023198127746582
id select_type table type possible_keys key 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:  1.2356250286102
Time after:   1.2365019321442
Elapsed time: 0.00087690353393555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2369239330292
Time after:   1.2371571063995
Elapsed time: 0.00023317337036133
id select_type table type possible_keys key 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:  1.2376470565796
Time after:   1.2385249137878
Elapsed time: 0.00087785720825195
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2389330863953
Time after:   1.2391650676727
Elapsed time: 0.00023198127746582
id select_type table type possible_keys key 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:  1.2396650314331
Time after:   1.2405381202698
Elapsed time: 0.00087308883666992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2413239479065
Time after:   1.2415819168091
Elapsed time: 0.00025796890258789
id select_type table type possible_keys key 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:  1.2421309947968
Time after:   1.2430200576782
Elapsed time: 0.00088906288146973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2434370517731
Time after:   1.243665933609
Elapsed time: 0.0002288818359375
id select_type table type possible_keys key 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:  1.2441670894623
Time after:   1.2449331283569
Elapsed time: 0.00076603889465332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2453589439392
Time after:   1.245589017868
Elapsed time: 0.00023007392883301
id select_type table type possible_keys key 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:  1.2461309432983
Time after:   1.2470071315765
Elapsed time: 0.00087618827819824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.24742603302
Time after:   1.2476580142975
Elapsed time: 0.00023198127746582
id select_type table type possible_keys key 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:  1.2481601238251
Time after:   1.2489519119263
Elapsed time: 0.00079178810119629
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.249419927597
Time after:   1.2496559619904
Elapsed time: 0.00023603439331055
id select_type table type possible_keys key 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:  1.250186920166
Time after:   1.2510769367218
Elapsed time: 0.00089001655578613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2515509128571
Time after:   1.251785993576
Elapsed time: 0.00023508071899414
id select_type table type possible_keys key 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:  1.2523159980774
Time after:   1.25306391716
Elapsed time: 0.0007479190826416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2535650730133
Time after:   1.2538070678711
Elapsed time: 0.00024199485778809
id select_type table type possible_keys key 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:  1.2543549537659
Time after:   1.2552299499512
Elapsed time: 0.00087499618530273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2556600570679
Time after:   1.255891084671
Elapsed time: 0.00023102760314941
id select_type table type possible_keys key 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:  1.2564060688019
Time after:   1.2573249340057
Elapsed time: 0.00091886520385742
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.257807970047
Time after:   1.258043050766
Elapsed time: 0.00023508071899414
id select_type table type possible_keys key 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:  1.2585759162903
Time after:   1.2594571113586
Elapsed time: 0.00088119506835938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2599189281464
Time after:   1.2601549625397
Elapsed time: 0.00023603439331055
id select_type table type possible_keys key 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:  1.2606971263885
Time after:   1.2615780830383
Elapsed time: 0.00088095664978027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2620210647583
Time after:   1.2622520923615
Elapsed time: 0.00023102760314941
id select_type table type possible_keys key 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:  1.2628560066223
Time after:   1.2637591362
Elapsed time: 0.00090312957763672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2642130851746
Time after:   1.264445066452
Elapsed time: 0.00023198127746582
id select_type table type possible_keys key 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:  1.2649791240692
Time after:   1.2658610343933
Elapsed time: 0.00088191032409668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2662971019745
Time after:   1.2665300369263
Elapsed time: 0.00023293495178223
id select_type table type possible_keys key 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:  1.2671179771423
Time after:   1.2680060863495
Elapsed time: 0.00088810920715332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2684619426727
Time after:   1.2687530517578
Elapsed time: 0.00029110908508301
id select_type table type possible_keys key 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:  1.2694051265717
Time after:   1.2702970504761
Elapsed time: 0.00089192390441895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2707531452179
Time after:   1.2709839344025
Elapsed time: 0.00023078918457031
id select_type table type possible_keys key 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:  1.2715079784393
Time after:   1.2723851203918
Elapsed time: 0.00087714195251465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2728500366211
Time after:   1.2730920314789
Elapsed time: 0.00024199485778809
id select_type table type possible_keys key 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:  1.2736420631409
Time after:   1.2745249271393
Elapsed time: 0.00088286399841309
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2749631404877
Time after:   1.2751939296722
Elapsed time: 0.00023078918457031
id select_type table type possible_keys key 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:  1.2757079601288
Time after:   1.2765979766846
Elapsed time: 0.00089001655578613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2772159576416
Time after:   1.2775130271912
Elapsed time: 0.00029706954956055
id select_type table type possible_keys key 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:  1.2781019210815
Time after:   1.2789890766144
Elapsed time: 0.00088715553283691
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2794549465179
Time after:   1.2796881198883
Elapsed time: 0.00023317337036133
id select_type table type possible_keys key 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:  1.2802290916443
Time after:   1.2809760570526
Elapsed time: 0.0007469654083252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2814209461212
Time after:   1.2816560268402
Elapsed time: 0.00023508071899414
id select_type table type possible_keys key 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:  1.2821760177612
Time after:   1.283056974411
Elapsed time: 0.00088095664978027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.283488035202
Time after:   1.2837150096893
Elapsed time: 0.00022697448730469
id select_type table type possible_keys key 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:  1.2842290401459
Time after:   1.2849929332733
Elapsed time: 0.00076389312744141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2855360507965
Time after:   1.2857570648193
Elapsed time: 0.00022101402282715
id select_type table type possible_keys key 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:  1.2863991260529
Time after:   1.2870850563049
Elapsed time: 0.0006859302520752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2876000404358
Time after:   1.2878150939941
Elapsed time: 0.00021505355834961
id select_type table type possible_keys key 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:  1.2884600162506
Time after:   1.2891459465027
Elapsed time: 0.0006859302520752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2896699905396
Time after:   1.2898859977722
Elapsed time: 0.00021600723266602
id select_type table type possible_keys key 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:  1.2905211448669
Time after:   1.291209936142
Elapsed time: 0.00068879127502441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2917449474335
Time after:   1.2919640541077
Elapsed time: 0.00021910667419434
id select_type table type possible_keys key 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:  1.2926020622253
Time after:   1.2932870388031
Elapsed time: 0.00068497657775879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2938010692596
Time after:   1.2940149307251
Elapsed time: 0.0002138614654541
id select_type table type possible_keys key 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:  1.2946269512177
Time after:   1.2953100204468
Elapsed time: 0.00068306922912598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2958300113678
Time after:   1.2960419654846
Elapsed time: 0.00021195411682129
id select_type table type possible_keys key 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:  1.2966520786285
Time after:   1.297415971756
Elapsed time: 0.00076389312744141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.2980310916901
Time after:   1.2982790470123
Elapsed time: 0.00024795532226562
id select_type table type possible_keys key 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:  1.2989349365234
Time after:   1.2996399402618
Elapsed time: 0.00070500373840332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3001549243927
Time after:   1.3003671169281
Elapsed time: 0.00021219253540039
id select_type table type possible_keys key 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:  1.3012299537659
Time after:   1.3019459247589
Elapsed time: 0.00071597099304199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3024890422821
Time after:   1.3027141094208
Elapsed time: 0.00022506713867188
id select_type table type possible_keys key 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:  1.3033409118652
Time after:   1.3040289878845
Elapsed time: 0.00068807601928711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3045399188995
Time after:   1.3047831058502
Elapsed time: 0.00024318695068359
id select_type table type possible_keys key 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:  1.3054461479187
Time after:   1.3061470985413
Elapsed time: 0.00070095062255859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3066740036011
Time after:   1.3068890571594
Elapsed time: 0.00021505355834961
id select_type table type possible_keys key 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:  1.3075530529022
Time after:   1.308247089386
Elapsed time: 0.00069403648376465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3087351322174
Time after:   1.3089520931244
Elapsed time: 0.00021696090698242
id select_type table type possible_keys key 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:  1.3095920085907
Time after:   1.3102850914001
Elapsed time: 0.00069308280944824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3108451366425
Time after:   1.3110709190369
Elapsed time: 0.00022578239440918
id select_type table type possible_keys key 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:  1.3116979598999
Time after:   1.3123800754547
Elapsed time: 0.00068211555480957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3128590583801
Time after:   1.3130779266357
Elapsed time: 0.00021886825561523
id select_type table type possible_keys key 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:  1.3137149810791
Time after:   1.3144021034241
Elapsed time: 0.0006871223449707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3149170875549
Time after:   1.3151290416718
Elapsed time: 0.00021195411682129
id select_type table type possible_keys key 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:  1.3157529830933
Time after:   1.3164329528809
Elapsed time: 0.00067996978759766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3169951438904
Time after:   1.3172109127045
Elapsed time: 0.00021576881408691
id select_type table type possible_keys key 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:  1.3178639411926
Time after:   1.3185570240021
Elapsed time: 0.00069308280944824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3190751075745
Time after:   1.3192849159241
Elapsed time: 0.00020980834960938
id select_type table type possible_keys key 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:  1.3199000358582
Time after:   1.3205721378326
Elapsed time: 0.0006721019744873
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3210799694061
Time after:   1.3212950229645
Elapsed time: 0.00021505355834961
id select_type table type possible_keys key 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:  1.3219139575958
Time after:   1.3225951194763
Elapsed time: 0.00068116188049316
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3231070041656
Time after:   1.3233211040497
Elapsed time: 0.0002140998840332
id select_type table type possible_keys key 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:  1.3239541053772
Time after:   1.3246319293976
Elapsed time: 0.00067782402038574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3251559734344
Time after:   1.3253750801086
Elapsed time: 0.00021910667419434
id select_type table type possible_keys key 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:  1.3261950016022
Time after:   1.3268821239471
Elapsed time: 0.0006871223449707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.327409029007
Time after:   1.3276250362396
Elapsed time: 0.00021600723266602
id select_type table type possible_keys key 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:  1.3282539844513
Time after:   1.3289389610291
Elapsed time: 0.00068497657775879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3294699192047
Time after:   1.3296849727631
Elapsed time: 0.00021505355834961
id select_type table type possible_keys key 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:  1.3303170204163
Time after:   1.331013917923
Elapsed time: 0.00069689750671387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3316690921783
Time after:   1.3319089412689
Elapsed time: 0.00023984909057617
id select_type table type possible_keys key 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:  1.3327810764313
Time after:   1.3336169719696
Elapsed time: 0.00083589553833008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3342509269714
Time after:   1.3346409797668
Elapsed time: 0.00039005279541016
id select_type table type possible_keys key 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:  1.3354001045227
Time after:   1.3361971378326
Elapsed time: 0.00079703330993652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3367900848389
Time after:   1.3371319770813
Elapsed time: 0.00034189224243164
id select_type table type possible_keys key 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:  1.3378939628601
Time after:   1.3387019634247
Elapsed time: 0.0008080005645752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3393080234528
Time after:   1.3396451473236
Elapsed time: 0.00033712387084961
id select_type table type possible_keys key 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:  1.340362071991
Time after:   1.3411710262299
Elapsed time: 0.0008089542388916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3417940139771
Time after:   1.3421330451965
Elapsed time: 0.00033903121948242
id select_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 > 28662

Time before:  1.3428170681
Time after:   1.3431510925293
Elapsed time: 0.00033402442932129
id select_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 > 28662

Time before:  1.3437550067902
Time after:   1.344085931778
Elapsed time: 0.00033092498779297
id select_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 > 28662

Time before:  1.344710111618
Time after:   1.34503698349
Elapsed time: 0.00032687187194824
id select_type table type possible_keys key 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:  1.3458480834961
Time after:   1.3466770648956
Elapsed time: 0.00082898139953613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3472700119019
Time after:   1.3476099967957
Elapsed time: 0.00033998489379883
id select_type table type possible_keys key 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:  1.3483531475067
Time after:   1.3491570949554
Elapsed time: 0.00080394744873047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3497319221497
Time after:   1.3500640392303
Elapsed time: 0.00033211708068848
id select_type table type possible_keys key 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:  1.3508069515228
Time after:   1.3515980243683
Elapsed time: 0.00079107284545898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3522069454193
Time after:   1.3525559902191
Elapsed time: 0.00034904479980469
id select_type table type possible_keys key 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:  1.353296995163
Time after:   1.3540871143341
Elapsed time: 0.00079011917114258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3546969890594
Time after:   1.3550820350647
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 = 'icon_cat.gif'

Time before:  1.3558120727539
Time after:   1.3566329479218
Elapsed time: 0.00082087516784668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3572380542755
Time after:   1.3575761318207
Elapsed time: 0.00033807754516602
id select_type table type possible_keys key 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:  1.3583309650421
Time after:   1.3591320514679
Elapsed time: 0.00080108642578125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3597071170807
Time after:   1.360044002533
Elapsed time: 0.00033688545227051
id select_type table type possible_keys key 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:  1.3607909679413
Time after:   1.3615839481354
Elapsed time: 0.0007929801940918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3621590137482
Time after:   1.3625020980835
Elapsed time: 0.00034308433532715
id select_type table type possible_keys key 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:  1.3632469177246
Time after:   1.3640370368958
Elapsed time: 0.00079011917114258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3646111488342
Time after:   1.3649480342865
Elapsed time: 0.00033688545227051
id select_type table type possible_keys key 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:  1.3656740188599
Time after:   1.36647605896
Elapsed time: 0.00080204010009766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3670599460602
Time after:   1.3673930168152
Elapsed time: 0.00033307075500488
id select_type table type possible_keys key 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:  1.3681199550629
Time after:   1.3689179420471
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3695261478424
Time after:   1.3698699474335
Elapsed time: 0.00034379959106445
id select_type table type possible_keys key 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:  1.3706109523773
Time after:   1.3714101314545
Elapsed time: 0.00079917907714844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3720071315765
Time after:   1.3723409175873
Elapsed time: 0.00033378601074219
id select_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 > 28662

Time before:  1.3729870319366
Time after:   1.3733160495758
Elapsed time: 0.00032901763916016
id select_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 > 28662

Time before:  1.3739249706268
Time after:   1.374242067337
Elapsed time: 0.00031709671020508
id select_type table type possible_keys key 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:  1.3749821186066
Time after:   1.3757929801941
Elapsed time: 0.00081086158752441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3764290809631
Time after:   1.3768169879913
Elapsed time: 0.00038790702819824
id select_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 > 28662

Time before:  1.3774790763855
Time after:   1.3778231143951
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 post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cool:%' AND post_id > 28662

Time before:  1.3784511089325
Time after:   1.37877202034
Elapsed time: 0.0003209114074707
id select_type table type possible_keys key 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:  1.3795211315155
Time after:   1.3803110122681
Elapsed time: 0.00078988075256348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3809199333191
Time after:   1.3812921047211
Elapsed time: 0.00037217140197754
id select_type table type possible_keys key 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:  1.3820381164551
Time after:   1.3828349113464
Elapsed time: 0.00079679489135742
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3834059238434
Time after:   1.3837509155273
Elapsed time: 0.00034499168395996
id select_type table type possible_keys key 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:  1.3844830989838
Time after:   1.3852910995483
Elapsed time: 0.0008080005645752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3858730792999
Time after:   1.3862099647522
Elapsed time: 0.00033688545227051
id select_type table type possible_keys key 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:  1.3869519233704
Time after:   1.3877389431
Elapsed time: 0.00078701972961426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3883030414581
Time after:   1.3886511325836
Elapsed time: 0.00034809112548828
id select_type table type possible_keys key 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:  1.3893880844116
Time after:   1.3901720046997
Elapsed time: 0.00078392028808594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3907690048218
Time after:   1.3911080360413
Elapsed time: 0.00033903121948242
id select_type table type possible_keys key 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:  1.3918719291687
Time after:   1.3926820755005
Elapsed time: 0.00081014633178711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3932600021362
Time after:   1.3935980796814
Elapsed time: 0.00033807754516602
id select_type table type possible_keys key 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:  1.3943359851837
Time after:   1.3951289653778
Elapsed time: 0.0007929801940918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3956999778748
Time after:   1.3960340023041
Elapsed time: 0.00033402442932129
id select_type table type possible_keys key 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:  1.3967881202698
Time after:   1.3975830078125
Elapsed time: 0.00079488754272461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.3981659412384
Time after:   1.3985140323639
Elapsed time: 0.00034809112548828
id select_type table type possible_keys key 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:  1.3992440700531
Time after:   1.4000339508057
Elapsed time: 0.00078988075256348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4006099700928
Time after:   1.4009461402893
Elapsed time: 0.0003361701965332
id select_type table type possible_keys key 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:  1.4016721248627
Time after:   1.40251994133
Elapsed time: 0.00084781646728516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4031081199646
Time after:   1.4034490585327
Elapsed time: 0.00034093856811523
id select_type table type possible_keys key 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:  1.4041850566864
Time after:   1.4050531387329
Elapsed time: 0.00086808204650879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4057710170746
Time after:   1.4061229228973
Elapsed time: 0.00035190582275391
id select_type table type possible_keys key 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:  1.4068779945374
Time after:   1.4076709747314
Elapsed time: 0.0007929801940918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4082329273224
Time after:   1.4085669517517
Elapsed time: 0.00033402442932129
id select_type table type possible_keys key 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:  1.4093101024628
Time after:   1.4101059436798
Elapsed time: 0.00079584121704102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4107050895691
Time after:   1.4110391139984
Elapsed time: 0.00033402442932129
id select_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 > 28662

Time before:  1.4116749763489
Time after:   1.4119999408722
Elapsed time: 0.00032496452331543
id select_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 > 28662

Time before:  1.4126040935516
Time after:   1.412929058075
Elapsed time: 0.00032496452331543
id select_type table type possible_keys key 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:  1.4136500358582
Time after:   1.414449930191
Elapsed time: 0.00079989433288574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4150350093842
Time after:   1.415374994278
Elapsed time: 0.00033998489379883
id select_type table type possible_keys key 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:  1.4161100387573
Time after:   1.4170341491699
Elapsed time: 0.00092411041259766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4176750183105
Time after:   1.4180459976196
Elapsed time: 0.00037097930908203
id select_type table type possible_keys key 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:  1.4188320636749
Time after:   1.4196479320526
Elapsed time: 0.00081586837768555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.420254945755
Time after:   1.4206240177155
Elapsed time: 0.00036907196044922
id select_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 > 28662

Time before:  1.4212770462036
Time after:   1.4215989112854
Elapsed time: 0.00032186508178711
id select_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 > 28662

Time before:  1.42222905159
Time after:   1.4225840568542
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 = 'icon_oak.gif'

Time before:  1.4233300685883
Time after:   1.4241280555725
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4247460365295
Time after:   1.4251029491425
Elapsed time: 0.00035691261291504
id select_type table type possible_keys key 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:  1.425843000412
Time after:   1.4266409873962
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4272379875183
Time after:   1.4276170730591
Elapsed time: 0.00037908554077148
id select_type table type possible_keys key 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:  1.4284429550171
Time after:   1.4292919635773
Elapsed time: 0.00084900856018066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4299139976501
Time after:   1.4302930831909
Elapsed time: 0.00037908554077148
id select_type table type possible_keys key 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:  1.4310460090637
Time after:   1.4318389892578
Elapsed time: 0.0007929801940918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4324269294739
Time after:   1.4327869415283
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 = 'icon_pidu.gif'

Time before:  1.4335219860077
Time after:   1.4343099594116
Elapsed time: 0.00078797340393066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4348709583282
Time after:   1.4352071285248
Elapsed time: 0.0003361701965332
id select_type table type possible_keys key 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:  1.4359459877014
Time after:   1.4367530345917
Elapsed time: 0.00080704689025879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4373590946198
Time after:   1.4377090930939
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 = 'icon_pray.gif'

Time before:  1.4384911060333
Time after:   1.4392910003662
Elapsed time: 0.00079989433288574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4398710727692
Time after:   1.4402050971985
Elapsed time: 0.00033402442932129
id select_type table type possible_keys key 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:  1.4409549236298
Time after:   1.4417860507965
Elapsed time: 0.00083112716674805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4423680305481
Time after:   1.442703962326
Elapsed time: 0.0003359317779541
id select_type table type possible_keys key 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:  1.4434759616852
Time after:   1.4442729949951
Elapsed time: 0.00079703330993652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4448580741882
Time after:   1.4451999664307
Elapsed time: 0.00034189224243164
id select_type table type possible_keys key 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:  1.4459381103516
Time after:   1.4467360973358
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeleft:%' AND post_id > 28662

Time before:  1.4472990036011
Time after:   1.447634935379
Elapsed time: 0.0003359317779541
id select_type table type possible_keys key 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:  1.4483730792999
Time after:   1.4491820335388
Elapsed time: 0.0008089542388916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeright:%' AND post_id > 28662

Time before:  1.4497799873352
Time after:   1.4501230716705
Elapsed time: 0.00034308433532715
id select_type table type possible_keys key 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:  1.4508790969849
Time after:   1.4516711235046
Elapsed time: 0.00079202651977539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:queen:%' AND post_id > 28662

Time before:  1.4522340297699
Time after:   1.4525649547577
Elapsed time: 0.00033092498779297
id select_type table type possible_keys key 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:  1.4533240795135
Time after:   1.4541101455688
Elapsed time: 0.00078606605529785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4546940326691
Time after:   1.4550271034241
Elapsed time: 0.00033307075500488
id select_type table type possible_keys key 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:  1.4558191299438
Time after:   1.4566321372986
Elapsed time: 0.00081300735473633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rabbit:%' AND post_id > 28662

Time before:  1.457202911377
Time after:   1.4575369358063
Elapsed time: 0.00033402442932129
id select_type table type possible_keys key 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:  1.4582769870758
Time after:   1.4590809345245
Elapsed time: 0.00080394744873047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:P%' AND post_id > 28662

Time before:  1.4596779346466
Time after:   1.4600279331207
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 post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-P%' AND post_id > 28662

Time before:  1.460685968399
Time after:   1.4610209465027
Elapsed time: 0.0003349781036377
id select_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 > 28662

Time before:  1.4616250991821
Time after:   1.4619429111481
Elapsed time: 0.00031781196594238
id select_type table type possible_keys key 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:  1.4627001285553
Time after:   1.4634909629822
Elapsed time: 0.00079083442687988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:oops:%' AND post_id > 28662

Time before:  1.464056968689
Time after:   1.4643869400024
Elapsed time: 0.00032997131347656
id select_type table type possible_keys key 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:  1.465194940567
Time after:   1.4687449932098
Elapsed time: 0.0035500526428223
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:reindeer:%' AND post_id > 28662

Time before:  1.4695711135864
Time after:   1.47003698349
Elapsed time: 0.00046586990356445
id select_type table type possible_keys key 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:  1.4710729122162
Time after:   1.472067117691
Elapsed time: 0.00099420547485352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:roll:%' AND post_id > 28662

Time before:  1.4727349281311
Time after:   1.4730930328369
Elapsed time: 0.00035810470581055
id select_type table type possible_keys key 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:  1.4738540649414
Time after:   1.4746549129486
Elapsed time: 0.00080084800720215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rr:%' AND post_id > 28662

Time before:  1.4752221107483
Time after:   1.4755580425262
Elapsed time: 0.0003359317779541
id select_type table type possible_keys key 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:  1.4763119220734
Time after:   1.4771249294281
Elapsed time: 0.00081300735473633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:(%' AND post_id > 28662

Time before:  1.4777250289917
Time after:   1.4780991077423
Elapsed time: 0.00037407875061035
id select_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 > 28662

Time before:  1.4787421226501
Time after:   1.4790661334991
Elapsed time: 0.00032401084899902
id select_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 > 28662

Time before:  1.4796631336212
Time after:   1.4799780845642
Elapsed time: 0.00031495094299316
id select_type table type possible_keys key 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:  1.4807231426239
Time after:   1.4815180301666
Elapsed time: 0.00079488754272461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:salute:%' AND post_id > 28662

Time before:  1.4820821285248
Time after:   1.4824190139771
Elapsed time: 0.00033688545227051
id select_type table type possible_keys key 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:  1.4831731319427
Time after:   1.4839639663696
Elapsed time: 0.00079083442687988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:santa:%' AND post_id > 28662

Time before:  1.4845490455627
Time after:   1.484915971756
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 = 'icon_scratch.gif'

Time before:  1.4856691360474
Time after:   1.4864680767059
Elapsed time: 0.00079894065856934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:scratch:%' AND post_id > 28662

Time before:  1.4870319366455
Time after:   1.487368106842
Elapsed time: 0.0003361701965332
id select_type table type possible_keys key 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:  1.488137960434
Time after:   1.488960981369
Elapsed time: 0.00082302093505859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking:%' AND post_id > 28662

Time before:  1.4895310401917
Time after:   1.4898660182953
Elapsed time: 0.0003349781036377
id select_type table type possible_keys key 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:  1.4906229972839
Time after:   1.4914200305939
Elapsed time: 0.00079703330993652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking2:%' AND post_id > 28662

Time before:  1.4920399188995
Time after:   1.4923720359802
Elapsed time: 0.00033211708068848
id select_type table type possible_keys key 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:  1.4931480884552
Time after:   1.4939460754395
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:silent:%' AND post_id > 28662

Time before:  1.4945139884949
Time after:   1.4948511123657
Elapsed time: 0.00033712387084961
id select_type table type possible_keys key 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:  1.4956021308899
Time after:   1.4964020252228
Elapsed time: 0.00079989433288574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.4970190525055
Time after:   1.4973540306091
Elapsed time: 0.0003349781036377
id select_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 > 28662

Time before:  1.497987985611
Time after:   1.4983179569244
Elapsed time: 0.00032997131347656
id select_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 > 28662

Time before:  1.498918056488
Time after:   1.499233007431
Elapsed time: 0.00031495094299316
id select_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 > 28662

Time before:  1.4998550415039
Time after:   1.5001749992371
Elapsed time: 0.0003199577331543
id select_type table type possible_keys key 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:  1.5009760856628
Time after:   1.5017740726471
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spiderman:%' AND post_id > 28662

Time before:  1.5023529529572
Time after:   1.5026910305023
Elapsed time: 0.00033807754516602
id select_type table type possible_keys key 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:  1.5034599304199
Time after:   1.5042579174042
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:study:%' AND post_id > 28662

Time before:  1.504851102829
Time after:   1.5051951408386
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 = 'icon_sunny.gif'

Time before:  1.5060200691223
Time after:   1.506854057312
Elapsed time: 0.00083398818969727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sunny:%' AND post_id > 28662

Time before:  1.507481098175
Time after:   1.5078210830688
Elapsed time: 0.00033998489379883
id select_type table type possible_keys key 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:  1.5086050033569
Time after:   1.5093989372253
Elapsed time: 0.0007939338684082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:supz:%' AND post_id > 28662

Time before:  1.5099880695343
Time after:   1.5103421211243
Elapsed time: 0.00035405158996582
id select_type table type possible_keys key 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:  1.5111849308014
Time after:   1.5120511054993
Elapsed time: 0.00086617469787598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  1.5127789974213
Time after:   1.5131969451904
Elapsed time: 0.00041794776916504
id select_type table type possible_keys key 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:  1.5140380859375
Time after:   1.5149409770966
Elapsed time: 0.00090289115905762
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:heart:%' AND post_id > 28662

Time before:  1.5156171321869
Time after:   1.5159649848938
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 = 'icon_thumleft.gif'

Time before:  1.5167810916901
Time after:   1.5176091194153
Elapsed time: 0.00082802772521973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbright:%' AND post_id > 28662

Time before:  1.5182390213013
Time after:   1.5185990333557
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 = 'icon_thumright.gif'

Time before:  1.5194361209869
Time after:   1.5202989578247
Elapsed time: 0.00086283683776855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbleft:%' AND post_id > 28662

Time before:  1.5209829807281
Time after:   1.5213680267334
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 = 'icon_toilet.gif'

Time before:  1.5222210884094
Time after:   1.5231380462646
Elapsed time: 0.00091695785522461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toimonster:%' AND post_id > 28662

Time before:  1.5237829685211
Time after:   1.5241460800171
Elapsed time: 0.00036311149597168
id select_type table type possible_keys key 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:  1.5251140594482
Time after:   1.5259580612183
Elapsed time: 0.00084400177001953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue:%' AND post_id > 28662

Time before:  1.5265691280365
Time after:   1.5269179344177
Elapsed time: 0.00034880638122559
id select_type table type possible_keys key 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:  1.527724981308
Time after:   1.5285711288452
Elapsed time: 0.00084614753723145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:twisted:%' AND post_id > 28662

Time before:  1.5292029380798
Time after:   1.52956199646
Elapsed time: 0.00035905838012695
id select_type table type possible_keys key 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:  1.5303699970245
Time after:   1.5311849117279
Elapsed time: 0.00081491470336914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:weedman:%' AND post_id > 28662

Time before:  1.5318019390106
Time after:   1.5321509838104
Elapsed time: 0.00034904479980469
id select_type table type possible_keys key 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:  1.5330209732056
Time after:   1.5338411331177
Elapsed time: 0.00082015991210938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wink:%' AND post_id > 28662

Time before:  1.5344741344452
Time after:   1.5348520278931
Elapsed time: 0.00037789344787598
id select_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 > 28662

Time before:  1.5355069637299
Time after:   1.535835981369
Elapsed time: 0.00032901763916016
id select_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 > 28662

Time before:  1.5364489555359
Time after:   1.5368061065674
Elapsed time: 0.00035715103149414
id select_type table type possible_keys key 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:  1.5376229286194
Time after:   1.5384531021118
Elapsed time: 0.00083017349243164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:yawinkle:%' AND post_id > 28662

Time before:  1.5390560626984
Time after:   1.5394430160522
Elapsed time: 0.00038695335388184
id select_type table type possible_keys key 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:  1.5402219295502
Time after:   1.541109085083
Elapsed time: 0.00088715553283691
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:idea1:%' AND post_id > 28662

Time before:  1.5417749881744
Time after:   1.5421590805054
Elapsed time: 0.00038409233093262
id select_type table type possible_keys key 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:  1.5429430007935
Time after:   1.5437550544739
Elapsed time: 0.00081205368041992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:iroc:%' AND post_id > 28662

Time before:  1.5443561077118
Time after:   1.5447459220886
Elapsed time: 0.00038981437683105
id select_type table type possible_keys key 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:  1.5455229282379
Time after:   1.5464091300964
Elapsed time: 0.00088620185852051
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:jerk:%' AND post_id > 28662

Time before:  1.5470380783081
Time after:   1.5473830699921
Elapsed time: 0.00034499168395996
id select_type table type possible_keys key 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:  1.5481860637665
Time after:   1.5490090847015
Elapsed time: 0.00082302093505859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:kermit:%' AND post_id > 28662

Time before:  1.5496511459351
Time after:   1.5500180721283
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 = 'knob.gif'

Time before:  1.5508151054382
Time after:   1.5516269207001
Elapsed time: 0.00081181526184082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:knob:%' AND post_id > 28662

Time before:  1.5522201061249
Time after:   1.5525679588318
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 = 'ky.gif'

Time before:  1.5534031391144
Time after:   1.5542991161346
Elapsed time: 0.00089597702026367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ky:%' AND post_id > 28662

Time before:  1.5548939704895
Time after:   1.5552570819855
Elapsed time: 0.00036311149597168
id select_type table type possible_keys key 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:  1.556056022644
Time after:   1.5568869113922
Elapsed time: 0.00083088874816895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:la:%' AND post_id > 28662

Time before:  1.5574719905853
Time after:   1.5578141212463
Elapsed time: 0.00034213066101074
id select_type table type possible_keys key 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:  1.5586330890656
Time after:   1.5594549179077
Elapsed time: 0.00082182884216309
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing1:%' AND post_id > 28662

Time before:  1.5601251125336
Time after:   1.5604650974274
Elapsed time: 0.00033998489379883
id select_type table type possible_keys key 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:  1.561380147934
Time after:   1.5623559951782
Elapsed time: 0.0009758472442627
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing9:%' AND post_id > 28662

Time before:  1.5629301071167
Time after:   1.5632660388947
Elapsed time: 0.0003359317779541
id select_type table type possible_keys key 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:  1.5640299320221
Time after:   1.5648760795593
Elapsed time: 0.00084614753723145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing2:%' AND post_id > 28662

Time before:  1.5654609203339
Time after:   1.5657970905304
Elapsed time: 0.0003361701965332
id select_type table type possible_keys key 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:  1.5666699409485
Time after:   1.5675070285797
Elapsed time: 0.00083708763122559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing3:%' AND post_id > 28662

Time before:  1.5681209564209
Time after:   1.5684721469879
Elapsed time: 0.0003511905670166
id select_type table type possible_keys key 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:  1.5692930221558
Time after:   1.5701160430908
Elapsed time: 0.00082302093505859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing4:%' AND post_id > 28662

Time before:  1.5707061290741
Time after:   1.5710489749908
Elapsed time: 0.00034284591674805
id select_type table type possible_keys key 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:  1.5718541145325
Time after:   1.572695016861
Elapsed time: 0.00084090232849121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing5:%' AND post_id > 28662

Time before:  1.5733380317688
Time after:   1.573765039444
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 = 'laughing7.gif'

Time before:  1.5746021270752
Time after:   1.5754201412201
Elapsed time: 0.00081801414489746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing6:%' AND post_id > 28662

Time before:  1.5759899616241
Time after:   1.5763509273529
Elapsed time: 0.00036096572875977
id select_type table type possible_keys key 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:  1.5771911144257
Time after:   1.578024148941
Elapsed time: 0.00083303451538086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing7:%' AND post_id > 28662

Time before:  1.5786089897156
Time after:   1.5789661407471
Elapsed time: 0.00035715103149414
id select_type table type possible_keys key 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:  1.5797591209412
Time after:   1.5805740356445
Elapsed time: 0.00081491470336914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing8:%' AND post_id > 28662

Time before:  1.5811970233917
Time after:   1.5815389156342
Elapsed time: 0.00034189224243164
id select_type table type possible_keys key 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:  1.5823321342468
Time after:   1.5831439495087
Elapsed time: 0.00081181526184082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love1:%' AND post_id > 28662

Time before:  1.5837121009827
Time after:   1.5840470790863
Elapsed time: 0.0003349781036377
id select_type table type possible_keys key 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:  1.5848519802094
Time after:   1.5856621265411
Elapsed time: 0.00081014633178711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love10:%' AND post_id > 28662

Time before:  1.5862419605255
Time after:   1.5865890979767
Elapsed time: 0.00034713745117188
id select_type table type possible_keys key 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:  1.5873610973358
Time after:   1.5881760120392
Elapsed time: 0.00081491470336914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love2:%' AND post_id > 28662

Time before:  1.5887610912323
Time after:   1.5891001224518
Elapsed time: 0.00033903121948242
id select_type table type possible_keys key 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:  1.58988904953
Time after:   1.5907111167908
Elapsed time: 0.00082206726074219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love3:%' AND post_id > 28662

Time before:  1.5912930965424
Time after:   1.5916349887848
Elapsed time: 0.00034189224243164
id select_type table type possible_keys key 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:  1.5924179553986
Time after:   1.593248128891
Elapsed time: 0.00083017349243164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love4:%' AND post_id > 28662

Time before:  1.5938279628754
Time after:   1.5941700935364
Elapsed time: 0.00034213066101074
id select_type table type possible_keys key 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:  1.5949621200562
Time after:   1.5957779884338
Elapsed time: 0.00081586837768555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love5:%' AND post_id > 28662

Time before:  1.596391916275
Time after:   1.5967619419098
Elapsed time: 0.00037002563476562
id select_type table type possible_keys key 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:  1.5975461006165
Time after:   1.5984261035919
Elapsed time: 0.00088000297546387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love6:%' AND post_id > 28662

Time before:  1.5990059375763
Time after:   1.5993509292603
Elapsed time: 0.00034499168395996
id select_type table type possible_keys key 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:  1.6001489162445
Time after:   1.6010501384735
Elapsed time: 0.00090122222900391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love7:%' AND post_id > 28662

Time before:  1.6016609668732
Time after:   1.6020090579987
Elapsed time: 0.00034809112548828
id select_type table type possible_keys key 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:  1.6028320789337
Time after:   1.6036660671234
Elapsed time: 0.00083398818969727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love8:%' AND post_id > 28662

Time before:  1.6042799949646
Time after:   1.604691028595
Elapsed time: 0.00041103363037109
id select_type table type possible_keys key 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:  1.6055369377136
Time after:   1.6063921451569
Elapsed time: 0.0008552074432373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love9:%' AND post_id > 28662

Time before:  1.6070070266724
Time after:   1.6073501110077
Elapsed time: 0.00034308433532715
id select_type table type possible_keys key 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:  1.6081480979919
Time after:   1.6089749336243
Elapsed time: 0.00082683563232422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lovestory:%' AND post_id > 28662

Time before:  1.6095530986786
Time after:   1.6099281311035
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 = 'lurk.gif'

Time before:  1.6107199192047
Time after:   1.6115410327911
Elapsed time: 0.00082111358642578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lurk:%' AND post_id > 28662

Time before:  1.6121120452881
Time after:   1.6124520301819
Elapsed time: 0.00033998489379883
id select_type table type possible_keys key 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:  1.6132829189301
Time after:   1.6140990257263
Elapsed time: 0.00081610679626465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:male:%' AND post_id > 28662

Time before:  1.6147439479828
Time after:   1.615140914917
Elapsed time: 0.0003969669342041
id select_type table type possible_keys key 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:  1.6159291267395
Time after:   1.6167471408844
Elapsed time: 0.00081801414489746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blah5:%' AND post_id > 28662

Time before:  1.6173229217529
Time after:   1.6176619529724
Elapsed time: 0.00033903121948242
id select_type table type possible_keys key 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:  1.6184589862823
Time after:   1.6192700862885
Elapsed time: 0.00081110000610352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:error:%' AND post_id > 28662

Time before:  1.6198880672455
Time after:   1.6202819347382
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 = 'mumum.gif'

Time before:  1.6210920810699
Time after:   1.6219041347504
Elapsed time: 0.00081205368041992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mumum:%' AND post_id > 28662

Time before:  1.6224820613861
Time after:   1.6228449344635
Elapsed time: 0.00036287307739258
id select_type table type possible_keys key 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:  1.6236281394958
Time after:   1.6244370937347
Elapsed time: 0.0008089542388916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:munky2:%' AND post_id > 28662

Time before:  1.6250240802765
Time after:   1.6254050731659
Elapsed time: 0.0003809928894043
id select_type table type possible_keys key 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:  1.6262180805206
Time after:   1.6270520687103
Elapsed time: 0.00083398818969727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:naka:%' AND post_id > 28662

Time before:  1.6276299953461
Time after:   1.6279909610748
Elapsed time: 0.00036096572875977
id select_type table type possible_keys key 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:  1.6288130283356
Time after:   1.629625082016
Elapsed time: 0.00081205368041992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:newb:%' AND post_id > 28662

Time before:  1.6301920413971
Time after:   1.6306021213531
Elapsed time: 0.00041007995605469
id select_type table type possible_keys key 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:  1.6314570903778
Time after:   1.6322710514069
Elapsed time: 0.00081396102905273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:nike:%' AND post_id > 28662

Time before:  1.6328589916229
Time after:   1.633220911026
Elapsed time: 0.00036191940307617
id select_type table type possible_keys key 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:  1.6340560913086
Time after:   1.6348841190338
Elapsed time: 0.00082802772521973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:notworthy:%' AND post_id > 28662

Time before:  1.6354579925537
Time after:   1.6358139514923
Elapsed time: 0.00035595893859863
id select_type table type possible_keys key 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:  1.6366291046143
Time after:   1.6374459266663
Elapsed time: 0.00081682205200195
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion1:%' AND post_id > 28662

Time before:  1.6380281448364
Time after:   1.6383919715881
Elapsed time: 0.00036382675170898
id select_type table type possible_keys key 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:  1.639219045639
Time after:   1.6400420665741
Elapsed time: 0.00082302093505859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion4:%' AND post_id > 28662

Time before:  1.6406481266022
Time after:   1.6410419940948
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 = 'occasion14.gif'

Time before:  1.6418650150299
Time after:   1.6426949501038
Elapsed time: 0.00082993507385254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion5:%' AND post_id > 28662

Time before:  1.643315076828
Time after:   1.6436960697174
Elapsed time: 0.0003809928894043
id select_type table type possible_keys key 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:  1.6444969177246
Time after:   1.6453399658203
Elapsed time: 0.00084304809570312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion6:%' AND post_id > 28662

Time before:  1.6459081172943
Time after:   1.6462631225586
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 = 'occasion16.gif'

Time before:  1.6470749378204
Time after:   1.6478979587555
Elapsed time: 0.00082302093505859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion7:%' AND post_id > 28662

Time before:  1.6484639644623
Time after:   1.6488180160522
Elapsed time: 0.00035405158996582
id select_type table type possible_keys key 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:  1.6496870517731
Time after:   1.6505451202393
Elapsed time: 0.00085806846618652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion8:%' AND post_id > 28662

Time before:  1.6511240005493
Time after:   1.6514799594879
Elapsed time: 0.00035595893859863
id select_type table type possible_keys key 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:  1.6522769927979
Time after:   1.6530871391296
Elapsed time: 0.00081014633178711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion9:%' AND post_id > 28662

Time before:  1.6536741256714
Time after:   1.6540129184723
Elapsed time: 0.00033879280090332
id select_type table type possible_keys key 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:  1.6548540592194
Time after:   1.6556670665741
Elapsed time: 0.00081300735473633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion2:%' AND post_id > 28662

Time before:  1.6564879417419
Time after:   1.6572351455688
Elapsed time: 0.0007472038269043
id select_type table type possible_keys key 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:  1.6587240695953
Time after:   1.660108089447
Elapsed time: 0.0013840198516846
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pain10:%' AND post_id > 28662

Time before:  1.6611540317535
Time after:   1.6617031097412
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 = 'pottytrain1.gif'

Time before:  1.6625959873199
Time after:   1.6634299755096
Elapsed time: 0.00083398818969727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain1:%' AND post_id > 28662

Time before:  1.6640219688416
Time after:   1.6643829345703
Elapsed time: 0.00036096572875977
id select_type table type possible_keys key 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:  1.6651980876923
Time after:   1.6660170555115
Elapsed time: 0.00081896781921387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain2:%' AND post_id > 28662

Time before:  1.666610956192
Time after:   1.6669869422913
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 = 'pottytrain3.gif'

Time before:  1.667799949646
Time after:   1.6686489582062
Elapsed time: 0.00084900856018066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain3:%' AND post_id > 28662

Time before:  1.6693329811096
Time after:   1.6697630882263
Elapsed time: 0.00043010711669922
id select_type table type possible_keys key 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:  1.6707351207733
Time after:   1.6715919971466
Elapsed time: 0.00085687637329102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain4:%' AND post_id > 28662

Time before:  1.6722319126129
Time after:   1.6726629734039
Elapsed time: 0.00043106079101562
id select_type table type possible_keys key 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:  1.6735451221466
Time after:   1.6744160652161
Elapsed time: 0.00087094306945801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain5:%' AND post_id > 28662

Time before:  1.6751301288605
Time after:   1.6755180358887
Elapsed time: 0.00038790702819824
id select_type table type possible_keys key 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:  1.6763401031494
Time after:   1.6771531105042
Elapsed time: 0.00081300735473633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:protest:%' AND post_id > 28662

Time before:  1.6777529716492
Time after:   1.6782019138336
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 = 'puke.gif'

Time before:  1.6790449619293
Time after:   1.6798510551453
Elapsed time: 0.00080609321594238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:puke:%' AND post_id > 28662

Time before:  1.680449962616
Time after:   1.6809089183807
Elapsed time: 0.00045895576477051
id select_type table type possible_keys key 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:  1.6820161342621
Time after:   1.6828789710999
Elapsed time: 0.00086283683776855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read:%' AND post_id > 28662

Time before:  1.6834580898285
Time after:   1.6838200092316
Elapsed time: 0.00036191940307617
id select_type table type possible_keys key 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:  1.6846599578857
Time after:   1.6854920387268
Elapsed time: 0.00083208084106445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read2:%' AND post_id > 28662

Time before:  1.6860709190369
Time after:   1.6864449977875
Elapsed time: 0.00037407875061035
id select_type table type possible_keys key 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:  1.6872479915619
Time after:   1.6880829334259
Elapsed time: 0.00083494186401367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf2:%' AND post_id > 28662

Time before:  1.6886949539185
Time after:   1.6890499591827
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 = 's-chainsaw.gif'

Time before:  1.6898429393768
Time after:   1.6906659603119
Elapsed time: 0.00082302093505859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:chain:%' AND post_id > 28662

Time before:  1.6912360191345
Time after:   1.6915740966797
Elapsed time: 0.00033807754516602
id select_type table type possible_keys key 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:  1.6924059391022
Time after:   1.6932411193848
Elapsed time: 0.00083518028259277
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf:%' AND post_id > 28662

Time before:  1.6938400268555
Time after:   1.6941859722137
Elapsed time: 0.00034594535827637
id select_type table type possible_keys key 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:  1.6950161457062
Time after:   1.6958260536194
Elapsed time: 0.00080990791320801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:gib:%' AND post_id > 28662

Time before:  1.6963980197906
Time after:   1.6967520713806
Elapsed time: 0.00035405158996582
id select_type table type possible_keys key 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:  1.69757604599
Time after:   1.6983950138092
Elapsed time: 0.00081896781921387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:minigun:%' AND post_id > 28662

Time before:  1.6989979743958
Time after:   1.6993429660797
Elapsed time: 0.00034499168395996
id select_type table type possible_keys key 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:  1.70015001297
Time after:   1.7009720802307
Elapsed time: 0.00082206726074219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shock:%' AND post_id > 28662

Time before:  1.7015640735626
Time after:   1.7019209861755
Elapsed time: 0.00035691261291504
id select_type table type possible_keys key 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:  1.7027361392975
Time after:   1.7035610675812
Elapsed time: 0.00082492828369141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tfrag:%' AND post_id > 28662

Time before:  1.704204082489
Time after:   1.7045829296112
Elapsed time: 0.00037884712219238
id select_type table type possible_keys key 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:  1.7054190635681
Time after:   1.7062540054321
Elapsed time: 0.00083494186401367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad1:%' AND post_id > 28662

Time before:  1.706845998764
Time after:   1.7071919441223
Elapsed time: 0.00034594535827637
id select_type table type possible_keys key 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:  1.7079930305481
Time after:   1.7088289260864
Elapsed time: 0.00083589553833008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad10:%' AND post_id > 28662

Time before:  1.7094731330872
Time after:   1.7098619937897
Elapsed time: 0.00038886070251465
id select_type table type possible_keys key 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:  1.7107470035553
Time after:   1.7115979194641
Elapsed time: 0.00085091590881348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad11:%' AND post_id > 28662

Time before:  1.7121829986572
Time after:   1.7125220298767
Elapsed time: 0.00033903121948242
id select_type table type possible_keys key 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:  1.7133591175079
Time after:   1.714282989502
Elapsed time: 0.00092387199401855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad2:%' AND post_id > 28662

Time before:  1.7148659229279
Time after:   1.7152049541473
Elapsed time: 0.00033903121948242
id select_type table type possible_keys key 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:  1.7160410881042
Time after:   1.7168791294098
Elapsed time: 0.00083804130554199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad3:%' AND post_id > 28662

Time before:  1.7174971103668
Time after:   1.7178530693054
Elapsed time: 0.00035595893859863
id select_type table type possible_keys key 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:  1.7186770439148
Time after:   1.7195019721985
Elapsed time: 0.00082492828369141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad4:%' AND post_id > 28662

Time before:  1.7200899124146
Time after:   1.7204320430756
Elapsed time: 0.00034213066101074
id select_type table type possible_keys key 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:  1.7212591171265
Time after:   1.7220840454102
Elapsed time: 0.00082492828369141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad5:%' AND post_id > 28662

Time before:  1.7226610183716
Time after:   1.7230050563812
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 = 'sad6.gif'

Time before:  1.7238450050354
Time after:   1.7246870994568
Elapsed time: 0.00084209442138672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad6:%' AND post_id > 28662

Time before:  1.7252600193024
Time after:   1.7255980968475
Elapsed time: 0.00033807754516602
id select_type table type possible_keys key 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:  1.7264759540558
Time after:   1.7273070812225
Elapsed time: 0.00083112716674805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad7:%' AND post_id > 28662

Time before:  1.7279131412506
Time after:   1.7282581329346
Elapsed time: 0.00034499168395996
id select_type table type possible_keys key 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:  1.7290899753571
Time after:   1.7299151420593
Elapsed time: 0.00082516670227051
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad8:%' AND post_id > 28662

Time before:  1.7304971218109
Time after:   1.7308399677277
Elapsed time: 0.00034284591674805
id select_type table type possible_keys key 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:  1.7316420078278
Time after:   1.7324550151825
Elapsed time: 0.00081300735473633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad9:%' AND post_id > 28662

Time before:  1.7330651283264
Time after:   1.7334070205688
Elapsed time: 0.00034189224243164
id select_type table type possible_keys key 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:  1.7342450618744
Time after:   1.7350730895996
Elapsed time: 0.00082802772521973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sex:%' AND post_id > 28662

Time before:  1.7356579303741
Time after:   1.736004114151
Elapsed time: 0.00034618377685547
id select_type table type possible_keys key 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:  1.7368581295013
Time after:   1.7376790046692
Elapsed time: 0.00082087516784668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign5:%' AND post_id > 28662

Time before:  1.7382619380951
Time after:   1.7386169433594
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 = 'sign12.gif'

Time before:  1.7394409179688
Time after:   1.7402610778809
Elapsed time: 0.00082015991210938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign6:%' AND post_id > 28662

Time before:  1.7409219741821
Time after:   1.7412950992584
Elapsed time: 0.00037312507629395
id select_type table type possible_keys key 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:  1.7421200275421
Time after:   1.7429521083832
Elapsed time: 0.00083208084106445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign7:%' AND post_id > 28662

Time before:  1.7435550689697
Time after:   1.743891954422
Elapsed time: 0.00033688545227051
id select_type table type possible_keys key 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:  1.7447259426117
Time after:   1.745551109314
Elapsed time: 0.00082516670227051
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign8:%' AND post_id > 28662

Time before:  1.7461590766907
Time after:   1.7465059757233
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 = 'sign16.gif'

Time before:  1.7473530769348
Time after:   1.7481911182404
Elapsed time: 0.00083804130554199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign9:%' AND post_id > 28662

Time before:  1.7487859725952
Time after:   1.7491309642792
Elapsed time: 0.00034499168395996
id select_type table type possible_keys key 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:  1.7499561309814
Time after:   1.7507889270782
Elapsed time: 0.00083279609680176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign10:%' AND post_id > 28662

Time before:  1.7513680458069
Time after:   1.751708984375
Elapsed time: 0.00034093856811523
id select_type table type possible_keys key 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:  1.7525470256805
Time after:   1.7533950805664
Elapsed time: 0.00084805488586426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign11:%' AND post_id > 28662

Time before:  1.7539749145508
Time after:   1.7543790340424
Elapsed time: 0.00040411949157715
id select_type table type possible_keys key 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:  1.755203962326
Time after:   1.756040096283
Elapsed time: 0.00083613395690918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign12:%' AND post_id > 28662

Time before:  1.756688117981
Time after:   1.7570819854736
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 = 'sign2.gif'

Time before:  1.7579960823059
Time after:   1.7588729858398
Elapsed time: 0.00087690353393555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign1:%' AND post_id > 28662

Time before:  1.7594640254974
Time after:   1.7598140239716
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 = 'sign4.gif'

Time before:  1.7606730461121
Time after:   1.7615060806274
Elapsed time: 0.00083303451538086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign2:%' AND post_id > 28662

Time before:  1.7621450424194
Time after:   1.7625679969788
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 = 'sign5.gif'

Time before:  1.7634189128876
Time after:   1.7642629146576
Elapsed time: 0.00084400177001953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign3:%' AND post_id > 28662

Time before:  1.7649431228638
Time after:   1.7653000354767
Elapsed time: 0.00035691261291504
id select_type table type possible_keys key 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:  1.7661170959473
Time after:   1.7669339179993
Elapsed time: 0.00081682205200195
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign4:%' AND post_id > 28662

Time before:  1.7674999237061
Time after:   1.7678320407867
Elapsed time: 0.00033211708068848
id select_type table type possible_keys key 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:  1.7686829566956
Time after:   1.7695801258087
Elapsed time: 0.00089716911315918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy1:%' AND post_id > 28662

Time before:  1.7701630592346
Time after:   1.7705070972443
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 = 'sleepy2.gif'

Time before:  1.7713119983673
Time after:   1.7721331119537
Elapsed time: 0.00082111358642578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy2:%' AND post_id > 28662

Time before:  1.7727110385895
Time after:   1.773050069809
Elapsed time: 0.00033903121948242
id select_type table type possible_keys key 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:  1.7738890647888
Time after:   1.7747139930725
Elapsed time: 0.00082492828369141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy3:%' AND post_id > 28662

Time before:  1.7753019332886
Time after:   1.7756419181824
Elapsed time: 0.00033998489379883
id select_type table type possible_keys key 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:  1.7764730453491
Time after:   1.7773101329803
Elapsed time: 0.00083708763122559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy4:%' AND post_id > 28662

Time before:  1.7778811454773
Time after:   1.7782139778137
Elapsed time: 0.00033283233642578
id select_type table type possible_keys key 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:  1.7790379524231
Time after:   1.7798490524292
Elapsed time: 0.00081110000610352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy5:%' AND post_id > 28662

Time before:  1.7804899215698
Time after:   1.7810211181641
Elapsed time: 0.00053119659423828
id select_type table type possible_keys key 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:  1.7819790840149
Time after:   1.782879114151
Elapsed time: 0.0009000301361084
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy6:%' AND post_id > 28662

Time before:  1.783518075943
Time after:   1.783891916275
Elapsed time: 0.00037384033203125
id select_type table type possible_keys key 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:  1.7848341464996
Time after:   1.7857871055603
Elapsed time: 0.00095295906066895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smilebox:%' AND post_id > 28662

Time before:  1.786425113678
Time after:   1.7867970466614
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 = 'snorting.gif'

Time before:  1.7877140045166
Time after:   1.7885711193085
Elapsed time: 0.00085711479187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snorting:%' AND post_id > 28662

Time before:  1.7894160747528
Time after:   1.7898271083832
Elapsed time: 0.00041103363037109
id select_type table type possible_keys key 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:  1.790696144104
Time after:   1.791533946991
Elapsed time: 0.00083780288696289
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam1:%' AND post_id > 28662

Time before:  1.7921359539032
Time after:   1.7924981117249
Elapsed time: 0.00036215782165527
id select_type table type possible_keys key 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:  1.793438911438
Time after:   1.794312953949
Elapsed time: 0.00087404251098633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam2:%' AND post_id > 28662

Time before:  1.794951915741
Time after:   1.7953209877014
Elapsed time: 0.00036907196044922
id select_type table type possible_keys key 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:  1.7961819171906
Time after:   1.7970850467682
Elapsed time: 0.00090312957763672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:stop:%' AND post_id > 28662

Time before:  1.7977271080017
Time after:   1.7981181144714
Elapsed time: 0.00039100646972656
id select_type table type possible_keys key 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:  1.7990169525146
Time after:   1.7998609542847
Elapsed time: 0.00084400177001953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tard:%' AND post_id > 28662

Time before:  1.8005089759827
Time after:   1.8009340763092
Elapsed time: 0.00042510032653809
id select_type table type possible_keys key 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:  1.8018209934235
Time after:   1.8026950359344
Elapsed time: 0.00087404251098633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thebirdman:%' AND post_id > 28662

Time before:  1.8032670021057
Time after:   1.80362200737
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 = 'thefinger.gif'

Time before:  1.8045339584351
Time after:   1.8055150508881
Elapsed time: 0.00098109245300293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thefinger:%' AND post_id > 28662

Time before:  1.8061370849609
Time after:   1.8065459728241
Elapsed time: 0.00040888786315918
id select_type table type possible_keys key 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:  1.8074460029602
Time after:   1.8083219528198
Elapsed time: 0.00087594985961914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbup:%' AND post_id > 28662

Time before:  1.8089821338654
Time after:   1.8093609809875
Elapsed time: 0.00037884712219238
id select_type table type possible_keys key 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:  1.8102791309357
Time after:   1.8111340999603
Elapsed time: 0.0008549690246582
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue1:%' AND post_id > 28662

Time before:  1.8117470741272
Time after:   1.8121240139008
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 = 'tongue11.gif'

Time before:  1.8130991458893
Time after:   1.8139710426331
Elapsed time: 0.00087189674377441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue10:%' AND post_id > 28662

Time before:  1.8146669864655
Time after:   1.8150689601898
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 = 'tongue2.gif'

Time before:  1.8159630298615
Time after:   1.8169059753418
Elapsed time: 0.00094294548034668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue2:%' AND post_id > 28662

Time before:  1.8175270557404
Time after:   1.8179130554199
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 = 'tongue3.gif'

Time before:  1.8187999725342
Time after:   1.8196539878845
Elapsed time: 0.0008540153503418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue3:%' AND post_id > 28662

Time before:  1.8203010559082
Time after:   1.8206970691681
Elapsed time: 0.0003960132598877
id select_type table type possible_keys key 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:  1.8216049671173
Time after:   1.8225100040436
Elapsed time: 0.00090503692626953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue4:%' AND post_id > 28662

Time before:  1.8231201171875
Time after:   1.8235011100769
Elapsed time: 0.0003809928894043
id select_type table type possible_keys key 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:  1.8244321346283
Time after:   1.8253071308136
Elapsed time: 0.00087499618530273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue5:%' AND post_id > 28662

Time before:  1.82590508461
Time after:   1.8262710571289
Elapsed time: 0.0003659725189209
id select_type table type possible_keys key 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:  1.8272531032562
Time after:   1.8281271457672
Elapsed time: 0.00087404251098633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue6:%' AND post_id > 28662

Time before:  1.8287501335144
Time after:   1.8291549682617
Elapsed time: 0.00040483474731445
id select_type table type possible_keys key 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:  1.8300340175629
Time after:   1.8309020996094
Elapsed time: 0.00086808204650879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue7:%' AND post_id > 28662

Time before:  1.8315320014954
Time after:   1.8319261074066
Elapsed time: 0.00039410591125488
id select_type table type possible_keys key 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:  1.832859992981
Time after:   1.8337330818176
Elapsed time: 0.00087308883666992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue8:%' AND post_id > 28662

Time before:  1.8344221115112
Time after:   1.8348200321198
Elapsed time: 0.00039792060852051
id select_type table type possible_keys key 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:  1.8357419967651
Time after:   1.8366639614105
Elapsed time: 0.00092196464538574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue9:%' AND post_id > 28662

Time before:  1.8372750282288
Time after:   1.8376660346985
Elapsed time: 0.00039100646972656
id select_type table type possible_keys key 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:  1.8386080265045
Time after:   1.8394620418549
Elapsed time: 0.0008540153503418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tool:%' AND post_id > 28662

Time before:  1.8401160240173
Time after:   1.8405170440674
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 = 'toothy1.gif'

Time before:  1.8414659500122
Time after:   1.842383146286
Elapsed time: 0.00091719627380371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy1:%' AND post_id > 28662

Time before:  1.8429980278015
Time after:   1.8433930873871
Elapsed time: 0.00039505958557129
id select_type table type possible_keys key 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:  1.8442900180817
Time after:   1.8452200889587
Elapsed time: 0.0009300708770752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy8:%' AND post_id > 28662

Time before:  1.8458950519562
Time after:   1.8462691307068
Elapsed time: 0.00037407875061035
id select_type table type possible_keys key 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:  1.8471920490265
Time after:   1.8480501174927
Elapsed time: 0.00085806846618652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy9:%' AND post_id > 28662

Time before:  1.8486959934235
Time after:   1.8491289615631
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 = 'toothy12.gif'

Time before:  1.8500599861145
Time after:   1.8509500026703
Elapsed time: 0.00089001655578613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy10:%' AND post_id > 28662

Time before:  1.8515770435333
Time after:   1.8519461154938
Elapsed time: 0.00036907196044922
id select_type table type possible_keys key 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:  1.8529229164124
Time after:   1.8538019657135
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy2:%' AND post_id > 28662

Time before:  1.854465007782
Time after:   1.8548340797424
Elapsed time: 0.00036907196044922
id select_type table type possible_keys key 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:  1.8557081222534
Time after:   1.8567399978638
Elapsed time: 0.0010318756103516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy3:%' AND post_id > 28662

Time before:  1.8574221134186
Time after:   1.8578100204468
Elapsed time: 0.00038790702819824
id select_type table type possible_keys key 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:  1.8587610721588
Time after:   1.8596501350403
Elapsed time: 0.00088906288146973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy4:%' AND post_id > 28662

Time before:  1.8602910041809
Time after:   1.860748052597
Elapsed time: 0.0004570484161377
id select_type table type possible_keys key 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:  1.8616931438446
Time after:   1.8625741004944
Elapsed time: 0.00088095664978027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy5:%' AND post_id > 28662

Time before:  1.8631880283356
Time after:   1.8635730743408
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 = 'toothy6.gif'

Time before:  1.8645479679108
Time after:   1.8654839992523
Elapsed time: 0.00093603134155273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy6:%' AND post_id > 28662

Time before:  1.8661661148071
Time after:   1.8665721416473
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 = 'toothy9.gif'

Time before:  1.8674731254578
Time after:   1.8684010505676
Elapsed time: 0.00092792510986328
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy7:%' AND post_id > 28662

Time before:  1.8690440654755
Time after:   1.8694250583649
Elapsed time: 0.0003809928894043
id select_type table type possible_keys key 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:  1.8702969551086
Time after:   1.8711950778961
Elapsed time: 0.00089812278747559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:triplets:%' AND post_id > 28662

Time before:  1.8718421459198
Time after:   1.8722240924835
Elapsed time: 0.0003819465637207
id select_type table type possible_keys key 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:  1.873153924942
Time after:   1.8740170001984
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tshirt:%' AND post_id > 28662

Time before:  1.8746399879456
Time after:   1.8750910758972
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 = 'tweety.gif'

Time before:  1.8759911060333
Time after:   1.876876115799
Elapsed time: 0.000885009765625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tweety:%' AND post_id > 28662

Time before:  1.8774750232697
Time after:   1.8778350353241
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 = 'usa2.gif'

Time before:  1.8788189888
Time after:   1.8796970844269
Elapsed time: 0.00087809562683105
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:usa2:%' AND post_id > 28662

Time before:  1.8803040981293
Time after:   1.8807260990143
Elapsed time: 0.00042200088500977
id select_type table type possible_keys key 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:  1.8816330432892
Time after:   1.8825120925903
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent1:%' AND post_id > 28662

Time before:  1.8831310272217
Time after:   1.8835129737854
Elapsed time: 0.0003819465637207
id select_type table type possible_keys key 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:  1.8844499588013
Time after:   1.8853290081024
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent2:%' AND post_id > 28662

Time before:  1.8859541416168
Time after:   1.8863921165466
Elapsed time: 0.00043797492980957
id select_type table type possible_keys key 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:  1.8873541355133
Time after:   1.8882329463959
Elapsed time: 0.00087881088256836
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent3:%' AND post_id > 28662

Time before:  1.8888721466064
Time after:   1.8892390727997
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 = 'walk.gif'

Time before:  1.8901810646057
Time after:   1.89106798172
Elapsed time: 0.00088691711425781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:walk:%' AND post_id > 28662

Time before:  1.8917410373688
Time after:   1.8921139240265
Elapsed time: 0.00037288665771484
id select_type table type possible_keys key 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:  1.8930420875549
Time after:   1.8939299583435
Elapsed time: 0.00088787078857422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wav:%' AND post_id > 28662

Time before:  1.8945860862732
Time after:   1.8949511051178
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 = 'wave.gif'

Time before:  1.8958921432495
Time after:   1.8967580795288
Elapsed time: 0.00086593627929688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wave:%' AND post_id > 28662

Time before:  1.8974170684814
Time after:   1.8977949619293
Elapsed time: 0.00037789344787598
id 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 = 15 WHERE smile_url = '005.gif'

Time before:  1.8985140323639
Time after:   1.9002969264984
Elapsed time: 0.0017828941345215

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = '007.gif'

Time before:  1.9004831314087
Time after:   1.902312040329
Elapsed time: 0.0018289089202881

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = '014.gif'

Time before:  1.9024810791016
Time after:   1.9042720794678
Elapsed time: 0.0017910003662109

Query:	UPDATE stats_smilies_index SET smile_count = 21 WHERE smile_url = '015.gif'

Time before:  1.9044270515442
Time after:   1.906142950058
Elapsed time: 0.0017158985137939

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = '026.gif'

Time before:  1.9062910079956
Time after:   1.9080541133881
Elapsed time: 0.0017631053924561

Query:	UPDATE stats_smilies_index SET smile_count = 22 WHERE smile_url = '033.gif'

Time before:  1.908203125
Time after:   1.9099299907684
Elapsed time: 0.0017268657684326

Query:	UPDATE stats_smilies_index SET smile_count = 35 WHERE smile_url = '041.gif'

Time before:  1.9100761413574
Time after:   1.911826133728
Elapsed time: 0.0017499923706055

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = '3some.gif'

Time before:  1.9120049476624
Time after:   1.9137721061707
Elapsed time: 0.0017671585083008

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'alien.gif'

Time before:  1.91392993927
Time after:   1.9156839847565
Elapsed time: 0.0017540454864502

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel10.gif'

Time before:  1.9158329963684
Time after:   1.9175670146942
Elapsed time: 0.0017340183258057

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel11.gif'

Time before:  1.9177150726318
Time after:   1.9194400310516
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel12.gif'

Time before:  1.9195909500122
Time after:   1.9213299751282
Elapsed time: 0.0017390251159668

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'angel13.gif'

Time before:  1.9214839935303
Time after:   1.9232220649719
Elapsed time: 0.0017380714416504

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angel3.gif'

Time before:  1.9233739376068
Time after:   1.9251110553741
Elapsed time: 0.001737117767334

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel4.gif'

Time before:  1.9252550601959
Time after:   1.9269840717316
Elapsed time: 0.0017290115356445

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel5.gif'

Time before:  1.9271309375763
Time after:   1.9288699626923
Elapsed time: 0.0017390251159668

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'angel7.gif'

Time before:  1.9290111064911
Time after:   1.9307329654694
Elapsed time: 0.0017218589782715

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'angel8.gif'

Time before:  1.9308729171753
Time after:   1.9325909614563
Elapsed time: 0.0017180442810059

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel9.gif'

Time before:  1.9327340126038
Time after:   1.9344589710236
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry1.gif'

Time before:  1.934602022171
Time after:   1.9363119602203
Elapsed time: 0.0017099380493164

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry2.gif'

Time before:  1.9364519119263
Time after:   1.9392399787903
Elapsed time: 0.0027880668640137

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry3.gif'

Time before:  1.9395351409912
Time after:   1.9425671100616
Elapsed time: 0.0030319690704346

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry7.gif'

Time before:  1.9428539276123
Time after:   1.9456899166107
Elapsed time: 0.0028359889984131

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry9.gif'

Time before:  1.9459590911865
Time after:   1.9487590789795
Elapsed time: 0.0027999877929688

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'argue.gif'

Time before:  1.949187040329
Time after:   1.9532160758972
Elapsed time: 0.0040290355682373

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'BangHead.gif'

Time before:  1.9535219669342
Time after:   1.9560871124268
Elapsed time: 0.0025651454925537

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'binkybaby.gif'

Time before:  1.9563341140747
Time after:   1.9585189819336
Elapsed time: 0.0021848678588867

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob1.gif'

Time before:  1.9587199687958
Time after:   1.9605031013489
Elapsed time: 0.0017831325531006

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob10.gif'

Time before:  1.9606640338898
Time after:   1.9624109268188
Elapsed time: 0.0017468929290771

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob3.gif'

Time before:  1.9625570774078
Time after:   1.964280128479
Elapsed time: 0.001723051071167

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob5.gif'

Time before:  1.9644210338593
Time after:   1.9661200046539
Elapsed time: 0.0016989707946777

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob6.gif'

Time before:  1.9662621021271
Time after:   1.9679989814758
Elapsed time: 0.0017368793487549

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob7.gif'

Time before:  1.9681401252747
Time after:   1.9698491096497
Elapsed time: 0.001708984375

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob8.gif'

Time before:  1.9699919223785
Time after:   1.9716911315918
Elapsed time: 0.0016992092132568

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob9.gif'

Time before:  1.971832036972
Time after:   1.9735469818115
Elapsed time: 0.0017149448394775

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bom.gif'

Time before:  1.973690032959
Time after:   1.9753980636597
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'book1.gif'

Time before:  1.9755380153656
Time after:   1.9772529602051
Elapsed time: 0.0017149448394775

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'booty.gif'

Time before:  1.9773969650269
Time after:   1.9791090488434
Elapsed time: 0.0017120838165283

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'bootyshake.gif'

Time before:  1.9792499542236
Time after:   1.9810891151428
Elapsed time: 0.0018391609191895

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'boxing.gif'

Time before:  1.98126912117
Time after:   1.9830360412598
Elapsed time: 0.0017669200897217

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'brave.gif'

Time before:  1.9831819534302
Time after:   1.9849190711975
Elapsed time: 0.001737117767334

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'brushteeth.gif'

Time before:  1.9850680828094
Time after:   1.9867899417877
Elapsed time: 0.0017218589782715

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bs.gif'

Time before:  1.9869360923767
Time after:   1.9886729717255
Elapsed time: 0.0017368793487549

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bunny.gif'

Time before:  1.9888160228729
Time after:   1.9905431270599
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'cat.gif'

Time before:  1.9906849861145
Time after:   1.9924130439758
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'clock.gif'

Time before:  1.992555141449
Time after:   1.9942970275879
Elapsed time: 0.001741886138916

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee.gif'

Time before:  1.9944441318512
Time after:   1.9961669445038
Elapsed time: 0.0017228126525879

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee2.gif'

Time before:  1.9963080883026
Time after:   1.9980070590973
Elapsed time: 0.0016989707946777

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'color.gif'

Time before:  1.9981660842896
Time after:   1.9998691082001
Elapsed time: 0.0017030239105225

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'computer.gif'

Time before:  2.0000100135803
Time after:   2.0017249584198
Elapsed time: 0.0017149448394775

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused1.gif'

Time before:  2.0018811225891
Time after:   2.0035879611969
Elapsed time: 0.0017068386077881

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'confused2.gif'

Time before:  2.0037341117859
Time after:   2.0054469108582
Elapsed time: 0.0017127990722656

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused3.gif'

Time before:  2.0055921077728
Time after:   2.0073001384735
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused4.gif'

Time before:  2.0074450969696
Time after:   2.0091829299927
Elapsed time: 0.0017378330230713

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused5.gif'

Time before:  2.0093319416046
Time after:   2.0110530853271
Elapsed time: 0.0017211437225342

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'crybaby2.gif'

Time before:  2.0111999511719
Time after:   2.0129201412201
Elapsed time: 0.0017201900482178

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'cya.gif'

Time before:  2.0130620002747
Time after:   2.0147840976715
Elapsed time: 0.0017220973968506

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'dark1.gif'

Time before:  2.0149240493774
Time after:   2.0166580677032
Elapsed time: 0.0017340183258057

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'director.gif'

Time before:  2.0167999267578
Time after:   2.0185279846191
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'director2.gif'

Time before:  2.0186719894409
Time after:   2.0203959941864
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'dog.gif'

Time before:  2.020534992218
Time after:   2.0222599506378
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'dontknow.gif'

Time before:  2.0224051475525
Time after:   2.0241210460663
Elapsed time: 0.0017158985137939

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'downtown.gif'

Time before:  2.0242600440979
Time after:   2.0259680747986
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'drunken_smilie.gif'

Time before:  2.0261120796204
Time after:   2.0278079509735
Elapsed time: 0.0016958713531494

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'duckie.gif'

Time before:  2.0279519557953
Time after:   2.029657125473
Elapsed time: 0.0017051696777344

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'Edfirst.gif'

Time before:  2.0297980308533
Time after:   2.0315001010895
Elapsed time: 0.0017020702362061

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil1.gif'

Time before:  2.0316390991211
Time after:   2.0333499908447
Elapsed time: 0.0017108917236328

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'evil3.gif'

Time before:  2.0334930419922
Time after:   2.0352029800415
Elapsed time: 0.0017099380493164

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil4.gif'

Time before:  2.0353569984436
Time after:   2.0370819568634
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'evil5.gif'

Time before:  2.0372240543365
Time after:   2.0389380455017
Elapsed time: 0.0017139911651611

Query:	UPDATE stats_smilies_index SET smile_count = 53 WHERE smile_url = 'evil6.gif'

Time before:  2.0390770435333
Time after:   2.0408110618591
Elapsed time: 0.0017340183258057

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'evil7.gif'

Time before:  2.0409569740295
Time after:   2.0426850318909
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fart.gif'

Time before:  2.0428280830383
Time after:   2.0445539951324
Elapsed time: 0.0017259120941162

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'female.gif'

Time before:  2.0447030067444
Time after:   2.0464360713959
Elapsed time: 0.0017330646514893

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fenforcer.gif'

Time before:  2.0465791225433
Time after:   2.0482940673828
Elapsed time: 0.0017149448394775

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fflak.gif'

Time before:  2.0484340190887
Time after:   2.0501489639282
Elapsed time: 0.0017149448394775

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fglob.gif'

Time before:  2.0502960681915
Time after:   2.0520260334015
Elapsed time: 0.0017299652099609

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fimpact.gif'

Time before:  2.052169084549
Time after:   2.0538721084595
Elapsed time: 0.0017030239105225

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fish.gif'

Time before:  2.0540130138397
Time after:   2.0557119846344
Elapsed time: 0.0016989707946777

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'fplasma.gif'

Time before:  2.0558531284332
Time after:   2.0575671195984
Elapsed time: 0.0017139911651611

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'fripper.gif'

Time before:  2.0577080249786
Time after:   2.0594160556793
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'fsniper.gif'

Time before:  2.0595619678497
Time after:   2.0612990856171
Elapsed time: 0.001737117767334

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fucyc.gif'

Time before:  2.0614409446716
Time after:   2.0631530284882
Elapsed time: 0.0017120838165283

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fxloc.gif'

Time before:  2.0632929801941
Time after:   2.0650250911713
Elapsed time: 0.0017321109771729

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses1.gif'

Time before:  2.0651650428772
Time after:   2.0668799877167
Elapsed time: 0.0017149448394775

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses10.gif'

Time before:  2.0670220851898
Time after:   2.0687489509583
Elapsed time: 0.0017268657684326

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses11.gif'

Time before:  2.06889295578
Time after:   2.0706179141998
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses12.gif'

Time before:  2.0707769393921
Time after:   2.0725009441376
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses13.gif'

Time before:  2.0726850032806
Time after:   2.0744299888611
Elapsed time: 0.0017449855804443

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses2.gif'

Time before:  2.074579000473
Time after:   2.0763070583344
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'glasses3.gif'

Time before:  2.0764479637146
Time after:   2.078145980835
Elapsed time: 0.0016980171203613

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses6.gif'

Time before:  2.0782880783081
Time after:   2.0800199508667
Elapsed time: 0.0017318725585938

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses7.gif'

Time before:  2.0801610946655
Time after:   2.0818650722504
Elapsed time: 0.0017039775848389

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses8.gif'

Time before:  2.0820050239563
Time after:   2.0837070941925
Elapsed time: 0.0017020702362061

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses9.gif'

Time before:  2.0838470458984
Time after:   2.0855650901794
Elapsed time: 0.0017180442810059

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'grommit.gif'

Time before:  2.0857050418854
Time after:   2.0874080657959
Elapsed time: 0.0017030239105225

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'hal.gif'

Time before:  2.0875461101532
Time after:   2.0893681049347
Elapsed time: 0.0018219947814941

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'happy1.gif'

Time before:  2.0895371437073
Time after:   2.091283082962
Elapsed time: 0.0017459392547607

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy10.gif'

Time before:  2.0914280414581
Time after:   2.0931580066681
Elapsed time: 0.0017299652099609

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy11.gif'

Time before:  2.093297958374
Time after:   2.0950150489807
Elapsed time: 0.0017170906066895

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy2.gif'

Time before:  2.0951581001282
Time after:   2.0970499515533
Elapsed time: 0.0018918514251709

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy3.gif'

Time before:  2.0972280502319
Time after:   2.0989899635315
Elapsed time: 0.0017619132995605

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy4.gif'

Time before:  2.0991380214691
Time after:   2.1008939743042
Elapsed time: 0.001755952835083

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'happy5.gif'

Time before:  2.1010429859161
Time after:   2.1027750968933
Elapsed time: 0.0017321109771729

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'happy6.gif'

Time before:  2.1029200553894
Time after:   2.1046569347382
Elapsed time: 0.0017368793487549

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy7.gif'

Time before:  2.1048009395599
Time after:   2.1065299510956
Elapsed time: 0.0017290115356445

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy8.gif'

Time before:  2.106673002243
Time after:   2.1083869934082
Elapsed time: 0.0017139911651611

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy9.gif'

Time before:  2.108528137207
Time after:   2.1102600097656
Elapsed time: 0.0017318725585938

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'headbang.gif'

Time before:  2.1104209423065
Time after:   2.112144947052
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 26 WHERE smile_url = 'hello.gif'

Time before:  2.1122889518738
Time after:   2.1139969825745
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'hello2.gif'

Time before:  2.1141469478607
Time after:   2.1158549785614
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'help.gif'

Time before:  2.1159999370575
Time after:   2.117712020874
Elapsed time: 0.0017120838165283

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hiding.gif'

Time before:  2.1178550720215
Time after:   2.1195621490479
Elapsed time: 0.0017070770263672

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hippy2.gif'

Time before:  2.119705915451
Time after:   2.1214411258698
Elapsed time: 0.0017352104187012

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hmh.gif'

Time before:  2.1215889453888
Time after:   2.1233060359955
Elapsed time: 0.0017170906066895

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'home.gif'

Time before:  2.1234500408173
Time after:   2.1251809597015
Elapsed time: 0.0017309188842773

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'homework.gif'

Time before:  2.1253249645233
Time after:   2.1270439624786
Elapsed time: 0.0017189979553223

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'iamwithstupid.gif'

Time before:  2.1271989345551
Time after:   2.128956079483
Elapsed time: 0.0017571449279785

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icescream.gif'

Time before:  2.1291041374207
Time after:   2.1308290958405
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_albino.gif'

Time before:  2.1309781074524
Time after:   2.1327209472656
Elapsed time: 0.0017428398132324

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_anal.gif'

Time before:  2.1328709125519
Time after:   2.1346089839935
Elapsed time: 0.0017380714416504

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_arrow.gif'

Time before:  2.1347651481628
Time after:   2.136491060257
Elapsed time: 0.0017259120941162

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_axe.gif'

Time before:  2.1366550922394
Time after:   2.138396024704
Elapsed time: 0.0017409324645996

Query:	UPDATE stats_smilies_index SET smile_count = 2189 WHERE smile_url = 'icon_biggrin.gif'

Time before:  2.1385419368744
Time after:   2.1402659416199
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_bigsmurf.gif'

Time before:  2.1404149532318
Time after:   2.142548084259
Elapsed time: 0.0021331310272217

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_blackeye.gif'

Time before:  2.1427381038666
Time after:   2.1444981098175
Elapsed time: 0.0017600059509277

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_bounce.gif'

Time before:  2.1446671485901
Time after:   2.1464059352875
Elapsed time: 0.0017387866973877

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_butt.gif'

Time before:  2.1465561389923
Time after:   2.1482830047607
Elapsed time: 0.0017268657684326

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cat.gif'

Time before:  2.1484501361847
Time after:   2.1505370140076
Elapsed time: 0.002086877822876

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cheers.gif'

Time before:  2.1507260799408
Time after:   2.1530900001526
Elapsed time: 0.002363920211792

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cherry.gif'

Time before:  2.1533670425415
Time after:   2.1552829742432
Elapsed time: 0.0019159317016602

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_clown.gif'

Time before:  2.1554651260376
Time after:   2.1573040485382
Elapsed time: 0.0018389225006104

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_colors.gif'

Time before:  2.1575701236725
Time after:   2.1605091094971
Elapsed time: 0.002938985824585

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_compress.gif'

Time before:  2.160964012146
Time after:   2.1636459827423
Elapsed time: 0.0026819705963135

Query:	UPDATE stats_smilies_index SET smile_count = 783 WHERE smile_url = 'icon_confused.gif'

Time before:  2.1638760566711
Time after:   2.1656811237335
Elapsed time: 0.0018050670623779

Query:	UPDATE stats_smilies_index SET smile_count = 403 WHERE smile_url = 'icon_cool.gif'

Time before:  2.1658489704132
Time after:   2.1726961135864
Elapsed time: 0.0068471431732178

Query:	UPDATE stats_smilies_index SET smile_count = 257 WHERE smile_url = 'icon_cry.gif'

Time before:  2.1729390621185
Time after:   2.1757459640503
Elapsed time: 0.0028069019317627

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops.gif'

Time before:  2.1759650707245
Time after:   2.1785550117493
Elapsed time: 0.0025899410247803

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops_ani.gif'

Time before:  2.1788320541382
Time after:   2.1806910037994
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 227 WHERE smile_url = 'icon_evil.gif'

Time before:  2.1808569431305
Time after:   2.1825981140137
Elapsed time: 0.0017411708831787

Query:	UPDATE stats_smilies_index SET smile_count = 304 WHERE smile_url = 'icon_exclaim.gif'

Time before:  2.1827459335327
Time after:   2.1844661235809
Elapsed time: 0.0017201900482178

Query:	UPDATE stats_smilies_index SET smile_count = 16 WHERE smile_url = 'icon_eyes.gif'

Time before:  2.184623003006
Time after:   2.1867349147797
Elapsed time: 0.0021119117736816

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_fU.gif'

Time before:  2.1869130134583
Time after:   2.1887500286102
Elapsed time: 0.0018370151519775

Query:	UPDATE stats_smilies_index SET smile_count = 22 WHERE smile_url = 'icon_jook.gif'

Time before:  2.1889801025391
Time after:   2.1907739639282
Elapsed time: 0.0017938613891602

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_karu.gif'

Time before:  2.1909310817719
Time after:   2.1926820278168
Elapsed time: 0.0017509460449219

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_keel.gif'

Time before:  2.192831993103
Time after:   2.1945679187775
Elapsed time: 0.0017359256744385

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_kidra.gif'

Time before:  2.1947159767151
Time after:   2.1964271068573
Elapsed time: 0.0017111301422119

Query:	UPDATE stats_smilies_index SET smile_count = 2396 WHERE smile_url = 'icon_lol.gif'

Time before:  2.1965711116791
Time after:   2.1983120441437
Elapsed time: 0.0017409324645996

Query:	UPDATE stats_smilies_index SET smile_count = 319 WHERE smile_url = 'icon_mad.gif'

Time before:  2.1985669136047
Time after:   2.2013530731201
Elapsed time: 0.0027861595153809

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_madu.gif'

Time before:  2.2015421390533
Time after:   2.2046611309052
Elapsed time: 0.0031189918518066

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_mrgreen.gif'

Time before:  2.2049291133881
Time after:   2.2078070640564
Elapsed time: 0.002877950668335

Query:	UPDATE stats_smilies_index SET smile_count = 111 WHERE smile_url = 'icon_neutral.gif'

Time before:  2.2080600261688
Time after:   2.2098259925842
Elapsed time: 0.0017659664154053

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_oak.gif'

Time before:  2.2099869251251
Time after:   2.2117259502411
Elapsed time: 0.0017390251159668

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_pai.gif'

Time before:  2.2118690013885
Time after:   2.2135851383209
Elapsed time: 0.001716136932373

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pale.gif'

Time before:  2.213730096817
Time after:   2.2154641151428
Elapsed time: 0.0017340183258057

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pall.gif'

Time before:  2.2156069278717
Time after:   2.2173340320587
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'icon_pidu.gif'

Time before:  2.2174789905548
Time after:   2.2192060947418
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_pirat.gif'

Time before:  2.2193520069122
Time after:   2.2210729122162
Elapsed time: 0.0017209053039551

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'icon_pray.gif'

Time before:  2.2212209701538
Time after:   2.2231130599976
Elapsed time: 0.00189208984375

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileleft.gif'

Time before:  2.2232899665833
Time after:   2.2287039756775
Elapsed time: 0.0054140090942383

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileright.gif'

Time before:  2.2290029525757
Time after:   2.2319669723511
Elapsed time: 0.0029640197753906

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_l.gif'

Time before:  2.2322289943695
Time after:   2.2351660728455
Elapsed time: 0.0029370784759521

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_r.gif'

Time before:  2.2354230880737
Time after:   2.2383599281311
Elapsed time: 0.002936840057373

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_queen.gif'

Time before:  2.2386181354523
Time after:   2.2415590286255
Elapsed time: 0.0029408931732178

Query:	UPDATE stats_smilies_index SET smile_count = 152 WHERE smile_url = 'icon_question.gif'

Time before:  2.2418191432953
Time after:   2.244754076004
Elapsed time: 0.0029349327087402

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_rabbit.gif'

Time before:  2.2450160980225
Time after:   2.2468979358673
Elapsed time: 0.0018818378448486

Query:	UPDATE stats_smilies_index SET smile_count = 554 WHERE smile_url = 'icon_razz.gif'

Time before:  2.2470829486847
Time after:   2.2488880157471
Elapsed time: 0.0018050670623779

Query:	UPDATE stats_smilies_index SET smile_count = 711 WHERE smile_url = 'icon_redface.gif'

Time before:  2.2490420341492
Time after:   2.2507719993591
Elapsed time: 0.0017299652099609

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_rendeer.gif'

Time before:  2.2509350776672
Time after:   2.2526741027832
Elapsed time: 0.0017390251159668

Query:	UPDATE stats_smilies_index SET smile_count = 1218 WHERE smile_url = 'icon_rolleyes.gif'

Time before:  2.2528240680695
Time after:   2.2545490264893
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_rr.gif'

Time before:  2.2546920776367
Time after:   2.25665807724
Elapsed time: 0.0019659996032715

Query:	UPDATE stats_smilies_index SET smile_count = 468 WHERE smile_url = 'icon_sad.gif'

Time before:  2.2568581104279
Time after:   2.2586550712585
Elapsed time: 0.0017969608306885

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_salut.gif'

Time before:  2.2588169574738
Time after:   2.2646949291229
Elapsed time: 0.0058779716491699

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_santa.gif'

Time before:  2.2649641036987
Time after:   2.2679319381714
Elapsed time: 0.0029678344726562

Query:	UPDATE stats_smilies_index SET smile_count = 12 WHERE smile_url = 'icon_scratch.gif'

Time before:  2.2682070732117
Time after:   2.2710700035095
Elapsed time: 0.0028629302978516

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking.gif'

Time before:  2.2713270187378
Time after:   2.274209022522
Elapsed time: 0.0028820037841797

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking2.gif'

Time before:  2.2744719982147
Time after:   2.2773380279541
Elapsed time: 0.0028660297393799

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_silent.gif'

Time before:  2.2775931358337
Time after:   2.2804639339447
Elapsed time: 0.0028707981109619

Query:	UPDATE stats_smilies_index SET smile_count = 1564 WHERE smile_url = 'icon_smile.gif'

Time before:  2.2807319164276
Time after:   2.2835450172424
Elapsed time: 0.0028131008148193

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_spiderman.gif'

Time before:  2.2838389873505
Time after:   2.285768032074
Elapsed time: 0.0019290447235107

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_study.gif'

Time before:  2.2859609127045
Time after:   2.2877941131592
Elapsed time: 0.0018332004547119

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_sunny.gif'

Time before:  2.2879660129547
Time after:   2.2899460792542
Elapsed time: 0.0019800662994385

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_super.gif'

Time before:  2.2901329994202
Time after:   2.2918920516968
Elapsed time: 0.0017590522766113

Query:	UPDATE stats_smilies_index SET smile_count = 135 WHERE smile_url = 'icon_surprised.gif'

Time before:  2.2920529842377
Time after:   2.2937939167023
Elapsed time: 0.0017409324645996

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_syda.gif'

Time before:  2.2939469814301
Time after:   2.2956650257111
Elapsed time: 0.0017180442810059

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_thumleft.gif'

Time before:  2.2958290576935
Time after:   2.2975509166718
Elapsed time: 0.0017218589782715

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'icon_thumright.gif'

Time before:  2.2977049350739
Time after:   2.2994251251221
Elapsed time: 0.0017201900482178

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_toilet.gif'

Time before:  2.2995800971985
Time after:   2.3019459247589
Elapsed time: 0.0023658275604248

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_tongue.gif'

Time before:  2.3021519184113
Time after:   2.3042500019073
Elapsed time: 0.0020980834960938

Query:	UPDATE stats_smilies_index SET smile_count = 402 WHERE smile_url = 'icon_twisted.gif'

Time before:  2.3044319152832
Time after:   2.3062219619751
Elapsed time: 0.0017900466918945

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_weed.gif'

Time before:  2.3063819408417
Time after:   2.3083109855652
Elapsed time: 0.0019290447235107

Query:	UPDATE stats_smilies_index SET smile_count = 1870 WHERE smile_url = 'icon_wink.gif'

Time before:  2.3084819316864
Time after:   2.3102920055389
Elapsed time: 0.0018100738525391

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_winkle.gif'

Time before:  2.3104679584503
Time after:   2.3122279644012
Elapsed time: 0.0017600059509277

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'idea1.gif'

Time before:  2.3123760223389
Time after:   2.3140821456909
Elapsed time: 0.0017061233520508

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'iroc.gif'

Time before:  2.3142259120941
Time after:   2.3159589767456
Elapsed time: 0.0017330646514893

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'jerk.gif'

Time before:  2.3161029815674
Time after:   2.3178219795227
Elapsed time: 0.0017189979553223

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'kermit.gif'

Time before:  2.3179669380188
Time after:   2.3196840286255
Elapsed time: 0.0017170906066895

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'knob.gif'

Time before:  2.3198239803314
Time after:   2.321545124054
Elapsed time: 0.0017211437225342

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'ky.gif'

Time before:  2.3216869831085
Time after:   2.3234610557556
Elapsed time: 0.0017740726470947

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'la.gif'

Time before:  2.3236229419708
Time after:   2.325385093689
Elapsed time: 0.0017621517181396

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing1.gif'

Time before:  2.3255369663239
Time after:   2.327269077301
Elapsed time: 0.0017321109771729

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing11.gif'

Time before:  2.3274290561676
Time after:   2.3291780948639
Elapsed time: 0.0017490386962891

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing3.gif'

Time before:  2.329332113266
Time after:   2.3310940265656
Elapsed time: 0.0017619132995605

Query:	UPDATE stats_smilies_index SET smile_count = 19 WHERE smile_url = 'laughing4.gif'

Time before:  2.3312389850616
Time after:   2.3329689502716
Elapsed time: 0.0017299652099609

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing5.gif'

Time before:  2.3331151008606
Time after:   2.3348340988159
Elapsed time: 0.0017189979553223

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing6.gif'

Time before:  2.334990978241
Time after:   2.3367321491241
Elapsed time: 0.0017411708831787

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'laughing7.gif'

Time before:  2.3368780612946
Time after:   2.3386039733887
Elapsed time: 0.0017259120941162

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing8.gif'

Time before:  2.3387489318848
Time after:   2.3404700756073
Elapsed time: 0.0017211437225342

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing9.gif'

Time before:  2.3406369686127
Time after:   2.3423719406128
Elapsed time: 0.0017349720001221

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love1.gif'

Time before:  2.3425159454346
Time after:   2.3442399501801
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love10.gif'

Time before:  2.3443779945374
Time after:   2.346076965332
Elapsed time: 0.0016989707946777

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love2.gif'

Time before:  2.3462181091309
Time after:   2.3479430675507
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love3.gif'

Time before:  2.3480830192566
Time after:   2.3497841358185
Elapsed time: 0.0017011165618896

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love4.gif'

Time before:  2.3499240875244
Time after:   2.3516209125519
Elapsed time: 0.0016968250274658

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'love5.gif'

Time before:  2.3517611026764
Time after:   2.3534700870514
Elapsed time: 0.001708984375

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love6.gif'

Time before:  2.3536109924316
Time after:   2.3553140163422
Elapsed time: 0.0017030239105225

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love7.gif'

Time before:  2.3554520606995
Time after:   2.3571610450745
Elapsed time: 0.001708984375

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love8.gif'

Time before:  2.3573019504547
Time after:   2.3590130805969
Elapsed time: 0.0017111301422119

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love9.gif'

Time before:  2.3591520786285
Time after:   2.360876083374
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'lovestory.gif'

Time before:  2.3610169887543
Time after:   2.3627440929413
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'lurk.gif'

Time before:  2.3628940582275
Time after:   2.3646240234375
Elapsed time: 0.0017299652099609

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'male.gif'

Time before:  2.3647649288177
Time after:   2.3665001392365
Elapsed time: 0.0017352104187012

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'mblah05.gif'

Time before:  2.3666400909424
Time after:   2.3683609962463
Elapsed time: 0.0017209053039551

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'merror.gif'

Time before:  2.3684990406036
Time after:   2.370227098465
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'mumum.gif'

Time before:  2.3703739643097
Time after:   2.3721001148224
Elapsed time: 0.0017261505126953

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'munky2.gif'

Time before:  2.3722400665283
Time after:   2.3739349842072
Elapsed time: 0.001694917678833

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'naka.gif'

Time before:  2.374076128006
Time after:   2.3757700920105
Elapsed time: 0.0016939640045166

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'newbie.gif'

Time before:  2.3759100437164
Time after:   2.3776180744171
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'nike.gif'

Time before:  2.377769947052
Time after:   2.3794801235199
Elapsed time: 0.0017101764678955

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'notworthy.gif'

Time before:  2.3796229362488
Time after:   2.3813400268555
Elapsed time: 0.0017170906066895

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'occasion1.gif'

Time before:  2.3814821243286
Time after:   2.3831939697266
Elapsed time: 0.0017118453979492

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'occasion13.gif'

Time before:  2.383337020874
Time after:   2.3850569725037
Elapsed time: 0.0017199516296387

Query:	UPDATE stats_smilies_index SET smile_count = 12 WHERE smile_url = 'occasion14.gif'

Time before:  2.3852009773254
Time after:   2.3869149684906
Elapsed time: 0.0017139911651611

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'occasion15.gif'

Time before:  2.3870570659637
Time after:   2.3887810707092
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 19 WHERE smile_url = 'occasion16.gif'

Time before:  2.3889229297638
Time after:   2.3906409740448
Elapsed time: 0.0017180442810059

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'occasion17.gif'

Time before:  2.3907880783081
Time after:   2.3925120830536
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'occasion18.gif'

Time before:  2.3926630020142
Time after:   2.3943939208984
Elapsed time: 0.0017309188842773

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'occasion5.gif'

Time before:  2.3945360183716
Time after:   2.3962590694427
Elapsed time: 0.001723051071167

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pain10.gif'

Time before:  2.396399974823
Time after:   2.3981039524078
Elapsed time: 0.0017039775848389

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain1.gif'

Time before:  2.3982450962067
Time after:   2.3999691009521
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain2.gif'

Time before:  2.400111913681
Time after:   2.4018111228943
Elapsed time: 0.0016992092132568

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'pottytrain3.gif'

Time before:  2.4019680023193
Time after:   2.4036691188812
Elapsed time: 0.0017011165618896

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain4.gif'

Time before:  2.403813123703
Time after:   2.4055171012878
Elapsed time: 0.0017039775848389

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain5.gif'

Time before:  2.4056599140167
Time after:   2.4073660373688
Elapsed time: 0.0017061233520508

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'protest.gif'

Time before:  2.4075090885162
Time after:   2.40922498703
Elapsed time: 0.0017158985137939

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'puke.gif'

Time before:  2.4093630313873
Time after:   2.4110901355743
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'read.gif'

Time before:  2.4112300872803
Time after:   2.4129559993744
Elapsed time: 0.0017259120941162

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'read2.gif'

Time before:  2.413094997406
Time after:   2.414813041687
Elapsed time: 0.0017180442810059

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 's-bluecap.gif'

Time before:  2.4149661064148
Time after:   2.4166920185089
Elapsed time: 0.0017259120941162

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 's-chainsaw.gif'

Time before:  2.4168729782104
Time after:   2.4229300022125
Elapsed time: 0.0060570240020752

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 's-ctf.gif'

Time before:  2.4231419563293
Time after:   2.4250049591064
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 's-instagib.gif'

Time before:  2.4251620769501
Time after:   2.426901102066
Elapsed time: 0.0017390251159668

Query:	UPDATE stats_smilies_index SET smile_count = 19 WHERE smile_url = 's-minigun.gif'

Time before:  2.4270470142365
Time after:   2.4287810325623
Elapsed time: 0.0017340183258057

Query:	UPDATE stats_smilies_index SET smile_count = 126 WHERE smile_url = 's-shock.gif'

Time before:  2.4289269447327
Time after:   2.4306540489197
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 's-telefrag.gif'

Time before:  2.4307990074158
Time after:   2.4325249195099
Elapsed time: 0.0017259120941162

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad1.gif'

Time before:  2.4326739311218
Time after:   2.4344141483307
Elapsed time: 0.0017402172088623

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad10.gif'

Time before:  2.4345519542694
Time after:   2.4362769126892
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad11.gif'

Time before:  2.4364161491394
Time after:   2.4381129741669
Elapsed time: 0.0016968250274658

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad2.gif'

Time before:  2.43825507164
Time after:   2.4399909973145
Elapsed time: 0.0017359256744385

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sad3.gif'

Time before:  2.4401299953461
Time after:   2.4418399333954
Elapsed time: 0.0017099380493164

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad4.gif'

Time before:  2.4419820308685
Time after:   2.4436891078949
Elapsed time: 0.0017070770263672

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sad5.gif'

Time before:  2.4438459873199
Time after:   2.4455740451813
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad6.gif'

Time before:  2.445720911026
Time after:   2.4474411010742
Elapsed time: 0.0017201900482178

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad7.gif'

Time before:  2.4475810527802
Time after:   2.4493069648743
Elapsed time: 0.0017259120941162

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad8.gif'

Time before:  2.4494481086731
Time after:   2.4511780738831
Elapsed time: 0.0017299652099609

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad9.gif'

Time before:  2.4513189792633
Time after:   2.4530460834503
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sex.gif'

Time before:  2.4531860351562
Time after:   2.4549031257629
Elapsed time: 0.0017170906066895

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign10.gif'

Time before:  2.455039024353
Time after:   2.4567670822144
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign12.gif'

Time before:  2.4569079875946
Time after:   2.4586319923401
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign13.gif'

Time before:  2.4587869644165
Time after:   2.4605140686035
Elapsed time: 0.0017271041870117

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign14.gif'

Time before:  2.4606630802155
Time after:   2.4624009132385
Elapsed time: 0.0017378330230713

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign16.gif'

Time before:  2.4625449180603
Time after:   2.4642670154572
Elapsed time: 0.0017220973968506

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign17.gif'

Time before:  2.4644060134888
Time after:   2.4661381244659
Elapsed time: 0.0017321109771729

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign18.gif'

Time before:  2.4662840366364
Time after:   2.468024969101
Elapsed time: 0.0017409324645996

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign19.gif'

Time before:  2.4681680202484
Time after:   2.4698760509491
Elapsed time: 0.0017080307006836

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign2.gif'

Time before:  2.4700191020966
Time after:   2.471715927124
Elapsed time: 0.0016968250274658

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign4.gif'

Time before:  2.4718570709229
Time after:   2.4735670089722
Elapsed time: 0.0017099380493164

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sign5.gif'

Time before:  2.4737079143524
Time after:   2.4754130840302
Elapsed time: 0.0017051696777344

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign7.gif'

Time before:  2.4755539894104
Time after:   2.4772710800171
Elapsed time: 0.0017170906066895

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy1.gif'

Time before:  2.4774119853973
Time after:   2.4791219234467
Elapsed time: 0.0017099380493164

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'sleepy2.gif'

Time before:  2.4792630672455
Time after:   2.4809849262238
Elapsed time: 0.0017218589782715

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy3.gif'

Time before:  2.4811251163483
Time after:   2.4828469753265
Elapsed time: 0.0017218589782715

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy4.gif'

Time before:  2.4829850196838
Time after:   2.4847159385681
Elapsed time: 0.0017309188842773

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy5.gif'

Time before:  2.4848561286926
Time after:   2.4865770339966
Elapsed time: 0.0017209053039551

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy7.gif'

Time before:  2.4867160320282
Time after:   2.4884300231934
Elapsed time: 0.0017139911651611

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'smileinbox.gif'

Time before:  2.4885699748993
Time after:   2.4903020858765
Elapsed time: 0.0017321109771729

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'snorting.gif'

Time before:  2.490462064743
Time after:   2.4921939373016
Elapsed time: 0.0017318725585938

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'spam1.gif'

Time before:  2.4923350811005
Time after:   2.4940340518951
Elapsed time: 0.0016989707946777

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'spam4.gif'

Time before:  2.4941749572754
Time after:   2.4958679676056
Elapsed time: 0.0016930103302002

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'stop.gif'

Time before:  2.4960200786591
Time after:   2.497731924057
Elapsed time: 0.0017118453979492

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'tard.gif'

Time before:  2.4978759288788
Time after:   2.4995760917664
Elapsed time: 0.0017001628875732

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'thebirdman.gif'

Time before:  2.4997191429138
Time after:   2.5014319419861
Elapsed time: 0.0017127990722656

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'thefinger.gif'

Time before:  2.5015759468079
Time after:   2.5032830238342
Elapsed time: 0.0017070770263672

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'thumbsup.gif'

Time before:  2.5034260749817
Time after:   2.5051429271698
Elapsed time: 0.0017168521881104

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue1.gif'

Time before:  2.5052819252014
Time after:   2.5069999694824
Elapsed time: 0.0017180442810059

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue11.gif'

Time before:  2.5071399211884
Time after:   2.5088720321655
Elapsed time: 0.0017321109771729

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue2.gif'

Time before:  2.5090129375458
Time after:   2.5107350349426
Elapsed time: 0.0017220973968506

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue3.gif'

Time before:  2.5108749866486
Time after:   2.5126080513
Elapsed time: 0.0017330646514893

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue4.gif'

Time before:  2.5127501487732
Time after:   2.5144870281219
Elapsed time: 0.0017368793487549

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue5.gif'

Time before:  2.5146260261536
Time after:   2.5163540840149
Elapsed time: 0.0017280578613281

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue6.gif'

Time before:  2.5164909362793
Time after:   2.5182321071625
Elapsed time: 0.0017411708831787

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue7.gif'

Time before:  2.518373966217
Time after:   2.5200970172882
Elapsed time: 0.001723051071167

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue8.gif'

Time before:  2.5202350616455
Time after:   2.5219280719757
Elapsed time: 0.0016930103302002

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue9.gif'

Time before:  2.5220670700073
Time after:   2.5237600803375
Elapsed time: 0.0016930103302002

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tool.gif'

Time before:  2.5238981246948
Time after:   2.5256080627441
Elapsed time: 0.0017099380493164

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy1.gif'

Time before:  2.5257449150085
Time after:   2.5274460315704
Elapsed time: 0.0017011165618896

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy10.gif'

Time before:  2.5275850296021
Time after:   2.5293009281158
Elapsed time: 0.0017158985137939

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy11.gif'

Time before:  2.5294411182404
Time after:   2.5311501026154
Elapsed time: 0.001708984375

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'toothy12.gif'

Time before:  2.5312900543213
Time after:   2.5330080986023
Elapsed time: 0.0017180442810059

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'toothy2.gif'

Time before:  2.5331580638885
Time after:   2.534873008728
Elapsed time: 0.0017149448394775

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy3.gif'

Time before:  2.535012960434
Time after:   2.5367460250854
Elapsed time: 0.0017330646514893

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy4.gif'

Time before:  2.5368859767914
Time after:   2.5386109352112
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy5.gif'

Time before:  2.5387499332428
Time after:   2.5404739379883
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy6.gif'

Time before:  2.5406169891357
Time after:   2.5423419475555
Elapsed time: 0.0017249584197998

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'toothy9.gif'

Time before:  2.5424821376801
Time after:   2.5442039966583
Elapsed time: 0.0017218589782715

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'triplets.gif'

Time before:  2.5443420410156
Time after:   2.5460340976715
Elapsed time: 0.0016920566558838

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tshirt.gif'

Time before:  2.5461740493774
Time after:   2.5478649139404
Elapsed time: 0.0016908645629883

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tweety.gif'

Time before:  2.548003911972
Time after:   2.5497109889984
Elapsed time: 0.0017070770263672

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'usa2.gif'

Time before:  2.54984998703
Time after:   2.5515470504761
Elapsed time: 0.0016970634460449

Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = 'violent1.gif'

Time before:  2.5516860485077
Time after:   2.5537180900574
Elapsed time: 0.0020320415496826

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'violent4.gif'

Time before:  2.5540590286255
Time after:   2.5561580657959
Elapsed time: 0.0020990371704102

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'violent5.gif'

Time before:  2.556342124939
Time after:   2.5580999851227
Elapsed time: 0.0017578601837158

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'walk.gif'

Time before:  2.5582511425018
Time after:   2.5599799156189
Elapsed time: 0.0017287731170654

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'wav.gif'

Time before:  2.5601210594177
Time after:   2.5618209838867
Elapsed time: 0.0016999244689941

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'wave.gif'

Time before:  2.5619630813599
Time after:   2.5636761188507
Elapsed time: 0.0017130374908447

Query:	UPDATE stats_smilies_info SET last_post_id = 28663

Time before:  2.5638070106506
Time after:   2.5640339851379
Elapsed time: 0.00022697448730469

Query:	SELECT word FROM phpbb_words

Time before:  2.8952250480652
Time after:   2.8957719802856
Elapsed time: 0.00054693222045898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_words  ALL          19  19   


Query:	SELECT COUNT( word_id ) total_words FROM phpbb_search_wordmatch

Time before:  2.8963420391083
Time after:   2.8965411186218
Elapsed time: 0.0001990795135498
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:  2.8970210552216
Time after:   2.8971979618073
Elapsed time: 0.00017690658569336
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:  2.8976531028748
Time after:   19.529145002365
Elapsed time: 16.63149189949
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  swl  ALL  word_id        34382  10  Using temporary; Using filesort 
SIMPLE  swm  ref  word_id  word_id  stevew_phpb2.swl.word_id  12    Using index 
SIMPLE  wt  ALL          19    Using where 


Query:	SELECT cash_dbfield, cash_name
	FROM phpbb_cash
	ORDER BY cash_order DESC

Time before:  19.65144610405
Time after:   19.651613950729
Elapsed time: 0.0001678466796875
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:  19.655736923218
Time after:   19.676389932632
Elapsed time: 0.020653009414673
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1282  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:  19.715620994568
Time after:   19.719790935516
Elapsed time: 0.0041699409484863
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        152  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:  19.736779928207
Time after:   19.738610029221
Elapsed time: 0.0018301010131836
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        152  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:  19.758150100708
Time after:   19.759205102921
Elapsed time: 0.0010550022125244
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 = 2
	ORDER BY date_added DESC
	LIMIT 10

Time before:  19.779273986816
Time after:   19.780405044556
Elapsed time: 0.0011310577392578
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 1024 queries,
spending 17.909348964691 doing MySQL queries and 1.8844201564789 doing PHP things.