Page Time: 0.1799s

Memory: 5.5661 MB (Peak: 6.2070 MB)

Queries (31, time: 0.0430s, 23.9%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000209
    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: 9184
    Run Time: 0.000717
    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.000391
    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 >= 2160 AND post.position < 2180) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 9184
    Run Time: 0.004442
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using 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 (758805, 758853, 758996, 759289, 759318)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.001042
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 6Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 9184
    Run Time: 0.003861
  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=9184&page=109, 1715994026,
    Run Time: 0.000438
  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, 758641, a:3:{i:0;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:107:"https://www.rllmukforum.com/uploads/monthly_2017_03/IMG_0360.thumb.JPG.e15b794bed6e0a7ae657de5580f62ace.JPG";}}i:1;s:3:" ";i:2;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:2:{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:7:"Reviews";}}i:1;s:199:" Nier Automata [8] Tom Clancy's Ghost Recon: Wildlands [4] Persona 5 [8] For Honor [8] Halo Wars 2 [7] Night in the Woods [8] 1-2-Switch [6] Snipperclips: Cut it Out, Together [8] Super Bomberman [4]";}}}, 1701116101, 1715994026
    Run Time: 0.004554
  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, 3212, a:1:{i:0;s:17:"There only be ONE";}, 1701116101, 1715994026
    Run Time: 0.000495
  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, 758644, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:32:"dimm, post: 758641, member: 3212";s:8:"original";a:2:{i:0;s:42:"[QUOTE="dimm, post: 758641, member: 3212"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;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:107:"https://www.rllmukforum.com/uploads/monthly_2017_03/IMG_0360.thumb.JPG.e15b794bed6e0a7ae657de5580f62ace.JPG";}}}}i:1;s:91:" Честные оценки, ниер и персона ниже на два балла :)";}, 1701116101, 1715994026
    Run Time: 0.000457
  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, 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, 1715994026
    Run Time: 0.000271
  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, 758805, a:4:{i:0;s:39:"Kingdom Hearts HD 1.5 + 2.5 ReMIX 82 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28755";}}i:2;s:37:" Dark Souls 3: The Ringed City 79 ";i:3;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28756";}}}, 1701116101, 1715994026
    Run Time: 0.002983
  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: signature, 777, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"https://www.trueachievements.com/gamer/Chakie";s:8:"original";a:2:{i:0;s:51:"[URL=https://www.trueachievements.com/gamer/Chakie]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;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:54:"https://www.trueachievements.com/gamercards/Chakie.png";}}}}}, 1701116101, 1715994026
    Run Time: 0.000511
  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, 758853, a:2:{i:0;s:66:"The Walking Dead: A New Frontier - Episode 3 - Above the Law 74 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28761";}}}, 1701116101, 1715994026
    Run Time: 0.000234
  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, 758882, a:7:{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:9:"Persona 5";}}i:1;s:183:" - похоже, что ещё один мастхэвчик для фанатов жанра, кто бы сомневался :confused: (в процессе добавления) ";i:2;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;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:4:{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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"http://www.metacritic.com/game/playstation-4/persona-5";s:8:"original";a:2:{i:0;s:62:"[URL='http://www.metacritic.com/game/playstation-4/persona-5']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"METACRITIC:";}}i:1;s:3:" 94";}}i:1;s:15:" (30 Critics) ";i:2;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:41:"http://opencritic.com/game/1537/persona-5";s:8:"original";a:2:{i:0;s:49:"[URL='http://opencritic.com/game/1537/persona-5']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"OPENCRITIC:";}}i:1;s:3:" 94";}}i:3;s:28:" (29 Critics, 1 Contributor)";}}}}i:3;s:1:" ";i:4;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:19:{i:0;s:1:" ";i:1;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:61:"http://www.eurogamer.net/articles/2017-03-29-persona-5-review";s:8:"original";a:2:{i:0;s:69:"[URL='http://www.eurogamer.net/articles/2017-03-29-persona-5-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:10:"Eurogamer:";}}i:1;s:10:" Essential";}}i:2;s:307:" Real talk: if you've played Persona, if you've enjoyed JRPGs, if you even have a passing interest in Japanese media, there's absolutely no reason to read this frankly ponderous review. Persona 5 is everything you've wanted: style and substance distilled into an experience worth waging cultural wars for. ";i:3;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=AW4HuPbCTS0";s:8:"original";a:2:{i:0;s:51:"[URL='https://www.youtube.com/watch?v=AW4HuPbCTS0']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:4:"ACG:";}}i:1;s:4:" Buy";}}i:4;s:2:" ";i:5;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:47:"http://www.pushsquare.com/reviews/ps4/persona_5";s:8:"original";a:2:{i:0;s:55:"[URL='http://www.pushsquare.com/reviews/ps4/persona_5']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"Push Square:";}}i:1;s:6:" 10/10";}}i:6;s:480:" Persona 5 sets the benchmark for modern Japanese RPGs: it oozes style, charisma, and polish quite unlike anything we've played. With this fifth entry, the series' trademark formula of dungeon delving and socialising has been perfected. Addictive, engaging gameplay, incredibly endearing characters, and a consistently rewarding narrative loop combine to create a spectacularly cohesive whole – whether or not you're already a fan of Persona. A masterpiece from top to bottom. ";i:7;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:41:"Official Playstation Magazine UK: 100/100";}}i:8;s:229:" Whether you’re a series fan, a JRPG evangelist or a total turn-based newcomer, this is an essential play. Persona 5 is packed with stuff to do, expertly put together and exquisite to the last pixel. An unabashed masterpiece. ";i:9;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:46:"http://www.gamerevolution.com/review/persona-5";s:8:"original";a:2:{i:0;s:54:"[URL='http://www.gamerevolution.com/review/persona-5']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"Game Revolution:";}}i:1;s:4:" 5/5";}}i:10;s:460:" Persona 5 is the pinnacle of the JRPG genre, showcasing for one of the few times in history what it's like when a beautiful story is assisted by great gameplay. This is a game with a wonderful personality, and one with more content than just about any other single-player game you can name. Persona 5 might have arrived with subtlety like a cool breeze, but its tailwinds will leave behind a confident and meaningful reminder that JRPGs are alive and well. ";i:11;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"http://gadgets.ndtv.com/games/reviews/persona-5-review-1675017";s:8:"original";a:2:{i:0;s:70:"[URL='http://gadgets.ndtv.com/games/reviews/persona-5-review-1675017']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"Gadgets 360:";}}i:1;s:6:" 10/10";}}i:12;s:626:" Perhaps Persona 5’s biggest strength is how it presents itself. Effortlessly balancing between the whimsical with a talking cat that transforms into bus, the grotesque with its Palaces being abominations of the human subconscious, and the mundane with the daily grind of going to school, none of these ever feel out of place or have you thinking you’re playing a completely different game. If you own a PS3 or PS4, you owe it to yourself to play Persona 5. From its presentation to gameplay systems and its many plot twists, there isn’t quite anything like it. A must-play for fans of the series and newcomers alike. ";i:13;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:51:"http://www.godisageek.com/reviews/persona-5-review/";s:8:"original";a:2:{i:0;s:59:"[URL='http://www.godisageek.com/reviews/persona-5-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"God is a Geek:";}}i:1;s:6:" 10/10";}}i:14;s:653:" Persona 5 is a fantastic video game. It’s pacing is amazing and it never bogs you down with filler content. You can start with this one as a newcomer who is probably impressed with the menus and returning fans will enjoy everything from the slight nods to things from previous games or to the end game section that will please older fans of the franchise. Now is the best time to jump into the Persona franchise and there’s no better JRPG than this one right now. I’ve beaten Persona 5 nearly a month ago and haven’t stopped thinking about it ever since. I keep reloading old save files to revisit different areas. This one is really special. ";i:15;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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:48:"http://www.usgamer.net/articles/persona-5-review";s:8:"original";a:2:{i:0;s:56:"[URL='http://www.usgamer.net/articles/persona-5-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"US Gamer:";}}i:1;s:4:" 5/5";}}i:16;s:442:" With the most bewitching tale the series has ever told and an incredibly likable cast that rises above their typical archetypes, Persona 5 sings a song of rebellion. Not just against the norm of JRPGs, but of society's oppressive grasp, inspiring its players to rise up as the Phantom Thieves would. In the end, in spite of its minor missteps, Persona 5 has the power to steal the hearts of longterm fans of the series and newcomers alike. ";i:17;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:123:"https://i.kinja-img.com/gawker-media/image/upload/s--bNnfTiVL--/c_scale,fl_progressive,q_80,w_1600/klaku1f9jepygpy9odzt.png";}}i:18;s:1:" ";}}i:5;s:1:" ";i:6;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:53:"https://media.giphy.com/media/FoWmIYNe8njCU/giphy.gif";}}}, 1701116101, 1715994026
    Run Time: 0.001434
  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, 758883, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"Каин, post: 758882, member: 3850";s:8:"original";a:2:{i:0;s:46:"[QUOTE="Каин, post: 758882, member: 3850"]";i:1;s:8:"[/QUOTE]";}s:8:"children";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:9:"Persona 5";}}i:1;s:183:" - похоже, что ещё один мастхэвчик для фанатов жанра, кто бы сомневался :confused: (в процессе добавления) ";i:2;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:2:{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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"http://www.metacritic.com/game/playstation-4/persona-5";s:8:"original";a:2:{i:0;s:62:"[URL='http://www.metacritic.com/game/playstation-4/persona-5']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"METACRITIC:";}}i:1;s:3:" 94";}}i:1;s:13:" (24 Critics)";}}}}i:1;s:219:" ЛОЛ, надо снижать оценку минимум на 20 =). Реально не понятна причина по которой Персонам такие высокие оценки лепят Т___Т.";}, 1701116101, 1715994026
    Run Time: 0.000985
  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, 758884, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"Каин, post: 758882, member: 3850";s:8:"original";a:2:{i:0;s:46:"[QUOTE="Каин, post: 758882, member: 3850"]";i:1;s:8:"[/QUOTE]";}s:8:"children";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:9:"Persona 5";}}i:1;s:183:" - похоже, что ещё один мастхэвчик для фанатов жанра, кто бы сомневался :confused: (в процессе добавления) ";i:2;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:2:{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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"http://www.metacritic.com/game/playstation-4/persona-5";s:8:"original";a:2:{i:0;s:62:"[URL='http://www.metacritic.com/game/playstation-4/persona-5']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"METACRITIC:";}}i:1;s:3:" 94";}}i:1;s:13:" (24 Critics)";}}}}i:1;s:52:" Эдж поставил 8, все понятно :)";}, 1701116101, 1715994026
    Run Time: 0.000419
  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, 758886, a:3:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:30:"-A-, post: 758883, member: 517";s:8:"original";a:2:{i:0;s:40:"[QUOTE="-A-, post: 758883, member: 517"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:218:"ЛОЛ, надо снижать оценку минимум на 20 =). Реально не понятна причина по которой Персонам такие высокие оценки лепят Т___Т.";}}i:1;s:26:" За это снизят ";i:2;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:685:"Japan has some complex cultural opinions on LGBT issues, but how a company like Atlus—a studio known for putting care into more “fringe” types of characters—could so blatantly portray gay men as child predators bothered me. It’s especially disappointing because Persona 5 features one other prominent LGBT character, and I found them not only to be a fun foil for another NPC, but also pretty spot-on for people I’ve actually met in Japan. Atlus is the Japanese company I look to the most with hope for some well-written and developed LGBT characters, and yet, this is now three games in a row where we’ve gotten examples of queerbaiting and/or gay panic from the studio.";}}}, 1701116101, 1715994026
    Run Time: 0.000405
  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: post, 758996, a:2:{i:0;s:135:"А товарищ Гилберт, судя по всему, своё мастерство то не пропил Thimbleweed Park 83 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28769";}}}, 1701116101, 1715994026
    Run Time: 0.006226
  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, 758998, a:4:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:30:"-A-, post: 758883, member: 517";s:8:"original";a:2:{i:0;s:40:"[QUOTE="-A-, post: 758883, member: 517"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:217:"ЛОЛ, надо снижать оценку минимум на 20 =). Реально не понятна причина по которой Персонам такие высокие оценки лепят Т___Т.";}}i:1;s:144:" да, монс. вот она горькая правда) когда твое мнение не такое как у большинства) ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"Каин, post: 758886, member: 3850";s:8:"original";a:2:{i:0;s:46:"[QUOTE="Каин, post: 758886, member: 3850"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:24:"За это снизят";}}i:3;s:135:" если только Полигон. он обычно загоняется по всяким нетрадиционным темам";}, 1701116101, 1715994026
    Run Time: 0.000560
  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: 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, 1715994026
    Run Time: 0.000309
  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, 759002, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:40:"pharmchemist, post: 758998, member: 2891";s:8:"original";a:2:{i:0;s:50:"[QUOTE="pharmchemist, post: 758998, member: 2891"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:278:"да, монс. вот она горькая правда) когда твое мнение не такое как у большинства) если только Полигон. он обычно загоняется по всяким нетрадиционным темам";}}i:1;s:310:" Можно узнать кто скрывается за словом большинство в данном случае? Из десяти игр захайпленных обзорщиками, хорошо если одна действительно оказывается достойной хайпа.";}, 1701116101, 1715994026
    Run Time: 0.000543
  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: post, 759004, a:2:{i:0;s:95:"Неплохое наблюдение по современным ревью и оценкам ";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:47:"https://pbs.twimg.com/media/C8Iq86qUQAIaqdM.jpg";}}}, 1701116101, 1715994026
    Run Time: 0.000950
  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, 759165, a:15:{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:15:"MLB the Show 17";}}i:1;s:1:" ";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:84:"http://static.blog.playstation.com/wp-content/uploads/2016/10/theshow17-featured.jpg";}}i:3;s:2:" ";i:4;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;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:236:"Cheat Code Central: 4.9 / 5 Attack of the Fanboy: 4.5 / 5 Digital Trends: 8 / 10 Polygon: 8 / 10 USgamer: 9 / 10 IGN: 9.5 / 10 Forbes: 8.5 / 10 Gaming Age: 10 / 10 Hardcore Gamer: 3 / 5 PlayStation LifeStyle: 8.5 / 10 CGMagazine: 9 / 10";}}}}i:5;s:2:" ";i:6;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:68:"http://opencritic.com/game/3879/mlb-17-the-show?tab=1&reviewId=74641";}}i:7;s:7:" - ";i:8;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:2:"85";}}i:9;s:2:" ";i:10;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://c.opencritic.com/images/tiers/mighty-man.png";}}i:11;s:2:" ";i:12;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:60:"http://www.metacritic.com/game/playstation-4/mlb-the-show-17";}}i:13;s:6:" - ";i:14;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:2:"85";}}}, 1701116101, 1715994026
    Run Time: 0.001894
  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, 759289, a:2:{i:0;s:123:"Нда, время забавной собачки рэперушки явно ушло PaRappa the Rapper Remastered 66 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28784";}}}, 1701116101, 1715994026
    Run Time: 0.001002
  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, 759290, a:5:{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:31:"Yooka-Laylee - BrashGames 8/10";}}i:1;s:246:" Выложили было первое ревью на игру, но правда быстро убрали (осталось в гугло-кэше). Вроде нормалёк получилось, хоть и не без заусенец: ";i:2;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:705:""Its commitment to nostalgia is both Yooka-Laylee’s greatest strength and its greatest weakness. The characters are largely annoying and the writing and delivery is almost universally bad, but man, that gameplay is still very special indeed. Having been largely starved of traditional 3D platformers for the past 15 years, this serves as a perfectly timed reminder of why the genre was so popular in the first place. With its fantastic mechanics married to a selection of sprawling words chock full of challenges and a fantastically addictive sense of progression, Yooka-Laylee overcomes its occasional rough edges and lack of polish to deliver the finest 3D platformer this side of Super Mario Galaxy."";}}i:3;s:2:" ";i:4;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:144:"http://webcache.googleusercontent.com/search?q=cache:s-GCDgCZT9wJ:www.brashgames.co.uk/2017/04/01/yooka-laylee-review/+&cd=1&hl=en&ct=clnk&gl=au";}}}, 1701116101, 1715994026
    Run Time: 0.000331
  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, 759291, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:32:"dimm, post: 759290, member: 3212";s:8:"original";a:2:{i:0;s:42:"[QUOTE="dimm, post: 759290, member: 3212"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{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:31:"Yooka-Laylee - BrashGames 8/10";}}i:1;s:110:" Выложили было первое ревью на игру, но правда быстро убрали ";}}i:1;s:78:" Потому что эмбарго до сегодняшнего вечера";}, 1701116101, 1715994026
    Run Time: 0.000403
  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, 759300, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:33:"Chakie, post: 759289, member: 777";s:8:"original";a:2:{i:0;s:43:"[QUOTE="Chakie, post: 759289, member: 777"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;s:123:"Нда, время забавной собачки рэперушки явно ушло PaRappa the Rapper Remastered 66 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28784";}}}}i:1;s:66:" Я бы сказал, что оно и не приходило :)";}, 1701116101, 1715994026
    Run Time: 0.000259
  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, 759318, a:2:{i:0;s:17:"Yooka-Laylee 74 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28786";}}}, 1701116101, 1715994026
    Run Time: 0.000311
  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, 759320, a:6:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://www.gamespot.com/reviews/yooka-laylee-review/1900-6416649/";s:8:"original";a:2:{i:0;s:74:"[URL='https://www.gamespot.com/reviews/yooka-laylee-review/1900-6416649/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"Gamespot";}}i:1;s:6:" 6/10 ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:86:"http://www.polygon.com/2017/4/4/15171316/yooka-laylee-review-xbox-one-pc-playstation-4";s:8:"original";a:2:{i:0;s:94:"[URL='http://www.polygon.com/2017/4/4/15171316/yooka-laylee-review-xbox-one-pc-playstation-4']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:7:"Polygon";}}i:3;s:15:" 5.5/10 :eek: ";i:4;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"NYNfB3ZYtJc";}}i:5;s:45:" You should not play Yooka-Laylee on Xbox One";}, 1701116101, 1715994026
    Run Time: 0.001053
  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, 759321, a:5:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"Каин, post: 759320, member: 3850";s:8:"original";a:2:{i:0;s:46:"[QUOTE="Каин, post: 759320, member: 3850"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:4:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://www.gamespot.com/reviews/yooka-laylee-review/1900-6416649/";s:8:"original";a:2:{i:0;s:74:"[URL='https://www.gamespot.com/reviews/yooka-laylee-review/1900-6416649/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"Gamespot";}}i:1;s:6:" 6/10 ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:86:"http://www.polygon.com/2017/4/4/15171316/yooka-laylee-review-xbox-one-pc-playstation-4";s:8:"original";a:2:{i:0;s:94:"[URL='http://www.polygon.com/2017/4/4/15171316/yooka-laylee-review-xbox-one-pc-playstation-4']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:7:"Polygon";}}i:3;s:13:" 5.5/10 :eek:";}}i:1;s:48:" Толстяк Джимми поставил 2 ";i:2;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:51:"http://www.thejimquisition.com/yooka-laylee-review/";}}i:3;s:29:" Деструктойд - 8 ";i:4;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:98:"https://www.destructoid.com/review-yooka-laylee-425484.phtml?utm_source=dlvr.it&utm_medium=twitter";}}}, 1701116101, 1715994026
    Run Time: 0.005274

Included Files (113, 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. internal_data/templates/S.1,L.1,bb_code_tag_attach.php
  110. library/XenForo/Debug.php
  111. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  112. mobiquo/smartbanner/head.inc.php
  113. library/XenForo/ViewRenderer/Json.php