Page Time: 0.2880s

Memory: 5.4265 MB (Peak: 6.0753 MB)

Queries (31, time: 0.1010s, 35.1%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000185
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN ns_threadrating_rate AS rate ON (rate.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 20594
    Run Time: 0.001114
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 45
    Run Time: 0.000479
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 20 AND post.position < 40) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 20594
    Run Time: 0.016483
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 21Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22user_nextstagerussia.post.user_id,func1Using where
  5. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (554650)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000971
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 20594
    Run Time: 0.023424
  7. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=20594&page=2, 1715994685,
    Run Time: 0.000330
  8. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 552308, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:26:"pharmchemist, post: 552306";s:8:"original";a:2:{i:0;s:36:"[quote="pharmchemist, post: 552306"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:120:"ну и конечно Гитлер не мог обойти своим вниманием этот беспредел))";}}i:1;s:99:" Мля, вот кто должен был возглавлять операцию Ливень :)";}, 1701116101, 1715994685
    Run Time: 0.018203
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 4, a:2:{i:0;s:58:"vova: Versatile Online Violence Android SW 6368 9221 0229 ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:45:"https://card.psnprofiles.com/1/Wiizardwii.png";}}}, 1701116101, 1715994685
    Run Time: 0.000408
  10. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553113, a:3:{i:0;s:133:"Джим Стерлинг из Деструктоида не удержался и посвятил выпуск своего шоу ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:76:"http://www.destructoid.com/the-jimquisition-nintendo-of-america-205230.phtml";s:8:"original";a:2:{i:0;s:84:"[URL="http://www.destructoid.com/the-jimquisition-nintendo-of-america-205230.phtml"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:""Jimquisition"";}}i:2;s:78:" ахтунгу американского отделения нинтенды";}, 1701116101, 1715994685
    Run Time: 0.010661
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 2891, a:3:{i:0;s:277:"BB Pack SCPH-50000 MB/NH + DMS4 Pro SE + Seagate ST3400820A 400GB, SCPH-7708, HKT-3000, USG-S-FTWDXF(JPN),CECHH00 MG, PSP1000k, HST-0014, DOL-S-MGOTO, SCPH-100, RVL-S-GL-USZ, XBOX 360 jasper [NTSC-J], XBOX 360 Slim 250Gb [PAL], PSVita 1108 EUR + 32gb card, PS4 500gb ИГРЫ";i:1;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"3";s:8:"original";a:2:{i:0;s:8:"[SIZE=3]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:1:" ";}}}}i:2;s:30:"are available only on consoles";}, 1701116101, 1715994685
    Run Time: 0.002467
  12. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553186, a:3:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:12:"pharmchemist";}}i:1;s:2:", ";i:2;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:51:"http://www.nioutaik.fr/images/galerie/brilliant.jpg";}}}, 1701116101, 1715994685
    Run Time: 0.000524
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553189, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:26:"pharmchemist, post: 553113";s:8:"original";a:2:{i:0;s:36:"[quote="pharmchemist, post: 553113"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:225:"Джим Стерлинг из Деструктоида не удержался и посвятил выпуск своего шоу "Jimquisition" ахтунгу американского отделения нинтенды";}}i:1;s:200:" Повторюсь ,что решение Нинтендо очень очень очень странное. Или есть какой-то план, или мозги жиром заплыли :)";}, 1701116101, 1715994685
    Run Time: 0.000514
  14. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553267, a:3:{i:0;s:94:"троллинг продолжается) на этот раз не абы кто, а сам ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:83:"http://www.wired.com/gamelife/2011/07/wiijected/?pid=1847&pageid=36930&viewall=true";s:8:"original";a:2:{i:0;s:91:"[URL="http://www.wired.com/gamelife/2011/07/wiijected/?pid=1847&pageid=36930&viewall=true"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:5:"WIRED";}}i:2;s:300:" выкатил статейку про то, что в этом году играть на вии кроме новой зельды не во что(( , подчёркивая этот факт, унылыми фотами запыленных нинтендовских контроллеров))";}, 1701116101, 1715994685
    Run Time: 0.001236
  15. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553275, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:26:"pharmchemist, post: 553267";s:8:"original";a:2:{i:0;s:36:"[quote="pharmchemist, post: 553267"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:399:"троллинг продолжается) на этот раз не абы кто, а сам WIRED выкатил статейку про то, что в этом году играть на вии кроме новой зельды не во что(( , подчёркивая этот факт, унылыми фотами запыленных нинтендовских контроллеров))";}}i:1;s:401:" Пофиг на троллинг, операция Ливень продалжается :) Теперь американские владельцы Wii решили засыпать Реджи письмами, и не электронными, а бумажными, ему в офис :) Reginald Fils-Aime (President and COO) c/o Nintendo of America 4600 150th AVE NE Redmond, WA 98052";}, 1701116101, 1715994685
    Run Time: 0.000503
  16. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553299, a:1:{i:0;s:173:"Да уж, что-то Нинтенду лихорадит в последнее время. Ситуация похожа на ситуацию с Shenmue 2 на Dreamcast.";}, 1701116101, 1715994685
    Run Time: 0.000493
  17. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553452, a:2:{i:0;s:232:"Непонятно, или участники операции уже сами себе слухи создают, или действительно правда, но Ксеноблейд готов к выпуску в США :) ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:81:"http://oprainfall.blogspot.com/2011/07/source-ntsc-xenoblade-done-last-story.html";}}}, 1701116101, 1715994685
    Run Time: 0.006953
  18. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 553541, a:1:{i:0;s:372:"Редкие мудаки конечно, так откровенно издеватся над людьми, и с улыбкой срать на владельцев приставки. Талант, поределлённо талант. В Америке жрпгшки всегда лучше уходят, в чём причина ..хоть обЪяснили бы.";}, 1701116101, 1715994685
    Run Time: 0.001962
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 8798, a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:113:"Раскаяться никогда не поздно,а вот согрешить можно и опоздать";}}}, 1701116101, 1715994685
    Run Time: 0.000380
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 554650, a:1:{i:0;s:245:"Американцы начали следующую фазу, заваливают офис Нинтендо в Америке реальными письмами :) Им даже отвечают, тоже реальными письмами.";}, 1701116101, 1715994685
    Run Time: 0.002499
  21. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 557292, a:4:{i:0;s:273:"Похоже жир от мозгов начал по-тихоньку отходить. Нинтендо Америка посмотрит на продажи игры Xenoblade в Европе и примет решение о локализации в Америке. ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:276:"“We will be watching very closely what happens in Europe,” Fils-Aime told me. “Certainly if there are business opportunities and positive consumer uptake from some of those titles, that will be great data for us to consider as we look at what to do with these titles.”";}}i:2;s:2:" ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:146:"http://mynintendonews.com/2011/08/10/nintendo-wii-nintendo-america-watching-xenoblade-sales-in-europe-before-committing-to-releasing-it-in-the-us/";}}}, 1701116101, 1715994685
    Run Time: 0.001706
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 557306, a:1:{i:0;s:328:"Гм, раньше всё наоборот было. С чего это Европа стала показателем для принятия решения о выходе игры в США? Типа Европа это оплот более-менее хардкорных геймеров по сравнению с США?";}, 1701116101, 1715994685
    Run Time: 0.000420
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 4889, a:1:{i:0;s:219:""И в какой-то момент игрок понимает, что не ест, а сосет. Как-то так." (с) Medeival "Волосы были от АМД, поэтому и глючные." (с) Каин";}, 1701116101, 1715994685
    Run Time: 0.000268
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 557308, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"LEONID, post: 557306";s:8:"original";a:2:{i:0;s:30:"[quote="LEONID, post: 557306"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:328:"Гм, раньше всё наоборот было. С чего это Европа стала показателем для принятия решения о выходе игры в США? Типа Европа это оплот более-менее хардкорных геймеров по сравнению с США?";}}i:1;s:1369:"Просто в Nintendo of America сидят идийоты, которые считают, что игрокам нужны только Марио и Зельда. Вообще, в США очень много дегенератов сидит, которые не признают вещи, которые не поднимут акции компании меньше чем на тыщу процентов, и прочие товарищи подобного плана. Взять то же отделение Namco, которое планомерно вырезает песни из опенингов Tales of..., хотя все фанаты их просто-таки на коленях умоляют этого не делать, да и вообще с большим скрипом переводят тут Tales of.... Или идиотов из sony, которые из-за своей тупой политики можно сказать что убили Working Designs. Еще говорят, что Sega загнулась из-за идиотии своего американского подразделения... правда я уже не помню суть той истории. С геймерами в США все в порядке, а вот с компаниями бывает случаются странные вещи.";}, 1701116101, 1715994685
    Run Time: 0.000681
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 557745, a:2:{i:0;s:189:"19 августа стартует очередная фаза операции ливень :) Все массово начнут покупать фф в виртуал кончоли. ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:373:"“. . .as part of Phase Two we want to encourage everyone to make a single Virtual Console purchase on your Wii system. We specifically ask that as many as possible download “Final Fantasy (NES)” on the date of August 19, 2011 (to coincide with the Xenoblade Chronicles’ European launch date). Final Fantasy costs 500 Nintendo points and is published by Nintendo.”";}}}, 1701116101, 1715994685
    Run Time: 0.004686
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 578382, a:9:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[b]";i:1;s:4:"[/b]";}s:8:"children";a:1:{i:0;s:70:"Операция Rainfall фокусируется на The Last Story";}}i:1;s:92:" С 27 января по 24 февраля, координируя усилия через ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:41:"http://www.facebook.com/OperationRainfall";s:8:"original";a:2:{i:0;s:49:"[URL="http://www.facebook.com/OperationRainfall"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"Facebook";}}i:3;s:2:", ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:33:"https://twitter.com/#!/OpRainfall";s:8:"original";a:2:{i:0;s:41:"[URL="https://twitter.com/#!/OpRainfall"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:7:"Twitter";}}i:5;s:2:", ";i:6;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"http://www.youtube.com/user/operationrainfall";s:8:"original";a:2:{i:0;s:53:"[URL="http://www.youtube.com/user/operationrainfall"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:7:"Youtube";}}i:7;s:423:", операция "Rainfall" фокусирует свои усилия на The Last Story. "On the 27th we will be contacting Nintendo in mass again, after that we will be doing everythign we can to raise public awareness of the title and it's link to Sakaguchi and the Final Fantasy franchise. We find it absurd that the title is so little known considering it's pedigree, and we hope to correct that this month." ";i:8;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:93:"http://www.destructoid.com/operation-rainfall-regroups-focuses-on-the-last-story-220256.phtml";s:8:"original";a:2:{i:0;s:101:"[URL="http://www.destructoid.com/operation-rainfall-regroups-focuses-on-the-last-story-220256.phtml"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"destructoid";}}}, 1701116101, 1715994685
    Run Time: 0.000918
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 578383, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"Nergal, post: 578382";s:8:"original";a:2:{i:0;s:30:"[quote="Nergal, post: 578382"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:209:"С 27 января по 24 февраля, координируя усилия через Facebook, Twitter, Youtube, операция "Rainfall" фокусирует свои усилия на The Last Story.";}}i:1;s:60:" Жаль я ничем этим не пользуюсь :)";}, 1701116101, 1715994685
    Run Time: 0.000517
  28. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 578387, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"vova, post: 578383";s:8:"original";a:2:{i:0;s:28:"[quote="vova, post: 578383"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:58:"Жаль я ничем этим не пользуюсь :)";}}i:1;s:82:" Ты заинтересован? Так начинай пользоваться!";}, 1701116101, 1715994685
    Run Time: 0.000341
  29. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 578391, a:4:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"Nergal, post: 578387";s:8:"original";a:2:{i:0;s:30:"[quote="Nergal, post: 578387"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:32:"Ты заинтересован?";}}i:1;s:36:" Пока еще не знаю :) ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"Nergal, post: 578387";s:8:"original";a:2:{i:0;s:30:"[quote="Nergal, post: 578387"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:47:"Так начинай пользоваться!";}}i:3;s:24:" Нет, не буду.";}, 1701116101, 1715994685
    Run Time: 0.000496
  30. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 578503, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"Nergal, post: 578382";s:8:"original";a:2:{i:0;s:30:"[quote="Nergal, post: 578382"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:209:"С 27 января по 24 февраля, координируя усилия через Facebook, Twitter, Youtube, операция "Rainfall" фокусирует свои усилия на The Last Story.";}}i:1;s:120:" да, теперь даже не знаю брать европейку или подождать американку?";}, 1701116101, 1715994685
    Run Time: 0.000703
  31. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 578505, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:26:"pharmchemist, post: 578503";s:8:"original";a:2:{i:0;s:36:"[quote="pharmchemist, post: 578503"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:40:"подождать американку?";}}i:1;s:79:" По закону жанра придется ждать до ноября :)";}, 1701116101, 1715994685
    Run Time: 0.000492

Included Files (112, XenForo Classes: 62)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/NextStage/Feature/Listener/Feature.php
  29. library/XenForo/Router.php
  30. library/XenForo/Route/Filter.php
  31. library/XenForo/Route/Interface.php
  32. library/XenForo/Route/ResponseSuffix.php
  33. library/XenForo/Route/Prefix.php
  34. library/XenForo/Route/Prefix/Threads.php
  35. library/XenForo/RouteMatch.php
  36. library/XenForo/ControllerPublic/Thread.php
  37. library/XenForo/ControllerPublic/Abstract.php
  38. library/XenForo/Controller.php
  39. library/NextStage/ThreadRating/Listener/Class.php
  40. library/NextStage/TaigaChat/Listener.php
  41. library/NextStage/XenForo/Listener/XenForo.php
  42. library/Tapatalk/Listener/LoadClassModel.php
  43. library/NextStage/ThreadRating/ControllerPublic/Thread.php
  44. library/NextStage/XenForo/ControllerPublic/XenForo.php
  45. library/NextStage/XenForo/ControllerPublic/Thread.php
  46. library/XenForo/Input.php
  47. library/XenForo/Session.php
  48. library/Zend/Db.php
  49. library/Zend/Db/Adapter/Mysqli.php
  50. library/Zend/Db/Adapter/Abstract.php
  51. library/Zend/Db/Select.php
  52. library/Zend/Db/Expr.php
  53. library/Zend/Db/Profiler.php
  54. library/Zend/Db/Statement/Mysqli.php
  55. library/Zend/Db/Statement.php
  56. library/Zend/Db/Statement/Interface.php
  57. library/XenForo/Helper/Ip.php
  58. library/XenForo/Visitor.php
  59. library/XenForo/Model/User.php
  60. library/Dark/TaigaChat/EventListener/Listener.php
  61. library/Zend/Db/Profiler/Query.php
  62. library/XenForo/Permission.php
  63. library/XenForo/Helper/Php.php
  64. library/XenForo/Phrase.php
  65. library/XenForo/Locale.php
  66. library/XenForo/ControllerHelper/ForumThreadPost.php
  67. library/XenForo/ControllerHelper/Abstract.php
  68. library/XenForo/Model/Thread.php
  69. library/NextStage/ThreadRating/Model/Thread.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Helper/Discussion.php
  73. library/XenForo/Model/Post.php
  74. library/NextStage/Feature/Model/Post.php
  75. library/XenForo/Model/Attachment.php
  76. library/XenForo/Route/Prefix/Attachments.php
  77. library/NextStage/Feature/Model/Feature.php
  78. library/XenForo/Model/Node.php
  79. library/Tapatalk/Model/Node.php
  80. library/XenForo/Route/Prefix/Categories.php
  81. library/XenForo/Route/Prefix/Forums.php
  82. library/XenForo/ControllerResponse/View.php
  83. library/XenForo/ControllerResponse/Abstract.php
  84. library/Tapatalk/Listener/ControllerPostDispatch.php
  85. library/XenForo/ViewRenderer/HtmlPublic.php
  86. library/XenForo/ViewRenderer/Abstract.php
  87. library/XenForo/Template/Public.php
  88. library/XenForo/Template/Abstract.php
  89. library/XenForo/ViewPublic/Thread/View.php
  90. library/XenForo/ViewPublic/Base.php
  91. library/XenForo/View.php
  92. library/XenForo/BbCode/Parser.php
  93. library/XenForo/BbCode/Formatter/Base.php
  94. library/XenForo/ViewPublic/Helper/Message.php
  95. library/XenForo/BbCode/TextWrapper.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  98. library/NextStage/ThreadRating/Listener/Template.php
  99. library/XenForo/Template/FileHandler.php
  100. library/XenForo/Helper/File.php
  101. internal_data/templates/S.1,L.1,thread_view.php
  102. library/Tapatalk/EventListener/Hook.php
  103. internal_data/templates/S.1,L.1,page_nav.php
  104. library/Tapatalk/Listener/TemplatePostRender.php
  105. library/XenForo/Route/Prefix/Posts.php
  106. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  107. library/XenForo/Model/Avatar.php
  108. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  109. library/XenForo/Debug.php
  110. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  111. mobiquo/smartbanner/head.inc.php
  112. library/XenForo/ViewRenderer/Json.php